* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #323232;
}

b,
strong {
	font-weight: 600;
}

h1 {
	font-weight: 600;
	font-size: 40px;
	color: #323232;
}
textarea {
	max-width: 100%;
}
a.disabled {
	pointer-events: none;
	opacity: 0.5;
}
a.disabled:hover {
	cursor: not-allowed;
}
.get-in-touch-success button {
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	padding: 8px 15px;
	background: #e60000;
	border: 1px solid #e60000;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
}
.get-in-touch-success button:hover {
	cursor: pointer;
}
.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.section-title {
	font-weight: 600;
	font-size: 40px;
	line-height: 49px;
	color: #323232;
	text-align: center;
}

.social-links {
	display: flex;
}

div.social-links{
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.social-links li, .social-links div {
	padding: 0 5px;
}

#mnmwp-main-menu .social-item-menu.menu-item {
    display: none;
}

.is_mobile #mnmwp-main-menu .social-item-menu.menu-item {
    display: flex;
}

#mnmwp-main-menu .menu-item .social-links {
    padding: 15px 0;
}

#mnmwp-main-menu .menu-item .social-links div a {
    border: 1px solid #910101;
    background: #910101;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mnmwp-main-menu .menu-item .social-links div a img {
    height: 25px;
    width: 25px; 
}

.social-links li:first-child {
	padding-left: 0;
}

a {
	text-decoration: none;
	color: #e60000;
}

p {
	margin-top: 0;
}

p a:hover {
	text-decoration: none;
	color: #bd0000;
}

body::-webkit-scrollbar {
	width: 5px;
	/* width of the entire scrollbar */
}

body::-webkit-scrollbar-thumb {
	background-color: #e60000;
	/* color of the scroll thumb */
	border-radius: 20px;
	/* roundness of the scroll thumb */
	border: 1px solid #e60000;
	/* creates padding around scroll thumb */
	scrollbar-width: thin;
}

.btn-red {
	background: #e60000;
	border: 1px solid #e60000;
	padding: 15px 40px;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	cursor: pointer;
	color: #ffffff;
	transition: all 0.3s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.btn-red:hover {
	background: #bd0000;
	border: 1px solid #bd0000;
}

.btn-white {
	background: #ffffff;
	border: 1px solid #e60000;
	padding: 15px 40px;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #e60000;
	transition: all 0.3s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.btn-white:hover {
	background: #ffffff;
	border: 1px solid #bd0000;
	color: #bd0000;
}

.d-flex-end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.d-flex-space-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#site-navigation ul,
footer ul,
.social-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Breadcrumbs Styles Start */
.hd-breadcrumbs {
	display: flex;
	margin-bottom: 50px;
	list-style: none;
    padding: 0;
}

.hd-breadcrumbs li a {
	font-size: 14px;
	font-weight: 400;
	color: #323232;
}

.hd-breadcrumbs li a:hover {
	font-size: 14px;
	font-weight: 500;
	color: #323232;
}

.hd-breadcrumbs li {
	font-size: 14px;
	font-weight: 400;
	color: #323232;
}

.hd-breadcrumbs_spacer {
	margin-right: 4px;
}
/* Breadcrumbs Styles End */

/* Mobile Menu Styles Starts */
.mobile-menu-link {
	display: block;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	position: relative;
	z-index: 9;
}

.mobile-menu-link span,
.mobile-menu-link span:before,
.mobile-menu-link span:after {
	display: block;
	height: 2px;
	width: 20px;
	background-color: #bd0000;
	position: absolute;
	left: 50%;
	margin-left: -10px;
	top: 50%;
	margin-top: -1px;
}

.mobile-menu-link span:before {
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	content: '';
	margin-top: -7px;
	width: 20px;
}

.mobile-menu-link span:after {
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	content: '';
	margin-top: 5px;
	width: 20px;
}

.mobile-menu-link_active span {
	background-color: transparent;
}

.mobile-menu-link_active span:before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	margin-top: 0;
	background-color: #e60000;
}

.mobile-menu-link_active span:after {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	margin-top: 0;
	background-color: #e60000;
}

.mobile-menu {
	background: #ffffff;
	border: 0.5px solid #dbdbdb;
	position: fixed;
	top: 0;
	/* width: 60vw; */
	max-width: 450px;
	width: 100%;
	height: 100vh;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-box-pack: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	right: -100vw;
	opacity: 1;
	overflow: scroll;
}

.mobile-menu-active {
	right: -20vw;
}

.mobile-menu ul {
	text-align: center;
	margin: 0;
	list-style: none;
	padding: 20px;
}

.mobile-menu ul li {
	margin-bottom: 10px;
	text-align: left;
}

.mobile-menu ul a {
	display: block;
	width: 100%;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #e60000;
}

.mobile-header-menu .menu-item-has-children .sub-menu li a {
	font-size: 18px;
	line-height: 22px;
	color: #323232;
}

.mobile-header-menu .menu-item-has-children {
	position: relative;
}

.mobile-header-menu .menu-item-has-children::after {
	content: url(../icons/arrow-down.svg);
	position: absolute;
	left: 155px;
	top: -2px !important;
}
/* Mobile Menu Styles Ends*/

/* Header Styles Start */
.top-bar {
	display: flex;
	height: 52px;
	background: #bd0000;
}

.top-bar_phone {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.01em;
	color: #ffffff;
	margin-left: 40px;
}

.mobile-phone {
	display: none;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.01em;
	color: #bd0000;
}

.site-header {
	background: #ffffff;
	border-bottom: 0.5px solid #dbdbdb;
	padding: 3px 0;
	z-index: 1;
}

.site-header.stickytop {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 3;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/* .site-branding .custom-logo {
    width: 186px;
    height: auto;
} */

.site-branding {
	width: auto;
	height: auto;
}

.site-branding-mobile {
	display: none;
	max-width: 78px;
}

.mobile-header-menu {
	margin-top: 70px !important;
}

.header-menu {
	display: flex;
	position: relative;
	top: 3px;
}

.header-menu .menu-item {
	padding: 25px 12px;
}

.header-menu .menu-item:last-child {
	padding-right: 0;
}

.header-menu .menu-item a {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #e60000;
}

.header-menu .menu-item-type-custom .sub-menu .menu-item {
	padding: 5px 20px 5px;
}

.header-menu .menu-item-type-custom .sub-menu .menu-item a {
	font-size: 18px;
	color: #323232;
	font-weight: 400;
}

.header-menu .menu-item-type-custom .sub-menu {
	display: none;
	transition: all 0.3s;
	position: absolute;
	background: #ffffff;
	border: 0.5px solid #a0a0a0;
	top: 72px;
	padding: 15px 0 20px;
	z-index: 3;
}

#site-navigation .menu-item-has-children:hover .sub-menu {
	display: block;
}

#site-navigation .sub-menu:hover {
	display: block;
}

