*{
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
}
body{
	margin: 0px;
	padding: 0px;
	color: #343a40;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}
a{
    color: #343a40;
    text-decoration: none;
    outline: none;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
a:hover{
    color: #1d70c9;
    text-decoration: none;
    outline: none;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
i{
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
p{
    color: #888888;
    line-height: 26px;
    font-family: 'Roboto', sans-serif;
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6{
    color: #343a40;
    font-family: 'Poppins', sans-serif;
}

/* btn */
.theme-btn{
    position: relative;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 15px 15px;
	font-size: 16px;
    color: #343a40;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.theme-btn:before,
.hover-effect:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.theme-btn:hover:before,
.hover-effect:hover:before,
.hover-effect-active:before{
    height: 100%;
    border-radius: 5px;
}
.theme-btn span{
    position: relative;
    z-index: 9;
}
.theme-btn i{
    color: #fff;
}
button:hover,
.theme-btn:hover,
button:focus,
.theme-btn:focus,
button:active,
.theme-btn:active{
    outline: 0;
    box-shadow: 0 0 0 0;
}
.theme-btn-none,
.theme-btn-none:hover,
.theme-btn-none:active,
.theme-btn-none:focus{
    outline: 0px;
    border: 0px;
    border-radius: 0px 5px 5px 0px;
    background-color: transparent;
}
.theme-btn-sm{
    padding: 5px 10px;
}
.radio-d-none{
    display: none;
}

.theme-btn-default{
    color: #eee;
    background-color: #1d70c9;
}
.theme-btn-default.active,
.theme-btn-default:before,
.theme-btn-default:hover{
    color: #fff;
    background-color: #343a40;
}

.theme-btn-black{
    color: #ddd;
    background-color: #343a40;
}
.theme-btn-black.active,
.theme-btn-black:before,
.theme-btn-black:hover{
    color: #fff;
    background-color: #4a5055;
}

.theme-btn-light{
    color: #1d70c9;
    background-color: #f5f5f5;
}
.theme-btn-light.active,
.theme-btn-light:before,
.theme-btn-light:hover{
    background-color: #eee;
}

.theme-btn-white{
    color: #1d70c9;
    background-color: #fff;
}
.theme-btn-white.active,
.theme-btn-white:before,
.theme-btn-white:hover{
    color: #fff;
    background-color: #1d70c9;
}

/* bg */
.theme-bg-default,
.theme-bg-default-before:before{
	background-color: #1d70c9;
}

.theme-bg-default-light,
.theme-bg-default-light-before:before{
    background-color: #eef7ff;
}

.theme-bg-black,
.theme-bg-black-before:before{
	background-color: #343a40;
}

.theme-bg-light,
.theme-bg-light-before:before{
	background-color: #f5f5f5;
}

.theme-bg-white,
.theme-bg-white-before:before{
    background-color: #fff;
}

/* text */
.theme-text-default{
    color: #1d70c9;
}

.theme-text-black{
    color: #343a40;
}

.theme-text-light{
    color: #f5f5f5;
}

/* card */
.card{
    border-color: #eee;
    border-radius: 5px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.card-body{
    padding: 30px;
}
.hover-effect .card-body{
    position: relative;
    z-index: 9;
}

/* display */
.theme-d-inline-block{
    display: inline-block;
}
.theme-d-block{
    display: block;
}
.theme-d-flex{
    display: flex;
}

/* modal */
.modal-content,
.modal-body{
    border-radius: 5px;
}
.modal-backdrop{
    background-color: #000;
}
.modal-backdrop.show{
    opacity: .95;
}


/* form-control */
.form-control{
    height: auto;
    padding: 15px 30px;
    color: #343a40;
    font-weight: 500;
    outline: 0;
    border: 0;
    box-shadow: 0 0 0 0;
    border-bottom: 2px solid #ccc;
    border-radius: 5px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.form-control:focus,
.form-control:active,
.form-control:hover{
    outline: 0;
    border: 0;
    box-shadow: 0 0 0 0;
    border-bottom: 2px solid #1d70c9;
}
.form-control::placeholder{
    color: #ccc;
}
.col-form{
    padding: 5px;
}
.col-form [class*="col-"]{
    padding-right: 10px;
    padding-left: 10px;
}
.col-form .form-group{
    margin-bottom: 20px;
}

/* heading */
.head-after{
    position: relative;
    width: 75px;
    height: 2px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

/* section */
.section-header{
    padding-bottom: 20px;
    text-align: left;
}
.section-heading{
    margin-bottom: 15px;
}
.section-footer{
    margin: 0px auto;
    padding-top: 10px;
    text-align: center;
}

/* margin */
.mb-30px{
    margin-bottom: 30px;
}

/* padding */
.pb-30px{
    padding-bottom: 30px;
}
.p-30px{
    padding: 30px;
}

/* blockquote */
blockquote{
    position: relative;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}
blockquote:after{
    content: "\F027E";
    position: absolute;
    font-family: "Material Design Icons";
    bottom: -80px;
    right: -60px;
    transform: translate(-50%, -50%);
    font-size: 100px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: inline-block;
    text-align: center;
    opacity: .1;
}
/**=========================
    END ELEMENTS
=========================**/

/**=========================
    START LOADER
=========================**/
.loader-fix{
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    text-align: center;
}
.loader-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}
.loader-center i{
    font-size: 100px;
    color: #fff;
}
/**=========================
    END LOADER
=========================**/

/**=========================
    START TOP HEADER
=========================**/
#top-header{
    padding: 10px 0px;
}
#top-header .row{
    -ms-flex-align: center;
    align-items: center;
}
#top-header .top-header-left{
    text-align: left;
	color:#ffffff;
}
#top-header .top-header-right{
    text-align: right;
	color:#ffffff;
}
/**=========================
    END TOP HEADER
=========================**/

/**=========================
    START HEADER
=========================**/
.logo{
    margin: 0px;
    padding: 0px;
    margin-bottom: 0px;
    display: inline-block;
}
.logo img,
.logo span{
	 font-size: 18px;
    vertical-align: middle;
}
.logo img{
    margin-right: 5px;
}
#header .nav-item{
    margin-right: 5px;
    margin-left: 5px;
}
#header .nav-link{
    padding-top: 35px;
    padding-bottom: 35px;
	font-size: 18px;
	font-weight: 600;
}
#header .nav-item.active .nav-link,
#header .nav-item:hover .nav-link{
    color: #1d70c9;
}
#header .dropdown-menu{
    margin: 0px;
    padding: 0px;
    border: 1px solid #f5f5f5;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    border-radius: 0px 0px 7px 7px;
    min-width: 16rem;
}
#header .dropdown-item{
    padding: 15px 40px;
}
#header .dropdown-item:hover{
    background-color: #eee;
    color: #1d70c9;
}
#header .dropdown-toggle::after{
    font-size: 18px;
    content: "\F0140";
    position: absolute;
    font-family: "Material Design Icons";
    border: 0;
    margin: 0px;
    margin-top: -2px;
    color: #343a40;
    transform: rotate(0deg);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
