*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Montserrat' !important;
}

.main-section{
	padding: 60px 0;
}

a:hover {
    color: #00ea79;
    transition: .3s ease;
    text-decoration: none;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-weight: 500;
    line-height: 1.2;
    color: #343a40;
}
.bg-dark h6, .bg-dark .h6, .bg-dark h5, .bg-dark .h5, .bg-dark h4, .bg-dark .h4, .bg-dark h3, .bg-dark .h3, .bg-dark h2, .bg-dark .h2, .bg-dark h1, .bg-dark .h1 {
    color: #a3b2b3;
}
 

.btn {
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    font-weight: 500;
    border: 0;
    outline: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    line-height: 1;
}
.btn-primary {
    color: #000;
    background-color: #766df4;
    border-color: #766df4;
    box-shadow: unset
}

.btn-primary:hover {
    color: #000;
    background-color: #8b83f6;
    border-color: #847cf5
}

.btn-white {
    background: #fff;
    color: #000;
    font-weight: 600;
}
.btn-white:active, .btn-white:focus, .btn-white:hover {
    color: #000;
    background: #fff;
    border-color: #fff;
}
.btn-black {
    background: #000;
    color: #fff;
    font-weight: 600;
}
.btn-black:active, .btn-black:focus, .btn-black:hover {
    color: #fff;
    background: #000;
    border-color: #000;
}
.btn span {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    transition: transform .65s cubic-bezier(.2,1,.3,1),opacity .2s;
}
.btn:hover span {
    opacity: 0;
    transform: scale(.95) translateY(-12px);
}
.btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    content: attr(data-text);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    height: 100%;
    line-height: 50px;
    transition: transform .65s cubic-bezier(.2,1,.3,1),opacity .2s;
    transform: scale(.95) translateY(12px);
}
.btn:hover::after {
    top: 0;
    opacity: 1;
    transform: scale(1) translateY(0);
}

.btn-text {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    font-weight: 500;
}
.btn-text i {
    margin-top: 0px;
    font-size: 26px;
    transform: rotate(-45deg);
    line-height: 20px;
    margin-right: -7px;
}
.btn-text::after, .btn-text::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 0%;
    background-color: rgba(0,183,95,.3);
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: .4s cubic-bezier(.2,1,.3,1);
    pointer-events: none;
}
.btn-text:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    transition-delay: .3s;
}
.btn-text::before {
    width: 100%;
    z-index: -2;
    transition: 0s;
    
}
.btn-text:hover::before {
    width: 0%;
    transition: .4s cubic-bezier(.2,1,.3,1);
    background-color:  #343a40;
}



.btn-text_new {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    font-weight: 500;
    color: #343a40;
}
.btn-text_new:hover {
    color: #343a40;
}
.btn-text_new i {
    margin-top: 0px;
    font-size: 26px;
    transform: rotate(-45deg);
    line-height: 20px;
    margin-right: -7px;
}
.btn-text_new::after, .btn-text_new::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 0%;
    background-color: rgba(0,183,95,.7);
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: .4s cubic-bezier(.2,1,.3,1);
    pointer-events: none;
}
.btn-text_new:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    transition-delay: .3s;
    background-color: #343a40;
}
.btn-text_new::before {
    width: 100%;
    z-index: -2;
    transition: 0s;
}
.btn-text_new:hover::before {
    width: 0%;
    transition: .4s cubic-bezier(.2,1,.3,1);
}




