@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
	--fontFamily: 'Heebo', sans-serif;
	--mainColor: #d83e48;
	--mainColor2: #1f2d5e;
	--optionalColor: #615a5a;
	--whiteColor: #ffffff;
	--blackColor:#385a64;
	--fontSize: 16px;
	--transition: .5s;
}

html::-webkit-scrollbar{width:9px; height:10px; background-color:rgba(0, 0, 0, 0)}
html::-webkit-scrollbar-thumb{background-color:#615a5a; border-radius:9px;}
::-moz-scrollbar{width:9px; height:0; background-color:rgba(0, 0, 0, 0)}
::-moz-scrollbar-thumb{background-color:#615a5a; border-radius:9px;}
::-o-scrollbar{width:9px; height:0; background-color:rgba(0, 0, 0, 0)}
::-o-scrollbar-thumb{background-color:#615a5a; border-radius:9px;}

body {
	margin: 0;
	padding: 0;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-family: var(--fontFamily)
}

li
{
	line-height: 1.8;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--blackColor);
	font-family: var(--headingFontFamily);
}

a {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--blackColor);
	text-decoration: none;
	outline: 0!important
}

a:hover {
	color: var(--mainColor);
	text-decoration: none
}

:focus {
	outline: 0!important
}

.d-table {
	width: 100%;
	height: 100%
}

.d-table-cell {
	vertical-align: middle
}

img {
	max-width: 100%;
	height: auto
}

p {
	margin-bottom: 15px;
	line-height: 1.8;
	color: #615a5a;
	font-size: 16px;
	text-align: justify;
}

p:last-child {
	margin-bottom: 0
}



.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.pt-100 {
	padding-top: 100px
}
.pb-30 {
	padding-bottom: 30px
}

.pb-100 {
	padding-bottom: 100px
}

.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px
}

.mb-100 {
	margin-top: 100px;
}
.pt-70 {
	padding-top: 70px
}

.mt-50 {
	margin-top: 45px;
}

.mt-60 {
	margin-top: 60px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mt-80
{
	margin-top: 80px;
}

.mt-30
{
	margin-top: 30px;
}

.mt-20
{
	margin-top: 20px;
}

.mb-80
{
	margin-bottom: 80px;
}

.mt-100
{
	margin-top: 100px;
}

.pb-70 {
	padding-bottom: 70px
}
.mt-lg-0 {
    margin-top: 0!important;
}
.mt-5 {
    margin-top: 3rem!important;
}

.mt-40
{
	margin-top: 50px;
}

.mt-2 {
	margin-top:8px;
}

.mt-8 {
    margin-top: 8rem!important;
}

.mt-30 {
    margin-top: 30px!important;
}

.mb-50
{
	margin-bottom: 50px;
}


.mb-30
{
	margin-bottom: 30px;
}

.mb-80
{
	margin-bottom: 80px;
}



.section-title {
	max-width: 720px;
	text-align: center;
	position: relative;
	padding-bottom: 25px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}

.section-title .sub-title {
	display: block;
	margin-bottom: 12px;
	color: var(--mainColor);
	font-size: 15px;
	font-weight: 700
}

.section-title h2 {
	font-size: 38px;
	margin-bottom: 0;
	font-weight:400;
}

.section-title p {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 12px
}

 .btn-style-two {
    position: relative;
    padding: 8px 8px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #e38c92;
    color:#ffffff;
    background:#d83e48;
    /* text-transform: uppercase; */
    text-align: center;
    font-family: 'Heebo', sans-serif;
    border-radius: 4px;
}

.btn-style-two:hover{
	color:#d83e48;
	background:#ffffff;
}


.theme-btn {
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.btn-style-two i {
    position: relative;
    font-size: 14px;
    vertical-align: middle;
    padding-left: 10px;
}

.dropdown-menu li
{
	border-bottom: 1px dotted #dedada;
    line-height: 2;
    color: var(--blackColor);
}
.shape {
    position: absolute;
}

.shape1 {
    bottom: 0;
    left: 0;
    z-index: -1;
	opacity:.4;
}
.form-control {
	border-radius: 0;
	background-color: #f5f5f5!important;
	-webkit-box-shadow: unset!important;
	box-shadow: unset!important;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border: none!important;
	height: 50px;
	padding-left: 15px;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-weight: 500
}

.form-control::-webkit-input-placeholder {
	color: #999;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.form-control:-ms-input-placeholder {
	color: #999;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.form-control::-ms-input-placeholder {
	color: #999;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.form-control::placeholder {
	color: #999;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.form-control:focus::-webkit-input-placeholder {
	color: transparent
}

.form-control:focus:-ms-input-placeholder {
	color: transparent
}

.form-control:focus::-ms-input-placeholder {
	color: transparent
}

.form-control:focus::placeholder {
	color: transparent
}

textarea.form-control {
	padding-top: 15px;
	height: auto
}

@-webkit-keyframes about-ani-one {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
	50% {
		-webkit-transform: translate(-15px, 0);
		transform: translate(-15px, 0)
	}
	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
}

@keyframes about-ani-one {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
	50% {
		-webkit-transform: translate(-15px, 0);
		transform: translate(-15px, 0)
	}
	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
}

@-webkit-keyframes about-ani-two {
	0% {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg)
	}
	50% {
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg)
	}
	100% {
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg)
	}
}

