@charset "utf-8";
@font-face {font-family: "Sakkal Majalla";
src: url(../fonts/majalla.ttf);
}
@font-face { font-family:"Beyond Infinity";
src:url(../fonts/Beyond%20Infinity%20-%20Demo.ttf);
}

@font-face { font-family:"Qwigley-Regular";
src:url(../fonts/Qwigley-Regular.ttf);
}
@media all and (max-width: 540px) {
    .cp-title h2 {
    color: white;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 26px;
}
    #companyprofile .row{
        padding: 30px 10px 0 10px !important;
    }
    #why-company-profile p{
            padding-top: 30px !important;

    }
    #company-profile-features .row{
            padding-top: 30px !important;
    }
}

body{
    background-color: #252424;
    color: #a8a1a1;
    font-family: 'Open Sans', sans-serif;
}



.float{
    position: fixed;
    width: 57px;
    height: 57px;
    bottom: 40px;
    right: 89px;
    z-index: 100;
}
.float img{
    width:160px;
}

.my-float{
	margin-top:16px;
}







#companyprofile{
    margin-top: 55px;
}
.cp-title h2{
    color: white;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 40px;
}
.cp-title h1{
    color: white;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 40px;
	margin:0;
}
.video{
    background: linear-gradient(180deg, rgba(194,194,194,1) 0%, rgba(255,255,255,1) 44%, rgba(194,194,194,1) 100%);
    color: #ffffff;
    padding: 6px 10px;
    border: none;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 20px;
}
.video a{
    color: #04395d !important;
    font-weight: 800;
}

.img-wrap{
    width: 100%;
}
.img-wrap img{
    width: 100%;
}














#why-company-profile{
    margin-top: 50px;
    padding: 40px 0;
    background: #fff;
}
#why-company-profile span{
	font-weight: 600;
}

.progress-indicator.stepped.stacked {
        width: 48%;
        display: inline-block;
    }
    .progress-indicator.stepped.stacked > li {
        height: 150px;
    }
    .progress-indicator.stepped.stacked > li .bubble {
        padding: 0.1em;
    }
    .progress-indicator.stepped.stacked > li:first-of-type .bubble {
        padding: 0.5em;
    }
    .progress-indicator.stepped.stacked > li:last-of-type .bubble {
        padding: 0em;
    }

.progress-indicator.nocenter.stacked > li {
        min-height: 100px;
    }
	span.bubble{
		float:left;
	}











#company-profile-features{
    margin-top: 50px;
	margin-bottom: 50px;
}
.f-u li{
font-family: 'Open Sans', sans-serif;
padding: 0px 5px 15px 5px;
}

.f-u li::before{
    content: "\25e6";
    color: #0054a6;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 20px;
    -webkit-text-stroke-width: medium;;
}













#company-profile-works {
    padding-top: 40px;
    padding-bottom: 1px;
}













#company-profile-quote {
    padding-top: 50px;
	padding-bottom:50px;
    background: #fff;
}


/*------ 11. Contact area starts-------*/


#contact-form {
    box-shadow: 0 2px 13px 1px rgba(0,0,0,.2);
    padding: 5%;
    border: solid 1px;
}

.single-contact i {
    font-size: 30px;
    color: #0054a6;
}

.single-contact .socials i {
    font-size: 14px;
    color: #000000;
}

.socials i:hover {
    cursor: pointer;
}

.single-contact {
    margin-bottom: 50px;
}

.contact-area .form-control{
    border: none;
    border-bottom: 2px solid #a2a2a2;
    box-shadow: none;
    padding: 6px 0;
    border-radius: 0;
    margin-bottom: 30px;
}

.contact-area textarea.form-control{
    border:2px solid #a2a2a2;
    padding: 6px;
    height: 250px;
    margin-bottom: 30px;
}

.single-contact h2 {
    text-transform: uppercase;
    font-size: 16px;
}

