html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    font-family: '微软雅黑', sans-serif;
    scroll-behavior: smooth;
    font-size:62.5%;
}

body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
cursor: pointer !important;
}
.btn,
button {
    cursor: pointer !important;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    font-family: '微软雅黑', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 1px;
    font-weight: 700;
}

p {
    font-size: 1.6rem;
    color: #8c9398;
    line-height: 2;
    font-weight: 500;
	letter-spacing:1px;
}

ul {
    margin: 0;
    padding: 0;
}

body img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
}

/*--/header --*/

/* header */

/* CSS Document */

header {
    position: absolute;
    z-index: 9;
    width: 100%;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */

nav {
    margin: 0;
    padding: 0;
}


#logo a {
    float: left;
    font-size: 0.8rem;
    display: initial;
    margin: 0;
    letter-spacing: 1px;
    color: #ffc107;
    font-size: 1rem;
    font-weight: 700;
}




/* 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;
}

/* Positioning the navigation items inline */

nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */

.menu li a {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 1rem;
    padding-left: 0;
    padding-right: 0;
    padding: 10px 0;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
}


.menu li ul li a {
    color: #555;
    padding: 10px 10px;
    font-size: 0.8rem;
}


.menu li ul li:hover {
    background: #f8f9fa;
}

/* Background color change on Hover */

nav .menu li a:hover {
    color: #ffc107;
}

.menu li.active a {
    color: #ffc107;
}

/* 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: 30px;
    background: #fff;
    padding: 10px;
}

/* Display Dropdowns on Hover */

nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */

nav ul ul li {
    width: 170px;
    float: none;
    display: list-itrem;
    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: 768px) {

    #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: 8px 20px;
        font-size: 0.8rem;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #ffffff;
        color: #333;
        cursor: pointer;
        text-transform: uppercase;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 80%;
        padding: 5px;
        font-weight: 500;
        font-size: 0.85rem;
        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: center;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    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;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #212121;
    }

    /* 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" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }

    /* 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.85rem;
    }
}

@media all and (max-width: 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

/* header */

/*--/banner --*/

.banner-content {
    background: url(../images/banner.jpg)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;
    min-height: 50rem;
}

/*-- place holder --*/

.banner-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ccc;
}

.banner-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc;
}

.banner-form :-ms-input-placeholder {
    /* IE 10+ */
    color: #ccc;
}

.banner-form :-moz-placeholder {
    /* Firefox 18- */
    color: #ccc;
}

.banner-info-w3pvt {
    padding: 16em 0 0em 3rem;
    width: 32%;
}

.banner-info-w3pvt h3 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(173, 37, 26, 0.76);
}
.banner-info-w3pvt p {
    color: #dfdfdf;
    text-align: justify;
    letter-spacing: 1px;
}
.ban-buttons a {
    background: #fff;
    padding: 11px 31px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #da9d40;
	font-weight:700;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    border: 2px solid transparent;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.ban-buttons a.active,
.ban-buttons a:hover {
    opacity: 0.8;

}

a.btn.active {
    background: none;
    color: #fff;
    border: 2px solid #ddd;
}

/*-- //place holder --*/

/*-- //banner --*/

.apply-main {
    background: url(../images/img4.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: 30rem;
}

.login label {
    color: #777879;
    font-weight: 600;
    font-size: 0.9rem;
}

.apply-info {
    margin-top: 8rem;
}

.login button.btn.btn-primary.submit {
    background: #212223;
    padding: 10px 31px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    border: 2px solid transparent;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.login button.btn.btn-primary.submit:hover {
    background: #ff3f34;
}

.login h5 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #292a2b;
    font-weight: 800;
}

/*-- features --*/

h3.tittle {
    font-size: 2.6rem;
    letter-spacing: 1px;
    color: #292a2b;
    font-weight: 800;
}

.sub-tittle {
    color: #da9d40;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
}

.events-info .sub-tittle {
    font-size: 0.7rem;
}


.feature-grids h3,
.bottom-gd.fea h3 {
    color: #05c46b;
    letter-spacing: 1px;
    margin-top: 0rem;
    font-size: 1.4rem;
}

.feature-grids p {
    margin: 0;
    color: #666;
    line-height: 28px;
    letter-spacing: .5px;
}

.feature-grids span {
    font-size: 2rem;
    vertical-align: middle;
    color: #2e3840;
}

.bottom-gd,
.bottom-gd2-active {
    background: #f8f9fa;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
    box-shadow: 7px 7px 10px 0 rgba(76, 110, 245, .1);
}

.bottom-gd2-active {
    background: #ff3f34 !important;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
}

.bottom-gd:hover.f1 i,
.bottom-gd2-active span {
    color: #fff;
}

.bottom-gd2-active p {
    color: #fff;
}

.bottom-gd2-active h3 {
    color: #fff;
}

.feature-grids h3,
.bottom-gd.fea h3 {
    font-size: 1.2rem;
    color: #1e272e;
}

/*-- //features --*/
/*-- facts --*/
.facts{
	background: #98b8a7;
}
.row.inner-heading p {
    color: #fff;
}
.facts span.fa {
    display: block;
    font-size: 40px;
    color: #da9d40;
	margin: 0;
    font-weight: normal;
}
.facts span {
    font-size: 30px;
    margin: .5em 0;
    display: block;
    font-weight: 600;
}
.facts h4 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 28px;
    color: #666;
    font-weight: 400;
}
.stats-grid {
    background: #fff;
    padding: 1.5em 2rem;
    text-align: center;
    border-right: 6px solid #f6f6f6;
}
/*-- //facts --*/
#about {
    background: #fff;
}

