/*---------------------------------------------
Global CSS
--------------------------------------------- */
body{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size:14px;
	color:#888;
}
#scrollUp {
	bottom: 15px;
	right: 15px;
	padding: 10px 20px;
	background: #1a76d1;
	color: #fff;
	font-size: 25px;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	padding: 0;
	border-radius: 3px;
	box-shadow: 0px 0px 10px #00000026;
}
#scrollUp:hover{
	background:#2C2D3F;
}
/*---------------------------------------------
Header Section Style
--------------------------------------------- */
.header{
	background-color:#fff;
	position:relative;
}
.header .navbar-collapse{
	padding:0;
}
.header .header-inner {
	padding: 10px 0;
	background:#fff;
	z-index:1;
	width:100%;
	border-bottom: 1px solid #eee;
}
.header .logo {
	float: left;
	margin-top: 15px;
}
.header .mobile-navigation{
	display: flex; 
	justify-content: center;
}
.header .navbar {
	background: none;
	box-shadow: none;
	border: none;
	margin: 0;
	height: 0px;
	min-height: 0px;
}
.header .nav{
	display: block;
}
.header .nav li{
	padding: 0 15px;
	float: right;
	position:relative;
}
.header .nav li:last-child{
	margin:0;
}
.header .nav li a {
	color: #5c5c5c;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 25px 0;
	position: relative;
	display: inline-block;
}
.header .nav li a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width:0%;
	background: #024DA0;
	border-radius: 5px 5px 0 0;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.header .nav li.active a{
	color:#00AA45;
}
.header .nav li:hover a{
	color: #024DA0;
}
.header .nav li a i {
	display: inline-block;
	margin-left: 10px;
	font-size: 20px;
}