@keyframes about-ani-two {
	0% {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg)
	}
	50% {
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg)
	}
	100% {
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg)
	}
}

@-webkit-keyframes about-ani-three {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes about-ani-three {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-webkit-keyframes movebounce {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	50% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
}

@keyframes movebounce {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	50% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to { 
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }
    to { 
        -moz-transform: rotate(360deg);
    }
}
@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }
    to { 
        -o-transform: rotate(360deg);
    }
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.rotate-me {
    animation-name: rotateme; 
    animation-duration: 24s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  
  -webkit-animation-name: rotateme; 
    -webkit-animation-duration: 24s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: rotateme; 
    -moz-animation-duration: 24s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: rotateme; 
    -ms-animation-duration: 24s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: rotateme; 
    -o-animation-duration: 24s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
}


 .anim-icons .icon-3 {
  left: 4%;
  top: 18%;
  background-repeat: no-repeat;
}

 .anim-icons .icon-4 {
  left: 10%;
  bottom: 86px;
  background-repeat: no-repeat;
}

 .anim-icons .icon-5 {
    top: 20px;
    left: 38%;
    background-repeat: no-repeat;
}

.animate-border {
	position: relative;
	display: block;
	width: 115px;
	height: 3px;
	background: #d83e48;
}

.animate-border:after {
	position: absolute;
	content: "";
	width: 35px;
	height: 3px;
	left: 0;
	bottom: 0;
	border-left: 10px solid #fff;
	border-right: 10px solid #fff;
	-webkit-animation: animborder 2s linear infinite;
	animation: animborder 2s linear infinite;
}
.animate-border.border-black:after {
	border-right-color: #1a2e35;
    border-left-color: #1a2e35;
}

@-webkit-keyframes animborder {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}

	100% {
		-webkit-transform: translateX(113px);
		transform: translateX(113px);
	}
}

@keyframes animborder {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}

	100% {
		-webkit-transform: translateX(113px);
		transform: translateX(113px);
	}
}

.be-mt-20 {
    margin-top: 20px !important;
}

.ml-auto, .mx-auto {
    margin-left: auto!important;
}

.mr-auto, .mx-auto {
    margin-right: auto!important;
}

.be-menu-bar {
    width: 30px;
    display: inline-block;
    position: absolute;
    right: 12px;
    font-size: 38px;
    top: 50%;
    margin-top: -25px;
    text-align: center;
}

.be-off-search {
	background: #4dc247;
	width: 50px;
	position:fixed;
	height: 50px;
	color: #fff;
	border-radius: 25px;
	z-index: 3;
	left: 5%;
	bottom: 8%;
}

.be-off-search a
{ 
   color:#fff;
}

.be-search i {
	position: absolute;
	top: 50%;
	left: 0%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 20px;
}

.be-search i:hover {
	cursor: pointer;
}