.content-left-bottom h4 {
    font-size: 1.7rem;
    letter-spacing: 6px;
    line-height: 1.5rem;
    margin: 1em 0;
    color: #272525;
    font-weight: 700;
}

/*--*/

.ab-info {
    text-align: center;
}

.ab-info h4 {
    font-size: 1rem;
    color: #ffc80a;
    margin: 2em 0 0em 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.list-group-image {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    background: rgb(236, 237, 239);
    padding: 8px;
}

.ab-info p {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}

.ab-content img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
    transition: all 500ms ease;
    width: 68%;
}

.ab-content-inner {
    padding: 2em 1rem;
}

.ab-info h5 {
    font-size: 1.1rem;
    letter-spacing: 0px;
    font-weight: 700;
    color: #555;
    line-height: 1.7rem;
}

/*--*/
/* services */

.serv_bottom {
    position: relative;
}

.fea span {
    color: #1f1e1e;
    font-size: 3rem;
}

.fea {
    margin-bottom: 1.5em !important;
    padding: 3em 0.5rem;
}

.bottom-gd.fea h3 {
    font-size: 1.2rem;
}

.fea.active {
    background: #ff3f34;
}

.fea.active p,
.fea.active h3 {
    color: #fff;
}

.fetured-sec img {
    box-shadow: 14px 14px 50px -20px rgba(0, 0, 0, .1);
}

/* //services */

/*--/counter--*/

.stats {
    background: #f7f7f7;
    padding: 4em 0;
}

.counter {
    background: none;
    padding: 20px 0;
    border-radius: 0;
    color: #fff;
}

.count-title {
    font-size: 3rem;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #28a745;
    font-weight: 700;
}

.count-text {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #333435;
    font-weight: 600;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

/*--//counter--*/

/*--/team--*/

.team-gd {
    padding: 2em 2rem;
    background-color: #fff;
    border: 1px solid #ddd;
}

.team-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #262631;
    margin-bottom: 0.8rem;
}

.sub-tittle-team {
    font-size: 0.6rem;
    color: #ff3f34;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
}

ul.team-icons li {
    list-style: none;
    display: inline-block;
    margin-right: 1rem;
}