/* Dropdown Menu */
.header .nav li .dropdown {
	background: #fff;
	width: 220px;
	position: absolute;
	left:-20px;
	top: 100%;
	z-index: 999;
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px #3333334d;
	transform-origin: 0 0 0;
	transform: scaleY(0.2);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
	top: 74px;
	border-left:3px solid #2889e4;
}
.header .nav li:hover .dropdown{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
.header .nav li .dropdown li{
	float:none;
	margin:0;
	border-bottom:1px dashed #eee;
}
.header .nav li .dropdown li:last-child{
	border:none;
}
.header .nav li .dropdown li a {
    font-family: 'Poppins', sans-serif;
	padding: 12px 15px;
	color: #666;
	display: block;
	font-weight: 400;
	text-transform: capitalize;
	background: transparent;
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
.header .nav li .dropdown li a:before{
	display:none;
}
.header .nav li .dropdown li:last-child a{
	border-bottom:0px;
}
.header .nav li .dropdown li:hover a{
	color:#1A76D1;
}
.header .nav li .dropdown li a:hover{
	border-color:transparent;
}
/*---------------------------------------------
Small Header Section Style
--------------------------------------------- */
.smallNav{
	background-color: #024DA0;
}
.smallNav .smallNavWrapper{
	padding: 20px 0;
}
.smallNav .smallNavWrapper ul{
	text-align: center;
}
.smallNav .smallNavWrapper ul li{
	display: inline-block;
}
.smallNav .smallNavWrapper ul li a{
    font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #fff;
	padding: 10px;
}
.subNavActive{
	font-weight: 700;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.smallNav{}
	.smallNav .smallNavWrapper{
		padding: 10px 0;
	}
	.smallNav .smallNavWrapper ul{}
	.smallNav .smallNavWrapper ul li{}
	.smallNav .smallNavWrapper ul li a{
		font-size: 15px;
	}
}/*
---------------------------------------------
Popup Section Style
--------------------------------------------- 
*/
.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
    z-index: 1;
}
.contentBox{
	margin:100px;
    position: relative;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contentBox img{
    position: relative;
    width: 100%;
	border-radius: 5px;
    z-index: 1;
}
.close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #0d8800 url("https://acloudplanet.ca/public/frontend/img/close1.png");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}
@media (max-width : 575.98px){
	.popup{
	 top: 50%;
	}
	.contentBox{
	 margin: -30px;
	}
	.contentBox img{
	 position: relative;
	 width: 100%;
	 z-index: 1;
	}
	.close{
	 top: 10px;
	 right: 10px;
	 width: 25px;
	 height: 25px;
	 background: #0C8241 url("https://acloudplanet.ca/public/frontend/img/close1.png");
	 background-repeat: no-repeat;
	 background-size: 10px;
	 background-position: center;
	}
}
/*---------------------------------------------
Home Hero Section Style
--------------------------------------------- */
.hero{}
.heroContainer{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding: 160px 80px;
}
.heroContainer h1{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 70px;
	color: #fff;
}
.heroContainer h5{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 50px;
	color: #00FFFF;
}
.heroContainer a{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.heroContainer{
	    padding: 160px 15px;
	}
	.heroContainer h1{
		font-size: 35px;
	}
	.heroContainer h5{
		font-size: 30px;
	}
}
/*---------------------------------------------
Why Us Section Style
--------------------------------------------- */
.whyUs{
	padding: 20px;
}
.whyUs .whyUsHeading{
	padding: 10px 50px;
	text-align: center;
}
.whyUs .whyUsHeading h2{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 50px;
	color: #000;
	text-align: center;
}
.whyUs .whyUsHeading h2 span{
	color: #024DA0;
}
.whyUs .whyUsWrapper{
	padding: 50px 50px;
	border: 1px solid #D9D9D9;
	margin: 20px;
}
.whyUs .whyUsWrapper h3{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 35px;
	color: #024DA0;
	margin-bottom: 5px;
}
.whyUs .whyUsWrapper h4{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 35px;
	color: #000;
	padding: 5px 10px;
	margin-right: 20px;
	background-color: #EFEFEF;
}
.whyUs .whyUsWrapper h5{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #000;
	padding: 10px 0;
}
.whyUs .whyUsWrapper p{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #5c5c5c;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.whyUs .whyUsHeading h2{
		font-size: 30px;
	}
	.whyUs .whyUsWrapper{
		padding: 20px;
	}
}
/*---------------------------------------------
Get Started Section Style
--------------------------------------------- */
.getStarted{
	padding: 20px 0;
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;
}
.getStarted .getStartedHeading{
	padding: 10px 50px;
	text-align: center;
}
.getStarted .getStartedHeading h2{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 50px;
	color: #fff;
	text-align: center;
}
.getStarted .getStartedHeading h2 span{
	color: #00FFFF;
}
.getStarted .getStartedWrapper{
	padding: 50px 30px;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	margin: 10px;
}
.getStarted .getStartedWrapper h3{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 30px;
	color: #024DA0;
	margin-bottom: 10px;
}
.getStarted .getStartedWrapper h4{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 30px;
	color: #000;
	margin: 10px 0;
}
.getStarted .getStartedWrapper p{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: #5c5c5c;
}
.getStarted .getStartedWrapper a{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	background-color: #024DA0;
	padding: 10px 15px;
	border-radius: 10px;
}
.getStarted .getStartedWrapper a i{
	color: #00FFFF;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.getStarted .getStartedHeading h2{
		font-size: 30px;
	}
}
/*---------------------------------------------
testimonial Section Style
--------------------------------------------- */
.testimonial{
	padding: 50px 0;
}
.testimonial .testimonialHeading{
	padding: 10px 50px;
	text-align: center;
}
.testimonial .testimonialHeading h2{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 50px;
	color: #024DA0;
	text-align: center;
}
.testimonial .testimonialHeading h2 span{
	color: #00FFFF;
}
.testimonial .testimonialHeading p{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: #5c5c5c;
}
.testimonial .testimonialWrapper{
	background-color: #EFEFEF;
	padding: 100px 0;
	margin: 0 165px;
	border-radius: 10px;
}
.testimonial .testimonialWrapper .testimonialImg{}
.testimonial .testimonialWrapper .testimonialImg img{
	border-radius: 10px;
}
.testimonial .testimonialWrapper .testimonialContent{
	position: relative;
}
.testimonial .testimonialWrapper .testimonialContent #quotation-up{}
.testimonial .testimonialWrapper .testimonialContent #quotation-down{
	position: absolute;
	right: 10px;
}
.testimonial .testimonialWrapper .testimonialContent h5{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #252525;
	margin-top: 10px;
}
.testimonial .testimonialWrapper .testimonialContent h6{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #252525;
	margin-top: 10px;
}
.testimonial .testimonialWrapper .testimonialContent h6 span{
	font-weight: 700;
	color: #000;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.testimonial .testimonialHeading h2{
		font-size: 30px;
	}
	.testimonial .testimonialWrapper{
		padding: 40px 20px;
		margin: 0 0;
	}
	.testimonial .testimonialWrapper .testimonialContent #quotation-up{
		margin-top: 10px;
	}
}


