/*@import url('https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,400,500,600,700,800,900');*/
 
body {
  padding: 0;
  /*font-family: 'Work Sans', sans-serif;*/
  font-size: 15px;
  color: #323232;
}

@media (min-width: 992px) {
	body {
		padding-top: 0;
	}
	li.dropdown:hover > .dropdown-menu {
	   display: block;
	}
}
a.btn-primary{
	background-color: #5dc6ce;
	border-color: #5dc6ce;
}
a.btn-primary:hover{
	background-color: #323232;
	border-color: #323232; 
}
button.btn-primary{
    background-color: #5dc6ce;
    border-color: #5dc6ce; 
}
button.btn-primary:hover{
	background-color: #323232;
	border-color: #323232;
}

a.btn-secondary{
	background-color: #f36c21;
	border-color: #f36c21;
}
a.btn-secondary:hover{
	background-color: #323232;
	border-color: #323232;
}
button.btn-secondary{
	background-color: #f36c21;
	border-color: #f36c21;
}
button.btn-secondary:hover{
	background-color: #323232;
	border-color: #323232;
}
.mouse-pointer{
	background-color: #323232;
	position: absolute;
	color: white;
	width: 25px;
	height: 25px;
	border: 3px solid #f36c21;
	border-radius: 25px 50px 50px 50px/25px 50px 50px 50px;
	z-index: 999999;
	pointer-events: none;
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-o-transition: all 0.1s;
	-ms-transition: all 0.1s;
	transition: all 0.1s;
}

.top-bar{
	background: #312e2d;
	padding: 4px 0;
}
.social-media ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.social-media ul li{
	display: inline-block;
	padding: 0 5px;
}
.social-media ul li a{
	font-size: 16px;
	color: #ffffff;
}
.social-media ul li a:hover{
	color: #323232;
}

.contact-details ul{
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
}
.contact-details ul li{
	display: inline-block;
	padding: 0 5px;
	color: #ffffff;
}
.wrapper-main{
	position: relative;
	overflow: hidden;
}

