*{
	margin:0px;
	padding:0px;
}
:root {
  --primaryColor: #09045df2;
  --secondaryColor: #ffce00;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.fade-in {
  opacity:1;  
  animation: flickerAnimation 1.5s infinite;
}
@keyframes flickerAnimation { /* flame pulses */
  0%   { opacity:1; }
  20%  { opacity:0; }
  40% { opacity:1; }
  60% { opacity:1; }
  80% { opacity:1; }
  100% { opacity:1; }
}
.input-danger {
    animation: error 500ms infinite alternate;
}


@keyframes error {
	0% {
		box-shadow: 0px 0px 0px red;
	}
	10% {
		box-shadow: 0px 0px 0px red;
	}
	20% {
		box-shadow: 0px 0px 0px red;
	}
	30% {
		box-shadow: 0px 0px 0px red;
	}
	40% {
		box-shadow: 0px 0px 0px red;
	}
	50% {
		box-shadow: 0px 0px 0px red;
	}
	60% {
		box-shadow: 0px 0px 0px red;
	}
	70% {
		box-shadow: 0px 0px 0px red;
	}
	80% {
		box-shadow: 0px 0px 0px red;
	}
	90% {
		box-shadow: 0px 0px 5px red;
		border-color: RED
	}
	100% {
		box-shadow: 0px 0px 5px red;
		border-color: RED
	}
}
.call-animation {
    background: #fff;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    border-radius: 100%;
    border: solid 1px #03a84e;
    animation: play 2s ease infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    position: fixed;
    bottom: 33px;
    left: 33px;
    background-image: url(../images/whatsapp.png);
    background-size: cover;
}
@keyframes play {

    0% {
        transform: scale(1);
    }
    15% {
        box-shadow: 0 0 0 5px rgba(18, 155, 17, 0.4);
    }
    25% {
        box-shadow: 0 0 0 10px rgba(18, 155, 17, 0.4), 0 0 0 20px rgba(18, 155, 17, 0.2);
    }
    25% {
        box-shadow: 0 0 0 15px rgba(18, 155, 17, 0.4), 0 0 0 30px rgba(18, 155, 17, 0.2);
    }

}
ul.check li{
	position:relative;
	padding-left:30px;
}
ul.check li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    color: var(--primaryColor);
    left: 0;
}
ul.ul-timeline{
	margin:10px 0px;
	list-style:none;
	counter-reset: section;
	padding-left: 10px;
}

ul.ul-timeline>li{
	background:#fff;
	padding:0px 20px 30px 50px;
	border-left:1px solid #f0f0f0;
	position:relative;
	margin-top: -1px;
}
ul.ul-timeline>li:last-child {
    border: 0px;
}
ul.ul-timeline>li:before {
    counter-increment: section;
    content: counter(section);
    display: block;
    background: var(--primaryColor);
    position: absolute;
    left: -13px;
    border-radius: 17px;
    top: 0;
    font-size: 12px;
    text-align: center;
    padding: 4px 10px;
    color: #fff;
    font-weight: bold;
}

ul.ul-timeline>li h4{
	margin-top: 0px;
    font-weight: 600;
    font-size: 16px;
}
ul.ul-timeline li p{
    font-size: 16px;
}
ul.ul-timeline ul{
	padding-left:20px;
	font-size: 15px;
}
.owl-dots {
    text-align: center;
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    background: #fff;
    padding: 5px;
    display: inline-block;
    margin: 0px 4px;
}
.owl-dot.active {
	 background: var(--secondaryColor);
}
#loader{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#f0f0f0;
	z-index:99999;
	line-height:600px;
	font-size:50px;
	text-align:center;
	color:var(--primaryColor);
}
.no-padding-left{
	padding-left:0px
}
.no-padding-right{
	padding-right:0px
}