.locations-sub-menu:hover .sub-menu {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 650px;
	right: 10% !important;
}

.locations-sub-menu .sub-menu li {
	flex-basis: 50%;
}

.header-menu .menu-item-has-children::after {
	content: url(../icons/arrow-down.svg);
	margin-left: 10px;
	position: relative;
	top: -2px;
	display: inline-block;
	transition: all 0.3s;
}

.header-menu .menu-item-has-children:hover.menu-item-has-children::after {
	top: 3px;
	display: inline-block;
	transform: rotate(0.5turn);
}
/* Header styles End */

/* Home Page Styles Start */
.get-destination {
	padding: 35px;
	background: #f5f5f5;
	max-width: 950px;
}

.servise-input {
	margin-right: 5px;
}

.get-destination_title {
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: #323232;
	margin-bottom: 30px;
	margin-top: 0;
}

.hd-banner-form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.hd-banner-form .banner-form-input {
	background: #ffffff !important;
	border: 0.5px solid #e4e1e1;
	outline: none;
	padding: 12px;
	max-width: 236px;
	width: 100%;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #323232;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.quote-form-btn {
	padding: 15px 30px;
}
/* .reg-field-valid{
    color: ;
} */
/* .servise-input {
    background: #fff;
} */

input::placeholder {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #323232;
}

.destinational-inputs .banner-form-input:last-child {
	padding-left: 30px;
}

.destinational-inputs::after {
	content: url(../icons/form-icon-right.svg);
	position: absolute;
	left: 46.7%;
	top: 16%;
}

.destinational-inputs {
	display: flex;
	position: relative;
}

.form-hidden-fields {
	display: none;
}

#home-banner {
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 650px;
	position: relative;
}

.banner-overlay {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #323232;
	background-image: url(https://highstreammoving.com/wp-content/uploads/2023/02/black-dots.png);
	opacity: 0.3;
	z-index: 1;
}

.banner-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 650px;
	z-index: 2;
}

.banner-title {
	font-weight: 600;
	font-size: 52px;
	line-height: 63px;
	color: #ffffff;
	margin-bottom: 60px;
	max-width: 831px;
}

#people-choose-us {
	padding: 100px 0 60px;
}

.feature-blocks-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 68px;
}

.feature-block {
	flex-basis: 50%;
	margin-bottom: 50px;
	display: flex;
	justify-content: flex-start;
}

.feature-block_icon {
	margin-right: 25px;
}

.feature-block_title {
	font-weight: 500;
	font-size: 24px;
	color: #323232;
	margin: 20px 0;
}

.feature-block_description {
	font-size: 18px;
	line-height: 22px;
	color: #323232;
	padding: 0 15px 0 0;
}

#moving-services {
	padding: 40px 0 50px;
	background: #f5f5f5;
}

