/*--------------------------------------*/

/* Hero Section
/*--------------------------------------*/
.hero-section .carousel-indicators [data-bs-target]{
	opacity: 1;
}
.hero-section .carousel-indicators .active{
	background-color: var(--color-primary);
}
.hero-section .carousel-control-prev-icon{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ce2721'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.hero-section .carousel-control-next-icon{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ce2721'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	
}
.hero-section .carousel-control-next,
.hero-section .carousel-control-prev{
	opacity: 1;
}
.hero-section .carousel-caption{
	top: 50%;
    transform: translateY(-50%);
	bottom: initial;
	text-align: left;
}
.hero-section .carousel-caption h1{
	color: var(--color-primary);
	margin-bottom: 6px;
	font-style: normal;
}
/*--------------------------------------*/

/* Business Section
/*--------------------------------------*/
.business-section .business-item {
    text-align: center;
	box-shadow: 0px 15px 49px rgba(0, 0, 0, 0.15);
}
.business-section .business-icon{
    height: 200px;
    background: var(--color-default);
}
.business-section .business-icon img{
	height: 200px;
	width: 100%;
}
.business-section .business-item .business-icon .icon{
	font-size: 60px;
    color: #FFFFFF;
    transition: .3s;
}
.business-section .business-item:hover .business-icon .icon {
    margin-top: -15px;
}
.business-section .business-item .business-wrap {
	padding: 24px 16px;
}
.business-section .business-item p{
	padding: 20px 0;
}
.business-section .business-item .btn.btn-default {
	font-size: 14px;
    padding: 10px 20px;
}
/*--------------------------------------*/

/* About Section
/*--------------------------------------*/
.about-section .section-heading{
    margin-bottom: 30px;
}
.about-section p{
	margin-bottom: 1rem;
}
.about-section .btn.btn-default{
	margin-top: 15px;
}
/*--------------------------------------*/

/* Feature Section
/*--------------------------------------*/
.feature-section .feature-item {
    text-align: center;
	box-shadow: 0px 15px 49px rgba(0, 0, 0, 0.15);
}
.feature-image.image-angle:before {
    border-right: 16px solid #970303;
}
.feature-image.image-angle.two:before {
    border-right: 20px solid #161a1d;
}
.feature-image.image-angle.three:before {
    border-right: 20px solid #cf8e0d;
}
.feature-image.image-angle.four:before {
    border-right: 20px solid #898888;
}
.feature-image img {
    border-bottom: 10px solid var(--color-primary);
}
.feature-image.two img {
    border-bottom: 10px solid #272d33;
}
.feature-image.three img {
    border-bottom: 10px solid var(--color-secondary);
}
.feature-image.four img {
    border-bottom: 10px solid #bababa;
}
.feature-section .feature-item p{
	margin: 12px 0;
	font-size: 15px;
}
.feature-section .feature-item a{
	font-size: 15px;
	color: var(--color-primary);
}
.feature-section .feature-item a:hover i{
	margin-left: 3px;
}
/*--------------------------------------*/

/* Video Section
/*--------------------------------------*/
.video-section .video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin: 0 10px;
}
.video-section .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*--------------------------------------*/

/* Gallery Section
/*--------------------------------------*/
.gallery-section .gallery-item{
	margin: 0 8px;
}
.gallery-section .gallery-item img{
	height: 160px;
	width: 100%;
}
.gallery-section .gallery-item img:hover{
	filter: grayscale(100%);
	cursor: pointer;
}
/*--------------------------------------*/

/*Support Sectiom
/*--------------------------------------*/
.support-section{
	background-color: var(--color-primary);
	padding: 40px 0;
}
.support-wrap{
	max-width: 800px;
	margin: 0px auto;
}
.support-section h3,
.support-section p{
	color: #FFFFFF;
}
.support-section .subscribe-form {
	position: relative;
}
.support-section .subscribe-form button {
	font-size: 18px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 22px;
}
/*--------------------------------------*/

/*Footer
/*--------------------------------------*/
footer {
    padding-top: 60px;
    background: #121518;
}
footer .footer-logo img{
	max-height: 60px;
	margin-bottom: 16px
}
footer .footer-link,
footer .footer-contact,
footer p,
footer a {
    color: #999999;
}
footer .footer-link h2,
footer .footer-contact h2{
    margin-bottom: 30px;
    font-size: 25px;
    color: var(--color-secondary);
}
footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #999999;
}
footer .footer-link a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
footer .footer-contact p {
    margin-bottom: 10px;
}
footer .footer-contact p i {
    width: 25px;
}
footer .footer-social {
    margin-top: 20px;
}
footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: var(--color-secondary);
}
footer .footer-social a:last-child i {
    margin: 0;
}
footer .footer-menu {
    padding: 15px 0;
    background: #011df3;
    font-size: 0;
    text-align: center;
	margin-top: 30px;
}
footer .footer-menu a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}
footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
footer .copyright {
	font-size: 14px;
    padding: 30px 15px;
	text-align: center;
}
footer .copyright span{
	color: #FFFFFF;
	font-weight: 700;
	font-family: "EB Garamond", serif;
    font-style: italic;
	font-size: 16px;
}
footer a:hover,
footer a:hover i{
	color: #FFFFFF;
}
/*--------------------------------------*/