.be-search::after {
	position: absolute;
	top: 25%;
	left: 48%;
	width: 1px;
	height: 50%;
	background: #4D4B4C;
	content: "";
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}

/*--------------------------------------------------------------
# Header Area
--------------------------------------------------------------*/


.bottom-bar
{
	background-color: transparent;
    
}

.logo
{
	text-align:center;
	display:block;
}

.top-bar
{
	/* background-color: #1a2e35; */
	/* padding: 0px 0; */
	border-bottom: 1px solid #f1f1f1;
	margin-bottom:15px;
}
.navbar-brand {
   display:none;
}
.top-bar a
{
	color: #707070;
	padding: 9px 5px;
	font-size:15px;
	/* border-left: 1px solid #f1f1f1; */
}



.top-contact-info i
{
	margin-right:10px;
}

.top-contact-info ul
{
	padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.top-contact-info ul li {
    display: inline-block;

    position: relative;
    padding: 5px 5px;
    color: #d8d0d0;
    border-left: 1px solid #f1f1f1;
}
.top-contact-info ul li:nth-child(3) {
 border-right: 1px solid #f1f1f1;
}

.top-social-links ul
{
	padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.top-social-links ul li {
        display: inline-block;
    /* margin-right: 15px; */
    position: relative;
    padding: 5px;
    color: #d8d0d0;
    border-left: 1px solid #f1f1f1;
}
.top-social-links ul li:nth-child(4) {
 border-right: 1px solid #f1f1f1;
}
.navbar .megamenu
{ padding: 1rem; 
}

.navbar .megamenu h6
{ color:#d83e48;
  font-size: 18px;
}

@media all and (min-width: 992px) {
	
	.navbar .has-megamenu{position:static!important;}
	.navbar .megamenu {
    left: 9%;
    right: 9%;
    margin-top: 0;
    border: 1px solid #f1f1f1;
}
}	

@media(max-width: 991px){
	.navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
		overflow-y: auto;
	    max-height: 90vh;
	    margin-top:10px;
	}
}

.nav-item i
{
	font-size:22px;
}


.main-container .about-bg2 {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: -1;
   /* -webkit-animation: movebounce 3s linear infinite;
    animation: movebounce 3s linear infinite;*/
}

/*--------------------------------------------------------------
# Banner Area
--------------------------------------------------------------*/
.home-heading-title {
    box-shadow: 0px 30px 30px 0px rgb(64 75 103 / 6%);
    background: #fff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
}
.main-banner-area {
	position:relative; 
}

.main-banner-area .about-area {
	position: relative;
	z-index: 0;
}
.main-banner-area .about-area .about-shape img {
	position: absolute
}

.main-banner-area .about-area .about-shape img {
	right: 10%;
	top: 90px;
	-webkit-animation: about-ani-one 5s linear infinite;
	animation: about-ani-one 5s linear infinite;
	z-index: -1;
}



.main-banner-content
{
	text-align: center;
}

.main-banner-content .sub-title {
	display: block;
	margin-bottom: 12px;
	color: var(--mainColor);
	font-size: 15px;
	font-weight: 700
}

.main-banner-content h1 {
    font-size: 38px;
    color: #385a64;
	font-weight: 400;
	margin-top:-25px;
}

.main-banner-content p {
	color: #615a5a; 
    padding-top: 10px;
	margin-bottom:20px;
	text-align: center;
}

.main-banner-content .text-primary {
    color: #d83e48 !important;
}

.banner-company-register {
    text-align: center;
    background: #fff;
    padding: 35px 20px;
    box-shadow: 0px 30px 30px 0px rgb(64 75 103 / 6%);
    margin: 20px 0;
    border: 1px solid #f1f1f1;
	transition: 0.3s;
	position: relative;
    overflow: hidden;

}

.banner-company-register:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgb(1 41 112 / 10%);
}

.banner-company-register h5
{
	text-align:center;
	font-weight:400;
}

.banner-company-register a
{
	color:#fff;
	text-decoration: none;
	font-weight: 500;
}

.banner-company-register p
{
	text-align: center;
}