/*---------------------------------------------
testimonial Section Style
--------------------------------------------- */
.iaasdetails{
	padding: 50px 0;
}
.iaasdetails .iaasdetailsHeading{
	padding: 10px 50px;
	text-align: center;
}
.iaasdetails .iaasdetailsHeading h2{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 50px;
	color: #024DA0;
	text-align: center;
}
.iaasdetails .iaasdetailsHeading h2 span{
	color: #00FFFF;
}
.iaasdetails .iaasdetailsHeading p{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: #5c5c5c;
}
.iaasdetails .iaasdetailsHeading a{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	background-color: #024DA0;
	padding: 15px 20px;
	border-radius: 10px;
}
.iaasdetails .iaasdetailsWrapper{
	min-height: 480px;
	background-color: #fff;
	border-radius: 10px;
	text-align: center;
	padding: 40px 25px;
	margin: 20px 0;
	box-shadow: 0px 15px 15px 4px rgba(0, 0, 0, 0.05);
}
.iaasdetails .iaasdetailsWrapper img{
	width: 30%;
}
.iaasdetails .iaasdetailsWrapper h3{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #000;
	padding: 15px 0;
}
.iaasdetails .iaasdetailsWrapper p{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: #000;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.iaasdetails .iaasdetailsHeading h2{
		font-size: 30px;
	}
	.iaasdetails .iaasdetailsWrapper{
		padding: 40px 20px;
		margin: 0 0;
	}
	.iaasdetails .iaasdetailsWrapper .iaasdetailsContent #quotation-up{
		margin-top: 10px;
	}
}
/*---------------------------------------------
Private Cloud Page Style
--------------------------------------------- */
.privateCloudService{}
.privateCloudService .fullServiceWrapper{
	background-color: #f5f5f5;
	padding: 60px 90px;
	margin-top: -50px;
}
.privateCloudService  .fullServiceWrapper .singleService{
	background-color: #FFFFFF;
	text-align: initial;
	padding: 20px;
	margin: 20px 10px;
	min-height: 430px;
	box-shadow: 0px 10px 30px 6px rgba(0, 0, 0, 0.03);
}
.privateCloudService  .fullServiceWrapper .singleService img{
	width: 50%;
}
.privateCloudService .fullServiceWrapper .singleService h1{
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 5px;
}
.privateCloudService .fullServiceWrapper .singleService p{
	font-size: 16px;
}
.privateCloudService .privateCloudHeading{
	padding: 30px 50px 10px 50px;
	text-align: center;
}
.privateCloudService .privateCloudHeading h1{
	font-weight: 700;
	font-size: 50px;
	color: #024DA0;
}
.privateCloudService .privateCloudHeading p{
	font-weight: 500;
	font-size: 16px;
	color: #5c5c5c;
}
.privateCloudService .singleWhyPrivateCloud {
	padding: 20px;
	margin: 20px 10px;
}
.privateCloudService .singleWhyPrivateCloud img{
	width: 50%;
}
.privateCloudService .singleWhyPrivateCloud h2{
	font-weight: 700;
	font-size: 30px;
	padding: 10px 0;
}
.privateCloudService .singleWhyPrivateCloud p{
	font-weight: 500;
	font-size: 16px;
}
.idealUseDedicatedS{
	background-color: #F6F7FC;
	padding: 50px 0;
}
.idealUseDedicatedS .idealUseDedicatedSHeading{
	padding: 0 50px 10px 50px;
	text-align: center;
}
.idealUseDedicatedS .idealUseDedicatedSHeading h1{
	font-weight: 500;
	font-size: 50px;
	color: #000;
}
.idealUseDedicatedS .idealUseDedicatedSHeading h2{
	font-weight: 700;
	font-size: 40px;
	color: #000;
}
.idealUseDedicatedS .singleUses{
	background: #FFFFFF;
	box-shadow: 2px 4px 5px -2px rgba(0, 0, 0, 0.25);
	border-left: 10px solid #024DA0;
	padding: 30px 10px;
	min-height: 205px;
}
.idealUseDedicatedS .singleUses p{}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	/*.privateCloudService{}*/
	.privateCloudService .fullServiceWrapper{
		padding: 0;
		margin-top: 0;
	}