ul.team-icons li a span {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

ul.team-icons li a {
    color: #333;
    font-size: 18px;
}

.rsvp img {
    background: #eaebec;
    padding: 0.7rem;
}

ul.team-icons.new-inf li a,
ul.team-icons.new-inf li span {
    font-size: 15px;
    color: #666;
}

ul.team-icons.new-inf li {
    color: #666;
    font-size: 15px;
}

.team-gd {
    padding: 3em 2rem;
    background: #f8f9fa;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
    box-shadow: 7px 7px 10px 0 rgba(76, 110, 245, .1);
    border: transparent;
}

.team-gd.second {
    border-left: 1px solid #e4e6e6;
    border-right: 1px solid #e4e6e6;
}

.team-gd img {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
}

/*--//team--*/

/* middle section */

.progress {
    height: 0.5rrem;
    background-color: rgba(162, 163, 167, 0.49);
}

.right-side-img-tem-inside {
    float: left;
    width: 60%;
    background: url(../images/img3.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: 30rem;
}

h4.progress-tittle {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.left-build-main-temps {
    padding: 0 4rem;
    float: right;
    width: 40%;

}


/*--/--*/

.ab-info-grids p {
    text-align: justify;
}

.ab-info h4 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #292a2b;
}

/*----*/

section.subscribe-main-w3pvt {
    background: #f14b44;
}

/*--events--*/

.events-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e272e;
}

.events-info h4 {
    font-size: 0.9rem;
    color: #555;
    position: relative;

}

.events-info h4:after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: -19px;
    width: 2px;
    height: 35px;
    background-color: #222;
    pointer-events: none;
}

ul.events-icons li {
    list-style: none;
    display: inline-block;
    margin-right: 1rem;
}

ul.events-icons li a span {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

ul.events-icons li a {
    color: #333;
    font-size: 18px;
}

.speak {
    margin: 0 auto;
    width: 70%;
}

.events-info {
    margin-top: 6rem;
    padding-left: 2rem;
}

.rsvp img {
    background: #eaebec;
    padding: 0.7rem;
}

ul.events-icons.new-inf li a,
ul.events-icons.new-inf li span {
    font-size: 15px;
    color: #666;
}

ul.events-icons.new-inf li span:hover {
    color: #28a745;
}

ul.events-icons.new-inf li {
    color: #666;
    font-size: 15px;
}

/*---------*/
.service-icon span.fa {
    font-size: 40px;
    color: #da9d40;
}
.service-grid h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
}
.service-grid img{
    width: 90px;
    height: 90px;
    padding: 20px;
    border: 5px solid #da9d40;
    border-radius: 100%;
}
/*-- /testimonials --*/
.testimonials h3{
	color:#fff;
}
#testimonials {
    background: url(../images/banner.jpg) center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    min-height: 28rem;
}

.test-info {
    padding: 2em 2em 0 2rem;
    margin: 0 auto;
    width: 66%;
}

.test-info h3 {
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.test-img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    padding: 4px;
    background: hsla(21, 60%, 94%, 0.33);
    width: 15%;
}

.w3ls-tes.test-soc ul li {
    display: inline-block;
    margin: 0 0.3rem;
}

.w3ls-tes.test-soc ul li a span {
    color: #fff;
    margin: 0 0.5rem;
}

.test-info p {
    color: #fff;
}

.test-info p span {
    font-size: 1.8rem;
    color: #ffffff;
}

ul.list-unstyled.w3ls-icons.clients li {
    margin: 0 0.2rem;
    text-align: center;
}

ul.list-unstyled.w3ls-icons.clients li span {
    color: #ffc80a;
    font-size: 0.8rem;
}

ul.list-unstyled.w3ls-icons.clients li span:hover {
    opacity: 0.8;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;

}

