.shake-vertical {
  animation: shake-vertical 300ms ease-in-out infinite;
}
@keyframes shake-vertical { 
	  0% { transform: rotate(0deg); }
	  25% { transform: rotate(5deg); }
	  50% { transform: rotate(0eg); }
	  75% { transform: rotate(-5deg); }
	  100% { transform: rotate(0deg); }
}
:root {
  --main-head-color: #1b1b1b;
  --main-head-color-hover: #941094;
  --main-head-bg: #fff;
  --main-head-submenu-bg: #ececec;
}  
/* Header */
  .site-header {
    position: relative;
    z-index: 9999;
  }
  .header-content {
	float: left;
	width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
	  height:80px;
  }
 
  #site-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 35px 0 auto;
    background-color: var(--main-head-bg);
    border: unset;
  }
  #md-collapse-menu {
    padding: 0;
  }
  #primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #primary-menu > li:not(:first-child){
    margin-left: 31px;
  }
  #primary-menu .menu-item a {
    color:  #2C354E;
    font-size: 15px;
    font-weight: 400;
    padding: 20px 0;
	line-height: 34px;
	text-transform: uppercase;
  }

#primary-menu .menu-item a:hover {
	color:#ED34AA !important;
}
  #primary-menu li.menu-item-has-children a {
    margin-right: 18px;
  }
  #primary-menu li.menu-item-has-children a {
    position: relative;
  }
  #primary-menu .menu-item-has-children > a:before {
     content: "\203A";
    position: absolute;
    right: -20px;
    top: 11.5px;
    font-size: 24px;
    transform: rotateZ(90deg);
  }
  #primary-menu li.menu-item-has-children:hover > .sub-menu  {
    visibility: visible;
    opacity: 1;
  }  
  .menu-item-has-children .sub-menu {
    position: absolute;
    top: 50px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-color: var(--main-head-submenu-bg);
    border: #ececec solid 1px;
    -webkit-box-shadow: 8px 12px 43px #00000016;
            box-shadow: 8px 12px 43px #00000016;
    list-style: unset;
    padding: 20px 0;
    z-index: 999;
  }
  #primary-menu .menu-item-has-children .sub-menu a {
    display: block;
    padding: 0 20px;
    margin-bottom: 0px;
  }
  #primary-menu .menu-item-has-children .sub-menu li:last-of-type a {
    margin-bottom: 0;
  }

.site-branding img {
    margin-left: 25px;
    max-height: 78px;
    width: auto;
}
 
@media screen and (min-width: 1515px) and (max-width: 1650px) {
	.site-branding img {
		max-width: 260px;
	}
/* 	.header-content .book-your-move,
	.header-content #Call {
		width: 190px;
	} */
}
  
@media screen and (min-width: 992px) and (max-width: 1200px) {
	#primary-menu .menu-item a {
		font-size: 14px;
	}
	.site-branding img {
		max-width: 225px;
	}
	#site-navigation {
		margin-right: 17px;
	}
	#primary-menu > li:not(:first-child) {
		margin-left: 20px;
	}
}  
	
@media screen and (min-width: 992px) {
	.menu-item-has-children .sub-menu .sub-menu {
		top: 50px;
		left: 90%;
		min-width: 288px;
	}
	
		div#md-collapse-menu.collapse {
			border: none;
/* 		display: block; */
	}
	
	.navbar-header {
/* 		display: none; */
	}
} 
@media screen and (max-width: 991px) {
	.site-header {
		position: relative;
		-webkit-box-shadow: 8px 12px 21px 0px rgba(0, 1, 1, 0.08);
						box-shadow: 8px 12px 21px 0px rgba(0, 1, 1, 0.08); 
	}
	.site-header::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 56.77px;
		background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#fff));
		background-image: -o-linear-gradient(#ebebeb, #fff);
		background-image: linear-gradient(#ebebeb, #fff);
	}
	.header-content {
		-ms-flex-wrap: wrap;
				flex-wrap: wrap;
		position: relative;
	}
	.site-branding {
		z-index: 2;
		position: absolute;
	}
	.site-branding img {
		max-width: 215px;
		margin-top: 8px;
	}
	.navbar-header {
		position: absolute;
		top: 12.5px;
		right: 0px;
	}
	#site-navigation .navbar-header button:hover, #site-navigation .navbar-header button:focus, #site-navigation .navbar-header button:active {
		background-color: unset;
	}
	.navbar-toggle {
		display: block;
	}
	#md-collapse-menu {
		width: 100%;
	}
	.md-navigation .collapse {
		display: none!important;
	}
	.md-navigation .collapse.in {
		display: block!important;
	}
	#site-navigation {
		position: static;
		margin: 0;
		-ms-flex-preferred-size: 100%;
				flex-basis: 100%;
		min-height: unset;
	}
	#primary-menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
				-ms-flex-direction: column;
						flex-direction: column;
		padding: 45px 25px 35px 20px;
	}
	#primary-menu > li.menu-item {
		margin: 0 0 11px 0;
	}
	#primary-menu .menu-item a {
		font-size: 16px;
		padding: 5px 0;
	}
	#primary-menu .menu-chevron {
			position: absolute;
	top: 5px;
	font-size: 35px;
	right: 10px;
	transform: rotate(90deg);
	height: 35px;
	width: 35px;
	}
	#primary-menu .menu-item-has-children {
		position: relative;
	}
	#primary-menu .menu-item-has-children a:before {
		content: unset;
	}
	#primary-menu .menu-item-has-children .sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
		-webkit-transition: unset;
		-o-transition: unset;
		transition: unset;
		position: static;
		border: unset;
		-webkit-box-shadow: unset;
						box-shadow: unset;
		background-color: #f4f4f4;
		margin-left: 10px;
	}
}