/*	.privateCloudService .fullServiceWrapper .singleService{}
	.privateCloudService .fullServiceWrapper .singleService img{}
	.privateCloudService .fullServiceWrapper .singleService h1{}
	.privateCloudService .fullServiceWrapper .singleService p{}
	.privateCloudService .privateCloudHeading{}
	.privateCloudService .privateCloudHeading h1{}
	.privateCloudService .privateCloudHeading p{}
	.privateCloudService .singleWhyPrivateCloud {}
	.privateCloudService .singleWhyPrivateCloud img{}
	.privateCloudService .singleWhyPrivateCloud p{}
	.idealUseDedicatedS {}
	.idealUseDedicatedS .idealUseDedicatedSHeading{}
	.idealUseDedicatedS .idealUseDedicatedSHeading h1{}
	.idealUseDedicatedS .idealUseDedicatedSHeading h2{}*/
	.idealUseDedicatedS .singleUses{
		margin: 10px;
	}
	/*.idealUseDedicatedS .singleUses p{}*/
}
/*---------------------------------------------
Public Cloud Page Style
--------------------------------------------- */
.pubCloudWorks{
	padding: 20px 0;
}
.pubCloudWorks .pubCloudWorksHeading{
	padding: 0 50px 10px 50px;
	text-align: center;
}
.pubCloudWorks .pubCloudWorksHeading h1{
	font-weight: 700;
	font-size: 50px;
	color: #000;
}
.pubCloudWorks .pubCloudWorksHeading p{
	font-weight: 500;
	font-size: 20px;
	color: #000;
}
.pubCloudWorks .pubCloudWorksWrapper{
	background-color: #F5F7FD;
	padding: 30px;
	border-radius: 5px;
	min-height: 250px;
	margin: 10px 0;
}
.pubCloudWorks .pubCloudWorksWrapper .pubCloudBox{
	overflow: hidden;
	margin-bottom: 10px;
}
.pubCloudWorks .pubCloudWorksWrapper .pubCloudBox .pubCloudBoxImg{
	float: left;
	width: 30%;
}
.pubCloudWorks .pubCloudWorksWrapper .pubCloudBox .pubCloudBoxImg img{
	background: #FFFFFF;
	box-shadow: 0px 2px 2px rgba(116, 130, 156, 0.1);
	padding: 5px 10px;
	border-radius: 4px;
}
.pubCloudWorks .pubCloudWorksWrapper .pubCloudBox .pubCloudBoxText{
	float: right;
	width: 70%;
}
.pubCloudWorks .pubCloudWorksWrapper .pubCloudBox .pubCloudBoxText h2{
	font-weight: 700;
	font-size: 25px;
	color: #024DA0;
	/*margin-top: 15px;*/
}
.pubCloudWorks .pubCloudWorksWrapper p{
	font-weight: 500;
	font-size: 18px;
	color: #000;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
/*@media (max-width: 575.98px) {

}*/
/*---------------------------------------------
Hybrid Cloud Style
--------------------------------------------- */
.hybridCloudService{}
.hybridCloudService .hybridCloudServiceRow{
	margin-top: -75px;
}
.hybridCloudService .hybridCloudServiceSingle{
	background-color: #F5F7FD;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	text-align: center;
	padding: 20px 40px;
	margin: 50px 30px;
	min-height: 230px;
}
.hybridCloudService .hybridCloudServiceSingle .hybridCloudServiceSingleWrapper {
	background-color: #fff;
	margin: 0px 110px;
	padding: 20px 0;
	border: 2px solid #FFFFFF;
	box-shadow: 2px 2px 2px rgba(116, 130, 156, 0.1);
	border-radius: 5px;
	margin-top: -60px;
	min-height: 85px;
}
.hybridCloudService .hybridCloudServiceSingle .hybridCloudServiceSingleWrapper img{
	width: 50%;
	margin-top: -55px;
}
.hybridCloudService .hybridCloudServiceSingle h2{
	font-weight: 700;
	font-size: 30px;
	color: #4B566C;
	padding: 25px 0 5px;
}
.hybridCloudService .hybridCloudServiceSingle p{
	font-weight: 500;
	font-size: 18px;
	color: #4B566C;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
/*	.hybridCloudService{}
	.hybridCloudService .hybridCloudServiceRow{}
	.hybridCloudService .hybridCloudServiceSingle{}*/
	.hybridCloudService .hybridCloudServiceSingle .hybridCloudServiceSingleWrapper {
		margin: 0 0;
		margin-top: -60px;
	}
/*	.hybridCloudService .hybridCloudServiceSingle .hybridCloudServiceSingleWrapper img{}
	.hybridCloudService .hybridCloudServiceSingle h2{}
	.hybridCloudService .hybridCloudServiceSingle p{}*/
}
/*---------------------------------------------
Pricing Page Style
--------------------------------------------- */
.pricingDetails{
	padding: 20px 0;
}
.pricingDetails .pricingDetailsHeading{
	padding: 0 50px 10px 50px;
	text-align: center;
}
.pricingDetails .pricingDetailsHeading h1{
	font-weight: 700;
	font-size: 50px;
	color: #000;
}
.pricingDetails .pricingDetailsHeading p{
	font-weight: 500;
	font-size: 20px;
	color: #000;
}
.pricingDetails .pricingDetailsBox{
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0px 10px 15px 6px rgba(0, 0, 0, 0.03);
	padding: 30px;
	margin: 10px;
	border-radius: 5px;
}
.pricingDetails .pricingDetailsBox .pricingDetailsLeft{
	float: left;
	width: 60%;
}
.pricingDetails .pricingDetailsBox .pricingDetailsLeft .packageName{
	display: flex;
}
.pricingDetails .pricingDetailsBox .pricingDetailsLeft .packageName h1{
	font-weight: 700;
	font-size: 35px;
	color: #000;
	margin-right: 10px;
}
.pricingDetails .pricingDetailsBox .pricingDetailsLeft .packageName a{
	font-size: 16px;
	color: #fff;
	padding: 10px;
	background: linear-gradient(267.42deg, #F6895E 0%, #F9AB81 100%);
	border-radius: 4px;
}
.pricingDetails .pricingDetailsBox .pricingDetailsRight{
	float: right;
	width: 40%;
	text-align: end;
}
.pricingDetails .pricingDetailsBox .pricingDetailsRight h3{
	font-weight: 700;
	font-size: 50px;
	color: #000;
	margin-bottom: 10px;
}
.pricingDetails .pricingDetailsBox .pricingDetailsRight a{
	font-size: 16px;
	color: #fff;
	padding: 10px;
	background: #4484FC;
	border-radius: 4px;
	border: none;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.pricingDetails{}
	.pricingDetails .pricingDetailsHeading{}
	.pricingDetails .pricingDetailsHeading h1{
		font-size: 45px;
	}
	.pricingDetails .pricingDetailsHeading p{
		font-size: 16px;
	}
	.pricingDetails .pricingDetailsBox{
		padding: 20px;
	}
	.pricingDetails .pricingDetailsBox .pricingDetailsLeft{
		width: 50%;
	}
	.pricingDetails .pricingDetailsBox .pricingDetailsLeft .packageName{
		display: unset;
	}
	.pricingDetails .pricingDetailsBox .pricingDetailsLeft .packageName h1{
		font-size: 25px;
	}
	.pricingDetails .pricingDetailsBox .pricingDetailsLeft .packageName a{
		color: #4484FC;
		background: #fff;
		padding: 0;
	}
	.pricingDetails .pricingDetailsBox .pricingDetailsRight{
		width: 50%;
	}
	.pricingDetails .pricingDetailsBox .pricingDetailsRight h3{
		font-size: 25px;
		margin-bottom: 20px;
	}
	.pricingDetails .pricingDetailsBox .pricingDetailsRight a{
		font-size: 14px;
		padding: 10px;
		margin-top: 15px;
	}
}
/*---------------------------------------------
Footer Section Style
--------------------------------------------- */
.contactForm{
	padding: 60px 0;
	background-color: #fff;
}
.contactForm .contactFormHeading{
}
.contactForm .contactFormHeading h1{
	font-weight: 700;
	font-size: 50px;
	color: #024DA0;
}
.contactForm .contactFormHeading p{
	font-weight: 500;
	font-size: 16px;
	color: #000;
	margin-bottom: 10px;
}
.contactForm form {
	margin-top:30px;
}
.contactForm .form-group {
	position: relative;
	display: block;
	margin: 0 0 25px;
}
.contactForm .form-group input, .form-group textarea,
.contactForm .form-group .nice-select {
	width: 100%;
	border: 1px solid #e7e7e7;
	padding-left: 10px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-weight: 400;
	border-radius: 0px;
	outline: none;
	padding: 10px 15px;
}
.contactForm .form-group .nice-select {
	padding-top: 8px;
	margin-bottom: 25px;
}
.contactForm .contactImg{}
.contactForm .contactImg img{}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.contactForm{}
	.contactForm .contactFormHeading{}
	.contactForm .contactFormHeading h1{}
	.contactForm .contactFormHeading p{}
	.contactForm form {}
	.contactForm .form-group {}
	.contactForm .form-group input, .form-group textarea,
	.contactForm .form-group .nice-select {}
	.contactForm .form-group .nice-select {}
	.contactForm .contactImg{
		display: none;
	}
	.contactForm .contactImg img{}
}
/*---------------------------------------------
Footer Section Style
--------------------------------------------- */
.footer{
	background-color: #F0F0F0;
	padding: 50px 0;
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;
}
.footer .footerWrapper{

}
.footer .footerWrapper .footerLogo{
	text-align: center;
}
.footer .footerWrapper .footerLogo img{}
.footer .footerWrapper .sologan{
	text-align: center;
}
.footer .footerWrapper .sologan h5{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #fff;
	padding: 10px 0;
}
.footer .footerWrapper .socialMedia{
	text-align: center;
}
.footer .footerWrapper .socialMedia ul{
	margin: 10px 0;
}
.footer .footerWrapper .socialMedia ul li{
	display: inline-block;
}
.footer .footerWrapper .socialMedia ul li a{
	padding: 10px;
}
.footer .footerWrapper .socialMedia ul li a i{
	font-size: 25px;
	color: #fff;
}
.footer .footerWrapper .footerNav{
	text-align: center;
}
.footer .footerWrapper .footerNav ul{}
.footer .footerWrapper .footerNav ul li{
	display: inline-block;
}
.footer .footerWrapper .footerNav ul li a{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	padding: 10px;
}
.footer .footerWrapper .copywriteText{
	text-align: center;
}
.footer .footerWrapper .copywriteText p{
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	padding: 10px;
}
/*================For different divice =================*/
 /*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.footer{}
	.footer .footerWrapper{}
	.footer .footerWrapper .footerLogo{}
	.footer .footerWrapper .footerLogo img{}
	.footer .footerWrapper .sologan{}
	.footer .footerWrapper .sologan h5{
		font-size: 25px;
	}
	.footer .footerWrapper .socialMedia{}
	.footer .footerWrapper .socialMedia ul{}
	.footer .footerWrapper .socialMedia ul li{}
	.footer .footerWrapper .socialMedia ul li a{}
	.footer .footerWrapper .socialMedia ul li a i{}
	.footer .footerWrapper .footerNav{}
	.footer .footerWrapper .footerNav ul{}
	.footer .footerWrapper .footerNav ul li{}
	.footer .footerWrapper .footerNav ul li a{}
	.footer .footerWrapper .copywriteText{}
	.footer .footerWrapper .copywriteText p{}
}