button.btn-submit{

    justify-content: center;
    align-items: center;
    position: relative;
    padding: 5px 20px; 
    overflow: hidden;
    background:#252424;
    box-shadow: 0 5px 5px rgba(0,0,0,.2);
    border: none;
	color:#fff;
	margin-top: 20px;

}
button.btn-submit:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:50%;
	height:100%;
}
button.btn-submit:after{
	content:'';
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background: linear-gradient(90deg,transparent,rgba(225,225,225,.8),transparent);
	transition:0.5s;
	transition-delay:0.2s;
}
button.btn-submit:hover:after{
	left:100%;
}
button.btn-submit span {
	position:absolute;
	display:block;
	transition:0.5s ease;
}
button.btn-submit span:nth-child(1) {
	top:0;
	left:0;
	width:0;
	height:1px;
	background:#fff;
}
button.btn-submit:hover span:nth-child(1) {
	width:100%;
	transform:translateX(100%);
}
button.btn-submit span:nth-child(2) {
	top:0;
	left:0;
	width:1px;
	height:0;
	background:#fff;
}
button.btn-submit:hover span:nth-child(2) {
	height:100%;
	transform:translateY(100%);
}
button.btn-submit span:nth-child(3) {
	bottom:0;
	right:0;
	width:0;
	height:1px;
	background:#fff;
}
button.btn-submit:hover span:nth-child(3) {
	width:100%;
	transform:translateX(-100%);
}
button.btn-submit span:nth-child(4) {
	bottom:0;
	right:0;
	width:1px;
	height:0;
	background:#fff;
}
button.btn-submit:hover span:nth-child(4) {
	width:100%;
	transform:translateY(-100%);



.contact-right h2 {
    font-size: 18px;
    text-transform: uppercase;
}

.socials {
    padding-top: 5%;
}

.socials i {
    margin: 0 10px;
}

.single-contact {
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
    padding: 5%;
}


.otherselect {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}



/*-------- Contact area ends----------- */








.modal-dialog {
      max-width: 800px;
      margin: 30px auto;
  }



.modal-body {
  position:relative;
  padding:0px;
}
.close {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
}


.footerzeal {
	padding-bottom:0 !important;
	padding-right:0 !important;
	padding-left:0 !important;
	margin-top:0 !important;
}
.footerzeal6 p {
	padding-top:0 !important;
}
.footerzeal4 h4 {
    padding-top: 38px !important;
}
.footerzeal1 h1 {
    padding-bottom: 19px !important;
}
.footerzeal6 {
    padding-top: 25px;
    padding-bottom: 15px;
}
.footerzeall p {
	padding-top:0 !important;
}



















@media all and (max-width: 767px) {
.cp-title h1{
    font-size: 33px;
}
.cp-title h2{
    font-size: 33px;
}
    
	.cp-best-mobile{
		display:block !important;
	}
	.cp-best-pc{
		display:none !important;
	}
	.home-img{
		display:none;
	}
	.home-mobile{
		display:block !important;
	}
    .img-wrap {
    width: 100%;
        padding-bottom: 20px;
}
    
}


@media all and (max-width: 499px) {
    .gallery-module .slick-arrow.slick-prev {
    left: 0;
    display: none !important;
}
    .gallery-module .slick-arrow.slick-next {
    right: 0;
    display: none !important;
}
    .gallery-module p {
	color: #a8a1a1;
    text-align: center;
    padding-top: 30px;
    display: block !important;
}
}



@media all and (max-width: 448px) {
#companyprofile {
    margin-top: 35px;
}
}

@media all and (max-width: 440px) {
	#home{
		margin-top: 100px !important;
	}
}
@media all and (max-width: 440px) {
	#home {
    margin-top: 90px !important;
}
}
@media all and (max-width: 440px) {
	.progress-indicator>li.info .bubble{
		font-size: 12.8px !important;
	}
}
@media all and (max-width: 340px) {
	#home{
		margin-top: 80px !important;
	}
}