#header .dropdown:hover .dropdown-toggle::after{
    transform: rotate(180deg);
    color: #1d70c9;
}
#header .dropdown-submenu-toggle::after{
    content: "\F0141";
    right: 20px;
}
#header .header-right-btn{
    text-align: right;
    margin: 20px 0px;
}
#header .header-right-btn .search-btn{
    margin-right: 15px;
    vertical-align: middle;
}
#header .navbar-toggler{
    outline: 0;
    border: 0;
    font-size: 100%;
    color: #fff;
    line-height: 1.5;
    padding: 7px 20px;
    border: 0;
}
#header .navbar-toggler i{
    color: #fff;
}
#header .navbar-toggler[aria-expanded="true"] i:before{
    content: "\F0156";
}
/* multi level dropdowns */
#header .dropdown-submenu{
    position: relative;
}
#header .dropdown-submenu>.dropdown-menu{
    top: 0;
    left: 100%;
}
#header .dropdown:hover>.dropdown-menu{
    display: block;
}
#header .dropdown-submenu:hover>.dropdown-menu{
    display: block;
}
/* header fixed when scrolling */
#header.header-fixed{
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    border-bottom: 1px solid #bbb;
    animation: 1s menuFix;
    -webkit-animation: 1s menuFix;
    -moz-animation: 1s menuFix;
    -o-animation: 1s menuFix;
}
/* header transparent */
#header.header-transparent{
    position: absolute;
    width: 100%;
    z-index: 99;
}
.header-transparent .logo,
#header.header-transparent .nav-link,
#header.header-transparent .dropdown-toggle::after{
    color: #fff;
}
#header.header-transparent .nav-item.active .nav-link,
#header.header-transparent .nav-item:hover .nav-link,
#header.header-transparent .dropdown:hover .dropdown-toggle::after{
    color: #ccc;
}
#header.header-transparent .nav-item .nav-link{
    padding-top: 45px;
    padding-bottom: 45px;
}
#header.header-transparent .header-right-btn{
    margin: 30px 0px;
}
/**=========================
    END HEADER
=========================**/