.services-wrapper {
	margin-top: 70px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-block {
	background: #ffffff;
	flex-basis: 49%;
	margin-bottom: 30px;
	border: 1px solid transparent;
	transition: all 0.5s;
}

.service-block-bordered {
	background: #ffffff;
	flex-basis: 49%;
	margin-bottom: 30px;
	border: 1px solid transparent;
	transition: all 0.5s;
	background: #ffffff;
	border: 1px solid #f5f5f5;
}

.service-block-bordered:hover {
	border: 1px solid #a0a0a0;
}

.service-block:hover {
	border: 1px solid #a0a0a0;
}

.service-block_image_wrapper {
	overflow: hidden;
	max-height: 341px;
}

.service-block img {
	width: 100%;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.service-block img:hover {
	transform: scale(1.1);
}

.service-block-bordered img {
	width: 100%;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.service-block-bordered img:hover {
	transform: scale(1.1);
}

.service-block_info {
	padding: 40px;
}

.service-block_title {
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 30px;
	color: #323232;
	line-height: 1.2;
}

.service-block_excerpt {
	font-size: 18px;
	color: #323232;
	margin-bottom: 30px;
	line-height: 22px;
}

.service-block_link {
	font-weight: 500;
	font-size: 18px;
	color: #323232;
	transition: all 0.3s;
}

.service-block_link::after {
	content: url(../icons/arrow-right.svg);
	position: relative;
	left: 15px;
	top: -1px;
}

.service-block_link:hover {
	font-weight: 600;
	font-size: 18px;
	color: #323232;
}

#how-does-it-work {
	padding: 50px 0;
}

.how-does-it-work_wrapper {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	text-align: center;
	margin-top: 70px;
}

.item_number-has-arrow::after {
	content: url(../icons/arrow-right-long.svg);
	position: absolute;
	left: 80%;
	bottom: 55%;
}

.how-does-it-work_item {
	flex-basis: 33%;
	position: relative;
}

.how-does-it-work_item_number {
	background: #e60000;
	display: block;
	font-weight: 700;
	font-size: 80px;
	line-height: 98px;
	color: #ffffff;
	border-radius: 50%;
	padding: 16px 45px;
	animation: pulse 2s infinite;
	width: 135px;
	margin: 0 auto;
}

.pulse {
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
	}

	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}

.master {
	color: black;
	float: right;
}

@media (max-width: 900px) {
	.master {
		display: none;
	}
}

.how-does-it-work_item_description {
	font-weight: 400;
	font-size: 24px;
	color: #323232;
	margin-top: 35px;
}

.how-does-it-work_item_description a {
	color: #e60000;
	transition: all 0.3s;
}

.how-does-it-work_item_description a:hover {
	color: #bd0000;
	transition: all 0.3s;
}

#testimonials {
	padding: 50px 0;
}

.testimonials-wrapper {
	margin-top: 70px;
}

#request-quote {
	padding: 50px 0;
}

.request-quote-wrapper {
	margin-top: 70px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.contact-details_phone {
	font-weight: 600;
	font-size: 24px;
	color: #323232;
	margin-bottom: 30px;
}

.contact-details_email {
	font-weight: 400;
	font-size: 24px;
	color: #323232;
}

.hd-contact-form label {
	font-weight: 500;
	font-size: 18px;
	color: #323232;
}

.hd-contact-form .form-input {
	margin-bottom: 15px;
	background: #ffffff;
	border: 1px solid #e4e1e1;
	outline: none;
	padding: 12px;
	max-width: 445px;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	font-size: 16px;
}
.hd-contact-form textarea {
	border: 1px solid #e4e1e1;
}
.hd-contact-form textarea:active,
.hd-contact-form textarea:focus {
	border: 1px solid #8c8c8c;
}
.hd-contact-form .form-input:active {
	border: 1px solid #8c8c8c;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.get-in-touch-success {
	display: none;
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	padding: 10px;
	line-height: normal;
}
.get-in-touch-success.visible {
	display: block;
}
.hd-contact-form .form-input:focus {
	border: 1px solid #8c8c8c;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.hidden {
	display: none;
}
input[type='text']:focus {
	border: 1px solid #8c8c8c;
}

input[type='text']:active {
	border: 1px solid #8c8c8c;
}

::selection {
	color: #000000;
	background-color: red;
}

/* for firefox */
::moz-selection {
	color: #000000;
	background-color: red;
}
/* Home Page Styles End */

/* Single Service Styles Start */
.service-post {
	padding: 50px 0 110px;
}

.short-service-info {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 70px;
}

.short-service-info__descr p {
	padding-right: 22px;
}

.short-service-info__descr,
.short-service-info__thumbnail {
	flex-basis: 50%;
}

.short-service-info__title {
	line-height: 40px;
	font-weight: 600;
	font-size: 40px;
	color: #323232;
	margin-bottom: 30px;
}

.short-service-info__excerpt {
	font-weight: 400;
	font-size: 18px;
	color: #323232;
	line-height: 22px;
	margin-bottom: 65px;
}

.short-service-info__buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.short-location-info__buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 46px;
}

.buttons-spacer {
	padding: 0 20px;
}

.service-features-list {
	padding: 50px 0;
	margin-top: 50px;
	background: #fafafa;
}

.location-services {
	padding: 50px 0;
	margin-top: 50px;
	background: #fafafa;
}

.location-service-list {
	display: flex;
	flex-wrap: wrap;
}

.location-single_service {
	flex-basis: 50%;
	margin-bottom: 30px;
}

.dot-red {
	background: #e60000;
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
	margin-bottom: 4px;
}

.location-single_service a {
	color: #323232;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
}

.service-features-list_list {
	font-weight: 600;
	font-size: 40px;
	line-height: 49px;
	color: #323232;
	margin-bottom: 71px;
	text-align: center;
}

.features-list .single_feature {
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 22px;
	color: #323232;
	margin-bottom: 32px;
}

.features-list .single_feature::before {
	content: url(../icons/feature-check.svg);
	margin-right: 20px;
}

.service-contact-form {
	padding: 20px 0;
}

.service-contact-form_title {
	font-weight: 600;
	font-size: 40px;
	line-height: 49px;
	color: #323232;
	text-align: center;
	margin-bottom: 70px;
}

.service-contact-form_wrapper {
	display: flex;
	justify-content: space-around;
}

.service-contacts_list li {
	margin-bottom: 30px;
}

.service-contacts_list .service-contact_link {
	font-weight: 400;
	font-size: 24px;
	color: #323232;
}