body{
	overflow-x:hidden;
	font-family: 'Montserrat', sans-serif;
}
h1,h2,h3,h4,h5,p{
	color:#333;
}
p,ul li{
	font-size:18px;
}
.btn{
	cursor:pointer
}
.section{
	padding:70px 0px;
}
.section-header{
	text-align:center;
	margin-bottom:30px;
}
.section-header.line:after{
	display: block;
    content: '';
    background: #333;
    width: 35px;
    height: 2px;
    margin: 10px auto;
	display:none;
}
.section-header .section-heading{
	font-size:36px;
	text-transform:uppercase
}
.section-header .section-subheading{
	font-size:28px;
}
.section-header .section-desc{
	font-size:20px;
}
/*top_sticky*/
.top_sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 83%;
    min-height: 50px;
    background: var(--secondaryColor);
    z-index: 999;
    padding: 10px 40px;
    margin: 0 auto;
    border-radius: 0px 0px 5px 5px;
	box-shadow: 0px 0px 2px #444;
	display:none;
}
.top_sticky p{
	font-size:25px;
	margin:0px
}
.top_sticky .btnSticky {
    margin: 0px 10px;
    padding: 10px 20px;
    background: var(--primaryColor);
    display: inline-block;
    text-decoration: none;
    color: #ffff;
	border-radius:50px;
}
.top_sticky .btnSticky .fa {
	margin-right:6px;
}
/*navbar*/
.navbar{
	background:#fff;
}

.nav li a{
	margin-right:16px;
	text-transform:uppercase;
	font-weight:500;
	font-size:15px;
}
.nav li.active a{
	color:#3f51b5 !Important
}

li.dropdown.show .dropdown-menu {
    animation-duration: 0.6s;
    animation-delay: 0s;
    animation-name: flipInX;
}
li.dropdown{
	position:inherit
}
.navbar-nav .dropdown-menu {
    left: auto;
    width: 250px;
    margin: 0 auto;
    border-radius: 0px;
    border: 0px;
    text-transform: uppercase;
    padding:10px 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-nav .dropdown-menu h4{
	font-size:15px;	
}
.navbar-nav .dropdown-menu .wrap{
	border-right:1px solid #f0f0f0;
}
.navbar-nav .dropdown-menu ul{
	font-size:13px;	
	list-style:none;
}
.navbar-nav .dropdown-menu ul li{
	padding:5px 0px;
	border-bottom:1px solid #f0f0f0
}
.navbar-nav .dropdown-menu ul li:last-child{
	border:0px;
}
.navbar-nav .dropdown-menu ul li a:before{
	content:"\f105";
	margin-right:6px;
	font: normal normal normal 14px/1 FontAwesome;
}
.navbar-nav .dropdown-menu ul a{
	padding-left:0px;
}
.navbar-nav .dropdown-menu ul .btn{
	width:100%;
	border-radius:0px;
	background:#5262bc;
	border:0px;
	color:#fff;
	padding:14px 20px;
	opacity:0.9
}
.navbar-nav .dropdown-menu ul .btn:hover{
	opacity:1
}
.navbar-brand{
	font-weight:normal;
	color:#3f51b5 !Important;
	font-size:28px;
}
.navbar-brand{
	font-weight:normal;
	color:#3f51b5 !Important;
	font-size:28px;
}
.banner_hero{
	margin:0px auto;
	min-height:calc(100vh - 88px);
	background-color: var(--primaryColor);
	overflow:hidden
}
.banner_hero:before{
	content:'';
	position:absolute;
	bottom:100;
	left:-100px;
	height:400px;
	width:400px;
	background:transparent;
	border: 2px dashed var(--primaryColor);
	display:block;
	z-index:-1;
	border-radius:0%;
	opacity:0.8;
	box-shadow:0px 0px 0px #222;
	transform:rotate(45deg)
}
.banner_hero:after{
	content:'';
	position:absolute;
	top:-190px;
	right:-100px;
	margin:100px auto;
	height:600px;
	width:600px;
	background:transparent;
	border: 2px dashed var(--primaryColor);
	display:block;
	z-index:-1;
	border-radius:0%;
	opacity:0.8;
	box-shadow:0px 0px 0px #222;
	transform:rotate(45deg)
}
.banner_hero .section-header{
	padding:35px 0px 10px 0px;
}
.banner_hero .section-header .section-heading{
	color:#fff !Important;
	font-size:70px;
}
.banner_hero .section-header .section-subheading{
	color:#fff !Important;
	font-size:21px;
	padding:20px 0px;
	font-weight:normal
}
.banner_hero .section-header h1 span{
	font-weight:900;
	color:var(--secondaryColor);
}
.banner_hero ul li{
	display:inline-block;
	margin:0px 20px;
}

.banner_hero ul li:after{
	content:'|';
	color:#fff;
	margin-left:40px;
}
.banner_hero ul li:last-child:after{
	display:none;
}
.banner_hero ul li a{
	color:#fff;
}
.banner_hero .form-control{
	border-radius:40px;
	margin-bottom:10px !important;
	height:50px !important;
	background:rgba(63,81,181,1);
	border:1px solid #2e3f9a;
}
.intl-tel-input
{
	position:relative;
	display:block;
	width:100%;
}
.intl-tel-input.separate-dial-code .selected-flag,.intl-tel-input.separate-dial-code .selected-flag:hover{
	background:none;
}
.intl-tel-input.separate-dial-code .selected-dial-code{
	color:#fff
}
.intl-tel-input ul{width:300px}
.intl-tel-input ul li{display:block}
.banner_hero .btn{
	font-size:24px;
	text-transform:uppercase
}
.banner_hero .secure-logo{
	margin:20px 0px;
}
.banner_hero .form-control::placeholder ,.banner_hero .form-control{ color: #fff;}
/*samples section*/
.samples_section .section-header{
	margin-bottom:50px;
}
.samples_section .sample{
	position:relative;
	overflow:hidden;
	border:1px solid #e8e8e8;
	margin-bottom:25px;
}
.samples_section .sample .wrap{
	height: 230px;
	overflow:hidden
}
.samples_section .sample .wrap img{
	width:100%;
	filter:grayscale(100%)
}
.samples_section .sample .desc{
	position:absolute;
	top:100%;
	height:100%;
	width:100%;
	text-align:center;
	background:#fff;
	padding:20px;
}
.samples_section .sample:hover .desc{
    -webkit-animation: zoomIn 500ms;
    animation: zoomIn 500ms;
	top:0;
}
#sampleModel .modal-body {
    padding: 0px;
}
#sampleModel img{
	width:100%
}