.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'fontawesome';
	content: '\f106';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: var(--grey);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e84b';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--red), var(--yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--grey);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap {
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
}
.progress-wrap::after {
	color: var(--black-blue);
}
.progress-wrap svg.progress-circle path {
	stroke: var(--black-blue);
}
.switch,
.circle {
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
} 
.switch {
	width: 80px;
	height: 4px;
	border-radius: 27px;
	background-image: linear-gradient(298deg, var(--red), var(--yellow));
	position: fixed;
	right: 50px;
	top: 75px;
	display: block;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
  z-index: 33333;
    transition: all 300ms linear;
}
.circle {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--black-blue-light-3);
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	animation: border-transform 10s linear infinite alternate forwards;
}
.circle:hover {
	box-shadow: 0 8px 8px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
}
.circle:before {
	position: absolute;
	font-family: 'unicons';
	content: '\eac1';
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	height: 40px;
	opacity: 1;
	color: var(--grey);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.circle:after {
	position: absolute;
	font-family: 'unicons';
	content: '\eb8f';
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	height: 40px;
	color: var(--yellow);
	opacity: 0;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.switched {
}
.switched .circle {
	left: 45px;
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	background: var(--black-blue);
}
.switched .circle:hover {
	box-shadow: 0 8px 8px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
}
.switched .circle:before {
	opacity: 0;
}
.switched .circle:after {
	opacity: 1;
}
.scroll-progress svg.progress-circle path{
	stroke: #fff;
    mix-blend-mode: difference;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all .2s linear;
}


.main_banner .text-light {
    font-size: 56px;
    font-weight: 400;
}
.main_banner h4 {
    text-align: justify;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    width: 70%;
    line-height: 38px;
}
.banner-video {
    margin-bottom: -60px;
}

.certification {
    text-align: center;
}
.certification h4 {
    margin: 25px 0;
}
.certification hr {
    width: 30px;
    margin: 25px auto;
    color: #343a40;
}
.content-justify-black p {
    width: 58%;
    margin: 0 auto;
    line-height: 36px;
    font-size: 20px;
    text-align: justify;
    color: #343a40;
}

.process-box {
    background-color: #02191a;
    padding: 50px 15px;
    margin-bottom: 25px;
}
.process-box .icon {
    width: 55px;
}
.process-box .title {
    margin: 30px 0;
}
.process-box .title {
    margin: 30px 0;
    color: #848b8c;
    font-weight: 700;
    font-size: 20px;
    padding-left: 45px;
    position: relative;
}
.process-box .title span {
	position: absolute;
	left: 0;
	top: 0;
}
.process-box hr {
    margin: 40px 0 40px 0;
    color: #848b8c !important;
    opacity: 1;
}

.process-box .btn-text_new {
    color: #848b8c;
}
.process-box .btn-text_new::before {
    background-color: rgba(0,183,95,.5);
}
.process-box .btn-text_new:hover::before {
    background-color: rgba(0,183,95,.8) !important;
}


.main-heading {
    text-align: center;
    margin-bottom: 40px;
}
.main-heading h2 {
    font-size: 32px;
    position: relative;
    display: inline-block;
}
.main-heading h2::after {
    content: ".";
    position: absolute;
    color: #00b75f;
    right: -8px;
    top: 0px;
}
.main-heading h5 {
    font-size: 22px;
}

.bg-dark .main-heading h2 {
    color: #fff;
}
.bg-dark .main-heading h5 {
    color: #fff;
}
.main-heading.left-heading {
    text-align: left;
}
.main-heading.left-heading h5{
    color: #a3b2b3;
    font-size: 16px;
}
.main-heading.center-heading h5{
    color: #a3b2b3;
    font-size: 16px;
}


.testimonial-box{
	text-align: center;
}
.testimonial-box .image {
    width: 100px;
    margin: 0 auto;
    border-radius: 100%;
    overflow: hidden;
    height: 100px;
}
.testimonial-box .content {
    width: 80%;
    margin: 30px auto;
}
.testimonial-box .content p{
    text-align: justify;
}
.testimonial-box .owl-dots {
    display: none;
}
.testimonial-section #counter {
    text-align: center;
}
.testimonial-section #counter span{
	display: inline-block;
	width: 20px;
	background-color: #000;
	height: 1px;
	margin: 0 20px;
}

.clients-section img {
    background-color: #fff;
    margin-bottom: 25px;
}


.counter-box {
    text-align: center;
}
.counter_info .counter-value {
    font-size: 46px;
    font-weight: 700;
    display: inline-block;
    padding-right: 5px;
    position: relative;
}
.counter_info .counter-value::after {
	content: "+";
  position: absolute;
  right: -22px;
  top: 0;
}
.counter_info .count_title{
	color: #666;
	font-size: 16px;
}


.contact_info .mail .btn-text {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact_info p{
	color: #a3b2b3;
	margin-bottom: 0;
}

.newsletter{
	margin: 50px 0;
}
.newsletter a{
	color: #fff;
	font-size: 28px;
}
.newsletter a i {
    margin-top: 0px;
    font-size: 46px;
    transform: rotate(-45deg);
    line-height: 20px;
    margin-right: -7px;
    color: #00ea79;
    display: inline-block;
    position: absolute;
}

.footer-nav ul {
    padding: 0;
}
.footer-nav ul li {
    list-style-type: none;
}
.footer-nav ul a {
    display: inline-block;
    color: rgba(255,255,255,.8);
    padding: 10px 0;
}
.copyrights {
    text-transform: uppercase;
    margin: 40px 0;
}

.fix_social {
    position: fixed;
    left: 0;
    top: 40%;
}
.fix_social a {
    font-size: 20px;
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 100%;
    background-color: #3b5998;
    color: #fff;
    line-height: 36px;
    margin: 5px 0;
    position: relative;
    transition: 0.3s;
}
.fix_social a:nth-child(2) {
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.fix_social a:nth-child(3) {
    background-color: #2e78b6;
}
.fix_social a:nth-child(4) {
    background: -moz-linear-gradient(45deg, #00acd8 0%, #00acd8 25%, #00dea7 75%, #00dea7 100%);
    background: -webkit-linear-gradient(45deg, #00acd8 0%, #00acd8 25%, #00dea7 75%, #00dea7 100%);
    background: linear-gradient(45deg, #00acd8 0%, #00acd8 25%, #00dea7 75%, #00dea7 100%);
}


.fix_social a span {
    position: absolute;
    font-size: 14px;
    background-color: #fff;
    padding: 4px 15px;
    color: #000;
    line-height: 20px;
    left: 65px;
    top: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.fix_social a:hover span {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s;
    left: 45px;
}

.team_member {
    text-align: center;
}
.team_member h4 {
    margin: 10px 0 0 0;
    font-size: 20px;
    font-weight: 600;
}


.team-note .note h4 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}
.team-note .note h6 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

#lightgallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}


.opportunities .note h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}
.opportunities hr {
    width: 30px;
    opacity: 1;
}

.connect-section .contact h6{
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}
.connect-section .contact p{
    color: #666;
}

textarea.form-control {
    min-height: 150px;
}

.main_banner h3{
    color: #fff;
    font-size: 28px;
}
.main_banner p {
    color: #fff;
}