@media screen and (max-width: 400px) {
/* 	.site-branding img {
		max-width: 150px;
	} */
	/* .navbar-header {
      top: 14px;
	} */
}
  
@media screen and (min-width: 992px) {
	#site-navigation {
		flex-direction: row-reverse;
	}
	#md-collapse-menu {
		height: auto!important;
		overflow: visible;
		margin-left: 30px;
	}
}

  /* Header end */
/* header custom */
.header-content {
  background: #FFF;
}
.section-container {
	float: left;
	width: 100%;
	padding: 0 5px;
}
.site-header {
	display:flex;
	border-top:1px solid #F5F5F5;
}
#site-navigation {
	margin: 0 15px 0 auto!important;
	justify-content: end;
}

@media all and (min-width:992px) {
	#primary-menu > .current-menu-item > a {
		border-bottom:4px solid #ED34AA;
		padding-bottom: 28px !important;
	}
	#primary-menu > .current-menu-item > a {
		border-bottom:4px solid #ED34AA;
	}
}
#primary-menu .menu-item-has-children > a::before {
  content: url('/wp-content/uploads/2025/04/Vector.png')!important;
  position: absolute;
  right: -25px!important;
  top: 10px!important;
  font-size: 24px;
  transform: unset!important;
}
ul#primary-menu ul.sub-menu a::before {
	right: -1px!important;
    top: -0.5px!important;
}
.header-top-content {
	display: flex;
	justify-content: center;
	padding-right: 20px;
	margin: 20px 0;
}
.site-information {
	display: flex;
	align-items: center;
}
.book-your-move {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 34px;
    text-transform: uppercase;
    color: #FFF;
    background: linear-gradient(to left, #ED34AA 50%, #941094 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
    width: 235px;
    height: 60px;
    margin: 0 15px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#Call-Us, #Call {
    width: 235px;
    height: 60px;
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, #979797 50%, #941094 50%) right;
    background-size: auto;
    background-size: 200%;
    transition: .5s ease-out;
}
#Call-Us:hover,
.book-your-move:hover,
#Call:hover{
	background-position: left;
	color:#FFF;
}
.site-information img {
	padding-right:10px;
	height:25px;
}
.header-top-content::after {
	content:"";
	border-bottom:1px solid #D9D9D9;
	position:absolute;
	width:100%;
	top:95px;
	left: 0;
}
.navbar-toggle .icon-bar {
	height: 4px!important;
}
.navbar-header button .icon-bar {
	background:#ED34AA !important;
}
.navbar-header button .icon-bar:not(:first-child) {
  margin-top: 5px!important;
}
.site-header::before {
	position:unset;
}
#masthead {
	float:left;
	width:100%;
}
.md-before-header-phone {
	float:left;
	width:100%;	
	font-family: 'Gotham';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	color: #FFFFFF;
	height:60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ED34AA;
}
.before-header-number img {
	padding-right:10px;
}
.before-header-number a {
	color:#FFF;
	background: linear-gradient(to left, #ED34AA 50%, #941094 50%) right;
	background-size: auto;
	background-size: 200%;
	transition: .5s ease-out;
}
.before-header-number a:hover {
	background-position: left;
}
#primary-menu .menu-item-17557 a {
	font-weight: 600!important;
	font-size: 18px!important;
	line-height: 34px!important;
	text-transform: uppercase;
	color: #fff!important;
	background: linear-gradient(to left, #ED34AA 50%, #941094 50%) right;
	background-size: 200%;
	transition: .5s ease-out;
	width: 235px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#primary-menu .menu-item-17557 a:hover {
	background-position: left;
	color:#FFF!important;
}
#site-navigation .navbar-header button {
	background-color: unset;
	border: unset;
	border-radius: unset;
	margin: 0;
}
.navbar-header button .icon-bar{
	width: 39px;
	border-radius: unset;
	height:5px!important;
}
.navbar-header button .icon-bar:not(:first-child) {
	margin-top: 8px;
}
@media all and (min-width:992px) {
	.before-header-number,
	#primary-menu .menu-item-17557 a{
		 display:none;
	 }
}
@media all and (min-width:1516px) {
	.navbar-header {
		margin-left: 10px;
	}
	
    .header-top-content {
        display: none;
    }
}
@media all and (max-width:1515px) {
	#site-navigation .site-information {
		display:none;
	}
}
@media all and (max-width:1199px) {
	#primary-menu > .current-menu-item > a {
	  padding-bottom: 23px !important;
	}
}
@media all and (max-width:991px) {
	.header-top-content {
		display:none;
	}
	#masthead.site-header::before {
		content:unset;
	}
	#primary-menu .menu-item-has-children a::before {
	  content: unset !important;
	}
	#masthead {
	  border-bottom: 1px solid #D9D9D9;
		background:#FFF!important;
		border-top: none!important;
	}
	#primary-menu .current-menu-item a {
		padding-bottom:0!important;
	}
	#primary-menu .menu-chevron {
	  top: -10px!important;
	  right: 0!important;
	  transform: rotate(0deg)!important;
	  left: 130px!important;
	}
	ul#primary-menu ul.sub-menu .menu-chevron {
		left: 220px!important;
	}
}
@media all and (min-width:992px) and (max-width:1010px) {
	.menu-chevron {
		display:none;
	}
}
/* header custom end */
/* footer */
.footer-top-holder {
	background: url('/wp-content/uploads/2025/04/Frame-71.png');
	background-size: cover;
	background-position: center;
	position: relative;
}
.footer-top-container {
	display: flex;
	justify-content: left;
/* 	height: 200px; */
}
.footer-top-left {
	display: flex;
	justify-content: center;
	padding: 50px 0;
	text-align: center;
}
.footer-top-left h3,
.footer-top-right h3{
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 15px;
}
.footer-top-left p a,
.footer-top-left p,
.footer-top-right p a,
.footer-top-right p{
	font-weight: 500;
	font-size: 17px;
	line-height: 34px;
	/* identical to box height, or 200% */
	color: #FFFFFF;
}
.footer-top-right a:hover,
.footer-top-left a:hover{
	color: #E82DDA;
}
.footer-top-left p span,
.footer-top-right p span{
	font-weight: 200;
	font-size:16px;
}