/*services_section*/
.services_section {
	margin-bottom:0px
}
.services_section .box{
	border:0px solid #f0f0f0;
	padding:10px;
	text-align:center;
}
.services_section .box p.icon{
	background:var(--primaryColor);
	height:80px;
	width:80px;
	line-height:105px;
	margin:0px auto 10px auto;
	border-radius:100%;
}
.services_section .box p.icon .fa{
	font-size:50px;
	color:#fff;
}
.services_section .box h3{
	font-size:20px;
}

/*service section*/
.fact_section {
    background: #f9f9f9;
    box-shadow: 0px 2px 8px #cecece;
}
.fact_section:after{
	content: '';
    display: block;
    position: absolute;
    height: 400px;
    width: 400px;
    top: 100%;
    border: 1px solid #ddd;
    z-index: -110;
    transform: rotate(0deg);
    opacity: 0.2;
    border-radius: 100%;
    left: 0;
    right: 0;
    margin-top: 170px;
    margin-left: 90px;
    background: rgba(0,0,0,0.2);
    animation: randomShap 10s infinite ease-in-out alternate;
}
@keyframes randomShap{
	0%{margin-left: 90px;margin-top: 170px;height:400px;width:400px;transform: rotate(0deg);opacity: 0.1;}
	20%{margin-left: 90px;margin-top: 70px;height:300px;width:300px;transform: rotate(90deg);opacity: 0.2;}
	50%{margin-left: 480px;margin-top: 200px;height:600px;width:600px;transform: rotate(30deg);opacity: 0;}
	80%{margin-left: 480px;margin-top: 0px;height:400px;width:400px;transform: rotate(40deg);opacity: 0.2;}
	100%{margin-left: 870px;margin-top: 270px;height:300px;width:300px;transform: rotate(110deg);opacity: 0.1;}
}