ul.list-info-w3pvt li {
    padding: 0.7em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.layer.tes {
    min-height: 28rem;
    background: rgba(0, 0, 0, 0.82);
}
.w3ls-icons li {
    display: inline-block;
    margin: 0 1rem;
}
/*-- //testimonials --*/
ul.tic-info li {
    color: #566773;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 1px;
}
ul.tic-info li img{
    width:32px;
    height:32px;
}
.hand-crafted {
    background: #fff;
}
/*-single-*/

.contact-single form label {
    font-size: 0.9rem;
    color: #1f1f1f;
    font-weight: 600;
}

.contact-single .form-control {
    margin-bottom: 25px;
    border: 1px solid #e5e7f2;
    background: #f7f9fb;
    padding: 12px 20px;
}

.media-body h5 {
    font-size: 1.1rem;
}

.single-gd form input[type="email"] {
    outline: none;
    padding: 12px 15px;
    font-size: 13px;
    color: #777;
    background: #ffffff;
    letter-spacing: 2px;
    border: none;
    border: 1px solid #ddd;
    margin: 0;
    border-radius: 0;
}

.single-gd form input[type="submit"] {
    background: #4f5665;
    padding: .8em 1rem;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: block;
    outline: none;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.single-gd form input[type="submit"]:hover {
    background: #105ae4;
}

.media-body p {
    color: #777;
    font-size: 0.875rem;
    line-height: 1.9rem;
    margin-bottom: 3rem;
}

.comment h3,
.comment-top h4 {
    color: #222323;
    font-size: 1.3rem;
    text-align: left;
    padding: 0 0 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    margin-bottom: 1rem;

}

.media img {
    margin-right: 15px;
}

.comment-top {
    margin-top: 2rem;
}

.blog-grid-right {
    float: left;
    width: 60%;
    margin-left: 0.5rem;
}

.blog-grid-left {
    float: left;
    width: 36%;
}

.blog-grid-right h5 {
    font-size: 0.95rem;
    line-height: 1.4rem;
    font-weight: 600;
}

.blog-grid-right h5 a {
    color: #444;
    font-size: 0.85rem;
}

.tech-btm img {
    background: #fff;
    padding: 6px;
}

/* //blog responsive code */

@media screen and (max-width: 1680px) {}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width: 1080px) {
    .blog_info p {
        line-height: 1.5;
        letter-spacing: 0.3px;
    }

    .blog_info {
        min-height: 275px;
        padding: 1em 2rem;
    }

    .blog_info.blog-right {
        min-height: 305px;
        width: 100%;
    }
}

@media screen and (max-width: 1050px) {
    .blog_info.blog-right {
        min-height: 297px;
    }

    .blog-x.br-mar {
        margin-top: 1.2rem;
    }

    .blog_info.blog-right {
        min-height: 370px;
    }

    .blog_info.blog-right {
        min-height: 370px;
        width: 100%;
    }

    .blog_info.blog-right.two {
        min-height: 369px;
    }

    .single-gd h4 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .blog_info.blog-right {
        min-height: 372px;
    }

    .blog_info.blog-right.two {
        min-height: 373px;
    }
}

@media screen and (max-width: 991px) {
    .blog_info {
        min-height: auto;
        padding: 2em 2rem;
    }

    .blog_info.blog-right {
        min-height: auto;
    }

    .blog-side.blog-top-right {
        padding-right: 0;
        margin-top: 1rem;
    }

    .blog_info.blog-right.two {
        min-height: auto;
    }

    .single-gd h4 {
        font-size: 1rem;
    }

    .single-left {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 667px) {
    .row {
        margin-right: 5px;
        margin-left: 5px;
    }

    .blog-side.blog-top-right {
        padding-right: 0;
        margin-top: 1rem;
        padding: 0;
    }

    .blog-sp {
        padding: 0;
    }

    .mt-3 {
        margin-top: 1em !important;
        display: block;
    }

    .single-left {
        margin-top: 2rem;
        padding: 0;
    }
}

@media screen and (max-width: 640px) {
    .blog-sp {
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .comment-top input[type="submit"] {
        width: 40%;
    }
}

@media screen and (max-width: 568px) {}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 414px) {
    .comment-top input[type="submit"] {
        width: 45%;
    }
}

@media screen and (max-width: 384px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}

/* //blog responsive code */

/*--//blog--*/

.sign-info {
    padding: 3em 3rem;
    border: 2px solid rgba(182, 201, 236, 0.08);
}

.sign-info h3 {
    font-size: 28px;
    letter-spacing: 1px;
    Color: #fff;
    text-align: center;
}

.sign-info label {
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0;
}

label.anim span,
label.anim a {
    color: #333;
    font-size: 15px;
    display: inline;
    letter-spacing: .5px;
    text-transform: capitalize;
    float: left;
    font-weight: 400;
}

.sign-info a {
    color: #fff;
}

p.para-sign {
    color: #8eace4;
}

.sign-info input[type="text"],
.sign-info input[type="email"],
.sign-info input[type="password"] {
    outline: none;
    font-size: 15px;
    border: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    padding: 15px 20px;
    letter-spacing: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.sign-info input[type="text"],
.sign-info input[type="email"],
.sign-info input[type="password"] {}

.sign-info input[type="submit"] {
    color: #0d58e2;
    background: #fff;
    border: none;
    width: 100%;
    padding: .7em 0rem;
    outline: none;
    font-size: 17px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    margin-top: 2rem;
    box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 12px 60px rgba(0, 0, 0, .2);
    border-radius: 25px;
}

.sign-info input[type="submit"]:hover {
    background: #FC427B;
    color: #fff;
}

.icon1,
.icon2 {
    position: relative;
    margin-top: 1.1rem;
}

.rem-w3 {
    margin: 1.5em 0;
}

/*-- checkbox --*/

.anim {
    position: relative;
    display: block;
    margin: 1.5em 0;
}

label.anim span,
label.anim a {
    color: #fff;
    font-size: 15px;
    display: inline;
    letter-spacing: .5px;
    text-transform: capitalize;
    float: left;
}

label.anim a {
    display: inline-block;
    text-decoration: none;
    float: right;
}

input.checkbox {
    background: #1761ea;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    margin: 3px 8px 0 0 !important;
    float: left;
}

input.checkbox:before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: inherit;
    cursor: pointer;
}

input.checkbox:after {
    content: "";
    transition: .4s ease-in-out;
    position: absolute;
    top: 2px;
    left: 0px;
    z-index: 1;
    width: 1.2rem;
    height: 1.2rem;
    /* margin-top: 4px; */
    border: 1px solid #ffffff;
}

input.checkbox:checked:after {
    transform: rotate(-45deg);
    height: .5rrem;
    border-color: #fff;
    border-top-color: transparent;
    border-right-color: transparent;
}

.anim input.checkbox:checked:after {
    transform: rotate(-45deg);
    height: .5rrem;
    border-color: transparent;
    border-right-color: transparent;
    animation: .4s rippling .4s ease;
    animation-fill-mode: forwards;
}

@keyframes rippling {
    50% {
        border-left-color: #d24747;
    }

    100% {
        border-bottom-color: #fff;
        border-left-color: #fff;
    }
}

/*-- //checkbox --*/

/*-- contact--*/

.address.address-mdl {
    margin: 2em 0;
}

.address h5 {
    font-size: 1rem;
    color: #1e272e;
    letter-spacing: 1px;
}

.address p {
    margin-top: 1rem;
    letter-spacing: 1px;
}

.address p span {
    color: #da9d40;
    width: 30px;
    font-size: 17px;
}

.address p a {
    color: #525252;
}

.address p a:hover {
    color: #4c6ef5;
}

.contact-main-info input[type="text"],
.contact-main-info input[type="email"] {
    width: 100%;
    color: #999;
    background: none;
    outline: none;
    font-size: 14px;
    padding: 1rem;
    letter-spacing: 1px;
    border: solid 1px #ddd;
    -webkit-appearance: none;
    display: inline-block;
}

input.email {
    margin: 1em 0;
}

.contact-main-info textarea {
    resize: none;
    width: 100%;
    background: none;
    color: #999;
    font-size: 14px;
    padding: 1rem;
    outline: none;
    letter-spacing: 1px;
    border: solid 1px #ddd;
    min-height: 10rem;
    -webkit-appearance: none;
    margin-top: 1rem;
}

.contact-main-info .btn.submit {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 14px 30px;
    border: transparent;
    text-transform: uppercase;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    background: #1e272e;
    font-weight: 600;
    cursor: pointer;
}

.contact-main-info .btn.submit:hover {
    opacity: 0.9;
}

.agileits-w3layouts-map iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border: 4px solid #eee;
}

.contact {
    padding: 5em 0;
}

.map iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border: 4px solid #eee;
}

