@font-face {
    font-family: 'poppins';
    src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
         url('../fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsmedium';
    src: url('../fonts/poppins-medium-webfont.woff2') format('woff2'),
         url('../fonts/poppins-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
html{
	scroll-behavior: smooth;
}
body{
	font-family: 'poppins', sans-serif;

    
}
main{
    margin: 72px 0 0 0;
}
::selection {
  background: #FF3F39;
  color: #fff;
}
a{
	color: #ff3f39;
}
a:hover{
	color: #ff3f39;
	text-decoration: none;
}
/* Managing layout shift when modal gets open */
/* .modal-open {
    overflow: auto;
    padding: 0 !important;
} */ 
/* Managing layout shift when modal gets open end */

/* ---------- Common heading and description css ---------- */
.heading{
	font-family: 'poppinsmedium', sans-serif;
	color: #131c21;
}
.section_heading{
	font-size: 25px;
	margin: 0 0 10px 0;
}
.section_heading a{
	color: #131c21;
}
.slanted_section_heading {
    font-size: 18px;
    margin: 0 0 16px 0;
    padding: 4px 10px;
    display: inline-block;
    background-color: #FF3F39;
    color: #fff;
    -ms-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
}
.slanted_section_heading span{
	-ms-transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    transform: skewX(10deg);
    display: inline-block;
}
.section_sub_heading {
    font-size: 20px;
    color: #FF3F39;
}
.multi_color_heading{
	font-size: 23px;
}
.multi_color_heading > span{
	color: #FF3F39;
}
.content {
    font-size: 14px;
    color: #777;
    /*text-align: justify;*/
}
.readmore{
	font-size: 15px;
	color: #Ff3f39;
}
.readmore:hover{
	color: #131c21;
}
.readmore:after {
    content: "\f061";
    font-family: 'FontAwesome';
    margin: 0 0 0 5px;
}

/* ---------- Common heading and description css ---------- */

/* ---------- Breadcrumb css ---------- */
.breadcrumb{
	margin: 10px 0 0 0;
}
.breadcrumb-item {
    font-size: 13px;
}
.breadcrumb-item a{
    color: #6c757d ;
}
.breadcrumb-item.active {
    color: #131c21;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #FF3F39;
}
/* ---------- Breadcrumb css End ---------- */

/* ---------- Form css ---------- */
.form_wrapper,
.sidebar_form_wrapper{
	box-shadow:0px 10px 50px 0px rgb(53 82 99 / 9%);
}
.form_heading{
	font-size: 22px;
	margin: 0 0 10px 0;
}
.form_heading span{
	color: #FF3F39;
}
/*.form_wrapper select{
	height: 56px !important;
}*/
.form_submit_btn {
    width: 100%;
    height: 45px;
    line-height: 45px;
    background-color: #c51508;
    color: #fff;
    border: none;
    cursor: pointer;
}
.form_submit_btn:hover{
	background-color: #dc0d06;
}
.form_submit_btn:focus{
	outline: none;
	border: none;
}
select[name="movingType"],
select[name="movingSize"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../../../../storage/app/media/select-down.svg);
	background-repeat: no-repeat;
	background-size: 12px;
	background-position: 95% 50%;
}
.sidebar_sticky_form_wrapper{
	position: sticky;
    top: 100px;
}
.form-group {
    margin-bottom: 0.65rem;
}
/* ---------- Form css end ---------- */

/* ---------- Services List Css ---------- */
.service_list_icon_wrapper{
	padding: 15px;
    background-color: #fff;
    box-shadow: 0px 2px 3px 0px #ccc;
    width: 80px;
    height: 80px;
    margin: auto;
}
.service_list_service_name{
	font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 5px 0;
}
.service_list_service_name:hover{
    color: #ff3d36;
    text-decoration: none;
}
/* ---------- Services List Css End ---------- */

/* ---------- Home Page Css ---------- */
/* Services section */
/*.service_card {
	min-height: 320px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 35px 0 rgb(154 161 171 / 15%);
    border: 1px solid #eee;
    transition: all .3s ease;
    position: relative;
}*/
	.service_card {
	border-radius: 0.3rem;
	min-height: 320px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 1px 4px -1px rgb(14 41 66 / 10%), 0 10px 30px -12px rgb(14 41 66 / 10%);
    border: thin solid #ebedf0;
    transition: all .3s ease-out;
    position: relative;
}	

.service_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.service_icon {
    margin: 0 0 5px 0;
}
.service_name {
	font-family: 'poppinsmedium', sans-serif;
    font-size: 18px;
    color: #131c21 !important;
    margin: 0 0 5px 0;
    display: block;
}
.service_name:hover {
	text-decoration: none;
}
.service_description p{
    font-size: 14px;
    color: #777;
    text-align: justify;
    margin: 0 0 30px 0;
    /*min-height: 190px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
}
.service_learnmore{
    position: absolute;
    right: 30px;
    bottom: 30px;
}
/* Services section End */

/* CTA section */
.cta_text {
    font-family: 'poppinsmedium';
    font-size: 16px;
    margin: 0;
}
.cta_quote_btn {
    font-family: 'poppinsmedium';
    font-size: 18px;
    color: #fff;
    background-color: #d13200;
    display: block;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border: none;
}
.cta_service_btn{
    font-family: 'poppinsmedium';
    font-size: 18px;
    color: #fff;
    background-color: #21caf3;
    display: block;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
}
.cta_quote_btn:hover{
	background-color: #dc0d06;
	color: #fff;
	text-decoration: none;
}
.cta_quote_btn:focus{
	outline: none;
}
.cta_service_btn:hover{
	background-color: #2f434e;
	color: #fff;
	text-decoration: none;
}
/* CTA section End */

/* How section */
.how_card {
	border-radius: 2px;
    padding: 30px 15px 15px;
    min-height: 150px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background-color: #fff;
}
.how_card p {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    min-height: 65px;
}
.steps {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    line-height: 33px;
    width: 40px;
    /* padding: 5px; */
    border-radius: 50%;
    background: #747C86;
    font-family: 'poppinsmedium';
    font-size: 18px;
    color: #fff;
    border: 4px solid #fff;
}
/* How section End */

/* Why VPM section */
.why_card{
	
}
.why_img{
	
}
.why_title{
	font-family: 'poppinsmedium', sans-serif;
	font-size: 17px;
	color: #131c21;
    margin: 0 0 5px 0;
}
.why_content p{
	font-size: 14px;
    color: #777;
    text-align: justify;
}
/* Why AIPM section End */

/* Services link sec */
.link_container ul li{
    padding: 15px 0;
    border-bottom: 1px solid #EAEAEA; 
    list-style: none;
}
.link_container ul li a{
	font-size: 14px;
    color: #777;
    display: inline-block;
    transition: .3s;
}
.link_container ul li a:hover{
	color: #FF3F39;
	text-decoration: none;
	transform: translateX(10px);
}
.link_container ul li a:hover::before{
	content: "\f061";
    font-family: 'FontAwesome';
    color: #FF3F39;
    margin: 0 5px 0 0;
    transition: .3s;
}
/* Services link sec end */

/* Packers & Movers Services By Location sec */
.intercity_card {
}
.intercity_card_img{
	width: 50px;
}
.intercity_card_header{
	background-color: #fff;
    border-radius: 0 !important;
    border: none;
}
#accordion .intercity_card_header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(to right,#ff3f39 ,#ff3f3969);
}
#accordion1 .intercity_card_header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(to right,#131c21 ,#131c2169);
}
.intercity_card_link.collapsed{
	color: #131c21 !important;
}
.intercity_card_link {
    font-family: "Poppins",sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FF3F39;
    display: inline-block;
    width: 85%;
    text-align: left;
    white-space: break-spaces;
    padding-left: 0;
    position: relative;
}
.intercity_card_link:hover, 
.intercity_card_link:focus {
    color: #FF3F39;
    text-decoration: none !important;
    box-shadow: none !important;
}
.intercity_card_body > ul > li{
	padding: 5px 0;
	border-bottom: 1px solid #EAECEB;
	list-style: none;
}
.intercity_card_body > ul > li > a{
	font-size: 14px;
	color: #777;
}
.intercity_card_body > ul > li > a > span{
	font-family: 'poppinsmedium';
    color: #000;
}
/*.intercity_card_body > ul > li > a:hover{
	color: #777;
}*/
.intercity_card_link.collapsed:after {
    content: "\f078";
    font-family: 'FontAwesome';
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    right: -20px;
    transition: .3s;
}
.intercity_card_link:after {
    content: "\f078";
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    right: -20px;
    transition: .3s;
}
/* Packers & Movers Services By Location sec End  */

/* Testimonials sec */
.testimonial_card {
	margin: 20px 0 20px 0;
}
.testimonial_card:focus{
	outline: none;
}
.testimonial_content_box {
	padding: 20px;
	background-color: #fff;
	position: relative;
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.testimonial_content_box:after {
	content:'';
	position: absolute;
	left: 30px;
	bottom: -24px;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-width: 12px 15px;
	border-top-color: #fff;
}
.star_checked{
	color: orange;
}
.testimonial_content p {
	font-size: 14px;
	color: #777;
	margin-bottom: 0;
	/*overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;*/
}
.testimonial_author_box {
	margin-top: 28px;
	padding-left: 25px;
}
.author_name {
	font-family: 'poppinsmedium', sans-serif;
	font-size: 18px;
	color: #131c21;
    margin: 0 0 5px 0;
}
.author_designation {
	font-size: 12px;
	color: #777;
}
.author_img {
	max-width: 40px;
	float: left;
	margin-right: 12px;
}
/* Common for testimonial, client and blogs sec */
.testimonial_slider .slick-prev, .testimonial_slider .slick-next, 
.local_intercity_testimonial_slider .slick-prev, .testimonial_slider .slick-next, 
.client_slider .slick-prev, .client_slider .slick-next,
.blog_slider .slick-prev, .blog_slider .slick-next{
  top: 45%;
}
.testimonial_slider .slick-next:before, .testimonial_slider .slick-prev:before,
.local_intercity_testimonial_slider .slick-next:before, .local_intercity_testimonial_slider .slick-prev:before,
.client_slider .slick-next:before, .client_slider .slick-prev:before,
.blog_slider .slick-next:before, .blog_slider .slick-prev:before{
  content: "" !important;
}

.testimonial_slider .slick-next,
.local_intercity_testimonial_slider .slick-next,
.client_slider .slick-next,
.blog_slider .slick-next{
  background-image: url(../../../../storage/app/media/select-down.svg) !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: rotate(-90deg);
}
.testimonial_slider .slick-prev,
.local_intercity_testimonial_slider .slick-prev,
.client_slider .slick-prev,
.blog_slider .slick-prev{
  background-image: url(../../../../storage/app/media/select-down.svg) !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: rotate(90deg);
}
.slick-arrow.slick-disabled {
  opacity: 0.2;
}
}
td {
    display: table-cell;
    vertical-align: inherit;
}
h3 {
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
}


/* Commom for testimonial, client and blogs sec */
/* Testimonials sec End */

/* ---------- Client sec ---------- */
.client_card {
    margin: 10px;
}
/* ---------- Client sec End ---------- */

/* Contact box css */
.contact_box_container{
	position: relative;
}
.contact_box_content {
    padding: 20px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.contact_box_heading {
    font-family: 'poppinsmedium', sans-serif;
    font-size: 22px !important;
    color: #131c21;
    margin: 0 0 10px 0 !important;
}
.contact_box_heading span{
	color: #FF3F39;
}
.contact_box_number, .contact_box_email {
    font-family: 'poppins';
    font-size: 14px;
    color: #131c21;
    margin: 0 0 10px 0;
}
.contact_box_number:hover,
.contact_box_email:hover{
    color: #ff3f39;
    text-decoration: none;
}
.contact_box_button {
    font-size: 14px;
    color: #131c21;
}
.contact_box_button:hover{
    color: #FF3F39;
    text-decoration: none;
}
.contact_box_button:after {
    content: "\f061";
    font-family: 'FontAwesome';
    margin: 0 0 0 5px;
}
.contact_box_number img, .contact_box_email img {
    width: 20px;
}
/* Contact box css end */

/* Contact box 1 css */
.contact_box_container1{
	position: relative;
}
.contact_box_content1 {
    /* padding: 20px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%); */
}
.contact_box_heading1 {
    font-family: 'poppinsmedium', sans-serif;
    font-size: 20px !important;
    color: #131c21;
    margin: 0 0 10px 0 !important;
    font-weight:500;
}

.contact_box_number1, 
.contact_box_email1 {
    font-family: 'poppins';
    font-size: 14px;
    color: #131c21;
    margin: 0 0 10px 0;
}
.contact_box_number1:hover,
.contact_box_email1:hover{
    color: #ff3f39;
    text-decoration: none;
}
.contact_box_number1 img, 
.contact_box_email1 img {
    width: 20px;
}
/* Contact box 1 css end */

/* ---------- Home Page Css End ---------- */

/* ---------- About page css ---------- */
.about_card{
	padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 35px 0 rgb(154 161 171 / 15%);
    border: 1px solid #eee;
}
.about_heading{
	font-family: 'poppinsmedium', sans-serif;
    font-size: 18px;
    color: #131c21 !important;
    margin: 0 0 5px 0;
}
.about_content{
	font-size: 14px;
    color: #777;
    text-align: justify;
    margin: 0;
}
/* ---------- About page css end ---------- */

/* ---------- Service page Css ---------- */
.banner_h1 {
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    text-align: center;
}

.service_page_content h1,h2,h3,h4,h5,h6{
	font-family: 'poppinsmedium', sans-serif;
	color: #131c21;
}
.service_page_content h1{
	font-size: 25px;
	margin: 0 0 10px 0;
}
.service_page_content h2{
	font-size: 20px;
	margin: 0 0 10px 0;
	color: #FF3F39;
}
.service_page_content h3{
	font-size: 20px;
	margin: 0 0 10px 0;
}
.service_page_content h4{
	font-size: 18px;
	margin: 0 0 10px 0;
}
.service_page_content p{
	font-size: 14px;
    color: #777;
    text-align: justify;
}
.service_page_content ul li{
	font-size: 14px;
    color: #777;
    text-align: justify;
}

.service_list_container {
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    /*padding: 20px;*/
}
.service_list_container_heading{
	font-size: 20px !important;
	padding: 20px;
	border-bottom: 2px solid #ff3f39;
}
.service_list{
    padding: 10px 0;
    list-style: none;
}
.service_list a{
	font-size: 14px;
    color: #777;
    display: inline-block;
    transition: .3s;
}
.service_list a:hover{
	color: #FF3F39;
	text-decoration: none;
	transform: translateX(10px);
}
.service_list a:hover::before{
	content: "\f061";
    font-family: 'FontAwesome';
    color: #FF3F39;
    margin: 0 5px 0 0;
    transition: .3s;
}
/* ---------- Service page Css End ---------- */

/* ---------- Location page Css ---------- */
.location_card{
	box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px 0px;
	transition: all 0.3s;
    overflow: hidden;
}
.img_wrapper{
	position: relative;
}
.img_wrapper:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    opacity: .75;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .3s;
}
.location_card:hover .img_wrapper:before {
	background-color: #757575;
    opacity: .2;
    display: none;
}
.location_overlay_name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: 'poppinsmedium';
    font-size: 22px;
    color: #fff;
}
.location_content_wrapper {
    padding: 15px;
    min-height: 60px;
    background-color: #fff;
}
.location_name {
    font-family: 'poppinsmedium', sans-serif;
    font-size: 16px;
    color: #131c21;
    margin: 0 0 5px 0;
}
.location_name:after {
    content: "\f061";
    font-family: 'FontAwesome';
    font-size: 14px;
    margin: 0 0 0 5px;
}
.location_name:hover {
    color: #ff3d36;
    text-decoration: none;
}