.fact_section .section-header{
	margin-bottom:50px;
}
.section-header.underline:after{
	content:'';
	display:block;
	height:2px;
	width:40px;
	height:3px;
	background:#5262bc;
	margin:0px auto;
}
.fact_section a{
	color:#333;
}
.fact_section .box {
    min-height: 100px;
    margin: 20px 0px;
    position: relative;
    overflow: hidden;
    transition: all 500ms;
    text-align: center;
}
.fact_section .box.active{
	border-color:#f0f0f0
}
.fact_section .box .overlay{
	position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,1);
    left: 0%;
    top: -120%;
    z-index: 1;
	transition:all 500ms ease;
	text-align:center;
	line-height:150px;
}
.fact_section .box .overlay a{
	border:1px solid #ddd;
	border-radius:50px;
	text-transform:uppercase;
	margin:5px;
	transition:all 500ms;
}
.fact_section .box .overlay a:hover{
	border:1px solid var(--primaryColor);
	color:var(--primaryColor);
}
.fact_section .box:hover .overlay{
	animation:myServiceOverlay 900ms ease alternate;
	-webkit-animation-fill-mode: forwards;
}
.fact_section .box:hover{
	box-shadow:0px 1px 1px 1px #ddd;
}
@keyframes myServiceOverlay{
	0%{top: -120%;}
	30%{top: 10%;}
	50%{top: 0%;}
	60%{top: 5%;}
	100%{top: 0%;}
}
.fact_section .box:after{
	content:'';
	clear:both;
	display:block;
}
.fact_section .box .icon{
	font-size:60px;
	line-height:60px;
	height:60px;
	text-align:center;
	color:var(--primaryColor);
}
.fact_section .box .service{
	margin-top:10px;
}
.fact_section .box .service h4{
	font-size:18px;
	font-weight:normal;
	text-transform:capitalize;
}
/*servive page start*/

/**/
.services_page h4 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.services_page p{
	margin:15px 0px;
}
.services_page p, .services_page ul li{
	letter-spacing:1px;
}
.services_page ul{
	font-size:14px;
	list-style:none;
}
.services_page ul li{
	margin-bottom:7px;
}
.services_page ul li:after{
	content:'';
	display:block;
	clear:both;
}
.services_page ul li .fa, .services_page ul li span{
	display:block;
	float:left;
	
}
.services_page ul li .fa{
	margin-top:4px;
	color:#602DB4
}
.services_page ul li span{
	width:90%;
	padding-left:10px;
}
.services_page hr{
	border-style:dashed
}
/*servive page end*/

/*cta_banner*/
.cta_banner {
    position: relative;
    min-height: 200px;
    background-image: url(../images/trent-erwin-338084-unsplash.jpg);
    background-size: cover;
    background-attachment: fixed;
    margin-top: 0px;
    background-color: #2c2c2c;
    background-blend-mode: overlay;
}
.cta_banner .section-header{
	color:#fff;
	margin-bottom:0px;
}
.cta_banner .section-header h1,.cta_banner .section-header h2{
	color:#fff
}
.cta_banner .section-header .btn {
    background: var(--secondaryColor);
    padding: 10px 20px;
    font-size: 15px;
    margin: 10px 5px;
    text-transform: uppercase;
    font-weight: bold;
    border: 0px solid #fff;
    color: #000;
    transition: all 500ms;
    border-radius: 32px;
}
.cta_banner .section-header .btn:hover{
	color:#f0f0f0;
	background: var(--primaryColor);
}
.cta_banner .section-header .btn .fa{
	margin-right:10px
}