/*-- contact page --*/

.newsletter-info {
    background-color: #fff;
    box-shadow: 0 20px 100px -20px rgba(0, 0, 0, .3);
    border-radius: 6px;
}

.newsletter-info input[type="email"] {
    padding: 1.2em 1.5rem;
    font-size: 16px;
    color: #000;
    outline: none;
    letter-spacing: 2px;
    border: none;
    border: 1px solid #dad8d8;
    flex-basis: 70%;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

.newsletter-info button.btn.submit {
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
    padding: 14px 0;
    border: transparent;
    flex-basis: 30%;
    text-transform: uppercase;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    background: #1e272e;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
}

.newsletter-info button.btn.submit:hover {
    opacity: 0.8;
}

/*--about--*/

.banner-content.inner {
    background: url(../images/banner.jpg)no-repeat 0px 0px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;
    min-height: 13rem;
}

li.breadcrumb-item {
    font-size: 0.9rem;
    letter-spacing: 1px;
	font-weight:700;
}

li.breadcrumb-item a {
    color:#da9d40;
}

.breadcrumb-item.active {
    color: #888;
}

ol.breadcrumb {
    background: none;
    margin: 0;
    padding: 1em 2rem;
    background: #f2f2f3;
}

/*--//about--*/

/*-- /gallery --*/

section#gallery {
    position: relative;
}

