@charset "utf-8";
/*===========================================================================================================*/
/*=========================================== COMMON CONFIG =================================================*/
/*===========================================================================================================*/
.alert-success, .alert-info, .alert-warning, .alert-danger {
  font-size: 1.4em;
}
:target::before {
  content: "";
  display: block;
  height: 130px; /* fixed header height/
  margin: -130px 0 0; / negative fixed header height */
}
@media screen and (min-width: 1200px) {
  .modal-lg {
    width: 1140px;
  }
}
.w50-w50 li {
	width: 44%;
	margin-bottom: 20px;
}
.blue-box {
	padding: 25px 20px 5px;
	border-radius: 5px;
	background-color: #63afe1;
	margin-bottom: 35px;
}
.blue-box p,
.blue-box i {
	color: #fff;
}
.blue-box a {
	color: #fff;
	font-weight: 700;
	line-height: 1.5em;
	margin-bottom: 20px;
}
.blue-box ul {
	padding: 0;
	margin: 0 0 5px 30px;;
}
/*===========================================================================================================*/
/*=========================================== RWD VIDEOS ====================================================*/
/*===========================================================================================================*/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/*===========================================================================================================*/
/*=========================================== FOMRS =========================================================*/
/*===========================================================================================================*/
label {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 32px;
  color: #282828;
  margin: 0;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.form-horizontal .control-label {
  text-align: left;
}
input[type='text'], input[type='email'], input[type='tel'], input[type='url'], input[type='password'], input[type='number'], input[type='date'], textarea, select {
  width: 100%;
  height: 42px;
  border-width: 1px;
  border: solid 1px;
  border-color: #939393;
  padding: 0 5px;
  color: #939393;
  font-size: 16px;
  border-radius: 0;
}
input[type="checkbox"] {
	color: #000;
}
textarea {
  min-height: 120px;
}
.custom-checkRad label {
  cursor: pointer;
  display: inline-block;
}
.custom-checkRad input[type="checkbox"], .custom-checkRad input[type="radio"] {
  display: none;
}
.custom-checkRad input[type="checkbox"] + label .fa.unchecked, .custom-checkRad input[type="radio"] + label .fa.unchecked {
  display: inline-block;
}
.custom-checkRad input[type="checkbox"] + label .fa.checked, .custom-checkRad input[type="radio"] + label .fa.checked {
  display: none;
}
.custom-checkRad input[type="checkbox"]:checked + label .fa.unchecked, .custom-checkRad input[type="radio"]:checked + label .fa.unchecked {
  display: none;
}
.custom-checkRad input[type="checkbox"]:checked + label .fa.checked, .custom-checkRad input[type="radio"]:checked + label .fa.checked {
  display: inline-block;
}
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: solid 1px #63afe1;
  background-color: transparent;
  color: #63afe1;
  line-height: 1.5em;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  padding: 18px 30px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input.button:focus, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_footer input[type=submit]:focus, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input.button:focus, .gform_wrapper .gform_page_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input[type=submit]:focus {
  background-color: #63afe1;
  border-color: #63afe1;	
  color: #f9f9f9;
  text-decoration: none;
}
/*===========================================================================================================*/
/*=========================================== BTN-LAYOUT ====================================================*/
/*===========================================================================================================*/
.btn-layout {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: solid 1px #63afe1;
  background-color: transparent;
  color: #63afe1;
  line-height: 1.5em;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  padding: 18px 30px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-layout:hover,
.btn-layout:focus {
  background-color: #63afe1;
  border-color: #63afe1;	
  color: #f9f9f9;
  text-decoration: none;
}
.white-btn-layout {
  position: relative;
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}
.white-btn-layout:hover,
.white-btn-layout:focus {
  color: #282828;
  border-color: #fff;
  background-color: #fff;
  text-decoration: none;
}
.btn-layout-round {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: solid 2px #60a5d1;
  background-color: #60a5d1;
  color: #fff;
  line-height: 1.5em;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 35px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 19px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-layout-round:hover,
.btn-layout-round:focus {
  background-color: transparent;
  border-color: #60a5d1;	
  color: #60a5d1;
  text-decoration: none;
}
.btn-layout-round.dark-blue {
  border: solid 2px #326d94;
  background-color: #326d94;
}
.btn-layout-round.dark-blue:hover,
.btn-layout-round.dark-blue:focus {
  background-color: transparent;
  border-color: #326d94;	
  color: #326d94;
}
.btn-layout-round.gold {
  border: solid 2px #e0ad63;
  background-color: #e0ad63;
}
.btn-layout-round.gold:hover,
.btn-layout-round.gold:focus {
  background-color: transparent;
  border-color: #e0ad63;	
  color: #e0ad63;
}
.btn-layout-round.white {
  border: solid 2px #fff;
  background-color: #fff;
  color: #3d3d3d;
}
.btn-layout-round.white:hover,
.btn-layout-round.white:focus {
  background-color: transparent;
  border-color: #fff;	
  color: #fff;
}
.btn-reset{
    padding: 8px 30px !important;
}
/*=========================================== BLOG RIGHT CLOUMN =============================================*/
.news-right-column form p {
  font-size: 1em;
  margin-bottom: 15px;
}
.news-right-column form input[type="text"] {
  border-radius: 4px 4px 0 0;
  height: 47px;
}
.news-right-column form input[type="submit"] {
  width: 100%;
  border-radius: 0 0 4px 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: solid 1px #63afe1;
  background-color: transparent;
  color: #63afe1;
  line-height: 1.5em;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  padding: 18px 30px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news-right-column form input[type="submit"]:hover, .news-right-column form input[type="submit"]:focus {
  background-color: #63afe1;
  border-color: #63afe1;	
  color: #f9f9f9;
  text-decoration: none;
}
/*======================================== MEDIA MODULE ==========================================================*/
.section-white.events-page {
	padding: 45px 0;
}
.events-page .media-module > div {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: dashed 1px #ebebeb;
}
.events-page .media-module > div:last-child {
  padding: 0;
  border: none;
}
.events-page .media-module .left {
  position: relative;
  float: left;
  display: block;
  width: 180px;
  height: 180px;
  transition: background-color 300ms ease;
  -webkit-transition: background-color 300ms ease;
  -moz-transition: background-color 300ms ease;
  -o-transition: background-color 300ms ease;
  background-color: #fff;
}
.events-page .media-module .left:hover {
  background-color: #E1E1E1;
}
.events-page .media-module .left span {
  display: block;
  position: absolute;
  left: 15px; top: 15px; right: 15px; bottom: 15px;
  background-position: center;
  background-size: cover;
}
.events-page .media-module .right {
  padding-left: 195px;
}
.events-page .media-module .right .text {
  margin-bottom: 0;
}
.events-page .media-module-interior {
  padding-top: 50px;
}
.events-page .media-module .news-thumb {
  float: left;
  width: 250px;
  margin: 0 10px 10px 0;
}
@media screen and (max-width: 991px) {
  .events-page .media-module .left {
    width: 180px;
    height: 120px;
  }
  .events-page .media-module .right {
    padding-left: 195px;
  }
}
@media screen and (max-width: 768px) {
  .events-page .media-module .right .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 650px) {
  .events-page .media-module .left {
    display: none;
  }
  .events-page .media-module .right {
    padding-left: 0;
  }
}
/*=========================================== LEADERSHIP ====================================================*/
.team-page {
	padding: 40px 0;
}
.team-page > div,
.single-team > div {
	max-width: 1400px;
	width: 100%;
}
.single-team .team-top {
	margin-bottom: 35px;
}
.team-grid {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex!important;
    flex-wrap: wrap;
}
.team-grid > div {
	margin-bottom: 35px;
	position: relative;
	height: auto
}
.team-grid .member-link {
	text-align: center;
	display: block;
	top: 0; bottom: 0;
	padding: 12% 0;
}
.team-grid .member-link:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	right: 15px;
	background-color: #fff;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition: all 250ms ease;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transform: scale(.96);
	-webkit-transform: scale(.96);
	-moz-transform: scale(.96);
	-o-transform: scale(.96);
}
.team-grid .member-link:hover:after {
	background-color: #f9f9f9;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.28);
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
}
.team-grid .member-link img {
	position: relative;
	z-index: 2;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	width: 200px;
    margin: 0 auto 35px;
}
.team-grid .member-link .img {
    display: block;
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: top center;
    width: 200px;
    padding-bottom: 200px;
    border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
    margin: 0 auto 15px;
}
.team-grid .member-link .name {
	position: relative;
	z-index: 2;
    display: block;
    font-size: 29px;
    line-height: 1.25em;
    color: #282828;
    text-transform: capitalize;









    font-weight: 400;
    margin: 0 0 5px;
	letter-spacing: 0;
}
.team-grid .member-link .title {
	position: relative;
	z-index: 2;
    display: block;
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 0;
	margin-bottom: 20px;
    color: #626262;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    font-style: italic;
}
.team-grid .member-link .info {
    display: block;
    position: relative;
    z-index: 2;
    font-size: 13px;
    line-height: 1.4em;
    margin: 7px 0;
}
@media screen and (max-width: 1200px) {
	.team-grid .member-link .name {
		font-size: 22px;
	}
	.team-grid .member-link .title {
		font-size: 13px;
		line-height: 1.3em;
	}
	.team-grid .member-link .info {
		font-size: 10px;
	}
}
@media screen and (max-width: 991px) {
	.ice-icon {width: 50px;}
}
@media screen and (max-width: 768px) {
	.ice-icon {display: none;}
}
@media screen and (max-width: 600px) {
	.team-grid > div {
		float: none;
		width: 100%;
	}
	.team-grid .member-link .name {
		font-size: 18px;
	}
	.team-grid .member-link .title {
		font-size: 16px;
	}
	.team-grid .member-link .info {
		font-size: 15px;
	}
}
/*=========================================== PROJECTS ===================================================*/
.project-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 60%;
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -o-transform: scale(1.03);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    -webkit-transition: transform .3s ease, opacity .3s ease;
    -moz-transition: transform .3s ease, opacity .3s ease;
    -o-transition: transform .3s ease, opacity .3s ease;
}
.project-thumb.ready {
	opacity: 1;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
}
.project-thumb:hover {
	z-index: 5;
	transform: scale(1.03);
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-o-transform: scale(1.03);
}
.project-thumb:before {
	content: '';
	display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 60%;
    bottom: 0;
    background-position: center;
    background-size: cover;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
.project-thumb .bnn {
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
}
.project-thumb .project-title {
    display: block;
    position: absolute;
    z-index: 2;
    left: 15px;
    right: 15px;
    bottom: 12px;
    color: #fff;
    font-size: .8vw;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}
.project-thumb .project-title strong {
	display: block;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 5px;
	text-transform: capitalize;
}
.project-thumb .project-more {
	display: block;
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 10px;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
}

.projects-category-section {
	padding: 60px 0;
}
.projects-category-section .project-thumb {
	margin-bottom: 30px;
}

.listings-details-wrap {
	padding-top: 1px;
}

.name-info h3 {
	text-align: center;
	margin-bottom: 0;


	line-height: 1.4em;
}
.name-info h2 {
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.3em;
	color: #61acdd;
	background-color: #f7fdff;
	border-top: solid 1px #def7ff;
	border-bottom: solid 1px #def7ff;
	margin: 20px 0;
}
.name-info h4 {
	text-align: center;
	color: #656565;
	margin: 15px 0 35px;
}
.info-buttons a {
	display: block;
	margin-bottom: 15px;
}

.listings-details-wrap {
	padding-top: 15px;
	position: relative;
}

.listings-details-wrap .nagative-heading {
	position: absolute;
	z-index: 2;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    background-color: #fff;
}
.listings-details-wrap .nagative-heading h1 {
	margin-top: 20px;
}
.listings-details-wrap .nagative-heading h4 {
	margin-bottom: 20px!important;
}
.listings-details-wrap .container-large {
    max-width: 1500px;
}
.listings-details-wrap .open-full-specifications {
	display: block;
	margin: 15px 0 0;
}
.listings-details-wrap .full-specifications {
	margin-top: 35px;
	display: none;
}



.info-wrapper div.dataset ul {
    margin: 0;
    padding: 0;
}
.info-wrapper div.dataset ul li:after,
.info-wrapper div.dataset ul li:before {
    content: "";
    display: table;
}
.info-wrapper div.dataset ul li:after {
    border-top: 2px dotted #ccc;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}
.info-wrapper div.dataset ul li {
    position: relative;
    margin: 0;
    padding: 3px 0;
    list-style: none;

}
.info-wrapper div.dataset ul li strong {
    font-weight: 400;
    color: #555;
    position: relative;
    padding-right: 5px;
    z-index: 2;
    background: #fff;
}
.info-wrapper div.dataset ul li span {
    position: relative;
    padding-left: 5px;
    z-index: 2;
    background: #fff;
    float: right;
    max-width: 65%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.slick-gallery .slick-slide {
    border: solid 2px #fff;
}
.slick-gallery .slick-slide img {
    height: 27vw;
}
.slick-gallery .slick-prev {left: 10px}
.slick-gallery .slick-next {right: 39px}
.slick-gallery .slick-prev:before, 
.slick-gallery .slick-next:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: lighter;
	background: #61acdd;
	padding: 14px;
	border-radius: 0;
}
.slick-gallery .slick-prev:before {
	content: '\f177';
}
.slick-gallery .slick-next:before {
	content: '\f178';
}

@media screen and (max-width: 1200px) {
	.projects-section .container-fluid > .row {
		width: auto;
	}
}
@media screen and (max-width: 991px) {
    .project-thumb .project-title {
        font-size: 1.4vw;
    }
}
@media screen and (max-width: 768px) {

	.listings-details-wrap .nagative-heading {
		position: static;
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
		-moz-transform: translate(0,0);
		-o-transform: translate(0,0);
	}
	
	.projects-section {
	  padding: 2px;
	}
	.project-thumb .project-title {
		font-size: 1.8vw;
	}
}
@media screen and (max-width: 440px) {
    .project-thumb .project-title {
        font-size: 3vw;
    }
}
/*=========================================== PAGINATION ===================================================*/
.pagination {
  margin: 25px 0;
  display: block;
}
.pagination > div {
  float: right;
  padding: 0;
  margin: 0;
  display: table;
}
.pagination > div > a, .pagination > div > span {
  display: inline-block;
  font-size: 14px;
  align-items: center;
  text-align: center;
  min-width: 20px;
  padding: 4px 12px;
  border: solid 1px #dcdcdc;
  border-right: none;
}
.pagination > div > a:first-child, .pagination > div > span:first-child {
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
}
.pagination > div > a:last-child, .pagination > div > span:last-child {
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-right: solid 1px #dcdcdc;
}
.pagination > div > a:hover, .pagination > div > span:hover {
  background-color: #f7f7f7;
}
.pagination > div > span.current {
  color: #fff;
  background-color: #009cde;
}

/*=========================================== ABOUT SCETION ======================================================*/
.team-section {
  padding: 60px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.team-section span.parallax {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background-image: url(/wp-content/themes/mm/assets/img/bnn-team.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.team-section .container {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.team-section.ready .container {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.team-section p {
  max-width: 600px;
  margin: 0 auto 40px;
}

/*=========================================== MODELS SCETION ======================================================*/
.models-section {
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.models-section .container-fluid {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.models-section.ready .container-fluid {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;

  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.models-section .slider-container {
  max-width: 100%;
}
.models-section .slick-slide {
  padding: 20px 10px;;
}
.models-section .project-thumb {
  padding-bottom: 120%;
}
.models-section .project-thumb .project-title {
  text-align: center;
  bottom: 25px;
}
.models-section .project-thumb .project-title img {
  display: inline-block;
}
.models-section .slider-wrapper {
  position: relative;
}
.models-section .custom-nav {
  margin: 0;
  text-align: center;
}
.models-section .custom-nav .prev,
.models-section .custom-nav .next {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  opacity: 1;
  transition: opacity .3s ease;
}
.models-section .custom-nav .prev {
  left: -15px;
}
.models-section .custom-nav .next {
  right: -15px;
}
.models-section .custom-nav .prev.slick-disabled,
.models-section .custom-nav .next.slick-disabled {
  opacity: 0;
}
.models-section .custom-nav .prev:before,
.models-section .custom-nav .next:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
}
.models-section .custom-nav .prev:before {
  left: -15px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+19,0.61+45,0+100 */
  background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 19%, rgba(255,255,255,0.61) 45%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 19%,rgba(255,255,255,0.61) 45%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 19%,rgba(255,255,255,0.61) 45%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}
.models-section .custom-nav .next:before {
  right: -15px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,0.61+55,1+81 */
  background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.61) 55%, rgba(255,255,255,1) 81%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.61) 55%,rgba(255,255,255,1) 81%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.61) 55%,rgba(255,255,255,1) 81%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
.models-section .custom-nav a i {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  width: 60px;
  height: 60px;
  color: #fff;
  padding: 19px 0;
  background: #61acdd;
}
@media screen and (max-width: 1700px) {
  .models-section .custom-nav a i {
  	padding: 15px 0;
    width: 50px;
    height: 50px;
  }
  .models-section .custom-nav .prev:before,
  .models-section .custom-nav .next:before {
  	width: 80px;
  }
}
@media screen and (max-width: 991px) {
  .models-section .custom-nav a i {
  	padding: 9px 0;
    width: 35px;
    height: 35px;
  }
  .models-section .custom-nav .prev:before,
  .models-section .custom-nav .next:before {
  	width: 60px;
  }
}

/*=========================================== FEATURED SCETION ======================================================*/
.featured-section {
  padding: 10px 0 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.featured-section .container-fluid {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.featured-section.ready .container-fluid {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.featured-section .projects-list {
  margin-bottom: 40px;
}
/*.featured-section .projects-list:hover .project-thumb {
	opacity: .7;
}*/
.featured-section .projects-list .project-thumb:hover {
	opacity: 1;
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.featured-section .projects-list > div {
  width: 19.99%;
  display: inline-block;
  margin: 0px -1px;
  vertical-align: text-bottom;
}
@media screen and (max-width: 1400px) {
  .featured-section .projects-list > div {
	width: 25%;
  }
}
@media screen and (max-width: 991px) {
  .featured-section .projects-list > div {
	width: 33.33%;
  }
}
@media screen and (max-width: 768px) {
  .featured-section > .container-fluid {
  	padding: 0 10px;
  }
  .featured-section .projects-list > div {
	width: 50%;
  }
}
@media screen and (max-width: 440px) {
  .featured-section > .container-fluid {
  	padding: 0 5px;
  }
  .featured-section .projects-list > div {
	width: auto;
	display: block;
	margin: 0 0 5px;
  }
}

/*=========================================== LISTINGS SCETION ======================================================*/
.search-wrapper {
	background-color: #fff;
	padding-top: 5px;
}
.search-wrapper .search-tabs {
	position: relative;
	opacity: 0;
	transform: translate(25px, 0);
	-webkit-transform: translate(25px, 0);
	-moz-transform: translate(25px, 0);
	-o-transform: translate(25px, 0);
}
.search-wrapper.ready .search-tabs {
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
}
.search-wrapper>div {
    max-width: 1400px;
}
.search-wrapper .search-tabs h2 {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	margin: 36px;
	margin-left: 15px;
	text-transform: capitalize;
}
.search-wrapper .search-tabs ul {display: inline-block;vertical-align: top;margin: 0 30px 0 0;}
.search-wrapper .search-tabs form {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 15px 0 10px;
    padding-left: 211px;
}
.search-wrapper .search-tabs form ul.checkbox input[type="checkbox"] {
	opacity: 0;
    width: 0;
    height: 0;
}
.search-wrapper .search-tabs ul li {
	width: 90px;
	margin: 0;
	ertical-align: top;
	text-transform: uppercase;
	border: solid 1px #fff;
}
.search-wrapper .search-tabs ul li:last-child {
	
}
.search-wrapper .search-tabs ul li label {
    margin: 0;
}
.search-wrapper .search-tabs ul li a {
	text-align: center;
	display: block;
	height: 115px;
	padding: 0 15px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.1em;
	color: #fff;
	background-color: #63afe1;
}
.search-wrapper .search-tabs ul li a:hover {
	background-color: #4e91bd;
}
.search-wrapper .search-tabs ul li a.actived,
.search-wrapper .search-tabs ul li a:focus {
	background-color: #275979;
}
.search-wrapper .search-tabs ul li a span {
	display: inline-block;
	position: relative;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	padding: 27px 0;
	border-bottom: solid 4px #4d93c1;
}
.search-wrapper .search-tabs ul li a:hover span {
	border-bottom: solid 4px #417da5;
}
.search-wrapper .search-tabs ul li a.actived span,
.search-wrapper .search-tabs ul li a:focus span {
    border-bottom: solid 4px #4d93c1;
}
.search-wrapper .search-tabs .form-group label {
    color: #282828;   
    font-weight: 600;
    text-transform: uppercase;
}
.search-wrapper .search-tabs .form-group input[type="checkbox"] {
	cursor: pointer;
	color: #000;
	font-size: 40px;
	width: 21px;
	height: 21px;
	vertical-align: middle;
	display: inline-block;
	margin-top: -4px!important;
}
.search-wrapper .search-tabs .form-group {
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
    margin-top: 23px;
    margin-bottom: 0;
}
.search-wrapper .search-tabs .form-group.form-state {
	width: 340px;
}
.search-wrapper .search-tabs .form-group.form-price {
    width: 200px;
}
.search-wrapper .search-tabs .form-group.form-price select {
    background-color: #fcfeff;
    border-color: #63afe1;
    color: #282828;
    border-radius: 0;
    height: 55px;
    font-size: 14px;
}
.search-wrapper .search-tabs .form-group.form-state input[type="text"] {
    background-color: #fcfeff;
    border-color: #63afe1;
    color: #282828;
    border-radius: 0;
    height: 55px;
    font-size: 14px;
}
.search-wrapper .search-tabs .form-group.form-state .custom-control label {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 15px;
	cursor: pointer;
	transition: color .2s ease;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-o-transition: color .2s ease;
}
.search-wrapper .search-tabs .form-group.form-state .custom-control label:hover {
	color: #282828; 
}
.search-wrapper .order {
    color: #ffffff;
    display: inline-block;
    margin: 0 0;
    vertical-align: top;
}
.search-wrapper .order.active{
    color: #33739c;
}
.search-wrapper .order .fas {
	line-height: 1em;
	background-color: #bae3ff;
	padding: 0 5px;
}
.search-wrapper .order.active .fas {
    background-color: #63afe1;
}
.custom-control-label::before {
    background-color: #efede7;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #282828;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: #282828;
}
.custom-control-input:active~.custom-control-label::before {
    color: #fff;
    background-color: #f5edd7;
}

.boats-listtings {
  padding: 5px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.boats-listtings .container-fluid {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  padding: 0 2px;
  filter: alpha(opacity=0);
}
.boats-listtings.ready .container-fluid {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.boats-listtings .projects-list {
  margin-bottom: 0;
}
/*
.boats-listtings .projects-list:hover .project-thumb {
	opacity: .7;
}
*/
.boats-listtings .projects-list .project-thumb:hover {
	opacity: 1;
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.boats-listtings .projects-list > div {
  width: 25%;
  display: inline-block;
  margin: 0px -1px;
  vertical-align: text-bottom;
}
@media screen and (max-width: 1300px) {
	.search-wrapper .search-tabs h2 {
		font-size: 22px;
    	margin: 38px 0;
	}
	.search-wrapper .search-tabs form {
		padding-left: 120px;
	}
	.search-wrapper .search-tabs ul li a {
		height: 115px;
		font-size: 14px;
	}
	.search-wrapper .search-tabs .form-group.form-state .custom-control label {font-size: 14px;}
	.search-wrapper .search-tabs {padding-top: 15px;}
	.search-wrapper .search-tabs ul {display: block}
	.search-wrapper .search-tabs ul li {width: auto;}
	.search-wrapper .search-tabs ul li a {height: 64px; padding: 0 5vw;}
	.search-wrapper .search-tabs ul li a span {padding: 10px 0}
	.search-wrapper .search-tabs ul li a span br {display: none}
	.search-wrapper .search-tabs .form-group.form-price {margin-left: 0;width: 40%;}
	.search-wrapper .search-tabs .form-group.form-state {width: 45%;}
}
@media screen and (max-width: 991px) {
  .boats-listtings .projects-list > div {
	width: 33.33%;
  }
  .search-wrapper .search-tabs ul li a {padding: 0 3vw;}
}
@media screen and (max-width: 768px) {
  .boats-listtings .projects-list > div {
	width: 50%;
  }
}
@media screen and (max-width: 440px) {
  .boats-listtings > .container-fluid {
  	padding: 0 5px;
  }
  .boats-listtings .projects-list > div {
	width: auto;
	display: block;
	margin: 0 0 5px;
  }
	.search-wrapper .search-tabs h2 {
		margin: 28px 0;
	}
	.search-wrapper .search-tabs ul li a {
		height: 75px;
		padding: 0 2.5vw;
	}
	.search-wrapper .search-tabs .form-group.form-price {width: 146px;}
	.search-wrapper .search-tabs .form-group.form-state {width: 195px;}
}
@media screen and (max-width: 650px) {
	.search-wrapper .search-tabs ul li a {
		font-size: 12px;
		height: 70px;
		padding: 0 27px;
	}
	.search-wrapper .search-tabs ul li a span br {
		display: block;
	}
}
@media screen and (max-width: 570px) {
	.search-wrapper .search-tabs {
		text-align: center;
	}
	.search-wrapper .search-tabs h2 {
		position: relative;
		font-size: 24px;
		margin: 0;
	    padding: 0 15px 15px;
	}
	.search-wrapper .search-tabs form {padding: 0}
	.search-wrapper .search-tabs ul {
		margin: 0;
	}
	.search-wrapper.search-tabs ul li a {padding: 0 30px}
	.search-wrapper .search-tabs .form-group {
		margin: 20px auto 0;
		width: 300px;
		text-align: left;
	}
	.search-wrapper .search-tabs .form-group.form-price,
	.search-wrapper .search-tabs .form-group.form-state {
    	width: 300px;
	}
	.search-wrapper .search-tabs .form-group > label > span {
		display: block;
	}
}
@media screen and (max-width: 420px) {
	.search-wrapper .search-tabs ul li a {
		height: 70px;
		padding: 0 15px;
	}
	.search-wrapper .search-tabs .form-group.form-price {
		width: 266px;
	}
	.search-wrapper .search-tabs .form-group.form-state {
		width: 266px;
		margin-left: 0;
	}
	.search-wrapper .search-tabs .form-group {
		margin: 10px auto 0;

		width: 266px;
	}
}

/*=========================================== BOATS ======================================================*/
.boats-list {
  padding: 5px 0;
  position: relative;
  overflow: hidden;
}
.boats-list .container-fluid {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  padding: 0 5px;
  filter: alpha(opacity=0);
}
.boats-list.ready .container-fluid {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.boats-list .boat-list > div.hidden-post { display: none;}
.boats-list .text-center .btn-layout.see-less {
    display: none;
}
.boats-list .boat-list {}
.boats-list .boat-list .boat-list-item {
	position: relative;
	margin-bottom: 2px;
	opacity: 0;
    filter: alpha(opacity=0);
}
.boats-list .boat-list .boat-list-item.ready {
	opacity: 1;
    filter: alpha(opacity=100);
    transition: opacity 1.2s ease 0s;
    -webkit-transition: opacity 1.2s ease 0s;
    -moz-transition: opacity 1.2s ease 0s;
    -o-transition: opacity 1.2s ease 0s;
    -webkit-backface-visibility: hidden;
}
.boats-list .boat-list .boat-list-item .bnn {
	display: block;
	position: absolute;
	background-position: center;
	background-size: cover;
	width: 70%;
	top: 0;
	bottom: 0;
	left: -25px;
}
.boats-list .boat-list .boat-list-item.ready .bnn {
	left: 0;
	-webkit-transition: left 1.2s ease 0s, right 1.2s ease 0s;
    -moz-transition: left 1.2s ease 0s, right 1.2s ease 0s;
    -o-transition: left 1.2s ease 0s, right 1.2s ease 0s;
}
.boats-list .boat-list .boat-list-item:nth-child(even) .bnn {
	right: -25px;
	left: unset;
}
.boats-list .boat-list .boat-list-item.ready:nth-child(even) .bnn {
	right: 0;
}
.boats-list .boat-list .boat-list-item .boat-info {
	position: relative;
	margin-left: 72%;
	width: 30%;
	padding: 3vw 2.5vw;
	min-height: 550px;
}
.boats-list .boat-list .boat-list-item.ready .boat-info {
	margin-left: 70%;
	-webkit-transition: margin-left 1.2s ease 0s;
	-moz-transition: margin-left 1.2s ease 0s;
	-o-transition: margin-left 1.2s ease 0s;
}
.boats-list .boat-list .boat-list-item:nth-child(even) .boat-info {
	margin-left: -2%;
}
.boats-list .boat-list .boat-list-item.ready:nth-child(even) .boat-info {
	margin-left: 0;
}
.boats-list .boat-list .boat-list-item .boat-img-title {
	margin-bottom: 35px;
}
.boats-list .boat-list .boat-list-item p {
	margin-bottom: 35px;
}
.boats-list .boat-list .boat-list-item .boat-links {
	margin: 0;
}
.boats-list .boat-list .boat-list-item .boat-links li {
	margin-bottom: .7em;
}
.boats-list .boat-list .boat-list-item .boat-links li a {
	width: 195px;
}
@media screen and (max-width: 991px) {
	.boats-list .boat-list .boat-list-item .bnn {
		width: 50%;
	}
	.boats-list .boat-list .boat-list-item .boat-info {
		margin-left: 50%;
		width: 50%;
		padding: 30px 3vw;
		min-height: auto;
	}
	.boats-list .boat-list .boat-list-item.ready .boat-info {
		margin-left: 50%;
		-webkit-transition: margin-left 1.2s ease 0s;
		-moz-transition: margin-left 1.2s ease 0s;
		-o-transition: margin-left 1.2s ease 0s;
	}
	.boats-list .boat-list .boat-list-item:nth-child(even) .boat-info {
		margin-left: -2%;
	}
	.boats-list .boat-list .boat-list-item.ready:nth-child(even) .boat-info {
		margin-left: 0;
	}
}
@media screen and (max-width: 768px) {
	.boats-list .boat-list .boat-list-item .bnn {
		width: 100%;
	}
	.boats-list .boat-list .boat-list-item .boat-info {
		background-color: rgb(255 255 255 / 0%);
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	.boats-list .boat-list .boat-list-item.ready .boat-info {
		margin-left: 0;
		-webkit-transition: margin-left 1.2s ease 0s;
		-moz-transition: margin-left 1.2s ease 0s;
		-o-transition: margin-left 1.2s ease 0s;
	}
	.boats-list .boat-list .boat-list-item .boat-info h2 {
	    color: #fff;
	    margin-top: 60vw;
	    text-shadow: 0 0 4px black;
	}
	.boats-list .boat-list .boat-list-item .boat-info p {
	    display: none;
	}
	.boats-list .boat-list .boat-list-item:nth-child(even) .boat-info {
		margin-left: -2%;
	}
	.boats-list .boat-list .boat-list-item.ready:nth-child(even) .boat-info {
		margin-left: 0;
	}
}
@media screen and (max-width: 480px) {
	.boats-list .boat-list .boat-list-item .boat-info h2 {
	    margin-top: 40vw;
	}
	.boats-list .boat-list .boat-list-item .boat-links li a {
		font-size: 12px;
		width: 135px;
	}
}


/*=========================================== ORDER SCETION ======================================================*/
.order-section {
  padding: 75px 0 45px;
  position: relative;
  overflow: hidden;
  background-color: #3b3b3b;
}
.order-section:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-image: url(/wp-content/themes/mm/assets/img/x-yachts-bnn.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.order-section .banner-video-iframe{width:106%;position:absolute;left:50%;top: 0;transform: translate(-50%, 0);-webkit-transform: translate(-50%, 0);-moz-transform: translate(-50%, 0);-o-transform: translate(-50%, 0);}
.order-section .banner-video-iframe .iframe-holder{width:104%;padding-bottom:56.25%;position:relative;}
.order-section .banner-video-iframe .iframe-holder iframe,
.order-section .banner-video-iframe .iframe-holder video {position:absolute;left:0;right:0;width:100%;height:100%;background-position: left top;background-size: cover}
.order-section .container-fluid {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  padding: 0;
  filter: alpha(opacity=0);
}
.order-section.ready .container-fluid {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.order-section h2,
.order-section h3,
.order-section h4,
.order-section h5,
.order-section li,
.order-section p {
  color: #fff;
  margin-top: 0;
  text-align: left;
  text-transform: none;
}
@media screen and (max-width: 991px) {
	.order-section {
      padding: 35px 0;
    }
	.order-section:before {
		display: none
	}
	.order-section .container-fluid {
		padding: 0 15px;
	}
}

/*=========================================== STORAGE SCETION ======================================================*/
.storage-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.storage-section span.parallax {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background-image: url(/wp-content/themes/mm/assets/img/bnn-storage.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.storage-section .container {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.storage-section.ready .container {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.storage-section h2 {
  color: #fff;
  margin-bottom: 60px;
}
.storage-section ul {
  max-width: 650px;
  padding: 0;
  margin: 0 auto;
}
.storage-section li {
  width: 49%;
  text-align: left;
  margin: 0 0 20px!important;
}
.storage-section li:not(:last-child) {
  padding-right: 20px!important;
}
.storage-section li a {
  color: #fff;
}
.storage-section li a:hover {
  color: #96d5ff;
}
.storage-section li .fal,
.storage-section li .far,
.storage-section li .fas {
  position: static;
  margin-right: 15px;
  transition: all .3s ease;
}
.storage-section li a:hover .fal,
.storage-section li a:hover .far,
.storage-section li a:hover .fas {
	margin-right: 5px;
	margin-left: 10px;
}
@media screen and (max-width: 480px) {
	.storage-section li {
	  width: 100%;
	  text-align: left;
	  margin: 0 0 20px!important;
	}
}


/*=========================================== SERVICES SCETION ======================================================*/
.services-section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.services-section .container {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.services-section.ready .container {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.services-section h2 {
  color: #6b6b6b;
  margin-bottom: 40px;
}
.services-section h4 {
  font-weight: 900;
  margin-bottom: 40px;
}
.services-section h4 a {
  color: #4f4f4f;
  position: relative;
}
.services-section h4 a:hover {
  color: #326d94;
}
.services-section h4 a:after {
	content: '';
	display: block;
	position: absolute;
	left: 0; top: 100%;
	height: 3px;
	width: 0;
	background-color: #4f4f4f;
	transition: all .3s ease;
}
.services-section h4 a:hover:after {
  width: 100%;
}
.services-section h4 a span {
  display: block;
  color: #326d94;
  font-size: 50px;
  margin-bottom: 30px;
}

/*=========================================== LOCATIONS ========================================================*/
.locations-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
  	filter: alpha(opacity=0);
}
.locations-section.ready {
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s;
  -moz-transition: opacity 1.2s ease 0s;
  -o-transition: opacity 1.2s ease 0s;
  -webkit-backface-visibility: hidden;
}
.locations-section > div { width: 33.3333%; }
.locations-section > div > a {
    display: block;
    position: relative;
    padding-bottom: 70%;
	background-color: #000;
	border-bottom: solid 1px #fff;
}
.locations-section > div:not(:last-child) > a { border-right: solid 1px #fff; }
.locations-section > div > a picture {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	opacity: .4;
	transition: all .3s ease;
}
.locations-section > div > a:hover picture {
	opacity: .7;
}
.locations-section > div > a picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.locations-section > div > a .title {
	position: absolute;
	top: 50%;
	left: 10px;
	right: 10px;
	transform: translatey(-50%);
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}
.locations-section > div > a .title span {
	display: block;
	font-size: .7em;
}
@media (max-width: 1200px) {
	.locations-section > div { width: 33.3333%; }
	/* .locations-section > div:nth-child(1), */
	/* .locations-section > div:nth-child(2) { width: 50%; } */
}
@media (max-width: 991px) {
	.locations-section > div { width: 50%; }
	.locations-section > div:first-child { width: 100%; }
}
@media (max-width: 580px) {
	.locations-section > div { width: 100%!important; }
}

/*===========================================================================================================*/
/*=========================================== FOOTER ========================================================*/
/*===========================================================================================================*/
.footer {
  background-color: #f1f1f1;
  position: relative;
  overflow: hidden;
  z-index: 3;
  padding: 60px 0 30px;
}
.footer span.parallax {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background-image: url(/wp-content/themes/mm/assets/img/bnn-footer.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer .container {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.footer.ready .container {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}

.footer .social-nav {
	margin: 20px 0 60px;
	text-align: center;
}
.footer .social-nav li {
  	font-size: 60px;
  	padding: 0 15px;
}

.footer .logo img {
	display: inline-block;
}
.footer a {	
    color: #62aedf;
}
.footer a:hover {	
    color: #83cfff;
}
.footer p.copyright {
	margin-top: 60px;
	text-align: center;
}
@media screen and (max-width: 1700px) {
  .btn-layout {
    font-size: 10px;
  }
  .btn-layout.btn-big {
    font-size: 25px;
  }
  h1, .h1-style {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }
  .news-right-column h2,
  .news-right-column h3 {
    font-size: 17px;
  }
  p, li, td, th, label {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1200px) {
	.footer .btn-layout {
	  font-size: 25px;
	  display: block;
	}
}
@media screen and (max-width: 991px) {
	.footer {
		padding: 60px 0;
		/* text-align: center; */
	}
}
@media screen and (max-width: 768px) {
  .footer {
	text-align: center;
  }
  .footer .social-nav li {
  	font-size: 30px;
  	padding: 0 5px;
  }
  .btn-layout.btn-big {
    font-size: 25px;
  }
  h1, .h1-style {
    font-size: 24px;
  }
  h1>span, .h1-style>span {
  	line-height: 1.4em;
  	font-size: 18px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 16px;

  }
  h4 {
    font-size: 14px;
  }
  .news-right-column h2,
  .news-right-column h3 {
    font-size: 20px;
  }
  p, li, td, th, label {
    font-size: 14px;
    line-height: 28px;
  }
  span.parallax {
    top: 0 !important;
    height: 100% !important;
  }
}
	


.scroll-section > .container,
.scroll-section > .container-fluid {
  opacity: 1;
}