*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
}
:root{
	--baseColor: #0082B3;
	--secondaryColor: #FF9000;
	--lightColor: #FFFFFF;
	--darkColor: #232323;
	--grayColor: #F5F5F5;
	
	--baseHeading: 'Raleway', sans-serif;
	--baseParagraph: 'Montserrat', sans-serif;
}

/* ========== Custom CSS Starts ========== */

/* ===== CSS For "Common Cases" Starts Here ===== */
.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;	
}
/* ======================== */
.vertical_padding{
	padding: 50px 0px;
	padding-top: 40px;
}
/* ======================== */
.heading{
	margin-bottom: 10px;
}
.heading h3{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 0px;
}
.heading .headline{
	margin-bottom: 15px;
}
.heading .headline span{
	display: inline-block;
	background: var(--baseColor);
	width: 75px;
	height: 2px;
}
/* ======================== */
.texts{
	margin-bottom: 25px;
}
.texts h4{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;	
}
.texts p{
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
}
.texts p:last-child{
	margin-bottom: 0px;
}
.texts p a{
	text-decoration: none;
	color: var(--baseColor);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.texts p a:hover{
	color: var(--secondaryColor);
}
/* ======================== */
.clickable_link{
	
}
.clickable_link a{
	text-decoration: none;
	display: inline-block;
	color: var(--lightColor);
	background: var(--baseColor);
	padding: 12.5px 15px;
	border-radius: 5px;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 20px;
	width: 250px;
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;	
}
.clickable_link a:hover{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
/* ======================== */
.advan_disadvan{
	margin-bottom: 25px;
}
.advan_disadvan h4{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;	
}
.advan_disadvan ul{
	margin-bottom: 0px;
}
.advan_disadvan ul li{
	list-style: none;
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
}
.advan_disadvan ul li:last-child{
	margin-bottom: 0px;
}
.advan_disadvan ul li:before{
	content:"\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--baseColor);
	font-size: 18px;
	position: absolute;
	left: 0px;
	top: -2px;
}
.disadvantage ul li:before{
	color: var(--secondaryColor);
}
/* ======================== */
.click_to_more p{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 18px;
	font-style: italic;
	text-transform: capitalize;
	margin-bottom: 0px;	
}
.click_to_more p a{
	text-decoration: none;
	color: var(--baseColor);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.click_to_more p a:hover{
	color: var(--secondaryColor);
}

.highlighted_heading h1{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 0px;
	text-align: center;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Header" Starts Here ===== */
.header{
	background: url(images/header_bg.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
}
.header .overlay{
	background: rgba(0,0,0, 0.25);
	padding: 125px 0px;
}
.header .contents{
	text-align: center;
	background: rgba(0,0,0, 0.75);
	padding: 81.5px 25px;
	border-radius: 5px;
	max-width: 860px;
	margin: 0px auto;
}
.header .contents h1{
	color: var(--lightColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 0px;
}
.header .contents h2{
	color: var(--lightColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 42px;
	margin: 30px 0px;
}
.header .contents .clickable_link{
	
}
.clickable_link ul{
	margin-bottom: 0px;
}
.clickable_link ul li{
	list-style: none;
	display: inline-block;
	margin-right: 20px;
}
.clickable_link ul li:last-child{
	margin-right: 0px;
}
.clickable_link ul li a{
	
}
.clickable_link ul li:last-child a{
	background: var(--secondaryColor);
}
/* ===== CSS For "Header" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Registering Company" Starts Here ===== */
.registering_company_wrap{
	background: var(--grayColor);
}
/* ===== CSS For "Registering Company" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "LLC" Starts Here ===== */
.llc_wrap{
	
}
.llc_wrap .heading h3{
	color: var(--baseColor);
}
/* ===== CSS For "LLC" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Corporation" Starts Here ===== */
.corporation_wrap{
	background: var(--grayColor);
}
.corporation_wrap .heading h3{
	color: var(--secondaryColor);
}
.corporation_wrap .heading .headline span{
	background: var(--secondaryColor);
}
/* ===== CSS For "Corporation" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Contact Us" Starts Here ===== */
.contact_wrap{
	
}
.contact_wrap .heading{
	text-align: center;
	margin-bottom: 25px;
}
.contact_wrap form{
	max-width: 620px;
	margin: 0px auto;
}
.contact_wrap .form-group{
	margin-bottom: 10px;
}
.contact_wrap .form-control{
	border: 1px solid #DADCE0;
	color: #121212;
	height: inherit;
	padding: 10px 15px;
	border-radius: 3.5px;
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 18px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.contact_wrap .form-control:active,
.contact_wrap .form-control:focus{
	border: 1px solid var(--baseColor);
}
.contact_wrap .submit_button{
	text-align: right;
}
.contact_wrap .submit_button button{
	color: var(--lightColor);
	background: var(--baseColor);
	padding: 10px 15px;
	border-radius: 3.5px;
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 18px;
	width: 180px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.contact_wrap .submit_button button:hover{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
/* ===== CSS For "Contact Us" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: #0E101C;
}

.footer .top_wrap{
	padding: 15px 0px;
}
.footer .top{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
	max-width: 860px;
	margin: 0px auto;
}
.footer .top .logo{
	text-align: center;
}
.footer .top .logo a{
	color: var(--baseColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 25px;
	display: inline-block;
	text-decoration: none;
}
.footer .top .logo a span{
	color: var(--secondaryColor);
}
.footer .top .single_part h4{
	color: var(--grayColor);
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 30px;
	position: relative;
}
.footer .top .single_part h4:before {
	content: "";
	background: #434343;
	width: 90%;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: -10px;
}
.footer .top .single_part h4:after {
	content: "";
	background: var(--secondaryColor);
	width: 50px;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: -10px;
}
.footer .top .single_part ul{
	margin-bottom: 0px;
}
.footer .top .single_part ul li{
	list-style: none;
	margin-bottom: 20px;
	color: var(--grayColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 15px;
	position: relative;
	padding-left: 40px;
}
.footer .top .single_part ul li a{
	text-decoration: none;
	color: var(--grayColor);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.footer .top .single_part ul li a:hover{
	color: var(--secondaryColor);
}
.footer .top .single_part ul li:last-child{
	margin-bottom: 0px;
}
.footer .top .single_part ul li:before{
	content:"\f57d";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 15px;
	color: var(--secondaryColor);
	background: rgba(255, 144, 0, 0.2);
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
	left: 0px;
	top: -2px;
}
.footer .top .address ul li:before{
	content:"\f3c5";
	font-size: 18px;
}
.footer .top .contact ul li:nth-child(1):before{
	content:"\f879";
}
.footer .top .contact ul li:nth-child(2):before{
	content:"\f879";
}
.footer .top .contact ul li:nth-child(3):before{
	content:"\f0e0";
}


.footer .bottom_wrap{
	background: #0B0C11;
	padding: 10px 0px;
}
.footer .copyright p{
	color: var(--grayColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
	text-align: center;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ============================== */
.scrolltotop{
	color: #FFFFFF;
	background: var(--baseColor);
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	cursor:pointer;
	border-radius:2.5px 2.5px 0px 0px;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	transition:all 0.2s linear;
	position:fixed;
	bottom: 0px;
	right:5%;
	z-index:99999999;	
}
.scrolltotop:hover{
	-webkit-box-shadow:0px 0px 10px var(--baseColor);
	-moz-box-shadow:0px 0px 10px var(--baseColor);
	box-shadow:0px 0px 10px var(--baseColor);
}
.scrolltotop img{
	width: 24px;
}
/* ============================== */


/* ============================== */
/* ============================== */
/* ============================== */
