.gallery-wrap {
    margin: 0 auto;
}

.gal-img {
    padding: 10px;
}

.gal-img img {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    margin-bottom: 1.1rem;
    width:100%;
}

.gal-img:hover.gal-img img {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
}

.gal-img a span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    color: #1e272e;
    text-shadow: 0 0 0.5px rgba(58, 57, 57, 0.25);
    background: #ffffff;
    display: block;
    padding: 1rem;
    margin-bottom: 15px;
}


/*-- 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 1rem;
}

.popup p {
    font-size: 15px;
    color: #666;
    letter-spacing: .5px;
    line-height: 30px;
}

.popup h2 {
    margin-top: 0;
    color: #fff;

}

.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 --*/

/*-- //gallery --*/

/*--footer--*/

.footer_1its {
    background: #1e272e;
}

.footer_1its h3,
.footer_1its h2 {
    font-size: 1.5rem;
    color: #eee;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-text p,
.contact-info p {
    color: #727377;
    font-size: 15px;
    line-height: 1.8rem;
    letter-spacing: 1px;
}

.phone {
    margin-top: 20px;
}

.contact-info h4 {
    font-style: normal;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.71;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #fff;
}

.copyright {
    border-top: 1px solid #808080;
    margin-left: 15px;
}

.copyright p {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.copyright p a {
    color: #ea1d5d;
    text-decoration: underline;
}

.copyright p a:hover {
    color: #fff;
}

.footer p,
.footer a {
    color: #6e7275;
    margin: 8px 0;
}

.footer a:hover {
    color: #fff;
}

.footer-grid:nth-child(2) {
    border-left: 1px solid #1b1b1b;
    border-right: 1px solid #1b1b1b;
}

.footer ul li.hd {
    color: #34bf49;
}

.newsletter .email {
    background-color: #F4F4F4;
    border: none;
}

.flickr-grid {
    float: left;
    width: 32%;
    margin: 0 0.1em .2rem;
}

.flickr-grid a img {
    width: 100%;
    padding: 0.3rem;
    border: 1px solid #333333;
}

.footer-text input[type="email"] {
    outline: none;
    padding: 12px 15px;
    color: #fff;
    font-size: 13px;
    width: 85%;
    border: none;
    background: none;
    letter-spacing: 1px;
}

.newsletter {
    position: relative;
    margin-top: 2rem;
}

button.btn1 {
    color: #808080;
    border: none;
    padding: 10px 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    background: none;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    float: right;
    width: 15%;
}

.footer-grid_section_1its form {
    border: 1px solid #808080;
    width: 100%;
    margin-top: 20px;
}

ul.social_section_1info li {
    display: inline-block;
}

ul.social_section_1info {
    margin-top: 20px;
}

ul.social_section_1info a {
    color: #717580;
    margin-right: 10px;
    font-size: 13.5px;
    margin-right: 2px;
    width: 35px;
    height: 35px;
    background: #121215;
    padding: 9px 20px;
    text-align: center;
    line-height: 35px;
    letter-spacing: 1px;
    border-radius: 4px;
}

ul.social_section_1info a:hover {
    color: #fff;
}

.phone p a {
    color: #808080;
}

.phone p a:hover {
    color: #fff;
}

ul.links li {
    list-style-type: none;
    margin: 5px 0;
}

ul.links li a {
    color: #6e7275;
    font-size: 14px;
    letter-spacing: 1px;
}

ul.links li a:hover {
    color: #fff;
}

.cpy-right {
    background: #1c252b;
}

.cpy-right p,
.cpy-right a {
    letter-spacing: 1px;
    color: #999;
    line-height: 1rem;
    margin-top: 1rem;
}

.cpy-right a:hover {
    color: #eee;
}

.footer-title-w3ls a {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 100;
    color: #eee;
}

.footer-title-w3ls a span {
    background: #f7f7f7;
    color: #17181b;
    padding: 1px 11px;
    font-weight: 800;
}

.footer-grid_section {
    width: 60%;
    margin: auto;
}

li.facebook a {
    color: #fff;
    background: #3b5998;
}

li.twitter a {
    color: #fff;
    background: #1da1f2;
}

li.google a {
    color: #fff;
    background: #dd4b39;
}

li.linkedin a {
    color: #fff;
    background: #0077b5;
}

ul.social_section_1info a:hover {
    opacity: 0.8;
}

/*--//footer--*/

/*-- to-top --*/
a.move-top{
    display:block;
    margin:0 auto;
    color: #fff;
    width: 36px;
    height: 36px;
    border: transparent;
    line-height: 2rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    background: #626c733b url('../../images/web/arrow_top.png') center center / contain no-repeat;
}

/*-- //to-top --*/

@media(max-width:1600px) {
    h3.tittle {
        font-size: 2.7rem;
    }

    .bottom-gd.fea h3 {
        font-size: 1.1rem;
    }
}

@media(max-width:1366px) {
    .banner-content {
        background: url(../images/banner.jpg)no-repeat center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        -ms-background-size: cover;
        background-size: cover;
        position: relative;
        min-height: 45rem;
    }
}

@media(max-width:1280px) {
    h3.tittle {
        font-size: 2.5rem;
    }

    .fea {
        margin-bottom: 1.5em !important;
        padding: 2em 0.5rem;
    }

    .right-side-img-tem-inside {
        min-height: 40rem;
    }

    .fea span {
        font-size: 2rem;
    }
}

@media(max-width:1080px) {
    .banner-info-w3pvt {
        padding: 13em 0 0em 3rem;
        width: 45%;
    }

    .banner-content {
        min-height: 36rem;
    }

    #brand {
        padding-left: 40px;
        float: left;
        width: 27%;
    }

    .right-side-img-tem-inside {
        float: left;
        width: 60%;
        min-height: 48rem;
    }

    h3.tittle {
        font-size: 2.3rem;
    }

    .banner-info-w3pvt h3 {
        font-size: 2.8rem;
    }

    .banner-info-w3pvt {
        padding: 11em 0 0em 3rem;
        width: 45%;
    }

    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top,
    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top.top-nav-collapse {

        padding: 1em 4rem;
    }

    .footer-grid_section {
        width: 80%;
    }

}

@media(max-width:1024px) {
    .banner-info-w3pvt {
        padding: 11em 0 0em 3rem;
        width: 45%;
    }

    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top,
    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top.top-nav-collapse {
        padding: 1em 3rem;
    }
}

@media(max-width:992px) {
    ul.navbar-nav {
        margin-top: 10px;
        background: #101315;
    }

    .footer-grid_section {
        width: 100%;
    }

    .apply-info {
        margin-top: 1rem;
    }

    .apply-info {
        margin: 1em 0 2em 0;
    }

    h4.progress-tittle {
        font-size: 0.9rem;
        margin: 1.4em 0;
    }

    .left-build-main-temps {
        padding: 0 2rem;
    }

    li.nav-item {
        margin-right: 0;
    }

    .navbar-toggler {
        padding: 0.3rem 0.5rrem;
        font-size: 1.25rrem;
        line-height: 1;
        background-color: #fff;
        border: 1px solid transparent;
        border-radius: 0.2rrem;
    }

    .footer_1its h3,
    .footer_1its h2 {
        font-size: 1.4rem;
    }
	.events-info {
    margin-top: 1rem;
}
}

/*** Responsive Menu For Smaller Device ***/

@media screen and (max-width:900px) {
    .banner-info-w3pvt {
        padding: 10em 0 0em 3rem;
        width: 60%;
    }

    .dropdown-menu {
        width: 100%;
    }

    .media-body h5 {
        font-size: 1rem;
    }

    .right-side-img-tem-inside {
        min-height: 40rem;
        width: 100%;
    }

    .left-build-main-temps {
        padding: 2em 2rem;
        width: 100%;
    }

    .banner-content {
        min-height: 34rem;
    }

    .events-info {
        margin-top: 1rem;
        padding-left: 1rem;
    }

    .login h5 {
        font-size: 1.4rem;
    }

    p.sub-test {
        font-size: 15px;
    }
}

@media(max-width:800px) {
    .right-side-img-tem-inside {
        min-height: 50rem;
    }

    .banner-info-w3pvt h3 {
        font-size: 2.5rem;
    }

    h3.tittle {
        font-size: 2.3rem;
    }

    .speak {
        margin: 0 auto;
        width: 90%;
    }

    .footer_1its h3,
    .footer_1its h2 {
        font-size: 1.2rem;
    }
}

@media(max-width:736px) {
    .banner-info-w3pvt {
        padding: 7em 0 0em 2rem;
        width: 58%;
    }

    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top,
    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top.top-nav-collapse {
        padding: 1em 2rem;
    }

    .banner-content {
        min-height: 30rem;
    }

    .team-gd.second {
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
        margin: 1em 0;
    }

    .ban-buttons a {
        padding: 8px 21px;
    }

    .events-info {
        margin: 1em 0 2em 0;
        padding-left: 1rem;
    }

    .contact-left {
        margin-top: 2rem;
    }

    ul.social_section_1info li {
        margin-bottom: 1em !important;
    }

    .banner-content.inner {
        min-height: 22rem;
    }
	.test-info {
    padding: 2em 0em 0 0rem;
    width: 100%;
}
}

@media(max-width:668px) {
    .banner-content {
        min-height: 27rem;
    }

    .media {
        display: block;
    }

    #logo a {
        float: left;
        font-size: .8rem;
    }
.banner-info-w3pvt {
    width: 80%;
}
}