.form-destination-fields {
	max-width: 445px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.form-destination-field {
	flex-basis: 47%;
}
/* Single Service Styles End */

/* Single Page Styles Start */
.site-page {
	padding: 50px 0 110px;
}

.site-page .entry-content .wp-block-media-text .wp-block-media-text__content {
	padding: 0 33px 0 0;
}
/* Single Page Styles End */

/* 404 Styles Start */
.error-404.not-found {
	padding: 120px 0 150px;
	text-align: center;
}

.not-found-image {
	margin-bottom: 50px;
}

.not-found-title {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	color: #323232;
	margin-bottom: 70px;
}
/* 404 Styles End */

/* Contacts Page Styles Start */
.contacts-page {
	padding: 50px 0 110px;
}

.contacts-page
	.entry-content
	.wp-block-media-text
	.wp-block-media-text__content {
	padding: 0 33px 0 0;
}

.contacts-page-content-wrapper {
	margin-top: 33px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contacts-page-info_list li {
	margin-bottom: 30px;
}

.contacts-page-phone_link {
	font-weight: 600;
	font-size: 24px;
	color: #323232;
}

.contacts-page-email_link {
	font-size: 24px;
	line-height: 29px;
	color: #323232;
}

.contacts-page-address {
	font-size: 24px;
	color: #323232;
}
/* Contacts Page Styles End */

/* About Page Styles Start */
.about-page {
	padding: 50px 0 0;
}

.about-page .entry-content .wp-block-media-text .wp-block-media-text__content {
	padding: 0 33px 0 0;
}

.about-page-features {
	margin-top: 50px;
	padding: 50px 0 122px;
	background: #f9f9f9;
}

.about-page-features_desription {
	font-size: 24px;
	line-height: 29px;
	color: #323232;
	margin-bottom: 50px;
}

.about-page-features-blocks-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.about-page-feature-block {
	flex-basis: 31%;
}

.about-page-feature-block_icon {
	margin-bottom: 30px;
}

.about-page-feature-block_description {
	font-size: 18px;
	line-height: 22px;
	color: #323232;
}
/* About Page Styles End */

/* Footer Styles Start */
.site-footer {
	padding: 15px 0 40px;
	background: #bd0000;
}

.footer-content-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-logo {
	flex-basis: 30%;
	text-align: center;
}

.footer-navigation,
.footer-contacts {
	flex-basis: 35%;
}

.footer-menu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-menu .menu-item {
	flex-basis: 50%;
	margin-bottom: 10px;
}

.footer-menu .menu-item a {
	font-weight: 500;
	font-size: 18px;
	color: #ffffff;
}

.footer-widget-title {
	font-weight: 500;
	font-size: 24px;
	color: #ffffff;
	margin-bottom: 30px;
	margin-top: 25px;
}

.footer-contacts_list li {
	margin-bottom: 15px;
}

.footer-contact_link,
.footer-address {
	font-weight: 600;
	font-size: 18px;
	color: #ffffff;
}

.footer-copy {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #ffffff;
}
/* Footer styles End */

/* Form popup quote */

.form-with-custom-subject {
    width: 100%;
    max-width: 445px;
}

.form-with-custom-subject .wpcf7-spinner {
    position: absolute;
}

.form-with-custom-subject.centered {
    margin: 0 auto;
}

.form-with-custom-subject .quote-form-popup {
    padding: 0 20px;
}

.quote-form-popup {
	padding: 20px 20px 25px 20px;
}

.quote-form-popup_title {
	font-weight: 600;
	font-size: 24px;
	color: #323232;
	text-align: center;
	margin-bottom: 20px;
}

.quote-form-popup .form-destination-fields {
	margin-bottom: 20px;
}

.form-contact-check {
	font-weight: 500;
	font-size: 18px;
	color: #323232;
	margin-bottom: 15px;
}

.wpcf7-form-control.wpcf7-radio {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
	margin: 0;
}

.wpcf7-list-item label {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: row-reverse;
	margin-bottom: 5px;
}

.wpcf7-list-item label input {
	margin-right: 10px;
	cursor: pointer;
}

.btn-popup-form {
	text-align: center;
}

.btn-popup-form .ajax-loader {
	display: none;
}

input[type='radio']:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -2px;
	left: -1px;
	position: relative;
	background-color: #fff;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid #323232;
}

input[type='radio']:checked:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -2px;
	left: -1px;
	position: relative;
	background-color: #323232;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid #323232;
	z-index: 0;
}

/* Gutenberg */
.wp-block-media-text .wp-block-media-text__content {
	padding: 0 4%;
}

.wp-block-media-text__media {
	margin-bottom: 15px;
}