/*Team Page
/*--------------------------------------*/
.slick-list {
	margin: 0 -10px !important;
}
.slick-slide {
	padding: 0 10px !important;
}
.team-section .team-container1{
	max-width: 750px;
	margin: 20px auto;
}
.team-section .team-container2{
	max-width: 950px;
	margin: 20px auto;
}
.team-section .team-container32{
	max-width: 750px;
	margin: 20px auto;
}
.team-section .team-img img {
    width: 100%;
}
.team-section .team-text {
    position: relative;
    padding: 50px 15px 30px 15px;
    text-align: center;
    background:  black;
    color: white
}
.team-section .team-text h4 {
    color: var(--color-primary);
	margin-bottom: 0.5rem;
}
.team-section .team-text p {
    color: #ffffff;
}
.team-section .team-social {
    position: absolute;
    width: calc(100% - 20px);
    height: 50px;
    top: -25px;
    left: 10px;
    background: var(--color-primary);
    transition: .3s;
}
.team-section .team-item:hover .team-social {
    width: 100%;
    left: 0;
}
.team-section .team-social a {
	font-size: 18px;
	color: #FFFFFF;
    display: inline-block;
    margin-right: 15px;
    text-align: center;
}
.team-section .team-social a:last-child {
    margin-right: 0;
}
.team-section .team-social a:hover {
    color: var(--color-secondary);
}
/*--------------------------------------*/

/*Gallery Page
/*--------------------------------------*/
.gallery-page .img-border{
	margin-bottom: 0;
}
.gallery-page h3{
	text-align: center;
	padding: 10px 0 0;
}
.gallery-page .img-border img{
	width: 100%;
	height: 150px;
}
.gallery-page a:hover img,
.gallery-page .img-border:hover{
	filter: grayscale(100%);
	cursor: pointer;
}
.gallery-page a:hover h3{
	color: var(--color-primary);
}
/*--------------------------------------*/

/*Contact Page
/*--------------------------------------*/
.contact-section .contact-info {
    padding: 30px;
    background: var(--color-secondary);
}
.contact-section .contact-item {
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    border: 2px solid #FFFFFF;
}
.contact-section .contact-item i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}
.contact-section .contact-text {
    padding-left: 15px;
}
.contact-section .contact-text h4 {
    color: #FFFFFF;
    font-size: 25px;
	margin-bottom: 8px;
}
.contact-section .contact-text p {
    color: #FFFFFF;
}
.contact-section .contact-item:last-child {
    margin-bottom: 0;
}
.contact-section .contact-form .btn {
    font-size: 18px;
}
/*--------------------------------------*/

/*Career Page
/*--------------------------------------*/
.career-section a{
	color: var(--color-primary);
	font-weight: 500;
	text-align: center;
    display: block;
}
.career-section a:hover{
	color: var(--color-default);
	text-decoration: underline;
}
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    white-space: nowrap;
}
.career-section .form-control[type=file]{
	line-height: 2.9;
}
.career-section p{
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 500;
}
/*--------------------------------------*/

/*Lines Area Style
/*--------------------------------------*/
.lines{
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	padding-left: 40px;
}
.lines-right{
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.lines-right::before{
	content: "";
	display: block;
	position: absolute;
	height: 10px;
	width: 100%;
	top: 0;
	right: -1px;
	width: 2px;
	background-color: #eca71e;
	-webkit-animation-delay: 2s;
		  animation-delay: 2s;
	-webkit-animation: moveLeftBounces-one 20s linear infinite;
		  animation: moveLeftBounces-one 20s linear infinite;
}
.lines::after{
	content: "";
	display: block;
	position: absolute;
	height: 10px;
	width: 100%;
	top: 0;
	left: -1px;
	width: 2px;
	background-color: #eca71e;
	-webkit-animation-delay: 2s;
		  animation-delay: 2s;
	-webkit-animation: moveLeftBounces-one 20s linear infinite;
		  animation: moveLeftBounces-one 20s linear infinite;
}
@-webkit-keyframes moveLeftBounces-one {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes moveLeftBounces-one {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  z-index: -1;
}
.lines .line {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  right: 30%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #eca71e;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation: moveLeftBounces-one 20s linear infinite;
          animation: moveLeftBounces-one 20s linear infinite;
}
.lines .line:nth-child(1) {
  right: 30%;
}
.lines .line:nth-child(2) {
  right: 52%;
}
.lines .line:nth-child(3) {
  right: 71%;
}


@-webkit-keyframes moveLeftBounces-one {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes moveLeftBounces-one {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}


@media (max-width: 991.98px) {
	.lines{
		display: none;
	}
}
*/
/*--------------------------------------*/