.find_section {
  padding: 24px 20px;
  transition: 0.3s;
}

.find_section h3 {
  font-size: 18px;

}

.find_section i {
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  transition: 0.3s;
  color:var(--mainColor);
  vertical-align: middle;
}

.find_section  p
{
	    line-height: inherit;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features{
    position: relative;
}

.features .imagearea {
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
}
.features .about-area {
	position: relative;
	z-index: 0;
}
.features .about-area .about-shape img {
	position: absolute
}

.features .about-area .about-shape img {
	right: 0;
	top: 25px;
	-webkit-animation: movebounce 6s linear infinite;
	animation: movebounce 6s linear infinite;
	z-index: -1;
}
.features .feature-box {
  padding: 24px 20px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0px 5px 30px 0px rgb(64 75 103 / 6%);
    border: 1px solid #f1f1f1;
	background: #fff;
	transition: .3s;
}

.features .feature-box:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgb(1 41 112 / 10%);
}

.features .feature-box h3 {
  font-size: 16px;
  margin: 0;
  font-weight:400;
}

.features .feature-box i {
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
  color:var(--mainColor);
}

.features .feture-tabs {
  margin-top: 120px;
}

.features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# Popular Service
--------------------------------------------------------------*/

.popular_service{
	position: relative;
}

.popular_service .about-area {
	position: relative;
	z-index: -1;
}
.popular_service .about-area .about-shape img {
	position: absolute
}

.popular_service .about-area .about-shape img {
	left: 0;
	top: 0;
	-webkit-animation: rotateme 20s linear infinite;
	animation: rotateme 20s linear infinite;
	z-index: -1;
}

.popular_service .about-bg2 {
    position: absolute;
    top: -800px;
    left: 0;
    z-index: -1;
   /* -webkit-animation: movebounce 3s linear infinite;
    animation: movebounce 3s linear infinite;*/
}

.popular_service .about-bg {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: -1;
    /* -webkit-animation: movebounce 3s linear infinite;
    animation: movebounce 3s linear infinite;*/
}

.popular_service .nav-pills .nav-link {
	border-radius: 5px;
	margin: 10px 10px;
	color: #ffffff;
	font-weight: 500;
	text-align: left;
	border: none;
	font-size: 16px;
	background: #d83e48;
}



.popular_service .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #d83e48;
    background: transparent;
    border: 1px solid #d83e48;
}

.service_tab_box
{
	padding: 40px 20px;
	background: #fff;
	box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: 0.3s;
	margin-top:30px;
	min-height: 470px;
}

.service_tab_box:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgb(1 41 112 / 10%);
}

.service_tab_box h4
{
	text-align: center;
	margin-bottom: 30px;
}

.service_tab_box p
{
	
    border-bottom: 1px solid #f1f1f1;
	text-align: left;
}

.service_tab_box p::before 
{
	font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f30b";
	font-size: 10px;
}

.service_tab_content
{
	min-height: 268px;
}

.service_tab_know
{
	/* margin-top:50px; */
	text-align:center;
}
.service_tab_know a {
    color: #d83e48;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #d83e48;
    padding: 10px 10px;
    border-radius: 5px;
	transition: 0.3s;
}

/* ==========================

    Footer

=============================*/
.be-footer {
	padding: 75px 0 0;
	background-color: #1a2e35;
	position: relative;
	z-index: 2;
}

.be-footer .contact-us {
	margin-top: 0;
	margin-bottom: 30px;
	padding-left: 80px;
}

.be-footer .contact-us a
{ 
color: #878787;
}

.be-footer .contact-us .contact-info {
	margin-left: 50px;
}

.be-footer .contact-icon i {
	font-size: 20px;
    /* top: -15px; */
    position: relative;
    color: #d83e48;
}

.be-footer-info-box {
    background: #1e3238;
    padding: 40px;
    z-index: 2;
    margin-top: -122px;

}

.be-footer-info-box .footer-social-link h3 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 25px;
}

.be-footer-info-box .footer-social-link ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.be-footer-info-box .footer-social-link li {
	display: inline-block;
}