/* Form fields */
.menu-182::after {
	content: url(../icons/arrow-down.svg);
	position: absolute;
	top: 0px;
	right: 20px;
	z-index: -1;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	background-color: transparent !important;
	/* background: url(http://dropdown/arrow/url/) ;
    background-position: right center;   
    color: #000000;
    border: 1px solid #000000; */
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	position: relative;
	background-image: url(//highstreammoving.com/wp-content/themes/highstreammoving/assets/css/../icons/arrow-down.svg) !important;
	background-position: 96% 50% !important;
	background-repeat: no-repeat !important;
}

select:focus {
	background-image: url(//highstreammoving.com/wp-content/themes/highstreammoving/assets/css/../icons/arrow-up.svg) !important;
	background-position: 96% 50% !important;
	background-repeat: no-repeat !important;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-5-12 16:54:20
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}

	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}

	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

.text-focus-in {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
	animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
input {
	outline: none;
}

.accordion {
	width: 500px;
	margin: 0 auto;
}

.table-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 30px;
}

.table-name,
.table-header-value,
.table-header-quantity {
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: #000000;
}

.items .thing {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
}

.items .thing:nth-child(even) {
	background: #f9f9f9;
}

.thing-name,
.table-name {
	flex-basis: 70%;
}

.thing-count,
.thing-volume,
.table-header-value,
.table-header-quantity {
	flex-basis: 15%;
}

.calc-title {
	margin-bottom: 70px;
	font-weight: 600;
	font-size: 40px;
	line-height: 40px;
	color: #323232;
	margin-bottom: 40px;
}

.thing-count input {
	background: #ffffff;
	border: 0.5px solid #a0a0a0;
	max-width: 69px;
	height: 42px;
	padding: 5px;
}

.calc-header {
	background: #ffffff;
	border: 0.5px solid #e4e1e1;
	padding: 10px 15px;
	cursor: pointer;
	margin-bottom: 15px;
	position: relative;
}

.calc-header::after {
	content: url(../icons/accordeon-down.svg);
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.calc-header.active::after {
	content: url(../icons/accordeon-up.svg);
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.in-collapce {
	padding: 15px;
	display: none;
	margin: 5px 0;
}

.active {
	background: #ffffff;
	border: 0.5px solid #a0a0a0;
}

.calc-subtitle {
	font-weight: 500;
	font-size: 18px;
	line-height: 18px;
	color: #323232;
}

.total-form {
	max-width: 600px;
}

.total-form-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.total-form-comments {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form-quote-button {
	text-align: right;
}

.btn-quote {
	margin-top: 50px;
}

.pagination {
	margin-bottom: 30px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination .page-numbers {
	padding: 8px 15px;
	margin: 0 5px;
	border: 1px solid #f5f5f5;
	transition: all .5s;
}

.pagination .page-numbers:hover, .pagination .page-numbers.current {
	border-color: #a0a0a0;
}

.pagination .page-numbers.next svg {
	top: -1px;
	position: relative;
}

.pagination .page-numbers.prev svg {
	top: -1px;
	transform: rotate(180deg);
	position: relative;
}

.d-block {
	display: block;
}

.custom-subject {
	display: none;
}

.location-service-list {
	list-style: none;
}

.contacts-page-info_list {
    line-height: 1.5;
    padding-left: 30px;
}

.contacts-page-info_list div {
    margin-bottom: 15px;
}

.contacts-page-content-wrapper {
    flex-wrap: nowrap;
}

.short-service-info__thumbnail img {
    width: 100%;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: 50%;
}

.play-button {
    width: 100%;
}

.video-container[data-load="0"] .play-button {
    margin: 0px;
    background-image: url(https://highstreammoving.com/wp-content/themes/highstreammoving/assets/icons/youtube-white.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100px;
    cursor: pointer;
}

.video-container[data-load="0"] .play-button iframe {
    display: none;
}

.video-container iframe, video {
	width: 100%;
    height: 100%;
}

.feature-block {
	align-items: center
}

.feature-block_icon {
	width: 75px;
    height: 75px;
}

.footer-logo img {
	width: 160px;
    height: 145px;
}

.social-links img {
	width: 24px;
    height: 24px;
}

.top-bar_phone img, .mobile-phone img {
	width: 15px;
    height: 15px;
}

.site-branding-mobile img {
	width: 78px;
    height: 37px;
}

#awards {
	padding: 50px 0 0 0;
}

.awards_wrapper {
	display: flex; 
    justify-content: space-around;
    width: 100%;
   
}

.awards_wrapper .award_item {
	padding: 10px;
}

@media (max-width: 1300px) {
    .header-menu .menu-item a {
        font-size: 14px;
    }
}

@media (min-width: 993px) {
    .short-service-info__descr {
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    .contacts-page-content-wrapper {
        flex-wrap: wrap;
    }
    
    .contacts-page-info_list {
        order: 1;
        padding: 0 0;
    }
    
    .contacts-page-form {
        max-width: 445px;
        width: 100;
        margin: 0 auto;
    }
    
    
    .feature-block_icon {
        width: 50px;
        height: 50px;
    }
    
    .awards_wrapper {
        flex-wrap: wrap;
    }
    
    .awards_wrapper .award_item img {
        max-width: 150px;
    }
}

@media screen and (max-width: 768px) {
	.d-flex-space-between .mobile-phone {
	    margin-right: 0px;
	}
}


.piano-svg-images svg {
    width: 100%;
    height: 500px;
}
.text-piano-baby-grand, .text-medium-grand, .text-prof-grand, .text-semi-grand, .text-consert-grand{
	opacity: 0;
}

svg#select-piano .k,
svg#select-piano .i,
svg#select-piano .j,
svg#select-piano .m,
svg#select-piano .l {
	cursor: pointer;
    transition: all .5s;
}

.selected {
    fill: #d32c1f !important;
    opacity: 1;
}

.element-hover {
    fill: #000 !important;
    opacity: 1;
}

.p.selected {
    fill: #ffffff !important;
}

.section-faq {
    padding: 50px 0;
    margin-top: 50px;
    background: #fafafa;
}

.section-faq .collapsible {
  background-color: transparent;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  line-height: 22px;
    transition: all .5s;
    font-weight: bold;
}

.section-faq .active, .section-faq .collapsible:hover {
  background-color: #e60000;
    color: #fff;
}

.section-faq .collapsible:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
  transition: all .5s;
}

.section-faq .active:after {
  content: "\2212";
    color: #fff;
}

.section-faq .content {
  padding: 0 15px;
    margin: 15px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

#primary-menu .locations-sub-menu:hover .sub-menu {
	right: auto !important;
}

.contacts-page-form .quote-form-popup {
	padding: 0;
}

.header-menu .menu-item {
    white-space: nowrap;
}

.site-branding {
	min-width: 150px;
}


.section-cars {
    padding: 0 0 50px 0;
}

.cars-title .service-contact-form_title {
    margin-bottom: 30px;
}

.items-cars {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.cars-description {
    margin-bottom: 45px;
    text-align: center;
}

.items-cars .item {
    flex: 0 0 25%;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .items-cars .item {
        flex: 0 0 50%;
    }
}

@media (max-width: 560px) {
    .items-cars .item {
        flex: 0 0 100%;
    }
}

.car-media {
    min-width: 180px;
    width: 100%;
    margin-bottom: 15px;
    display: flex;
	justify-content: center;
    align-items: center;
}

.car-media img{
    max-width: 250px;
    min-width: 180px;
    width: 100%;
}

.car-title {
	color: #e60000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.items-cars .item .content {
    text-align: center;
    padding: 0 15px;
}

#mnmwp-main-menu.mnmwp-menu-nav {
	padding: 0;
}

#mnmwp-main-menu ul ul li a {
	width: 300px;
    font-size: 16px
}

#mnmwp-main-menu li:hover>ul {
	border: 1px solid #dbdbdb
}

#mnmwp-main-menu li:hover>ul>li {
	height: auto;
}

#mnmwp-main-menu>ul>li:hover>a {
	color: #c40000;
}