/*.location_img{
transition: all 0.3s;
}
.location_card:hover .location_img{
	transform: scale(1.1);	
}*/
/* ---------- Location, Local location page Css ---------- */
.location_page_content h1,h2,h3,h4,h5,h6{
	font-family: 'poppinsmedium', sans-serif;
	color: #131c21;
}
.local_location_page_content h1,h2,h3,h4,h5,h6{
	font-family: 'poppinsmedium', sans-serif;
	color: #131c21;
}
.location_page_content h1,
.local_location_page_content h1{
	font-size: 25px;
	margin: 0 0 10px 0;
}
.location_page_content h2,
.local_location_page_content h2{
	font-size: 20px;
	margin: 0 0 10px 0;
	color: #FF3F39;
}
.location_page_content h3,
.local_location_page_content h3{
	font-size: 18px;
	margin: 0 0 10px 0;
}
.location_page_content h4,
.local_location_page_content h4{
	font-size: 16px;
	margin: 0 0 10px 0;
}
.location_page_content p,
.local_location_page_content p{
	font-size: 14px;
    color: #777;
    text-align: justify;
}
.location_page_content ul li,
.local_location_page_content ul li{
	font-size: 14px;
    color: #777;
    text-align: justify;
}
/* ---------- Location, Local location page Css End ---------- */