.be-footer-info-box .footer-social-link a i {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	background: #122227;
	margin-right: 5px;
	color: #fff;
}

.footer-awarad
{
	display:block;
}


.footer-awarad p {
	color: #fff;
    font-size: 24px;
    padding-top: 15px;
}

.footer-info-text {
	margin: 26px 0 32px;
	color:#d2d2d2;
}

.footer-widget {
	padding-left: 30px;
}

.footer-widget .section-heading {
	margin-bottom: 35px;
}

.footer-widget h3 {
	font-size: 24px;
	color: #fff;
	position: relative;
	margin-bottom: 15px;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
}

.footer-widget ul {
	width: 100%;
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widget li {
	margin-bottom: 18px;
}

.footer-widget p {
	margin-bottom: 27px;
}

.footer-widget a {
	color: #d2d2d2;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.footer-widget a:hover {
	color: #d83e48;
}

.footer-widget:after {
	content: "";
	display: block;
	clear: both;
}



/* ==========================

   Footer Contact

=============================*/
.contact-us {
	position: relative;
	z-index: 2;
	margin-top: 65px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contact-icon {
	position: absolute;
}

.contact-icon i {
	font-size: 36px;
	top: -5px;
	position: relative;
	color: #d83e48;
}

.contact-info {
	margin-left: 75px;
	color: #fff;
}

.contact-info h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 0;
}

.copyright {
	padding: 28px 0;
	margin-top: 55px;
	background-color: #1e3238;
}

.copyright span,
.copyright a {
	color: #d2d2d2;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.copyright a:hover {
	color: #d83e48;
}

.copyright-menu ul {
	text-align: right;
	margin: 0;
}

.copyright-menu li {
	display: inline-block;
	padding-left: 20px;
}

/*--------------------------------------------------------------
# Scroll To Top
--------------------------------------------------------------*/

.go-top {
	z-index: 4;
	opacity: 0;
	right: 20px;
	width: 43px;
	height: 45px;
	bottom: 20px;
	position: fixed;
	cursor: pointer;
	border-radius:5px;
	font-size: 30px;
	visibility: hidden;
	text-align: center;
	color: #ffffff;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	background-color: var(--mainColor);
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
	box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.go-top i {
	left: 0;
	top: 50%;
	right: 0;
	text-align: center;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-left: auto;
	margin-right: auto
}

.go-top.active {
	opacity: 1;
	bottom: 20px;
	visibility: visible
}

.go-top:hover {
	color: #ffffff;
	background-color: var(--blackColor)
}

/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.ps-timeline-sec {
	position: relative;
}
.ps-timeline-sec .container {
	position: relative;
}
@media screen and (max-width: 767px) {
	
	.ps-timeline-sec .container ol.ps-timeline {
		margin: 0px 0 !important;
		border-left: 2px solid #d83e48;
		padding-left: 0 !important;
		padding-top: 120px !important;
		border-top: 0 !important;
		margin-left: 25px !important;
		}
	.ps-timeline-sec .container ol.ps-timeline li {
		height: 190px;
		float: none !important;
		width: inherit !important;
		}
	
	.ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot {
		bottom: 160px !important;
		}
	
	.ps-timeline-sec .container ol.ps-timeline li:last-child .ps-top {
		margin-bottom: 0 !important;
		top: -20px;
		}
	.ps-timeline-sec .container ol.ps-timeline li span {
		left: 0 !important;
   }
	.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
		content: none !important;
   }
	.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
		content: none !important;
   }
	.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
		content: none !important;
   }
	.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
		content: none !important;
   }
	.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
		position: absolute !important;
		bottom: 150px !important;
		width: 30% !important;
		float: left !important;
		margin-left: 35px !important;
		margin-bottom: 0 !important;
   }
	.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
		position: absolute !important;
		bottom: 152px !important;
		width: 30% !important;
		float: left !important;
		margin-left: 35px !important;
		margin-bottom: 0 !important;
		}
	.ps-timeline-sec .container ol.ps-timeline li p {
		text-align: left !important;
		width: 100% !important;
		margin: 0 auto !important;
		margin-top: 0px !important;
   }
   .ps-timeline-sec .container ol.ps-timeline li h4 {
    text-align: left !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: -33px !important;
}
	.ps-timeline-sec .container ol.ps-timeline li .ps-top {
		width: 60% !important;
		float: right !important;
		right: 0;
		top: -15px;
		}
	.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
		width: 60% !important;
		float: right !important;
		right: 0;
		top: -40px;
   }
}
.ps-timeline-sec .container ol.ps-timeline {
	margin: 216px 0;
	padding: 0;
	border-top: 2px solid #d83e48;
	list-style: none;
}
.ps-timeline-sec .container ol.ps-timeline li {
	float: left;
	width: 25%;
	padding-top: 30px;
	position: relative;
}
.ps-timeline-sec .container ol.ps-timeline li span {
	width: 45px;
	height: 45px;
	margin-left: -25px;
	background: #fff;
	border: 2px solid #d83e48;
	border-radius: 50%;
	box-shadow: 0 0 0 0px #fff;
	text-align: center;
	line-height: 50px -10;
	color: #385a64;
	font-size: 24px;
	font-style: normal;
	position: absolute;
	top: -31px;
	left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
	content: '';
	color: #d83e48;
	width: 2px;
	height: 50px;
	background: #d83e48;
	position: absolute;
	top: -50px;
	left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
	content: '';
	color: #d83e48;
	width: 8px;
	height: 8px;
	background: #d83e48;
	position: absolute;
	bottom: 90px;
	left: 44%;
	border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
	content: '';
	color: #d83e48;
	width: 2px;
	height: 50px;
	background: #d83e48;
	position: absolute;
	bottom: -50px;
	left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
	content: '';
	color: #d83e48;
	width: 8px;
	height: 8px;
	background: #d83e48;
	position: absolute;
	top: 90px;
	left: 44%;
	border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
	position: absolute;
	bottom: 0;
	margin-bottom: 130px;
	width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
	display: table;
	margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
	position: absolute;
	margin-top: 20px;
	width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot img {
	display: table;
	margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li p {
	text-align: center;
	width: 80%;
	margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li h4 {
	text-align: center;
	width: 80%;
	margin: 0 auto;
	color: var(--mainColor);
	font-size: 18px;
	padding-bottom: 8px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-top {
	position: absolute;
	bottom: 0;
	margin-bottom: 100px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
	position: absolute;
	margin-top: 35px;
}

/* -------------------
Testimonial Area 
-------------------------- */

.testimonial-area {
	position: relative;	
	padding-top: 30px;
}

.testimonial-area .about-area {
	position: relative;
	z-index: 0;
}
.testimonial-area .about-area .about-shape img {
	position: absolute
}

.testimonial-area .about-area .about-shape img {
	left: 0;
	top: 0px;
	-webkit-animation: about-ani-one 5s linear infinite;
	animation: about-ani-one 5s linear infinite;
	z-index: -1;
}

.testimonial-area .imagearea {
    position: absolute;
    top: -350px;
    right: 0;
    z-index: -1;
}

.testimonial-content {
	padding-right: 15px
}


.single-testimonial-box
{
	text-align: center;
}

.testimonial-content .testimonial-desc p {
	color: var(--blackColor);
	font-weight: 600;
	font-size: 17px
}

.testimonial-content .testimonial-desc .info {
	margin-top: 20px;

}

.single-testimonial-box .testimonial-desc .info h3 {
	font-size: 18px;
	margin-bottom: 10px
}


/* -------------------
Partner Area 
-------------------------- */

.partner-area
{
	position: relative;
}

.partner-area .about-bg2 {
    position: absolute;
    top: -600px;
    left: 0;
    z-index: -1;
}
.single-partner-item 
{
	    text-align: center;
		border-radius: 0 0 5px 5px;
		border: 1px solid #eee;
		-webkit-transition: var(--transition);
		transition: var(--transition);
		background: #fff;
		position: relative;
		-webkit-box-shadow: 0 7px 30px -10px rgb(133 153 162 / 30%);
		box-shadow: 0 7px 30px -10px rgb(133 153 162 / 30%);
}
.single-partner-item img 
{
		width: auto!important;
		display: inline-block!important;
		filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}

.single-partner-item img :hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

/* -------------------
Blog Area
----------------------*/

.blog-area
{
	position: relative;
}
.single-blog-item {
	-webkit-box-shadow: 0 7px 30px -10px rgba(133, 153, 162, .3);
	box-shadow: 0 7px 30px -10px rgba(133, 153, 162, .3);
	background-color: #ffffff;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	margin-bottom: 30px;
	border-radius: 5px
}

.single-blog-item .post-image {
	border-radius: 5px 5px 0 0
}

.single-blog-item .post-image a {
	border-radius: 5px 5px 0 0;
	display: block
}

.single-blog-item .post-image a img {
	border-radius: 5px 5px 0 0
}

.single-blog-item .post-content {
	padding: 30px;
	border-radius: 0 0 5px 5px;
    border: 1px solid #eee;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: #fff;
}

.single-blog-item .post-content .meta {
	padding-left: 0;
	margin-bottom: 15px;
	list-style-type: none
}

.single-blog-item .post-content .meta li {
	position: relative;
	padding-left: 22px;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--optionalColor);
	display: inline-block;
	margin-right: 15px;
	font-weight: 600
}

.single-blog-item .post-content .meta li:last-child {
	margin-right: 0
}

.single-blog-item .post-content .meta li a {
	display: inline-block;
	color: var(--optionalColor)
}

.single-blog-item .post-content .meta li a:hover {
	color: var(--mainColor)
}

.single-blog-item .post-content .meta li i {
	color: var(--mainColor);
	font-weight: 400;
	position: absolute;
	left: 0;
	top: 0
}

.single-blog-item .post-content h3 {
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 12px;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-blog-item .post-content h3 a {
	display: inline-block;
	
}

.single-blog-item .post-content p {
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-blog-item .post-content .default-btn {
	margin-top: 5px;
	color:#d83e48;
}


/*--------------------------------------------------------------
# Inner Page Banner
--------------------------------------------------------------*/
.inner_banner
{
	position:relative;
}
.inner_banner .about-bg2 {
    position: absolute;
    top: -222px;
    left: 0;
    z-index: -1;
}
.inner_banner .section-title
{
   text-align: left;
}

.inner_banner .section-title p {
	margin-left: 0;
    margin-right: 0;
   
}
.inner_banner_form_head
{
   padding:20px 20px;
   background-color:#d83e48;
   color:#fff;
}
.inner_banner_form
{
	padding: 40px 20px;
    background: #fff;
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.inner_banner_form .form-control {
    background-color: transparent !important;
    -webkit-box-shadow: unset!important;
    box-shadow: unset!important;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    height: 40px;
    padding-left: 15px;
    color: var(--blackColor);
    font-size: var(--fontSize);
    font-weight: 400;
    margin: 10px 0;
    border-bottom: 2px solid #f1f1f1 !important;
}

/*--------------------------------------------------------------
# Inner Page Tab
--------------------------------------------------------------*/
.inner_page_tabs .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #d83e48;
    background: transparent;
    border: 1px solid #d83e48;
}

.inner_page_tabs .nav-pills .nav-link {
    border-radius: 5px;
    margin: 10px 10px;
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    border: none;
    font-size: 16px;
    background: #d83e48;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact
{
	position:relative;
}
.contact .about-bg2 {
    position: absolute;
    top: -222px;
    left: 0;
    z-index: -1;
}

.contact .info-box {
	text-align: left;
    background: #fff;
    padding: 35px 20px;
    box-shadow: 0px 30px 30px 0px rgb(64 75 103 / 6%);
    margin: 20px 0;
    border: 1px solid #f1f1f1;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
  }

  .contact .info-box:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgb(1 41 112 / 10%);
}
  
  .contact .info-box i {
	font-size: 35px;
	line-height: 0;
	color: #d83e48;
  }
  
  .contact .info-box h3 {
	font-size: 22px;
	color: var(--blackColor);
	font-weight: 500;
	margin: 20px 0 10px 0;
  }
  
  .contact .info-box p {
	padding: 0;
	line-height: 24px;
	margin-bottom: 0;
  }
  .contact .info-box p .stroong{
    color: #d83e48;
  }

  .contact .form-control{
    display: block;
    width: 100%;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #999999;
  
    background-color: #fff !important;
    background-repeat: no-repeat;
    border: 1px solid #f1f1f1 !important;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .contact .btn-style-two {
    position: relative;
    padding: 10px 24px;
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
    width: 100%;
    border: 1px solid #e38c92;
    color: #ffffff;
    background: #d83e48;
    /* text-transform: uppercase; */
    text-align: center;
    font-family: 'Heebo', sans-serif;
    border-radius: 4px;
}

.help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
}

/* ==========================
 Terms & Condition
=============================*/


.terms .about-bg2 {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: -1;
}
.terms li
{
	color: #615a5a;
}

.terms i
{
	margin-right:10px;
}

/* ==========================
About Area
=============================*/

.be-about-bin p
{
	text-align:justify;
}

.be-about-bin a
{
  color:#d83e48;
}


.about-box {
    text-align: center;
    background: #fff;
    border: 1px solid #f1f1f1;
    padding: 30px 15px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-box-shadow: 0px 15px 30px 0px rgb(2 18 106 / 5%);
    box-shadow: 15px 15px 30px 0px rgb(2 18 106 / 5%);
}

.about-box .about-icon {
	margin-bottom: 26px;
	width: 100%;
	height: 50px;
}

.about-box .about-icon-inner {
	vertical-align: middle;
}

.about-box h3 {
	font-size: 20px;
	color: var(--blackColor);
	margin-bottom: 16px;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.about-box p {
	margin-bottom: 5px;
}

.about-box a {
	margin-top: 10px;
}

.about-box:hover {
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.about-area {
	position: relative;
	z-index: -1;
}

.about-area .about-shape img {
	position: absolute
}

.about-area .about-shape img {
	right: 0;
	top: -158px;
	-webkit-animation: about-ani-one 2s linear infinite;
	animation: about-ani-one 2s linear infinite;
	z-index: -1;
}

/* -------------------
Download Page
-------------------------- */

.download_page
{
	position:relative;
}
.download_page .about-bg2 {
    position: absolute;
    top: -222px;
    left: 0;
    z-index: -1;
}
.download_page .section-title
{
   text-align: center;
}

.downloads h2
{
	font-weight: 400;
	font-size: 30px;
}

.downloads .nav-pills .nav-link {
	border-radius: 5px;
	margin: 10px 10px;
	color: #ffffff;
	font-weight: 500;
	text-align: left;
	border: none;
	font-size: 16px;
	background: #d83e48;
}


.downloads .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #d83e48;
    background: transparent;
    border: 1px solid #d83e48;
}

.download_table
{
	margin-bottom:100px;
}

.download_table th
{
color:#385a64;
font-size: 18px;
font-weight: 500;
}

.download_table td
{
	color:#615a5a;
}

.landing-page-tab h3{
	color: #d83e48;
}

.landing-page-tab ul li{
	 margin: 5px 0;
	 padding-bottom: 5px;
	 border-bottom: 1px solid #cccccc;
}

.message {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: #b2b2b2;
	opacity: 0.90;
	z-index: +1;
}
#message {
	width: 100%;
	height: 198px;
	font-size: 14px;
	overflow-y: scroll;
}
.message_leave {
	width: 100%;
	height: 15px;
	text-align: center;
	background: #f5f5f5;
	font-size: 10px;
}
.message_pad {
	position: fixed;
	left: 200px;
	margin-top: 65px;
	width: 500px;
	height: 500px;
	padding: 5px;
    color: #000000;
	background: #f5f5f5;
	border: 2px solid;
	border-color: #9a9a9a;
	border-radius: 10px;
	box-shadow: 0px 4px 15px #000000;
}

.landingpage h2
{
	font-size:12px;
	color:#fff;
	
}

.landingpage h2 a
{
	color:#fff;
	
}