.locations-sub-menu:hover .sub-menu {
    position: static;
    display: block;
    flex-wrap: wrap;
    width: auto;
    max-width: none;
    right: auto !important;
}

.mobile-menu.mobile-menu-active #mnmwp-main-menu>ul>li {
    float: none;
}

.mobile-menu.mobile-menu-active #mnmwp-main-menu {
	padding: 0;
    margin: 0;
}

.mobile-menu {
	max-width: 350px;
    flex-direction: column;
}

.mobile-menu #mnmwp-main-menu {
    position: relative;
    top: 90px;
}

.mobile-menu #mnmwp-main-menu>ul {
    display: block
}

.mobile-menu #mnmwp-main-menu ul>li.menu-item-has-children>a:after, .mobile-menu #mnmwp-main-menu ul>li.menu-item-has-children>a:before {
    content: "";
    bottom: calc(50% - 0.1rem);
    display: block;
    width: 7px;
    height: 1px;
    position: absolute;
    top: 50%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s,-webkit-transform .5s;
    left: auto;
    right: 20px;
    background: red;
    display: none;
}

.mobile-menu #mnmwp-main-menu ul>li>a:after {
	transform: rotate(90deg);
}

.mobile-menu #mnmwp-main-menu ul>li.open-child-item>a:after {
	transform: rotate(0deg);
}

.mobile-menu #mnmwp-main-menu li.open-child-item > .sub-menu {
	display: block;
}

.mobile-menu #mnmwp-main-menu li a {
	font-size: 14px;
}

.mobile-menu-active {
	right: 0;
}

html:not(.is_mobile) #site-navigation.desktop-nav #mnmwp-main-menu>ul {
    display: flex;
}

#mnmwp-main-menu>ul>li>a {
	white-space: nowrap;
}

@media (max-width: 1440px) { 
    
    #site-navigation #mnmwp-main-menu>ul>li>a {
		padding-left: 0;
    }
    
}

@media (max-width: 1300px) { 
    
    #site-navigation #mnmwp-main-menu>ul>li>a {
    	font-size: 10px;
		padding-left: 0;
    }
    
}

@media (max-width: 992px) { 
    
    #site-navigation #mnmwp-main-menu>ul>li>a {
    	font-size: 10px;
    }
    
}

.reviews-container {
    margin-left: -15px;
    margin-right: -15px;
}

.testimonials-item {
	padding: 15px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
}

.review-item {
	padding: 15px;
    flex: 0 0 33.33%;
    font-size: 16px;
}

@media (max-width: 992px) { 
    .review-item {
        flex: 0 0 50%;
    }    
}

@media (max-width: 650px) {
    .review-item {
        flex: 0 0 100%;
    } 
    
    .reviews-category, .review-tab-filter {
    	width: 100%;
    }
    
    .reviews-category-info {
        justify-content: center;
    }
    
    .call-me {
    	width: 50px;
        height: 50px;
        padding: 10px;
    }
}

.testimonials-item__photo {
	width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10000px;
    overflow: hidden;
}

.star-rating {
	height: 20px;
}

.testimonials-item__date {
	margin-left: 15px;
}

.testimonials-item__info {
	width: 100%;
}

.testimonials-item__info-top {
	margin-bottom: 15px;
}