.footer-top-right {
    width: 50%;
        position: absolute;
        height: 100%;
        right: 0;
}
.footer-top-right iframe {
    height: 100%;
    width: 100%;
}
.footer-bottom-holder {
	float:left;
	width:100%;
	background: #242F45;
	color: #FFF;
}
.foter-bottom-left img {
	padding:50px 0 20px;
}
.foter-bottom-left p {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	/* or 175% */
	letter-spacing: -0.02em;
	color: #FFFFFF;
	margin-bottom: 50px;
}
.md-quote-button {
	font-weight: 600;
	font-size: 22px;
	line-height: 27px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #fff;
	background: #ED34AA;
	padding: 25px 45px;
	white-space:nowrap;
}
.md-quote-button:hover {
	background: #941094;
	color: #fff;
}
#menu-footer {
	padding: 50px 0px 0 20px;
	list-style:none;
}

li#menu-item-16580 a {
    color: #ED34AA;
}

#menu-footer a {
	font-weight: 500;
	font-size: 16px;
	line-height: 34px;
	/* or 212% */
	text-transform: uppercase;
	color: #FFFFFF;
}
#menu-footer a:hover,
.md-footer-copy-right a:hover{
	color:#941094;
}
.menu-footer-container {
	border-left: 1px solid #43527A;
	border-right: 1px solid #43527A;
	height: 435px;
}
.md-footer-copy-right {
	background: #242F45;
	border-top: 1px solid #43527A;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	text-transform: uppercase;
	padding: 15px 0;
}
.md-footer-copy-right a {
	font-weight: 400;
	color: #FFF;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}
.foter-bottom-right h4 {
	font-weight: 600;
	font-size: 16px;
	line-height: 34px;
	/* or 212% */
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 50px 0 10px;
}
.payment-logo-top img {
	padding: 0 50px 0 0;
}
.payment-logo-bottom img {
	padding: 0 25px 0 0;
}
.payment-logo {
	display:flex;
	flex-direction:column;
/* 	align-items:start; */
}
.payment-logo-top {
	padding-bottom:25px;
}
.footer-licence p {
	font-weight: 500;
	font-size: 16px;
	line-height: 34px;
	/* or 212% */
	text-transform: uppercase;
	color: #FFFFFF;
}
.footer-licence p span {
	font-weight: 300;
	padding-right: 5px;
}
.payment-logo-bottom img, .payment-logo-top img {
    min-height: 25px;
    width: auto;
	max-width: 112px;
}
/* footer end */
/* before footer */
.before-footer-relocation-service {
	float:left;
	width:100%;
}
.before-footer {
	float:left;
}
/* before footer end */
/* fonts */
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_BOLD.woff");
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_BOOK.woff");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_EXTRA_LIGHT.woff");
	font-weight: 200;
	font-display: swap;
} 
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_LIGHT.woff");
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_MEDIUM.woff");
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_REGULAR.woff");
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_THIN.woff");
	font-weight: 100;
	font-display: swap;
}
@font-face {
	font-family: "Gotham";
	src: url("/wp-content/themes/md_theme/assets/fonts/gotham/GOTHAM_ULTRA.woff");
	font-weight: 800;
	font-display: swap;
}
/* RESPONSIVE */
@media all and (min-width:992px) {
	#primary-menu > li:not(:first-child) {
		margin-left: 20px;
	}
}
@media all and (max-width:1570px) {
	.book-your-move {
		margin: 0 15px 0 5px;
	}
}
@media all and (max-width:1199px) {
	.footer-top-left p a,
	.footer-top-left p,
	.footer-top-right p a,
	.footer-top-right p {
		font-size:16px;
	}
	.payment-logo-top img {
	  padding: 0 49px 0 0;
	}
	.payment-logo-bottom img {
	  padding: 0 23px 0 0;
	}
	.menu-footer-container {
	  height: 460px;
	}
	.header-content {
		height:70px;
	}
}
@media all and (max-width:991px) {
	#site-navigation {
	  margin: 70px 0px 0 auto !important;
	}
}
@media all and (max-width:991px) {
	.menu-item-has-children .sub-menu .sub-menu {
/* 		min-width: 191px!important; */
	}
	.section-container {
		padding: 0;
	}
	.site-branding img {
		margin-left:20px;
	}
	.navbar-header {
	  margin-right: 20px;
	}
	.footer-top-holder {
		background:url('/wp-content/uploads/2025/04/Frame-237.jpg') no-repeat;
		background-size: cover;
		background-position: 0 71%;
		position:relative;
	}
	.footer-top-left {
	  padding-bottom: 35px;
	}
	.menu-footer-container {
	  border-left: none;
	  border-right: none;
	  height: unset;
	}
	#menu-footer {
	  padding: 30px 0px 0px 0px;
	}
	.foter-bottom-left {
	  margin-bottom: 75px;
	}
	.footer-licence {
	  padding-bottom: 35px;
	}
	.footer-top-holder:after {
	  content: "";
	  border-top: 1px solid #43527A;
	  width: 100%;
	  position: absolute;
	  top: 598px;
	  display: block;
	  left: 0px;
	}
	.md-footer-copy-right.col-xs-12::before {
	  content: "";
	  border-top: 1px solid #43527A;
	  width: 100%;
	  position: absolute;
	  top: -175px;
	  display: block;
	  left: 0px;
	}
	.md-footer-copy-right.col-xs-12::after {
	  content: "";
	  border-top: 1px solid #43527A;
	  width: 100%;
	  position: absolute;
	  top: -370px;
	  display: block;
	  left: 0px;
	}
	.foter-bottom-right h4 {
		padding: 60px 0 10px;
	}

	.footer-top-container {
		flex-direction: column-reverse;
	}

	.footer-top-right {
		position: absolute;
		width: 100%;
		left: 0;
		top: 0;
	}
	.footer-top-right iframe {
		position: relative;
		height: 200px;
		width: 100%;
	}
        
}
@media all and (max-width:768px) {
	.footer-top-holder {
		background-position: 0% 68%;
	}
}
@media all and (max-width:767px) {
	.footer-bottom-holder .container {
		padding:0;
	}
	.foter-bottom-left.col-md-6 {
	  border-bottom: 1px solid #43527A;
	  padding:0 30px 70px;
	  margin: 0;
	}
	.footer-top-holder::after {
		content:unset;
	}
	.foter-bottom-center {
	  padding: 0 30px!important;
	}
	.foter-bottom-right {
	  padding: 0 30px!important;
	}
}
@media all and (max-width:760px) {
	iframe#podium-bubble {
		bottom: 70px!important;
	}
}
/* RESPONSIVE end */
iframe#friendlyIframe_0 {
    left: 20px!important;
}
@media all and (max-width:760px) {
	iframe#friendlyIframe_0 {
    left: 0px!important;
	}
}
iframe#podium-bubble {
    bottom: 80px!important;
    z-index: 9999!important;
}