/* ---------- Common FAQ's css ---------- */
.faq_card {
	background-color: #f2f3f4;
	padding: 40px 70px 40px 40px;
    border: none;
}
.faq_card-header {
    background: transparent;
    padding: 0;
    border: none;
}
.faq_btn.collapsed{
	color: #131c21 !important;
}
.faq_btn {
	font-family: 'poppins';
	font-size: 18px;
    color: #FF3F39;
    display: inline-block;
    width: 100%;
    text-align: left;
    white-space: break-spaces;
    padding: 0;
    position: relative;
    border: none;
}
.faq_btn:hover,
.faq_btn:focus{
	color: #FF3F39;
    outline: none;
    text-decoration: none;
    box-shadow: none;
}
.faq_btn.collapsed:after {
    content: "\f078";
    font-family: 'FontAwesome';
    font-size: 12px;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: .3s;
}
.faq_btn:after {
    content: "\f077";
    font-family: 'FontAwesome';
    font-size: 12px;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: .3s;
}

.faq_btn p{
    margin-bottom: 0px;    
}
.faq_body {
    padding: 15px 0 0 0;
    font-size: 14px;
    color: #777;
}
/*.faq_body{
    
}*/
/* ---------- Common FAQ's css end ---------- */

/* ---------- Common Blog Css ---------- */
.blog_container {
    margin: 0px auto;
    padding: 0;
    position: relative;
}
.blog_center_line{
  position: absolute;
  height: 100%;
  width: 4px;
  background: #131c2199;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.blog_scroll_icon{
  position: absolute;
  background: #f2f2f2;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ff7979;
  font-size: 17px;
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.blog_scroll_icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}
.blog_card_wrapper{
  display: flex;
}
.blog_card_left{
  justify-content: flex-start;
}
.blog_card_right{
  justify-content: flex-end;
}
.blog_card{
	background: #fff;
    width: calc(50% - 40px);
    padding: 20px;
    box-shadow: 0 0 20px 0 rgb(154 161 171 / 15%);
    border: 1px solid #eee;
    position: relative;
}
.blog_category_tag, 
.blog_category_tag > a {
    font-family: 'poppinsmedium';
    font-size: 16px;
    color: #fff !important;
    background-color: #FF3F39;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    display: inline-block;
}
.blog_minutes{
	font-size: 14px;
	display: inline-block;
}
.blog_title, 
.blog_title > a  {
    font-family: 'poppinsmedium';
    font-size: 20px;
    color: #131c21;
    display: block;
    margin: 0 0 10px 0;
    /*display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;*/
}
.blog_title_min_height{
	min-height: 90px;
}
.blog_title:hover, 
.blog_title > a:hover {
    color: #FF3F39;
    text-decoration: none;
}