/**=========================
    START SERVICES
=========================**/
#services{
     padding: 30px 0px 30px;
}
.service-item{
    padding-bottom: 30px;
}
.service-item .card-body{
    padding: 0px;
}
.service-item .card.hover-effect:hover h5,
.service-item .card.hover-effect:hover p{
    color: #eee;
}
.service-item .service-img{
    position: relative;
}
.service-item .service-img img{
    width: 100%;
    padding: 5px;
    border-radius: 5px 5px 0px 0px;
}
.service-item .service-icon{
    position: absolute;
    right: 30px;
    bottom: -17px;
    margin: 0px auto;
    padding: 0px;
    text-align: center;
}
.service-item .card:hover .service-icon i{
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    color: #343a40;
}
.service-item .service-item-content{
    padding: 20px;
	
}
.service-item .service-item-content h5{
    margin-bottom: 15px;
}
.service-item .service-item-content p{
	margin-top: 10px;
    margin-bottom: 30px;
}
/**=========================
    END SERVICES
=========================**/

/**=========================
    START ABOUT US
=========================**/
#about-us{
     padding: 30px 0px 30px;
}
.about-us-item{
    padding-bottom: 30px;
}
.about-us-left{
    position: relative;
}
.about-us-left img{
    width: 100%;
    border-radius: 5px;
}
.about-us-left .about-us-since{
    position: absolute;
    right: -30px;
    bottom: 30px;
    padding: 10px 40px 15px 40px;
    border-radius: 5px;
}
.about-us-left .about-us-since h3{
    color: #eee;
    margin-bottom: 0px;
}
.about-us-left .about-us-since i{
    font-size: 18px;
    vertical-align: text-top;
}
.about-us-right{
    padding-left: 30px;
}
.about-us-right p{
    font-weight: 500;
	margin-top: 20px;
    margin-bottom: 30px;
}
.about-us-right h5{
    margin-bottom: 15px;
}
.about-us-right h1{
    margin-bottom: 15px;
}
.about-us-right h1 span{
    font-weight: 700;
}
.about-card{
    display: block;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.about-card-body{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 5px;
}
.about-card-body i,
.about-card-body h5{
    display: inline-block;
    vertical-align: middle;
}
.about-card-body i{
    margin-right: 10px;
}
.about-card-body h5{
    margin-bottom: 0px;
}
.about-card-body h6{
    margin-bottom: 0px;
}
/**=========================
    END ABOUT US
=========================**/


/* works */
.work-item{
    padding-bottom: 30px;
}
.work-item .card-body{
    padding: 0px;
}
.work-item .card.theme-bg-black h4,
.work-item .card.theme-bg-black p{
    color: #f1f1f1;
}
.work-item .work-img{
    position: relative;
}
.work-item .work-img img{
    width: 100%;
    border-radius: 5px 5px 0px 0px;
}
.work-item .work-icon{
    position: absolute;
    left: 0px;
    bottom: 30px;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.work-item:hover .work-icon{
    opacity: 1;
    left: 30px;
}
.work-item .work-item-content{
    padding: 30px;
}
.work-item:hover .work-item-content{
    box-shadow: 0px 0px 10px 0px #eee;
}
.work-item .work-item-content h4{
    margin-bottom: 15px;
}
.work-item .work-item-content p{
    margin-bottom: 25px;
}
/**=========================
    START NEWS LETTER
=========================**/
#news-letter{
    padding: 30px 0px 0px;
}
#news-letter .row{
    -ms-flex-align: center;
    align-items: center;
}
#news-letter .section-header h4,
#news-letter .section-header h1,
#news-letter .section-header p{
    color: #eee;
}
.news-letter-item{
    padding-bottom: 30px;
}
.footer-contact-info{
    text-align: center;
}
.footer-contact-info ul{
    margin-bottom: 0px;
}
.footer-contact-info ul li{
    list-style: none;
    display: inline-block;
}
.news-letter-item h3{
    margin-bottom: 0px;
}
/**=========================
    START OUR WORKS
=========================**/
#our-works{
     padding: 30px 0px 30px;
}
.shuffle-image-item{
    padding-bottom: 15px;
}
.filter-btn-group{
    padding-bottom: 30px;
    text-align: center;
}
.filter-btn-group label{
    position: relative;
}
.shuffle-image-item img{
    width: 100%;
}
.shuffle-inner-content{
    position: absolute;
    width: 90%;
    left: -30px;
    right: 0px;
    bottom: 40px;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.shuffle-image-item:hover .shuffle-inner-content{
    opacity: 1;
    left: 0px;
}
.shuffle-inner-content .card{
    background-color: rgba(255, 255, 255, 0.85);
}
.shuffle-inner-content p{
    margin-bottom: 0px;
}
.shuffle-inner-content-right{
    margin-left: 20px;
}
.theme-shuffle-result{
    z-index: -1;
}
/**=========================
    END OUR WORKS
=========================**/

/**=========================
    START BLOG
=========================**/
#blog{
     padding: 30px 0px 30px;
}
.blog-item{
    padding-bottom: 10px;
}
.blog-item .card-body{
    padding: 0px;
}
.blog-item .card:hover h5 a{
    color: #1d70c9;
}
.blog-item .blog-icon{
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -15px;
    margin: 0px auto;
    padding: 0px;
    text-align: center;
}
.blog-item .blog-item-content{
    padding: 10px;
}
.blog-item .blog-item-content h5{
    margin-bottom: 10px;
    line-height: 32px;
}