/*testimonial_section start*/
.testimonial_section{
	border:1px solid #f0f0f0;
	border-left:0px;
	border-right:0px;
	min-height:100px;
	background: var(--primaryColor);
	margin-bottom:0px
}
.testimonial_section .section-header{
	text-align:left;
}
.testimonial_section .section-header .section-heading{
	font-size: 68px;
    color: #fff;
	margin-top:20px;
}
.testimonial_section .section-header .section-heading span{
	color:var(--secondaryColor)
}
.testimonial_section .testimonial .review{
	color:#fff
}
.testimonial_section .testimonial .name{
	font-style:italic;
	color:#fff
}
.testimonial_section .testimonial .fa{
	font-size:20px;
	color:#fff;
	margin:0px 10px
}
.testimonial_section .question{
	display:inline-block;
	transform: translateY(0px);
	transform-style:preserve-3d;
	animation:myanimation 5s infinite alternate;
}
@keyframes myanimation{
	0%{transform: translateY(0px);}
	10%{transform: translateY(10px);}
	40%{transform: translateY(-20px) rotateY(2000deg);}
	50%{transform: translateY(-20px) rotateY(0deg);}
	60%{transform: translateY(-20px) rotateY(0deg);}
	70%{transform: translateY(-20px) rotateY(0deg);}
	80%{transform: translateY(-20px) rotateY(0deg);}
	90%{transform: translateY(-20px) rotateY(0deg);}
	100%{transform: translateY(0px) rotateY(0deg);}
}
/*testimonial_section end*/
/*footer*/
.footer{
	background:#f9f9f9;
	margin:0px;
	padding:40px 0px!important
}
.footer ul li, .footer p {
    font-size: 14px !important;
    font-weight: 500;
}
.footer .logo{
	font-size:50px;
	color:#656671
}
.footer h4{
	margin-top:30px;
	text-transform:uppercase;
	font-size:20px;
}
.footer ul{
	list-style:none;
}
.footer a,.footer li{
	text-decoration:none;
	color:#333;
	transition:all 500ms;
}
.footer a:hover,.footer li:hover{
	color:#5564ba;
	text-indent:4px;
}
.footer ul.links li{
	border-bottom: 1px dashed #ddd;
    padding: 10px 0px;
}
.footer ul.links li a:before{
	content:"\f105";
	display:inline-block;
	font-family: FontAwesome;
	margin-right:5px
}

.footer ul.links li a{
	display:block;
}
.footer ul.links li:last-child{
	border:0px
}
.footer ul.address li {
    margin-bottom: 5px;
}
.footer ul.address .fa{
	margin-right:10px
}
.footer_bottom {
    border-top: 1px solid #f0f0f0;
    background: var(--primaryColor);
}
.footer_bottom p{
	margin:10px 0px;
	font-size:13px;
	text-align:center
}
.footer_bottom p,.footer_bottom p a{
	color:#c8c5c5
}
/*footer end*/
/*brand_cumb page*/
.brand_cumb{
	background:var(--primaryColor);
	margin:0px;
	padding:50px 0px;
}
.brand_cumb  .section-header .section-heading {
    font-size: 50px;
    text-transform: uppercase;
	color:#fff
}
.brand_cumb  .section-header{
	margin:0px;
}
/*brand_cumb end*/
@media (max-width:768px){
	.section {
		padding: 30px 0px;
	}
	.no-padding-left{
		padding-left:15px
	}
	.no-padding-right{
		padding-right:15px
	}
	/*top_sticky */
	.top_sticky{
		width:100%;
		padding:10px 0px;
		text-align:center;
	}
	.top_sticky p {
		font-size: 18px;
		margin-bottom: 5px;
	}
	/*banner_hero*/
	.banner_hero {
		min-height: calc(100vh - 160px);
		overflow: inherit;
	}
	.banner_hero .section-header {
		padding: 20px 0px 0px 0px;
		margin-bottom: 0px;
	}
	.banner_hero .section-header .section-heading {
		font-size: 35px;
	}
	.banner_hero .section-header .section-subheading{
		padding-top:0px
	}
	.banner_hero:before{
		display:none;
	}
	.banner_hero:after{
		display:none;
	}
	/*cta*/
	.cta_banner {
		min-height:340px;
	}
	.cta_banner .section-header{
		padding:30px 10px;
	}
	.cta_banner .section-header button{
		border: 1px solid  #565656;
		border-radius: 5px;
	}
	
	.fact_section:after{
		display:none
	}
	.fact_section .box {
		text-align:center;
	}
	.fact_section .owl-dot {
		background: #555;
	}
	.fact_section .owl-dot.active {
    background: var(--secondaryColor) !important;
}
	.fact_section .box img {
		width: 50px;
		display: inline-block;
	}
/*service*/
	.services_page {
	}
	.services_page h4{
		margin-top: 0px;
		display:none;
	}
	/*services_section*/
	.services_section .box h3{
		font-size:20px;
	}
	.services_section .owl-carousel .owl-dot, .services_section .owl-carousel .owl-nav .owl-next, .services_section .owl-carousel .owl-nav .owl-prev {
		background: #ddd;
		padding: 5px;
		display: inline-block;
		margin: 0px 4px;
	}
	.services_section .owl-carousel .owl-dot.active{
		background:#4556b4
	}
}