.blog_bottom_wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_published_date {
    font-family: 'poppins';
    font-size: 14px;
    color: #131c21;
}
.blog_readmore {
	font-family: 'poppins';
    color: #131c21;
    font-size: 14px;
}
.blog_readmore:hover{
	color: #FF3F39;
}
.blog_card_connecting_square::before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #FF3F39;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.blog_card_left .blog_card_connecting_square::before{
  right: -7px;
}
.blog_card_right .blog_card_connecting_square::before{
  left: -7px;
}

.blogs_category_list_wrapper{
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.blogs_category_list_wrapper_heading {
	font-size: 20px;
    padding: 20px;
    border-bottom: 2px solid #ff3f39;
}
.blogs_category_list{
	padding: 10px 0;
    list-style: none;
}
.blogs_category_list a{
	font-size: 14px;
    color: #777;
    display: inline-block;
    transition: .3s;
}
.blogs_category_list a:hover{
	color: #FF3F39;
	text-decoration: none;
	transform: translateX(10px);
}
.blogs_category_list a:hover::before{
	content: "\f061";
    font-family: 'FontAwesome';
    color: #FF3F39;
    margin: 0 5px 0 0;
    transition: .3s;
}

.blog_heading_question {
    font-size: 24px;
    color: #131c21;
}
.blog_answer_option_yes{
	font-size: 14px;
	color:#FF3F39;
}
.blog_answer_option_no{
	font-size: 14px;
	color:#FF3F39;
	margin: 0 0 0 24px;
    padding: 0 0 0 25px;
    position: relative;
}
.blog_answer_option_yes:hover,
.blog_answer_option_no:hover {
	color: #FF3F39;
}
.blog_answer_option_no:before{
	content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #979797;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
}
/* ---------- Common Blog Css End ---------- */

/* ---------- Blog page Css ---------- */
.blog_page_content h1,h2,h3,h4,h5,h6{
	font-family: 'poppinsmedium', sans-serif;
	color: #131c21;
}
.blog_page_content h1{
	font-size: 30px;
	margin: 0 0 16px 0;
}
.blog_page_content h2{
	font-size: 25px;
	margin: 0 0 16px 0;
}
.blog_page_content h3{
	font-size: 20px;
	margin: 0 0 16px 0;
}
.blog_page_content h4{
	font-size: 18px;
	margin: 0 0 16px 0;
}
.blog_page_content p{
	font-size: 14px;
    color: #777;
    text-align: justify;
}
.blog_page_content ul li{
	font-size: 14px;
    color: #777;
    text-align: justify;
}
/* ---------- Blog page Css End ---------- */

/* Local internal linking css */
.local_shifting_location_name {
	list-style: none;
    display: inline-block;
    margin: 0 8px 8px 0;
    background: #f2f3f4;
    border-radius: 4px;
}
.local_shifting_location_name > a {
	font-size: 12px;
	color: #131c21;
	padding: 6px 8px;
	display: inline-block;
	transition: .3s;
}
.local_shifting_location_name > a:hover {
	color: #ff3f39;
}
/* Local internal linking css End */

/* ---------- Bottom sticky btn ---------- */
.bottom_sticky_btn_wrpper{
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
}
.bottom_sticky_call_btn{
	color: #fff;
	background-color: #c91c16;
	display: block;
    text-align: center;
    height: 45px;
    line-height: 45px;
}
.bottom_sticky_getquote_btn{
	color: #fff;
	background-color: #131c21;
	/* display: block; */
    text-align: center;
    height: 45px;
    line-height: 45px;
    width: 100%;
    border: none;
}
.bottom_sticky_call_btn:hover,
.bottom_sticky_getquote_btn:hover{
	color: #fff;
}
.bottom_sticky_getquote_btn:focus{
	outline: none;
}
/* ---------- Bottom sticky btn End ---------- */

/* Form Modal */
.form_modal{
	z-index: 9999;
}
/* Form Modal end */

/* ---------- Footer css ---------- */
.footer{
    font-family: 'poppins',sans-serif;
    font-size: 14px;
    background-color: #181818;    
}
.footer_top {
    padding: 50px 0 40px 0;
}
.footer_category_container{
    margin-bottom: 30px;
    position: relative;    
}
.footer_category_title {
	font-family: 'poppinsmedium', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    line-height: 24px;
    margin-bottom: 10px;
}
.footer_category_container ul li{
    margin: 0 0 10px 20px;
}
.footer_category_container ul li:before{
    content: '\f054';    
    font-family: 'FontAwesome';
    margin-left: -20px;
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}
.footer_category_container ul li a{
    color: #fff;
}
.footer_category_container ul li a:hover{
    text-decoration: none;
} 
.footer_bottom{
    font-size: 13px;
    min-height: 80px;
    padding: 10px 0 10px;
    background-color: #ff3f39;
}
.copyright_content{
    font-size: 12px;
    text-align: justify;
    color: #fff;
    margin: 12px 0;
}
.social_icons ul {
    display: inline-block;
}
.social_icons li {
    float: left;
    list-style: none;
}
.social_icons li a {
    float: left;
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    margin: 0 4px 4px 0;
    border-radius: 4px;
    border: 0;
    background: transparent;
    color: #fff;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.social_icons li:hover i {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}
@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
.social_facebook a:hover,
.social_twitter a:hover,
.social_youtube a:hover{
    color: #fff;
}
.social_facebook a:hover {
    background-color: #5d82d1;
}
.social_twitter a:hover{
    background-color: #40bff5;    
}
.social_youtube a:hover{
    background-color: #ef4e41;
}
.error{
	font-family: 'poppins', sans-serif;
    font-size: 14px;
	color: rgba(255 0 0);
}
/* Footer Contact box css */

.footer_number, .footer_email {
    font-family: 'poppins';
    font-size: 14px;
    color: #fff;
    margin: 0 0 10px 0;
}
.footer_number:hover,
.footer_email:hover{
    color: #fff;
    text-decoration: none;
}
.footer_button {
    font-size: 14px;
    color: #fff;
}
.footer_button:hover{
    color: #fff;
    text-decoration: none;
}
.footer_button:after {
    content: "\f061";
    font-family: 'FontAwesome';
    margin: 0 0 0 5px;
}
.contact_box_number img, .contact_box_email img {
    width: 20px;
}
/* Footer Contact box css end */
/* ---------- Footer css end ---------- */
.home-thankyoubtn {
    background: #FF3F39;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
}

.home-thankyoubtn:hover {
    background: #dc0d06;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
}
.heading_404 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 5px;
}
.subheading_404 {
    margin-bottom: 10px;
}
.p_404 {
    font-size: 1.09rem;
    margin-bottom: 10px;
}
.thankyou_heading{
	font-size: 30px;
	margin-bottom: 10px;
	font-weight: 600;
}
.thankyou_p{
    font-size: 1.09rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.scroll_to_top {
	border-radius: 2px;
    position: fixed;
    right: 15px;
    bottom: 55px;
    border: none;
    background-color: #c91c16;
    padding: 15px;
}
.scroll_to_top:focus{
	outline: none;
}
.scroll_to_top > img {
    width: 20px;
    transform: rotate(180deg);
}