.top-nav{
	background-color: #312e2d !important;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link{
	padding: 5px 12px;
	color: #fff; 
	font-size: 15px; 
	font-weight: 600;
	text-transform: uppercase;
	line-height: normal;
	/* position: relative; */
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link i{
	font-size: 17px;
	float: left;
	margin-right: 5px;
}
.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu i {
    margin-right: 5px;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover{
    color: #fff !important;
    border-radius: 5px;
    background: #f26522;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link.active{
	color: #f37423;
}
/*.navbar-expand-lg.top-nav .navbar-nav .nav-link.active:before{
	content: "";
	position: absolute;
	width: 40px;
	background: #f37423;
	height: 5px;
	top: 0px;
	left: 0px;
	border-radius: 6px;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link.active:after{
	content: "";
	position: absolute;
	width: 40px;
	background: #f37423;
	height: 5px;
	bottom: 0px;
	right: 0px;
	border-radius: 6px;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:before{
	content: "";
	position: absolute;
	width: 0px;
	background: #f36c21;
	height: 5px;
	top: 0px;
	left: 0px;
	border-radius: 6px;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:after{
	content: "";
	position: absolute;
	width: 0px;
	background: #f36c21;
	height: 5px;
	bottom: 0px;
	right: 0px;
	border-radius: 6px;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover:before{
	width: 40px;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover:after{
	width: 40px;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}*/
.fixed-menu {
  position: fixed;
  left: 0;
  top: 0;
  min-height: auto;
  width: 100%;
  padding: 0;
  background: #ffffff;
  -webkit-box-shadow: 0 13px 15px -12px rgba(35,35,35,0.15);
  box-shadow: 0 13px 15px -12px rgba(35,35,35,0.15);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.dropdown-toggle::after{
	display: none;
}

.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu{
	margin: 0;
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;
	padding: 20px;
	left: 0;
}
.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu .dropdown-item{
	font-size: 14px;
	padding: 0;
	margin-bottom: 15px;
	font-weight: 300;
}
.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu .dropdown-item:last-child{
	padding: 0;
	margin: 0;
}
.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu .dropdown-item:hover{
	background: none;
	color: #f36c21;
}
.top-nav .navbar-toggler{
	color: #fff;
	border-color: #fff;
}
.top-nav .navbar-toggler:hover{
	color: #f37525;
	border-color: #f36c21;
}
.navbar {
	background: linear-gradient(45deg, #5dc6ce 25%, #f492a3 70%);
	-o-transition: all .6s; -moz-transition: all .6s; -webkit-transition: all .6s; -ms-transition: all .6s; transition: all .6s;
	backface-visibility: hidden;
	padding: 0;
}
.navbar.navbar-no-bg { background: #444; background: rgba(0, 0, 0, 0.2); }
.navbar-dark .navbar-nav { font-size: 15px; color: #fff; text-transform: uppercase; }
.navbar-dark .navbar-nav .nav-link { color: #fff; color: rgba(255, 255, 255, 0.8); border: 0; }
.navbar-dark .navbar-nav .nav-link:hover { color: #fff; }
.navbar-dark .navbar-nav .nav-link:focus { color: #fff; outline: 0; }
.navbar-expand-md .navbar-nav .nav-link { padding: 1rem; }
.navbar-search-form.disabled,
.navbar-menu-items.disabled { display: none; }
.navbar-search-form input[type="search"] {
	width: 400px;
    margin: 0;
    background: none;
    border: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 34px;
    color: #fff;
    border-radius: 0;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}
.navbar-search-form input[type="search"]:focus {
	outline: 0; background-color: #f36c218c; border: 0;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}
.navbar-search-form input[type="search"]::-moz-placeholder { color: #fff; color: rgba(255, 255, 255, 0.8); }
.navbar-search-form input[type="search"]:-ms-input-placeholder { color: #fff; color: rgba(255, 255, 255, 0.8); }
.navbar-search-form input[type="search"]::-webkit-input-placeholder { color: #fff; color: rgba(255, 255, 255, 0.8); }
.section-join-event {
    padding: 10px 0;
}
.box-info{
	margin: 0 auto;
}
.section-join-event .box-info p{
	font-size: 18px;
    padding: 10px 0;
    margin-bottom: 0;
    font-weight: bold;
}
.img-responsive{
	width: 100%;
}
.row-event-left{
	margin-right: 5px;
}
.row-event-right{
	margin-left: 5px;
}
.row-event-left, .row-event-right{
	float: left;
	width: 49%; 
	padding: 0 5px 0 20px !important;
}
.read-more-all {
    clear: both;
    margin: 10px auto 0 auto;
    width: 100%;
    text-align: center;
}
.about-main .read-more-all a, .read-more-all a {
	color: #fff !important;
    padding: 8px 15px 8px 15px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    text-decoration: none;
    background-color: #f46d22;
}
.about-main .read-more-all a:hover {
    background-color: #509142;
    color: #fff !important;
}
.col-event-left img{
	float: left;
	padding-left: 3px;
}
.border-bottom {
    margin: 10px 0 10px 0;
}
.border-bottom:last-of-type{
	border-bottom: none !important;
}
.about-main p.txt-date {
    font-size: 22px;
}
.about-main .size-small {
    font-size: 14px;
}
.col-date-year{
	background-image: radial-gradient(#dcddde5e 100%, rgba(0, 0, 0, 0) 53%);
    padding: 0;
}
.col-event-left {
    max-width: 40%;
    flex: 0 0 40%;
    padding: 0;
}
.col-event-center {
    flex: 0 0 9.666667%;
    max-width: 9.666667%;
    padding: 0 0 0 3px;
}
.col-event-right {
	flex: 0 0 49.333333%;
    max-width: 49.333333%;
    padding: 0 5px 0 5px !important;
}
.col-event-right i{
	color: #f36c21; 
}
.h2{
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.about-main .h2, .h2{
	font-size: 25px;
	margin-bottom:0;
}
.col-event-right a{
    text-decoration: none;
    cursor: pointer;
    color: #000;
    text-transform: capitalize;   
}
.col-event-right a:hover {
    color: #f27025;
    text-decoration: none; 
}
.ipcoming-events-all{
    background: url(https://event.huongnghiepaau.com/wp-content/uploads/2020/06/bg-event-02.jpg) no-repeat center top;
    background-size: cover;
    position: relative; 
}
.slider-main .carousel ol li{
	height: 15px;
	border-radius: 6px;
	background: #323232;
}
.slider-main .carousel .carousel-indicators .active{
	background: #ea761a; 
}
.slider-main .carousel .carousel-item .carousel-caption h3{
	font-size: 75px;
	font-weight: 700;
}
.slider-main .carousel .carousel-item .carousel-caption{
	padding: 15px 15px 15px 15px;  
	text-align: left; 
}
.slider-main .carousel .carousel-item .carousel-caption p{
	font-size: 19px; 
	margin-bottom: 0;
}
.slider-main .carousel .carousel-inner .carousel-item:before{
	content: "";
	position: absolute;
	background: rgba(0, 0, 0, 0);
	/* background: rgba(0,0,0,0.5); */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.carousel-item{
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.carousel-item-slide{
	height: 88vh;
	/* min-height: 300px;  */
}
.portfolio-item {
  margin-bottom: 30px;
}
.services-bar{
	padding: 20px 0 20px 0;
    /* background: url(../images/bg/bg-event-03.jpg) no-repeat center top;
    background-size: cover; */
    position: relative;
}
.services-bar .backstretch img {
    top: 0 !important;
}
.services-bar:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.68);
    opacity: 1; 
}
.services-bar h1{
	font-weight: 600;
	font-size: 45px;
	text-align: center;
	margin-bottom: 0;
}
.services-bar .card{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;
}
.services-bar .card h4.card-header{
	background-color: transparent;
	color: #f36c21;
	font-size: 18px;
	font-weight: 500;
	border: none;
	padding: 0;
	margin-bottom: 15px;
}
.services-bar .card .card-footer{
	background-color: #323232;
}
.title-event-img{
	position: relative;
	margin-bottom: 10px;
}
.card-header-one {
    font-size: 20px;
    margin-bottom: 0;
}
.card-header-two {
    font-size: 26px;
    color: #ea761a;
}
.card-header-one, .card-header-two{
	font-weight: bold;
}
.services-bar .card-body{
	padding: 10px;
}
.services-bar .card {
    background-color: #f4f3f945;
}
.value-experience{
	padding: 20px 0 20px 0;
	/* background-image: url(../images/bg/bg-event-04.jpg);
    background-repeat: no-repeat; */
}
.row-experience-left img, .row-experience-right img{
    float: left;
    margin-right: 20px;
    padding-top: 5px;
}
.row-experience-right {
	min-height: 165px;  
    margin-bottom: 35px;
    position: relative;
}
.row-experience-right img{
	width: 140px;
    height: auto;
    position: absolute;
    background: #eea000;
    padding: 8px;
    border-radius: 50% !important;
    z-index: 12;
    top: -2px;
    left: 0;
}
.border-experience {
    border: 3px solid #ee9800;
    border-radius: 5px 40px 5px 0;
    position: absolute;
    left: 65px;
    padding-left: 80px;
}
.line-star {
    background-image: url(../images/bg/link-star.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: 100%;
    height: 22px;
    width: 130px;
    left: 50%;
    top: -11px;
    z-index: 12;
    background-color: #fff;
}
.row-experience-right img{
	border-radius: 50%;
	width: 135px;
	height: auto;
}
.title-icon {
    font-size: 26px;
    color: #ea761a;
    font-weight: bold;
    margin-bottom: 0;
}
.row-experience-left img {
    width: 100px;
    height: auto; 
}
.title-hv-experience {
    margin: 0 0 3px 0;
    padding-top: 8px;
    font-size: 20px;
    font-weight: bold;
}
.title-hv02-experience {
    font-weight: 400;
    margin-bottom: 2px;  
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea761a' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea761a' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-control-next, .carousel-control-prev{
	width: 7%;
	opacity: .8;
	z-index: 10; 
}
.carousel-control-next-icon, .carousel-control-prev-icon{
	width: 40px;
    height: 40px;
}
.archive-more{
	margin-bottom:0;
}
.singe-content-left {
    background: #fff;
    /*box-shadow: 3px 5px 15px rgba(0,0,0, .15);*/
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
}
.slide-single {
    margin-top: 0;
}
.about-main{
	padding: 30px 0;
}
.about-main h2{
	font-size: 38px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
}
.about-main h2:after{
	content: "";
	position: absolute;
	border-bottom: 2px dotted #000000;
	bottom: 0;
	height: 2px;
	width: 100px;
	left: 0;
}
.about-main h5{
	font-size: 18px;
}
/*.about-main p{
	font-size: 15px;
	text-transform: capitalize;
}*/
.about-main ul{
	padding-left: 20px;
}
.about-main ul li{
	position: relative;
	font-weight: 300;
	list-style: none;
	line-height: 29px;
	font-size: 15px;
}
.about-main ul li:before{
	content: "\f0da";
    font-family: 'Font Awesome 5 Free', sans-serif;
	font-weight: 900;	
	position: absolute;
	left: -15px;
	top: 0;
	color: #ea761a;
}
.card-img img{
	width: 100%;
}
.portfolio-main{
	padding: 30px 0;
}
.portfolio-main h2{
	font-weight: 600;
	font-size: 45px;
	margin-bottom: 20px;
	text-align: center;
}
.project-menu {
    margin-bottom: 30px;
}
.portfolio-main .card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
}
.portfolio-main .card .card-body .card-title{
	margin-bottom: 0;
}
.portfolio-main .card .card-body .card-title a{
	font-size: 20px;
	font-weight: 400;
	text-transform: capitalize;
	color: #ffffff;
	margin: 0;
}
.portfolio-main .card .card-body{
	position: absolute;
	background: #323232;
	padding: 0 20px;
	height: 40px;
	transform: scale(0);
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
	display: flex;
	align-items: center;
	vertical-align: center;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}
.portfolio-main .card:hover .card-body{
	transform: scale(1);
	top: 80%;
}
.card-img{
	overflow: hidden;
	position: relative;
}
.portfolio-item .card:hover .card-img .card-img-top{
	transform: scale3D(1.2, 1.2, 2);
	opacity: .5;
}
.card-img-top{
	transition: all 500ms linear 0s;
}
.overlay{
	background: rgba(18,115,235,0.5);
	position: absolute;
	bottom: -100%;
	width: 100%;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
}
.overlay i{
	font-size: 35px;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
}
.portfolio-main .card:hover .overlay{
	bottom: 0;
}

.blog-slide h2{
	font-weight: 600;
	font-size: 45px;
	margin-bottom: 20px;
	text-align: center;
}

.post-slide{
    margin: 0 15px;
    background: #fff;
    border-bottom: 4px solid #f36c21;
}
.post-slide .post-header{
    padding: 15px 20px;
}
.post-slide .title{
    margin-bottom: 5px;
}
.post-slide .title a{
    font-size: 15px;
    color: #323232;    
    text-transform: capitalize;
    transition: all 0.4s ease 0s;
}
.post-slide .title a:hover{
    color: #fd6058;
    text-decoration: none;
}
.post-slide .post-bar{
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}
.post-slide .post-bar li{
    display: inline-block;
    margin-right: 20px;
    color: #f36c21;
}
.post-slide .post-bar li a{
    font-size: 15px;
    color: #808080;
    text-transform: capitalize;
}
.post-slide .post-bar li a:hover{
    text-decoration: none;
    color: #f36c21;
}
.post-slide .post-bar li img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.post-slide .post-bar li i,
.post-slide .post-bar li img{
    margin-right: 5px;
}
.post-slide .pic{
    overflow: hidden;
    position: relative;
}
.post-slide .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0);
    transition: all 0.9s ease 0s;
}
.post-slide:hover .pic:after{
    background: rgba(255,255,255,0.2);
}
.post-slide .pic img{
    width: 100%;
    height: auto;
    transform: rotate(0deg) scale(1,1);
    transition: all 0.6s ease-in-out 0s;
}
.post-slide:hover .pic img{
    transform: rotate(10deg) scale(1.5,1.5);
}
.post-slide .post-category{
    padding: 5px 15px;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f36c21;
    z-index: 1;
}
.post-slide .post-category li{
    display: inline-block;
    text-transform: uppercase;
}
.post-slide .post-category li:after{
    content: " ,";
    color: #fff;
}
.post-slide .post-category li:last-child:after{
    content: "";
}
.post-slide .post-category li a{
    color: #fff;
}
.post-slide .post-category li a:hover{
    text-decoration: none;
    color: #333;
}
.post-slide .post-description{
    font-size: 16px;
    color: #808080;
    padding: 15px;
}
@media only screen and (max-width: 480px) {
    .post-header .post-bar li{
        margin-right: 5px;
    }
}
.touch-line{
	padding: 40px 0;
	background: #f36c21;
	position: relative;
	margin-top: 90px;
}
/*
.touch-line:before{
	position: absolute;
	content: "";
	z-index: -1;
	left: 0;
	top: -46px;
	bottom: auto;
	right: auto;
	z-index: -1;
	width: 100%;
	height: 50px;
	background-size: cover;
	background-position: 50% 50%;
	background-image: url(../images/bg-bdr2.png);
}
*/
.touch-line p{
	color: #ffffff;
	font-size: 15px;
}
.touch-line a.btn-secondary{
	background-color: #ffffff;
	border-color: #ffffff;
	color: #f36c21;
}
.footer { 
	width:100%; 
	/*background: url(../images/footer-bg.jpg) no-repeat center;*/
	background-size: cover;
	min-height:250px; 
	padding:10px 0 25px 0;
	}
.pt2 { 
	padding-top:40px ;
	margin-bottom:20px ;
	color: #ffffff;
	font-weight: 500;
	}
footer p { 
	font-size:15px; 
	color:#CCC; 
	padding-bottom:0;
	margin-bottom:8px;
	}
.mb10 { 
	padding-bottom:0;
	}
.footer_ul_amrc { 
	margin: 0;
	list-style-type:none ; 
	font-size:14px; 
	padding:0 0 10px 0 ;
	}
.footer_ul_amrc li {
	padding:0 0 5px 0;
	}
.footer_ul_amrc li a{ 
	color:#cccccc;
	font-size: 15px;
	font-weight: 400;
	}
.footer_ul_amrc li a i{
	margin-right: 5px;
}
.footer_ul_amrc li a:hover{ 
	color:#fff; 
	text-decoration:none;
	}
.footer_ul_amrc li .media-left{
	margin-right: 10px;
}
.footer_ul_amrc li .media-left img{
	max-width: 50px;
}
.footer_ul_amrc li .media-body p{
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
}
.footer_ul_amrc li .media-body span{
	color: #cccccc;
	font-size: 14px;
	font-weight: 400;
}
.fleft { 
	float:left;
	}
.padding-right { 
	padding-right:10px; 
	}
.footer_ul2_amrc {
	margin:0;
	list-style-type:none; 
	padding:0;
	}
.footer_ul2_amrc li p { 
	display:table; 
	}
.footer_ul2_amrc li a:hover { 
	text-decoration:none;
	}
.footer_ul2_amrc li i { 
	margin-top:5px;
	}
.footer_ul2_amrc li a {
	color: #f36c21;
	font-size: 12px;
}
.bottom_border { 
	border-bottom:1px solid #323f45; 
	padding-bottom:20px;
	}
.foote_bottom_ul_amrc {
	list-style-type:none;
	padding:0;
	display:table;
    margin: 10px auto;
}
.foote_bottom_ul_amrc li { 
	display:inline;
	}
.foote_bottom_ul_amrc li a {
	color:#ffffff; 
	margin:0 12px;
	font-size: 16px;
	font-weight: 300;
	}
.footer-logo{
	padding: 20px 0;
	text-align: center;
}
.copyright{
    margin-top: 5px;
    padding-bottom: 50px;
    color: #fff;
}
.copyright a{
	color: #f36c21;
	text-decoration: underline;
}
.copyright a:hover{
	color: #ffffff;
	text-decoration: none;
}
.social_footer_ul { 
	display:table; 
	margin:15px auto 0 auto; 
	list-style-type:none;
	padding: 0;	
	}
.social_footer_ul li { 
	padding-left:20px; 
	padding-top:10px; 
	float:left; 
	}
.social_footer_ul li a { 
	color:#CCC; 
	border:2px solid #CCC; 
	padding:8px;
	border-radius:50%;
	}
.social_footer_ul li i {  
	width:20px; 
	height:20px; 
	text-align:center;
	}
.social_footer_ul li a:hover {
	color: #f36c21; 
	border:2px solid #f36c21; 
}

.footer-social{
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-social li{
	display: inline-block;
}
/*-- button --*/
.hb {
	display: inline-block;
	position:relative;
	text-align: center; /*  Default text align center */
	z-index: 0;
}
.hb:before,
.hb:after {
	position: absolute;
	content: "";  
	left: -1px;
	top: 0;
	z-index: -1;
}
.hb:before {
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	-o-transform: rotate(60deg);
	transform: rotate(60deg);
}
.hb:after {
	-webkit-transform: rotate(-60deg);
	-moz-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	-o-transform: rotate(-60deg);
	transform: rotate(-60deg);
}
.hb i {
	z-index: 9;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.hb,
.hb:before,
.hb:after { 
	 box-sizing: border-box;

	 /* default transition time is set .25s = 250 millisecond  
	 Uncomment following if you want to set transition on hexagon color change */ 

	 -webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.hb-xs-margin {
    margin: 5px;
    display: inline-block;
    overflow: hidden;
}	
.hb-xs {
    line-height: 19px;
    font-size: 19px;
    margin: 10px 0;
}
.hb-xs, .hb-xs::after, .hb-xs::before {
    height: 19px;
    width: 32px;
}
.spin,
.spin-icon i {
	-webkit-transition: -webkid-transform .25s  ease;
	   -moz-transition: -moz-transform .25s  ease;
	    -ms-transition: -ms-transform .25s  ease;
	     -o-transition: -o-transform .25s  ease;
	        transition: transform .25s  ease;
}
.spin-icon:hover i,
.spin:hover {
	-webkit-transform:rotate(360deg);
	   -moz-transform:rotate(360deg);
	    -ms-transform:rotate(360deg);
	     -o-transform:rotate(360deg);
			transform:rotate(360deg);	
}
.hb:hover,
.hb:hover:before,
.hb:hover:after {
	background: transparent;  
	border-left:1px solid #2ecc71;
	border-right:1px solid #2ecc71;  
	color: #2ecc71; /* Default hover font color */
}
.hb-facebook,
.hb-facebook:before,
.hb-facebook:after {
	background: #3B5998;
	border-color: #3B5998;
	color: #ffffff;
}
.hb-facebook:hover,
.hb-facebook:hover:before,
.hb-facebook:hover:after {
	background: transparent;
	border-color: #3B5998;
	color: #3B5998;
}
/* Facebook inverts */
.hb-facebook-inv,
.hb-facebook-inv:after,
.hb-facebook-inv:before {
	color: #3B5998;   
	border-color: #3B5998;
	background: transparent;
}
.hb-facebook-inv:hover,
.hb-facebook-inv:hover:after,
.hb-facebook-inv:hover:before {
	background: #3B5998; 
	border-color: #3B5998;
	color: #ffffff;  
}
.hb-twitter,
.hb-twitter:before,
.hb-twitter:after  {
	background: #55ACEE;
	border-color: #55ACEE;
	color: #ffffff;
}
.hb-twitter:hover,
.hb-twitter:hover:before,
.hb-twitter:hover:after   {
	background: transparent;
	border-color: #55ACEE;
	color: #55ACEE;
}
/* Twitter inverts */
.hb-twitter-inv,
.hb-twitter-inv:after,
.hb-twitter-inv:before {
	background: transparent;
	border-color: #55ACEE;
	color: #55ACEE;
}
.hb-twitter-inv:hover,
.hb-twitter-inv:hover:after,
.hb-twitter-inv:hover:before {
	background: #55ACEE;
	border-color: #55ACEE;
	color: #ffffff;
}
.hb-instagram,
.hb-instagram:before,
.hb-instagram:after  {
	background: #e1306c;
	border-color: #e1306c;
	color: #ffffff;
}
.hb-instagram:hover,
.hb-instagram:hover:before,
.hb-instagram:hover:after   {
	background: transparent;
	border-color: #e1306c;
	color: #e1306c;
}
/* Twitter inverts */
.hb-instagram-inv,
.hb-instagram-inv:after,
.hb-instagram-inv:before {
	background: transparent;
	border-color: #e1306c;
	color: #e1306c;
}
.hb-instagram-inv:hover,
.hb-instagram-inv:hover:after,
.hb-instagram-inv:hover:before {
	background: #e1306c;
	border-color: #e1306c;
	color: #ffffff;
}
.hb-google-plus,
.hb-google-plus:before,
.hb-google-plus:after {
	background: #db514f;
	border-color: #db514f;
	color: #ffffff;
}
.hb-google-plus:hover,
.hb-google-plus:hover:before,
.hb-google-plus:hover:after {
	background:transparent;
	border-color: #db514f;
	color: #db514f;
}
/* google-plus inverts */
.hb-google-plus-inv,
.hb-google-plus-inv:after,
.hb-google-plus-inv:before {
	background:transparent;
	border-color: #db514f;
	color: #db514f;
}
.hb-google-plus-inv:hover,
.hb-google-plus-inv:hover:after,
.hb-google-plus-inv:hover:before {
	background: #db514f;
	border-color: #db514f;
	color: #ffffff;
}
.hb-dribbble,
.hb-dribbble:before,
.hb-dribbble:after {
	background: #ea4c89;
	border-color: #ea4c89;
	color: #ffffff;
}
.hb-dribbble:hover,
.hb-dribbble:hover:before, 
.hb-dribbble:hover:after {
	background:transparent;
	border-color: #ea4c89;
	color: #ea4c89;
}
/* dribbble inverts */
.hb-dribbble-inv, 
.hb-dribbble-inv:after,
.hb-dribbble-inv:before {
	background:transparent;
	border-color: #ea4c89;
	color: #ea4c89;
}
.hb-dribbble-inv:hover,
.hb-dribbble-inv:hover:after,
.hb-dribbble-inv:hover:before {
	background: #ea4c89;
	border-color: #ea4c89;
	color: #ffffff;
}
.news-box p{
	line-height: 24px;
	margin-bottom: 30px;
}

/* ---- All Pages CSS ---- */
.full-title{
	padding: 100px 0 0 0;
	/*background: url(../images/all-title-bg.jpg) no-repeat center;*/
	position: relative;
}
.full-title:before{
	content: "";
	background: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}
.full-title h1{
	position: relative;
	color: #ffffff;
	font-size: 38px;
	text-align: center;
}
.full-title h1 small{
	float: right;
	padding: 15px 0;
	font-size: 14px;
}
.breadcrumb-main{
	position: relative;
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
}
.breadcrumb-main .breadcrumb{
	background: #f36c21;
	border-radius: 100px 100px 0 0;
	display: block;
}
.breadcrumb-main .breadcrumb li a{
	color: #ffffff;
	font-size: 15px;
}
.breadcrumb-main .breadcrumb li{
	color: #323232;
	display: inline-block;
	font-size: 15px;
}
.breadcrumb-main .breadcrumb-item + .breadcrumb-item::before{
	color: #323232;
}

.about-inner{
	padding: 30px 0;
}
.left-ab h3{
	font-size: 38px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
}
.left-ab p{
	font-size: 15px;
}
.left-ab ul{
	padding-left: 20px;
}
.left-ab ul li {
    position: relative;
    font-weight: 300;
    list-style: none;
    line-height: 29px;
    font-size: 15px;
}
.left-ab ul li::before {
    content: "\f105";
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-weight: 900;
    position: absolute;
    left: -15px;
    top: 0;
    color: #f36c21;
}
.team-members-box{
	padding: 30px 0;
}
.team-members-box .card{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;	
}
.team-members-box h2{
	font-weight: 600;
	font-size: 45px;
	margin-bottom: 20px;
	text-align: center;
}
.our-team{
    text-align: center;
    position: relative;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    width: 100%;
    height: auto;
    background: #323232;
    padding: 27px 0;
    border-left: 5px solid #f36c21;
	border-right: 5px solid #f36c21;
    box-shadow: 0 15px 25px 0 rgba(3,7,15,0.1);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .team-content{
    background: #f36c21;
}
.our-team .title{
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    margin: 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .title{
    color: #ffffff;
    margin-bottom: 10px;
}
.our-team .post{
    display: block;
    font-size: 15px;
    font-style: italic;
    color: #323232;
    text-transform: capitalize;
    height: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease 0s;
}
.our-team:hover .post{
    height: 30px;
    opacity: 1;
    transform: scale(1);
}
.our-team .social{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: translateY(-60%);
    transition: all 0.5s ease 0s;
}
.our-team:hover .social{
    transform: translateY(50%);
    opacity: 1;
}
.our-team .social li{
    display: inline-block;
}
.our-team .social li a{
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #323232;
    font-size: 17px;
    font-weight: 700;
    line-height:40px;
    color: #ffffff;
    transition: all 0.5s ease 0s;
}
.our-team .social li a:hover{
    color: #ffffff;
	background: #f36c21;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 0; }
}
.customers-box{
	padding: 30px 0;
}
.customers-box h2{
	font-weight: 600;
	font-size: 45px;
	margin-bottom: 20px;
	text-align: center;
}
.customers-box .mb-4{
	text-align: center;
}
.portfolio-col{
	padding: 30px 0;
}
.portfolio-item .card{
	border: none;
}
.portfolio-item .card .card-body{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
}
.portfolio-item .card .card-body h4{
	margin-bottom: 12px;
}
.portfolio-item .card .card-body h4 a{
	color: #323232;
	text-decoration: none;
	font-size: 22px;
	text-transform: capitalize;
}
.portfolio-item .card .card-body p{
	margin-bottom: 0;
}
.hover-box{
	position: relative;
	overflow: hidden;
}
.dot-full{
	background: #f36c21;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -5px;
	right: -5px;
	border-radius: 50px;
	transition: all 0.5s ease 0s;
}
.dot-full i{
	color: #ffffff;
	font-size: 30px;
	width: 80px;
	height: 80px;
	background: #323232;
	text-align: center;
	line-height: 80px;
	border-radius: 50px;
	opacity: 0;
}
.portfolio-item .card:hover .dot-full{
	background: rgba(18,115,235,0.5);
	width: 100%;
	height: 100%;
	border-radius: 0;
	top: 0;
	right: 0;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.portfolio-item .card:hover .dot-full i{
	opacity: 1;
}
.item-pro{
	padding: 30px 0;
}
.item-pro h3{
	font-size: 20px;
	font-weight: 600;
}
.item-pro ul{
	padding-left: 0;
}
.item-pro ul li{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	line-height: 30px;
}
.item-pro ul li span{
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.project-inner h3{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 30px;
}
.pagination_bar .pagination .page-item .page-link{
	font-size: 20px;
	background: #323232;
	border: 1px solid #323232;
	color: #ffffff;
	width: 35px;
	text-align: center;
}
.pagination_bar .pagination .page-item .page-link:hover{
	background: #f36c21;
}
.portfolio-item h4.card-title a{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #323232;
}
.related-projects{
	padding: 30px 0;
}
.related-projects h3{
	font-weight: 600;
	font-size: 24px;
    margin: 0 0 20px;
}
.blog-main{
	padding: 20px 0;
}
.archive .blog-main{
	padding: 20px 0 0 0;
}
.by-post{
	margin-bottom: 12px;
}
.blog-entries, .blog-right-side {
    color: #333;
    font-size: 17px; 
}
.singe-content-left{
	text-align: justify;
}
.blog-entries .card{
	/*box-shadow: 3px 5px 15px rgba(0,0,0, .15);*/
    box-shadow: none;
	border: none;
}
.blog-entries .card .card-body h2.card-title{
	font-size: 18px;
	font-weight: 500; 
	color: #333;
	text-transform: capitalize; 
	height: 48px;
    overflow: hidden;
    text-overflow: ellipsis; 
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: center;
}
.col-archive-all .row-content-archive .box-image{
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.col-archive-all .row-content-archive img{
	width: 100%;
	height: auto;
    -webkit-transition: .2s ease-in-out all;
    -moz-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.col-archive-all .row-content-archive .box-image:hover img {
    -moz-transform: scale(1.07) rotate(.5deg);
    -ms-transform: scale(1.07) rotate(.5deg);
    -o-transform: scale(1.07) rotate(.5deg);
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.blog-entries .card .card-footer{
	background-color: #323232;
}
.blog-entries .card .card-footer.text-muted{
	color: #ffffff !important;
}
.blog-entries .card .card-footer a{
	color: #f36c21;
}
.col-archive-all {
    margin: 0 -10px;
    display: flex;
    flex-flow: wrap;
}
.title-item-archive{
	cursor: pointer;
	color: #333;
}
.title-item-archive:hover, .blog-entries .card .card-body h2.card-title:hover{
	color: #f36c21;
	text-decoration: none; 
}
.col-card-widget, .my-4.widget_custom_html{
	margin-top: 0 !important;
}
.blog-right-side .card{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;
}
.blog-right-side .card h5.card-header, .widget-title-event{
	background-color: #f36c21; 
	color: #fff;  
	font-size: 20px;
	font-weight: 400;
}
.row-content-archive {
    width: 33%;
    background: transparent;
    padding:  0 10px;
    display: flex;
    flex-direction: column;
}
.box-content-archive {
    box-shadow: 6px 6px 12px 2px #a8a8a8;
    border: 1px solid #fff;
    background-color: #fff;
    height: 100%;
}
.row-content-archive .card-body {
    padding: 1rem;
}
.box-event-widget {
	border: 1px solid #ccc;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    background: #f36c21;
    background: -moz-linear-gradient(left,rgba(243,108,33,1) 0,rgba(250,164,26,1) 44%,rgba(243,108,33,1) 100%);
    background: -webkit-linear-gradient(left,rgba(243,108,33,1) 0,rgba(250,164,26,1) 44%,rgba(243,108,33,1) 100%);
    background: linear-gradient(to right,rgba(243,108,33,1) 0,rgba(250,164,26,1) 44%,rgba(243,108,33,1) 100%);
    box-shadow: 3px 3px 7px #222222b3; 
}
.box-event-widget:hover {
    background: -moz-linear-gradient(left,#81d742 0,rgba(250,164,26,1) 44%,#81d742 100%);
    background: -webkit-linear-gradient(left,#81d742 0,rgba(250,164,26,1) 44%,#81d742 100%);
    background: linear-gradient(to right,#81d742 0,rgba(250,164,26,1) 44%,#81d742 100%); 
}
.box-event-widget a:hover{ 
	text-decoration: none;
	cursor: pointer;
}
.title-widget-t01, .title-widget-t02{
	font-weight: bold;
	margin-bottom: 0;
}
.title-widget-t01 {
    color: #333;
    font-size: 16px;
}
.title-widget-t02 {
    font-size: 26px;
    color: #fff;
}
.blog-right-side .card .card-body ul li{
	margin-bottom: 2px;
}
.blog-right-side .card .card-body ul li a{
	border-radius: 5px;
	padding: 6px;
	background: #323232;
	color: #ffffff;
	display: inline-block;
}
.blog-main .blockquote{
	border-left: 3px solid #f36c21;
	padding-left: 20px;
}
.blog-main .blockquote p{
	font-style: italic;
	font-size: 20px;
}

.pagination_bar_arrow .pagination .page-item .page-link{
	font-size: 20px;
	background: #323232;
	border: 1px solid #323232;
	color: #ffffff;
	width: 120px;
	text-align: center;
}
.pagination_bar_arrow .pagination .page-item .page-link:hover{
	background: #f36c21;
}
.faq-main{
	padding: 30px 0;
	margin: 30px 0;
}
.faq-main h2{
	font-weight: 600;
	font-size: 45px;
	text-align: center;
	margin-bottom: 15px;
}
#accordionExample .accordion-single{
	border-radius: 0;
	border: none;
	position: relative;
	margin-bottom: 15px;
}
#accordionExample  .accordion-single .card-header{
	background-color: transparent;
	padding: 0;
	border: none;
}
#accordionExample  .accordion-single .card-header h5 button{
	color: #202428;
	display: block;
	position: relative;
	padding: 10px 30px 10px 60px;
	font-size: 18px;
	text-transform: capitalize;
	width: 100%;
	text-align: left;
	border: none;
	font-weight: 600;
}
#accordionExample  .accordion-single .card-header h5 button:hover{
	color: #f36c21;
	text-decoration: none;
}
#accordionExample  .accordion-single h5 button[aria-expanded="false"]::before {
    content: "\f105";
}
#accordionExample  .accordion-single h5 button[aria-expanded="true"]::before{
    content: "\f107";
}
#accordionExample  .accordion-single h5 button[aria-expanded="false"]::before,
#accordionExample  .accordion-single h5 button[aria-expanded="true"]::before{
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    width: 40px;
    height: 47px;
    line-height: 47px;
    background: #f36c21;
    border: 1px solid #f36c21;
    border-radius: 3px;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}
#accordionExample .accordion-single:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border: 1px dashed #f36c21;
    position: absolute;
    top: 25px;
    left: 18px;
}
#accordionExample .accordion-single .card-body{
	padding: 10px 30px 10px 30px;
	margin-left: 40px;
	background: #fff;
	border-top: none;
	font-size: 15px;
	color: #6f6f6f;
	line-height: 28px;
	letter-spacing: 1px;
}
.error-contents{
	padding: 30px 0;
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}
.error-contents{}
.pricing-box{
	padding: 30px 0;
}
/*.bg-01{
	background: url(../images/pricing-bg-01.jpg) no-repeat center;
	background-size: cover;
}
.bg-02{
	background: url(../images/pricing-bg-02.jpg) no-repeat center;
	background-size: cover;
}
.bg-03{
	background: url(../images/pricing-bg-03.jpg) no-repeat center;
	background-size: cover;
}*/
.pricing-box .card:hover .card-header{
	background: none;
}
.pricing-box .card{
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 0 5px 30px rgba(105,106,119,.1);
	box-shadow: 0 5px 30px rgba(105,106,119,.1);
	border: none;
}
.pricing-box .card .card-header{
	padding: 80px 15px;
	text-align: center;
	background: #323232;
	color: #ffffff;
}
.pricing-box .card:hover .card-header{
	color: #323232;
}
.pricing-box .card:hover .list-group-item{
	background-color: rgba(225,225,225,0.5);
}
.most_popular{
	position: absolute;
	top: 32px;
	font-size: 12px;
	text-align: center;
	width: 181px;
	padding: 4px 0;
	right: -36px;
	transform: rotate(40deg);
	background-color: #f36c21;
	color: #323232;
}
.contact-main{
	padding: 30px 0;
}
.contact-left h3{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}
.contact-right h3{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}
.contact-right p abbr{
	font-weight: bold;
	font-size: 18px;
}

.help-block ul{
	margin: 0;
    list-style: none;
	background: red;
	color: #fff;
	padding: 0 15px;
}
.map-main{
	
}

/* ================
Calendar Styling */
.calendar ol::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.calendar {
  border-radius: 10px;
  margin-top:5px;
}
.month {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .month {
    font-size: 3.5rem;
  }
}

.calendar ol li {
  float: left;
  width: 14.28571%;
}

.calendar .day-names {
  border-bottom: 1px solid #eee;
}
.calendar .days li, .calendar .day-names{
  text-align: center;
}
.calendar .day-names li {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.calendar .days li {
  border-bottom: 1px solid #eee;
  min-height: 2rem;
}
.calendar .days li.on-active{
	display: inline-block;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    flex-basis: 14.28571%;
    background-image: radial-gradient(#ff7555 50%, rgba(0, 0, 0, 0) 53%);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-transition: all 0.3s cubic-bezier(0.54, -0.24, 0.46, 1.28);
    transition: all 0.3s cubic-bezier(0.54, -0.24, 0.46, 1.28);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    color: #FFFFFF;
    background-size: 3.5em 3.5em;
}
.calendar .days li.on-active:hover{
	cursor: pointer;
}
.calendar .days li .date {
  margin: 0.5rem 0;
}

.calendar .days li .event {
  font-size: 0.75rem;
  padding: 0.4rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4rem;
  margin-bottom: 1px;
}

.calendar .days li .event.span-2 {
  width: 200%;
}

.calendar .days li .event.begin {
  border-radius: 1rem 0 0 1rem;
}

.calendar .days li .event.end {
  border-radius: 0 1rem 1rem 0;
}

.calendar .days li .event.clear {
  background: none;
}

.calendar .days li:nth-child(n+29) {
  border-bottom: none;
}

.calendar .days li.outside .date {
  color: #ddd;
}
/* Slider */
.title-slider {
    text-align: center;
    padding: 5px;
    font-weight: bold;
    margin: 0;
    clear: left; 
    height: 64px;
}
.title-slider a{
	color: #615e5b;
	cursor: pointer;
	text-decoration: none;
	text-transform: capitalize;
}
.title-slider a:hover{
	color: #f36c21;
}
/* Show 4th slide on md  if col-md-4*/
#carousel-event-images .carousel-inner .active.col-md-4.carousel-item + .carousel-item + .carousel-item + .carousel-item {
    position: absolute;
    top: 0;
    right: -33.3333%;  /*change this with javascript in the future*/
    z-index: -1;
    display: block;
    visibility: visible;
}
@media (max-width: 1180px) {
    .navbar-expand-lg.top-nav .navbar-nav .nav-link {
        padding: 5px 10px;
        font-size: 12px;
    }
    .navbar-expand-lg.top-nav .navbar-nav .nav-link i {
        font-size: 12px;
    }
}
@media (max-width: 1024px) {
	.row-experience-right {
	    min-height: 190px;  
	}
}
@media (max-width: 990px) {
	.col-experience-left, .col-experience-right {
		flex: 0 0 100%; 
		max-width: 100%;
	}
	.row-experience-right {
	    min-height: 145px; 
	}
}
@media (min-width: 768px) and (max-width: 991px) {
  /* Show 4th slide on md  if col-md-4*/
    #carousel-event-images .carousel-inner .active.col-md-4.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.3333%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
  /* Show 3rd slide on sm  if col-sm-6*/
    #carousel-event-images .carousel-inner .active.col-sm-6.carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -50%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
}
@media (max-width: 767px) and (min-width: 500px) {
	.row-event-left, .row-event-right, .title-event-img { 
	    width: 100%;
	}
	.row-experience-right {
	    min-height: 170px;
	}
	.col-left-contact {
	    display: none;
	}
	.col-right-contact {
	    flex: 0 0 100%; 
	    max-width: 100%;
	}
	.title-form {
	    font-size: 20px;
	}
	#footer-bottom .col-12 {
	    flex: 0 0 100%;
	    max-width: 100%; 
	}
}
@media (min-width: 576px) {
    #carousel-event-images .carousel-item {
        margin-right: 0;
    }
    /* show 2 items */
    #carousel-event-images .carousel-inner .active + .carousel-item {
        display: block;
    }
    #carousel-event-images .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    #carousel-event-images .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item {
        transition: none;
    }

    #carousel-event-images .carousel-inner .carousel-item-next {
      position: relative;
      transform: translate3d(0, 0, 0);
    }
    /* left or forward direction */
    #carousel-event-images .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    #carousel-event-images .carousel-item-next.carousel-item-left + .carousel-item,
    #carousel-event-images .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    } 
    /* farthest right hidden item must be abso position for animations */
    #carousel-event-images .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    /* right or prev direction */
    #carousel-event-images .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    #carousel-event-images .carousel-item-prev.carousel-item-right + .carousel-item,
    #carousel-event-images .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
    }
}
/*MD*/
@media (min-width: 768px) {
    /* show 3rd of 3 item slide */
  	#carousel-event-images .carousel-inner .active + .carousel-item + .carousel-item {
        display: block;
    }
    #carousel-event-images .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;
    }
    #carousel-event-images .carousel-inner .carousel-item-next {
      position: relative;
      transform: translate3d(0, 0, 0);
    }
    /* left or forward direction */
    #carousel-event-images .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    /* right or prev direction */
    #carousel-event-images .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
    }
}
/*LG */
@media (min-width: 991px) {
    /* show 4th item */
    #carousel-event-images .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item {
        display: block;
    }
    #carousel-event-images .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item {
        transition: none;
    }
    /* Show 5th slide on lg if col-lg-3 */
    #carousel-event-images .carousel-inner .active.col-lg-3.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -25%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
    /* left or forward direction */
    #carousel-event-images .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    /* right or prev direction //t - previous slide direction last item animation fix */
    #carousel-event-images .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
    }
}
/*LG 6th  -  if you want a carousel with 6 slides */
@media (min-width: 991px) {
/* show 5th and 6th item */
 	/*   .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item + .carousel-item,
  	.carousel-inner .active + .carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        display: block;
    }
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item + .carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
      transition: none;
    }
*/
  /*show 7th slide for animation when its a 6 slides carousel */
 /*      .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item  + .carousel-item {
        position: absolute;
        top: 0;
        right: -16.666666666%;
        z-index: -1;
        display: block;
        visibility: visible;
  }
  */
      /* forward direction > */
 /*   .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
  */
      /* prev direction < last item animation fix */
 /*   .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    } */
}
/* End Slider */
@media (min-width:768px) and (max-width:991px){
	.navbar-expand-lg.top-nav .navbar-nav .nav-link.dropdown-toggle::after{
		position: absolute;
		top: 22px;
		/* right: 6px; */ 
	}
	.top-bar, .navbar-expand-lg.top-nav .navbar-nav .nav-link.active::before, .navbar-expand-lg.top-nav .navbar-nav .nav-link.active::after, .navbar-expand-lg.top-nav .navbar-nav .nav-link::before, .navbar-expand-lg.top-nav .navbar-nav .nav-link::after{
		display: none;
	}
	.item-pro ul li{
		font-size: 14px;
	}
	.row-content-archive {
	    width: 45%;
	}
	.by-post {
	    font-size: 14px;
	}
	.archive-events-all .event-image {
		height:auto !important;
	}
}

@media screen and (max-width:767px){
	.navbar-expand-lg.top-nav .navbar-nav .nav-link.dropdown-toggle::after{
		position: absolute;
		top: 22px;
		font-size: 25px;
	}
	ul#menu-menu-top li {
	    border-bottom: 1px solid #fff;
	}
	ul#menu-menu-top li:last-child {
	    border-bottom: none;
	}
	.portfolio-main h2{
		text-align: center;
	}
	.customers-box{
		text-align: center;
	}
	.team-members-box h2{
		text-align: center;
	}
	.services-bar h1{
		text-align: center;
	}
	.social_footer_ul li{
		padding-left: 10px;
		padding-right: 10px;
	}
	.faq-main{
		padding: 20px 15px;
	}
	.accordion-single .card-header h5 a{
		font-size: 14px;
	}
	.top-bar, .navbar-expand-lg.top-nav .navbar-nav .nav-link.active::before, .navbar-expand-lg.top-nav .navbar-nav .nav-link.active::after, .navbar-expand-lg.top-nav .navbar-nav .nav-link::before, .navbar-expand-lg.top-nav .navbar-nav .nav-link::after{
		display: none; 
	}
	.archive-events-all .event-image {
		height:auto !important;
	}
}

@media (min-width:320px) and (max-width:576px){
	.navbar-expand-lg.top-nav .navbar-nav .nav-link.dropdown-toggle::after{
		position: absolute;
		top: 19px;
	}
	.portfolio-main h2{
		text-align: center;
		font-size: 26px;
	}
	.customers-box{
		text-align: center;
	}
	.team-members-box h2{
		text-align: center;
		font-size: 26px;
	}
	.services-bar h1{
		text-align: center;
		font-size: 26px;
	}
	.social_footer_ul li{
		padding-left: 10px;
		padding-right: 10px;
	}
	.faq-main{
		padding: 20px 15px;
	}
	.accordion-single .card-header h5 a{
		font-size: 14px;
	}
	.top-bar, .navbar-expand-lg.top-nav .navbar-nav .nav-link.active::before, .navbar-expand-lg.top-nav .navbar-nav .nav-link.active::after, .navbar-expand-lg.top-nav .navbar-nav .nav-link::before, .navbar-expand-lg.top-nav .navbar-nav .nav-link::after{
		display: none;
	}
	.project-menu button{
		margin-bottom: 5px;
	}
	.about-main h2, .blog-slide h2, .left-ab h3, .customers-box h2, .faq-main h2{
		font-size: 26px;
	}
	#accordionExample .accordion-single .card-header h5 button{
		white-space: inherit;
		font-size: 14px;
	}
	.row-experience-left img, .row-experience-right img {
	  margin: auto;
	  float: none;
	  display: block;
	}
	#carousel-event-images .carousel-item {
	    padding: 0;
	}
	.carousel-control-next, .carousel-control-prev {
	    width: 15%;
	    opacity: .8;
	}
	.row-content-archive{
		width: auto;
	}
	.ipcoming-events-all{ 
		background: none;
	}
	.blog-entries .card .card-body h2.card-title, .title-slider{  
		height: auto;
	} 
}