.testimonials-item__bottom,
.testimonials-item__info-top,
.testimonials-item__info-bottom {
	display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.testimonials-item__logo {
	height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-item__logo img {
	width: 18px;
    height: 100%;
    margin-right: 5px;
}

.testimonials-item__name {
	font-weight: bold;
}

.testimonials-item__date {
	font-size: 12px;
}

.reviews-category-info {
	display: flex;
    align-items: center;
}

.reviews-category-info p {
    margin-bottom: 0px;
    font-size: 14px;
}

.reviews-category-image {
    margin-right: 15px;
    min-width: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22px;
}

.reviews-category-image img {
	width: 100%;
    height: 100%;
}

.reviews-category-stars-container {
    margin-top: 5px;
        display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-category-stars-count {
	margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #bd0000;
}

.reviews-category-stars {
	position: relative;
    z-index: 1;
    display: flex;
    width: 80px;
}

.reviews-category-stars svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

.reviews-category-stars-active {
	position: absolute;
    display: flex;
    top: 0;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

.reviews-category {
	padding: 15px;
}

.reviews-category-inner {
	padding: 15px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
}

.reviews-categories-stars {
    display: flex;
    margin-bottom: 30px;
    margin-left: -15px;
    margin-right: -15px;
}

.reviews-posts {
	padding: 100px 0 50px 0;
}

.reviews-posts  .short-service-info {
    margin-bottom: 0;
}

.based-on {
	text-align: center;
    font-size: 10px;
}

.review-item.hide {
	display: none;
}

.hr-item {
    border-top: 1px solid #dbdbdb;
}

.reviews-tabs {
	display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
    padding-top: 30px;
}

.review-tab-filter {
    padding: 15px;
    cursor: pointer;
    transition: all .5s;
}

.review-tab-filter-inner {
	padding: 15px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
	display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.review-tab-filter:hover .review-tab-filter-inner{
	border-color: black;
    color: black;
}

.review-tab-filter.active {
	border: none;
}

.review-tab-filter.active .review-tab-filter-inner {
	border-color: #bd0000;
    color: #bd0000;
}

.review-tab-logo {
	margin-right: 15px;
    height: 15px;
    width: 15px;
}

.testimonials-item__photo img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}

.testimonials-item__comment iframe, .testimonials-item__comment  video {
	width: 100%;
    margin-bottom: 15px;
}

.reviews-categories-stars{
    flex-wrap: wrap;
}

.call-me {
	position: fixed;
    z-index: 10;
    right: 50px;
    bottom: 50px;
    border-radius: 150px;
    width: 75px;
    height: 75px;
    display: block;
    justify-content: center;
    align-items: center;
    background: #bd0000;
    padding: 20px;
    border: 2px solid white;
    animation: iconblink 5s infinite;
}

.call-me svg {
    fill: white;
}


.call-me::before {
    content: "";
    position: absolute;
    border: 1px solid #910101;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
    right: -20px;
    bottom: -20px;
}

.call-me::after {
    content: "";
    position: absolute;
    border: 1px solid #910101;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
    animation-delay: 0.3s;
    right: -20px;
    bottom: -20px;
}

@keyframes iconblink {
0% {transform: scale(0.8);}
50% {transform: scale(1.2);}
100% {transform: scale(0.8);}
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0
    }

    50% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.3);
        opacity: 0
    }
}


@media (max-width: 650px) {    
    .call-me {
    	width: 50px;
        height: 50px;
        padding: 10px;
        right: 15px;
    	bottom: 15px;
    }

    .call-me::after, .call-me::before {
        width: calc(100% + 20px);
        height: calc(100% + 20px);
        right: -10.5px;
        bottom: -10.5px;
    }
}

.container .section-faq {
    background: white;
}

.container .section-faq .container {
	width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.piano_moving .features-list {
	display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.piano_moving .features-list .single_feature {
	flex: 0 0 50%;
    padding-left: 30px;
    margin-bottom: 20px;
}

.piano_moving .features-list .single_feature:before {
    display: none;
}

.piano_moving__image {
	width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    min-width: 100px;
}

.piano_moving__image img {
    width: 100%;
    display: block;
}

.piano_moving__info h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.piano_moving__info p {
	margin: 0;
}

.piano_moving__info.features-list__not-margin h4 {
	margin-bottom: 0;
}

@media (max-width: 650px) {    
    .piano_moving .features-list .single_feature {
        flex: 0 0 100%;
        padding-left: 0;
    }
}

.get-destination-section {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
}

#home-banner.video.lazyload {
	opacity: 1;	
}

#home-banner.video {
    height: calc(100vh - 230px);
    min-height: auto;
}

#home-banner.video .banner-content {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    min-height: auto;
}

#home-banner.video video {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;   
}

#home-banner.video .banner-video-controls {
    position: absolute;
    z-index: 2;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    bottom: 50px;
}

#home-banner.video .banner-video-controls .hide-button {
	display: none;
}

#home-banner.video .banner-video-controls button {
	background: #bd0000;
    border: none;
    display: block;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 100px;
    opacity: 0.3;
    transition: all .5s;
    margin: 0 10px;
    padding: 12px;
}

#home-banner.video .banner-video-controls button:hover {
	opacity: 0.7;
}

.get-destination-section.hide-form {
	display: none;
}

#wpcf7-f183-o1 .total p {
    margin: 0;
}

#wpcf7-f183-o1 .in-collapce {
    margin: 0;
    padding: 0;
}

#wpcf7-f183-o1 .in-collapce p {
    margin: 0;
}

#wpcf7-f183-o1 .in-collapce .items .thing {
    padding: 10px;
    font-size: 14px;
}