.tags-card .card-body{
    padding-bottom: 25px;
}
.tags-links{
    margin-bottom: 0px;
}
.tags-links li{
    list-style: none;
    display: inline-block;
    margin-bottom: 5px;
}
.tags-links .theme-btn-sm{
    padding: 2px 10px;
}
/**=========================
    END BLOG
=========================**/

/**=========================
    START FOOTER
=========================**/
#footer{
     padding: 30px 0px 30px;
}
.footer-item h4{
	color:#ffffff;
    margin-bottom: 30px;
}
.footer-item ul.footer-links{
	color:#ffffff;
	font-size:18px;
    margin-bottom: 0px;
}
.footer-item ul.footer-links li{
    list-style: none;
    display: block;
    margin-bottom: 30px;
}
.footer-item ul.footer-links li:last-child{
    margin-bottom: 0px;
}
/**=========================
    END FOOTER
=========================**/

/**=========================
    START CONTACT INFO
=========================**/
#contact-info{
    padding: 30px 0px 0px;
}
#contact-info .row{
    -ms-flex-align: center;
    align-items: center;
}
#contact-info.contact-info-page{
    padding: 50px 0px 70px;
}
#contact-info.theme-bg-default .section-header h4,
#contact-info.theme-bg-default .section-header h1,
#contact-info.theme-bg-default .section-header p{
    color: #fff;
}
.contact-info-item{
    padding-bottom: 20px;
    text-align: center;
}
.contact-info-item i{
    font-size: 100%;
    margin-right: 10px;
}
.contact-info-item ul{
    margin-bottom: 0px;
}
.contact-info-item ul li{
    list-style: none;
    display: block;
    margin-bottom: 10px;
}
.contact-info-item ul li:last-child{
    margin-bottom: 0px;
}
.contact-info-item .theme-bg-default h4,
.contact-info-item .theme-bg-default ul li{
    color: #fff;
}
.map iframe{
    width: 100%;
    height: 400px;
}

/**=========================
    START SUB FOOTER
=========================**/
#sub-footer{
	font-size: 16px;
    padding: 15px 0px;
    border-top: 1px solid #666;
}
.sub-footer-left{
    text-align: left;
}
.sub-footer-left p{
    color: #eee;
    margin-bottom: 0px;
}
.sub-footer-right{
    text-align: right;
}
.sub-footer-right ul{
    margin-bottom: 0px;
}
.sub-footer-right ul li{
    list-style: none;
    display: inline-block;
    color: #fff;
}
.sub-footer-right ul li:after{
    content: "/";
    position: relative;
    margin: 0px 7px 0px 12px;
}
.sub-footer-right ul li:last-child:after{
    display: none;
}
.sub-footer-right ul li a{
    color: #eee;
}
.sub-footer-right ul li a:hover{
    color: #ccc;
}
/**=========================
    END SUB FOOTER
=========================**/