@media(max-width:640px) {
    .banner-content {
        min-height: 26rem;
    }

    .testi_grid h5 {
        font-size: 0.85rem;
    }

    .newsletter-info input[type="email"] {
        padding: 1em 1rem;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .newsletter-info input[type="submit"] {
        font-size: 14px;
    }

    .footer-title-w3ls a {
        font-size: 2.5rem;
    }

    .cpy-right p,
    .cpy-right a {
        line-height: 1.7rem;
        margin-top: 1rem;
    }

    .sub-tittle {
        font-size: 0.5rem;
    }

    .feature-grids h3,
    .bottom-gd.fea h3,
    .team-info h3 {
        font-size: 1rem;
    }
}

@media(max-width:600px) {
    .banner-info-w3pvt h3 {
        font-size: 2.3rem;
    }

    .banner-info-w3pvt {
        padding: 7em 0 0em 2rem;
        width: 91%;
    }

    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top,
    nav.navbar.fixed-top.navbar-expand-lg.navbar-light.navbar-fixed-top.top-nav-collapse {
        padding: 1em 1.6rem;
    }

    .banner-content {
        min-height: 25rem;
    }

    .count-title {
        font-size: 2.5rem;
    }

    .bottom-gd.fea h3 {
        font-size: 1rem;
    }
}

@media(max-width:568px) {
	.banner-content.inner {
    min-height: 13rem;
}
}

@media(max-width:480px) {

    h3.tittle {
        font-size: 2rem;
    }

    .banner-info-w3pvt h3 {
        font-size: 2rem;
    }

    h3.tittle,
    .contact-single h3 {
        font-size: 1.8rem;
    }
}

@media(max-width:440px) {
    .banner-content {
        min-height: 28rem;
    }
}

@media(max-width:414px) {}

@media(max-width:384px) {
    h3.tittle {
        font-size: 1.5rem;
    }
}

@media(max-width:375px) {

    h3.tittle,
    .contact-single h3 {
        font-size: 1.4rem;
    }

    .banner-info-w3pvt h3 {
        font-size: 1.5rem;
    }

    h3.tittle {
        font-size: 1.4rem;
    }
}

@media(max-width:320px) {
    .banner-info-w3pvt h3 {
        font-size: 1.4rem;
    }
	#logo a {
    float: left;
    font-size: .75rem;
	letter-spacing:0px;
}
.banner-info-w3pvt p {
    letter-spacing: 0px;
}
}

/*--//responsive--*/


#allmap{
    margin: 0 auto;
    width: 100%;
    height: 500px;
}