#wpcf7-f183-o1 .in-collapce .thing-count input {
    height: 30px;
}

#wpcf7-f183-o1 .in-collapce .table-header {
    padding: 10px;
    line-height: 18px;
}

#wpcf7-f183-o1 .in-collapce .table-header p {
    font-size: 18px;
}

#wpcf7-f183-o1 .calc-header:after {
    right: 10px;
    bottom: 7px;
    transform: scale(0.7);
}

#wpcf7-f761-o1 p {
    margin: 0;
}

@media (max-width: 768px) {    
    #home-banner.video {
        height: calc(50vh);
    }
    
    #home-banner.video .banner-form  {
    	display:none;
    }
    
    .get-destination-section.hide-form {
    	display: flex;
    }
}

@media (max-width: 650px) {    
    #home-banner.video .banner-video-controls {
        bottom: 25px;
    }
    #home-banner.video .banner-video-controls button {
    	width: 40px;
        height: 40px;
        padding: 10px;
    }
}


    #text-section {
	    padding: 50px 0;
    }

    .calc-header p {
        margin: 0;
    }

    .service-post .short-service-info__thumbnail.show-on-mobile {
    	display: none;
    }

@media (max-width: 992px) {
    .service-post .short-service-info__thumbnail.show-on-mobile {
    	display: flex;
        margin: 30px 0;
    }
    
    .service-post .short-service-info__thumbnail.hide-on-mobile {
    	display: none;
    }
    
    .calc-title {
        margin-bottom: 30px;
    }
    
    #wpcf7-f183-o1 .calc-header {
		padding: 5px;
    	margin-bottom: 15px;
    }
    
    #wpcf7-f183-o1 .calc-header p {
        font-size: 16px;
    }
    
    #wpcf7-f183-o1 .in-collapce {
    	font-size: 14px;
        margin: 0;
    	padding: 0;
    }
    
    #wpcf7-f183-o1 .table-header, #wpcf7-f183-o1 .thing{
    	padding: 5px 15px;
    }
    
    #wpcf7-f183-o1 .table-header p {
        font-size: 16px;
        margin: 0;
    }
    
    #wpcf7-f183-o1 .calc-subtitle {
    	line-height: 1;
        padding: 5px 0;
    }
    
    #wpcf7-f183-o1 .thing p {
        margin: 0;
    }
    
    #wpcf7-f183-o1 .thing-count input {
    	height: 25px;
    }
    
    #wpcf7-f183-o1 .calc-header:after, 
    #wpcf7-f183-o1 .calc-header:before {
        right: 15px;
        bottom: 5px;
    }
    
    #wpcf7-f183-o1 .total-form-group p,
    #wpcf7-f183-o1 .total-form-label p {
        margin: 0;
        font-size: 14px
    }
    
    #wpcf7-f183-o1 .btn-quote {
        margin: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    #wpcf7-f183-o1 .total-form-group lebel {
    	margin: 15px 0 0 0;
    }
    
    #wpcf7-f183-o1 .hd-contact-form .form-input {
        margin: 0;
        font-size: 14px;
    }
    
    #wpcf7-f183-o1 .total-form-comments {
    	margin-top: 15px;
    }
    
    #wpcf7-f183-o1 .total-form {
    	max-width: 100%;
    }
    
    #wpcf7-f761-o1 p {
    	margin: 0;
    }
    
    .form-with-custom-subject .quote-form-popup {
    	padding: 0;
    }
    
    #wpcf7-f761-o1 .hd-contact-form label {
    	font-size: 16px;
    }
    
    #wpcf7-f761-o1 .hd-contact-form .form-input {
        margin: 0 0 15px 0;
    }
}

@media (max-width: 650px) {
    jdiv.button_a11d {
    	width: 60px !important;
        height: 60px !important;
    	margin-left: 15px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 782px) {
    .service-post .is-layout-flex.wp-block-columns {
    	display: block;
    }
	.service-post .is-layout-flex.wp-block-columns ul {
    	margin: 0;
    }
   	.service-post .is-layout-flex.wp-block-columns ul li {
    	margin: 10px 0;
    }
}

.white-background {
    background: white;
    border-radius: 50%;
    padding: 4px;
}

.padding-top-none {
    padding-top: 0;
}

.padding-top-30 {
    padding-top: 30px;
}

.pre-footer {
    background: #8b1616;
    padding: 40px 0;
    color: white;
}

.pre-footer .section-title {
    color: white;
    font-size: 30px;
    line-height: 30px;
    margin: 0;
}

.pre-footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0 0 0;
}

.pre-footer li {
    display: block;
    padding: 15px;
}

.pre-footer a {
    color: white;
    font-size: 16px;
}


@media (max-width: 782px) {
    
    .pre-footer a {
        font-size: 14px;
    }
    
    .pre-footer li {
        padding: 5px;
    }
}

.is_mobile .main-navigation
{
    display: block;
}

.is_mobile #menu-header-menu {
    position: fixed;
    right: 0;
    max-width: 350px;
    width: 100%;
    background: white;
    height: 100%;
}

.is_mobile #menu-header-menu .menu-item {
    padding-left: 15px;
    padding-right: 15px;
}

.is_mobile #site-navigation #mnmwp-main-menu #mnm-menu-button button.btn.menu-btn {
    border: none;
}

.is_mobile #site-navigation #mnmwp-main-menu #mnm-menu-button button.btn.menu-btn span {
    background: #bd0000;
}






































