body, div {
  margin: 0;
  padding: 0;
}

body {
	font-size: 16px;
	text-align: center;
	color: #000000;
	line-height: 1.2;
	background: #fff;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-family: 'Betm Rounded', Arial, sans-serif;
	font-size: 18px;
	font-weight: normal;
	overflow: hidden;
	padding-top: var(--header-height);
}

@supports (overflow:clip) {
	#mainWrapper {
		overflow: clip;
	}
}

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #000;
	font-weight: 500;
	z-index: 10000000;
	-webkit-filter: drop-shadow(1px 3px 8px rgba(0,0,0,0.2));
	        filter: drop-shadow(1px 3px 8px rgba(0,0,0,0.2));
}

#header .section {
	position: relative;
	height: var(--header-height);
	display: flex;
	align-items: center;
	max-width: 100%;
	padding: 0 3.819444444444444%;
}

#header .logo {
	position: absolute;
	width: 262px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

#header .logo img {
	display: block;
	width: 100%;
}

#header #navigation ul {
	margin: 0;
	padding: 0;
	display: flex;
}

#header #navigation ul li {
	position: relative;
	margin: 0 36px 0 0;
	padding: 0;
	list-style: none;
}

#header #navigation ul li a {
	display: inline-block;
	position: relative;
	color: #fff;
}

#header #navigation>ul>li:before {
	background-color: #fff;
	bottom: -.1em;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	-webkit-transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
	transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
	-o-transition: transform .75s cubic-bezier(.19,1,.22,1);
	transition: transform .75s cubic-bezier(.19,1,.22,1);
	transition: transform .75s cubic-bezier(.19,1,.22,1), -webkit-transform .75s cubic-bezier(.19,1,.22,1);
}

#header #navigation>ul>li:hover:before,
#header #navigation>ul>li.Parent:before,
#header #navigation>ul>li.Current:before {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
}


#header #navigation>ul>li.hasSub:hover:before {
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
}

#header #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: 0;
	padding: 29px 0 0;
	min-width: 100%;
	border-bottom: 0.2105263157894737em solid #fff;
	border-radius: 0.2631578947368421em;
	z-index: 1;
	display: block;
}

#header #navigation ul li ul li {
	float: none;
	position: static;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	background: #0077d4;
	color: #000;
}

#header #navigation ul li ul li a {
	display: block;
	padding: 0.5263157894736842em 15px;
	line-height: 1.2;
	white-space: nowrap;
	color: #fff !important;
	min-width: 100%;
	height: auto;
}

#header #navigation ul li ul li a:before  {
	display: none;
}

#header #navigation ul li ul li:hover {
	background-color: #2c85e4;
	color: #fff;
}

#header #navigation ul li ul { 
	visibility: hidden;
	opacity: 0;
	margin-left: 0;
	-webkit-transform: translateX(-2%);
	-ms-transform: translateX(-2%);
	    transform: translateX(-2%);
	-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	-o-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

#header #navigation ul li:hover ul {
	visibility: visible; 
	opacity: 1;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	    transform: translateX(0%);
	-webkit-transition-delay: 0s, 0s, 0.3s;
	-o-transition-delay: 0s, 0s, 0.3s;
	   transition-delay: 0s, 0s, 0.3s;
}

#header #navigation ul li.hasSub ul a:after {
	display: none
}

#header #navigation ul li.hasSub>a {
	padding-right: 1em;
}

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.23em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5789473684210526em 0.3157894736842105em 0 0.3157894736842105em;
	border-color: #fff transparent transparent transparent;
	pointer-events: none;
	-webkit-transition: transform 0.3s, border-color 0.3s;
	-webkit-transition: border-color 0.3s, -webkit-transform 0.3s;
	transition: border-color 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, border-color 0.3s;
	transition: transform 0.3s, border-color 0.3s;
	transition: transform 0.3s, border-color 0.3s, -webkit-transform 0.3s;
}

#header #navigation ul li.hasSub:hover>a:before {
	border-color: #fff transparent transparent transparent;
	background-position: left bottom;
	-webkit-transform: rotate(180deg);	
	-ms-transform: rotate(180deg);	
	    transform: rotate(180deg);	
}

#header #navigation ul li.Current>a:before,
#header #navigation ul li.Parent>a:before {
	border-color: #fff transparent transparent transparent;
}

#header .options {
	display: flex;
	margin-left: auto;
	align-items: center;
}

#header .options .location {
	width: 16px;
	height: 19px;
	background: url(../images/location-ico.svg) no-repeat;
	background-size: 100%;
}

#header .options .login {
	color: #fff;
	padding-left: 26px;
	background: url(../images/user-ico.svg) no-repeat left center;
	background-size: 18px;
	margin-left: 25px;
}

/* Intro */

#intro {
	position: relative;
	height: calc(100vh - var(--header-height));
}

#intro video {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#intro .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.1);
}

#intro .overlay .section {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
}

#intro .overlay .text {
	max-width: 480px;
	color: #fff;
}

#intro .overlay .text>:last-child {
	margin-bottom: 0;
}

/* Banner */

#banner  {
	position: relative;
	height: calc(100vh - var(--header-height));
}

#banner img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	object-position: center;
	object-fit: cover;
}

#banner .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.1);
	color: #fff;
	text-shadow: 2px 2px 5px black;
}

#banner .overlay .section {
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
		font-family: 'SlimSansSerif', Arial, sans-serif;
	font-size: 40px;
}

#banner .overlay .text>:last-child {
	margin-bottom: 0;
}

#banner .overlay .section .title {
	font-family: 'SlimSansSerif', Arial, sans-serif;
	font-size: 90px;
	font-weight: bold;
	margin-bottom: 0;
}

#banner .overlay .section .linkBtn {
	color: #fff !important;
	border-color: #fff;
	margin: 35px auto 0;
}

/* Content */

#content>.section {
	padding-top: 30px;
	padding-bottom: 30px;
}

/* Models Tab */

#modelsTab {
	text-align: center;
	margin-top: -22.795px;
	margin-bottom: 35px;
}

#modelsTab .tabs {
	margin: 0;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	border: 1px solid #000;
}

#modelsTab .tabs li {
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 163px;
	padding: 13px 27px 9px;
	border-right: 1px solid #000;
	background: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
}

#modelsTab .tabs li:last-child {
	border-right: none;
}

/* Slider */

#slider {
	margin-bottom: var(--section-gap);
}

#slider .slides {
	position: relative;
	margin: 0;
	padding: 0;
}

#slider .slides li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	height: calc(100vh - var(--header-height));
}

#slider .slides li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#slider .slides li:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.4);
}

#slider .slides li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#slider .slides li .overlay .section {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

#slider .slides li .overlay .section .text>:last-child {
	margin-bottom: 0;
}

#slider .slides li .overlay .section .text .subtext {
	width: 566px;
	margin-left: auto;
	margin-right: auto;
}

#slider .slides li .overlay .section .text .linkBtn {
	margin-left: auto;
	margin-right: auto;
}

#slider .slides .owl-nav {
	position: absolute;
	left: 3.819444444444444%;
	right: 3.819444444444444%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

#slider .slides .owl-nav span {
	display: none;
}

#slider .slides .owl-nav .owl-prev,
#slider .slides .owl-nav .owl-next {
	width: 25px;
	height: 45px;
	background: url(../images/slider-arrow.svg) no-repeat;
	pointer-events: auto;
	background-size: 100%;
	outline: none;
}

#slider .slides .owl-nav .owl-prev {
	transform: scaleX(-1);
}

/* Info */

#info .section {
	padding-top: 100px;
	padding-bottom: 100px;
}

/* Text Image */

.textImage {
	display: flex;
	align-items: center;
}

.textImage .text {
	width: 600px;
}

.textImage .text>:last-child {
	margin-bottom: 0;
}

.titleBold {
	font-family: 'SlimSansSerif', Arial, sans-serif;
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
}

.textImage .text .price {
	font-family: 'SlimSansSerif', Arial, sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #38c5bd;
}

.textImage .image {
	width: 600px;
	margin-left: auto;
}

.textImage .image img {
	display: block;
	width: 100%;
}

.modelSection {
    position: relative;
}

.modelSection > img.bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}


/* Centered Text */

.centeredText {
	position: relative;
	color: #fff;
	background: #000;
	z-index: 1;
}
/*
.centeredText .bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}
*/
.centeredText .overlay {
	background: rgba(33, 33, 33, 0.5);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-family: 'Isidora Sans', Arial, sans-serif;
	line-height: 1.8;
	font-size: 25px;
	padding-top: 120px;
	padding-bottom: 120px;
}

.centeredText .overlay .text {
	max-width: 800px;
	margin: 0 auto;
}

.centeredText .overlay .text>:last-child {
	margin-bottom: 0;
}

.centeredText blockquote,
.centeredText blockquote cite {
	margin: 0;
	padding: 0;
	font-style: normal;
}

.centeredText blockquote cite {
	font-size: 18px;
}

/* Video */

#video .section {
	padding-top: 50px;
	padding-bottom: 50px;
}

#video .listing {
	--gap: 30px;
	margin: 0 calc(var(--gap) * -1);
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#video .listing li {
	margin: var(--gap) 0;
	padding: 0 var(--gap);
	list-style: none;
	width: 50%;
}

#video .listing li a {
	display: block;
	color: #000;
}

#video .listing li a>:last-child {
	margin-bottom: 0;
}

#video .listing li .image {
	position: relative;
	overflow: hidden;
	margin-bottom: 25px;
}

#video .listing li .image:after {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	left: 50%;
	top: 50%;
	margin-left: -50px;
	margin-top: -50px;
	background: url(../images/play-btn-ico.svg) no-repeat;
	background-size: 100%;
	transition: all 0.6s;
}

#video .listing li .image img {
	display: block;
	width: 100%;
	transition: transform 1s;
}

#video .listing li a:hover .image img {
	transform: scale(1.1);
}

#video .listing li a:hover .image:after {
	transform: scale(1.1);
}

/* Image Slider */

.imageSlider .section {
	padding-top: 75px;
	padding-bottom: 75px;
}

.imageSlider .slides {
	margin: 0;
	padding: 0;
}

.imageSlider .slides li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.imageSlider .slides li img {
	display: block;
	width: 100%;
}

.imageSlider .slides .owl-nav {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding-bottom: 52.08333333333333%;
	display: flex;
	pointer-events: none;
	filter: brightness(0) saturate(100%);
}

.imageSlider .slides .owl-nav span {
	display: none;
}

.imageSlider .slides .owl-nav .owl-prev,
.imageSlider .slides .owl-nav .owl-next {
	position: absolute;
	width: 25px;
	height: 45px;
	top: 50%;
	background: url(../images/slider-arrow.svg) no-repeat;
	pointer-events: auto;
	background-size: 100%;
	outline: none;
}

.imageSlider .slides .owl-nav .owl-prev {
	transform: scaleX(-1) translateY(-50%);
	left: -53px;
}

.imageSlider .slides .owl-nav .owl-next {
	right: -53px;
	transform: translateY(-50%)
}

.imageSlider .slides .owl-dots {
	text-align: center;
	margin-top: 40px;
}

.imageSlider .slides .owl-dots .owl-dot {
	margin: 5px 10px;
	padding: 0;
	outline: none;
	width: 10px;
	height: 10px;
	background: #bdbdbd;
	border-radius: 100%;
	transition: color 0.3s;
}

.imageSlider .slides .owl-dots .owl-dot.active {
	background: #000;
}

/* Our Models */

#ourModels {
	margin-bottom: 40px;
}

#ourModels .tabs {
	margin: 0 0 35px;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#ourModels .tabs li {
	margin: 4px;
	padding: 0;
	list-style: none;
	border: 1px solid #000;
	min-width: 163px;
	padding: 11px 27px;
	text-align: center;
	background: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
}

#ourModels .tabs li.active {
	background: #d2d3dc;
}

#ourModels .models .model ul {
	margin: 0 -5px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#ourModels .models .model ul li {
	margin: 0;
	padding: 5px;
	list-style: none;
	width: 25%;
}

#ourModels .models .model ul li a {
	position: relative;
	display: block;
	overflow: hidden;
}

#ourModels .models .model ul li img {
	display: block;
	width: 100%;
	transition: transform 1.5s;
}

#ourModels .models .model ul li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	padding: 10px;
	opacity: 0;
	transition: opacity 0.7s;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#ourModels .models .model ul li .overlay .title {
	font-family: 'SlimSansSerif', Arial, sans-serif;
	font-weight: bold;
	margin: 0 0 2px;
}

#ourModels .models .model ul li .overlay .subtitle {
	margin: 0;
	font-size: 15px;
}

#ourModels .models .model ul li a:hover img {
	transform: scale(1.2);
}

#ourModels .models .model ul li a:hover .overlay {
	opacity: 1;
}


/* Our Models UPDATED */

#ourModels {
	margin-bottom: 40px;
}

#ourModels .tabs {
	margin: 0 0 35px;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#ourModels .tabs li {
	margin: 4px;
	padding: 0;
	list-style: none;
	border: 1px solid #000;
	min-width: 163px;
	padding: 11px 27px;
	text-align: center;
	background: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
}

#ourModels .tabs li.active {
	background: #d2d3dc;
}

#ourModels .models ul.model-grid {
	margin: 0 -5px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#ourModels .models ul.model-grid li {
	margin: 0;
	padding: 5px;
	list-style: none;
	width: 25%;
}

#ourModels .models  ul.model-grid li a {
	position: relative;
	display: block;
	overflow: hidden;
}

#ourModels .models  ul.model-grid li img {
	display: block;
	width: 100%;
	transition: transform 1.5s;
}

#ourModels .models  ul.model-grid li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	padding: 10px;
	opacity: 0;
	transition: opacity 0.7s;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#ourModels .models  ul.model-grid li .overlay .title {
	font-family: 'SlimSansSerif', Arial, sans-serif;
	font-weight: bold;
	margin: 0 0 2px;
}

#ourModels .models  ul.model-grid li .overlay .subtitle {
	margin: 0;
	font-size: 15px;
}

#ourModels .models  ul.model-grid li a:hover img {
	transform: scale(1.2);
}

#ourModels .models  ul.model-grid li a:hover .overlay {
	opacity: 1;
}
/* Contact */

#contact {
	background: #fbfafa url(../images/contact-bg.jpg) no-repeat center top;
	background-size: cover;
}

#contact .section {
	padding-top: var(--section-gap);
	padding-bottom: var(--section-gap);
}

#contact .cols {
	display: flex;
}

#contact .cols .left {
	width: 413px;
	margin-left: 95px;
}

#contact .cols .left .contacts {
	margin: 0;
	padding: 0;
}

#contact .cols .left .contacts li {
	margin: 0;
	padding: 13px 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #c3c2c5;
}

#contact .cols .left .contacts li a {
	display: flex;
	color: #000;
	width: 100%;
}

#contact .cols .left .contacts li:last-child {
	border-bottom: 0;
}

#contact .cols .left .contacts li .ico {
	width: 43px;
	height: 43px;
	box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.13);
	border-radius: 100%;
	flex-shrink: 0;
	background: #fff;
	display: flex;
	margin-left: 9px;
	margin-right: 25px;
}

#contact .cols .left .contacts li .ico img {
	display: block;
	margin: auto;
}

#contact .cols .left .contacts li .text {
	font-family: 'SlimSansSerif', Arial, sans-serif;
	font-size: 14px;
	align-self: center;
}

#contact .cols .left .contacts li .text p {
	margin: 0;
}

#contact .cols .left .contacts li .text .title {
	font-family: 'Betm Rounded', Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 1px;
}

#contact .cols .right {
	width: 590px;
	margin-left: auto;
	margin-right: 95px;
}

#contact .cols .right .newsletter {
	padding: 30px 36px;
	box-shadow: 0px 0px 16px 0.16px rgba(0, 0, 0, 0.25);
	background: #fff;
	margin-top: 70px;
}

#contact .cols .right .newsletter .title {
	display: flex;
	font-family: 'SlimSansSerif', Arial, sans-serif;
	font-size: 28px;
	margin-bottom: 22px;
}

#contact .cols .right .newsletter .title .ico {
	display: flex;
	width: 44px;
	height: 44px;
	border-radius: 100%;
	box-shadow: 0px 0px 16px 0.16px rgba(0, 0, 0, 0.15);
	margin-right: 22px;
	flex-shrink: 0;
}

#contact .cols .right .newsletter .title .ico img {
	display: block;
	margin: auto;
}

#contact .cols .right .newsletter .title p {
	position: relative;
	margin: 0 0 5px;
	align-self: center;
}

#contact .cols .right .newsletter .title p:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 97px;
	height: 3px;
	background: #000;
}

#contact .cols .right .newsletter .form {
	border: 1px solid #ccc;
	display: flex;
	margin-bottom: 20px;
}

#contact .cols .right .newsletter .form .label {
	width: 43px;
	border-right: 1px solid #ccc;
	display: flex;
}

#contact .cols .right .newsletter .form .label img {
	display: block;
	margin: auto;
	width: 20px;
	opacity: 0.3;
}

#contact .cols .right .newsletter .form .field {
	flex: 1;
}

#contact .cols .right .newsletter .form .field input {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 15px;
	border: 0;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	background: transparent;
	font-family: 'Betm Rounded', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
}

#contact .cols .right .newsletter .form .field input::placeholder {
	color: rgba(0,0,0,0.3);
}

#contact .cols .right .newsletter .form button {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	height: 30px;
	border-radius: 0;
	font-family: 'Betm Rounded', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	width: 140px;
	background: #000;
	color: #fff;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.3s;
}

#contact .cols .right .newsletter .form button:hover {
	background-color: #1d1d1d;
}

#contact .cols .right .newsletter>:last-child {
	margin: 0;
}

/* Build Boat */

#buildBoat {
	display: flex;
	font-family: 'Isidora Sans', Arial, sans-serif;
	font-weight: 500;
	margin-bottom: 43px;
}

#buildBoat .image {
	position: relative;
	flex: 1;
}

#buildBoat .image img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#buildBoat .options {
	width: 408px;
}

#buildBoat .options .info {
	background: #cdcdcd;
	color: #2d2d2d;
	padding: 25px;
	font-size: 15px;
}

#buildBoat .options .title {
	font-size: 25px;
	font-weight: 600;
	border-bottom: 2px solid #fff;
	color: #303030;
	padding-bottom: 11px;
	margin-bottom: 15px;
}

#buildBoat .options .info>:last-child {
	margin-bottom: 0;
}

#buildBoat .options .more {
	padding: 25px 25px 0;
}

#buildBoat .options .more .title {
	margin-bottom: 2px;
}

#buildBoat .options .more .btns {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

#buildBoat .options .more .btns .bttn {
	font-size: 14px;
	font-weight: 600;
	color: #060a0b;
	border: 1px solid #d6d6d6;
	padding: 7px 15px 5px;
	transition: background-color 0.3s;
	text-align: center;
}

#buildBoat .options .more .btns .bttn:hover {
	color: #fff;
	background-color: #060a0b;
}

#buildBoat .options .more .choices .choice {
	position: relative;
}

#buildBoat .options .more .choices .choice .name {
	position: relative;
	margin: 0;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	color: #535353;
	padding: 10px;
	border-bottom: 1px solid #b6b6b6;
	user-select: none;
}

#buildBoat .options .more .choices .choice .name:after {
	content: "";
	position: absolute;
	right: 11px;
	top: 17px;
	width: 11px;
	height: 7px;
	background: url(../images/down-arrow.svg) no-repeat;
	background-size: 100%;
	transition: transform 0.3s;
}

#buildBoat .options .more .choices .choice.opened .name:after {
	transform: rotate(180deg);
}

#buildBoat .options .more .choices .choice .data {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    font-size: 15px;
    padding: 10px;
    z-index: 1;
    box-sizing: border-box;
}

#buildBoat .options .more .choices .choice .data label {
	display: flex;
	cursor: pointer;
}

#buildBoat .options .more .choices .choice .data .listing {
	margin: 0;
	padding: 0;
}

#buildBoat .options .more .choices .choice .data .listing li {
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
}

#buildBoat .options .more .choices .choice .data .listing li .img {
	width: 80px;
	margin-right: 10px;
	flex-shrink: 0;
}

#buildBoat .options .more .choices .choice .data .listing li .img img {
	display: block;
	width: 100%;
}

#buildBoat .options .more .choices .choice .data .listing li .text {
	flex: 1;
	font-weight: 600;
}

#buildBoat .options .more .choices .choice .data input {
	outline: none;
	vertical-align: middle;
	position: relative;
	top: -1px;
	margin-right: 7px;
}

#buildBoat .options .more .choices .choice .data p {
	margin: 5px 0 8px;
	font-size: 13px;
	font-weight: normal;
}

#buildBoat .options .more .choices .choice .data .type {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	font-family: 'SlimSansSerif', Arial, sans-serif;
	margin-bottom: 10px;
}

#buildBoat .options .more .choices .choice .data .listing.horizontal {
	display: flex;
	margin: 10px -5px;
	flex-wrap: wrap;
}

#buildBoat .options .more .choices .choice .data .listing.horizontal li {
	width: 33.33333333333333%;
	padding: 0 5px;
	margin-bottom: 0;
}

#buildBoat .options .more .choices .choice .data .listing.horizontal li p {
	font-size: 11px;
	font-weight: 600;
}


/* Features */

#features {
	text-align: center;
}

#features .section  {
	padding-top: 75px;
	padding-bottom: 75px;
}

#features .listing {
	--gap: 15px;
	margin: 30px calc(var(--gap) * -1) 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#features .listing li {
	position: relative;
	margin: var(--gap);
	padding: 0;
	list-style: none;
	width: calc(25% - calc(var(--gap) * 2));
	overflow: hidden;
}

#features .listing li img {
	display: block;
	width: 100%;
	transition: transform 1s;
}

#features .listing li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 1;
	background: rgba(0, 0, 0, .35);
	transition: background-color 0.3s;
}

#features .listing li .overlay>:last-child {
	margin-bottom: 0;
}

#features .listing li:hover .overlay {
	background: rgba(0, 0, 0, .7);
}

#features .listing li:hover img {
	transform: scale(1.2);
}

/* Key Features */

#keyFeatures {
	margin-bottom: 25px;
}

#keyFeatures .listing {
	display: flex;
	margin: 0 -7px;
	padding: 0;
	flex-wrap: wrap;
}

#keyFeatures .listing li {
	margin: 0 0 14px;
	padding: 7px;
	list-style: none;
	width: 25%;
	font-family: 'Isidora Sans', Arial, sans-serif;
	font-weight: 500;
	font-size: 17px;
}

#keyFeatures .listing li p.title {
	font-weight: bold;
	font-size: 19px;
	text-transform: uppercase;
}

#keyFeatures .listing li p.title:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/checkmark.svg) no-repeat;
	background-size: 100%;
	vertical-align: middle;
	position: relative;
	top: -1px;
	margin-right: 5px;
}

#keyFeatures .listing li img {
	display: block;
	width: 100%;
	margin-bottom: 13px;
}

/* Specs */

#specs {
	font-family: 'Isidora Sans', Arial, sans-serif;
}

#specs .subheading {
	font-family: 'Isidora Sans', Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
}

#specs .introText .heading {
	margin-bottom: 17px;
}

#specs table {
	margin: 0 auto 30px;
	padding: 0;
	max-width: 360px;
	border-collapse: collapse;
	border-spacing: 0;
}

#specs table th,
#specs table td {
	margin: 0;
	padding: 0 0 10px;
	font-weight: normal;
}

#specs table th {
	font-weight: 600;
	width: 100%;
	padding-right: 15px;
}

/* Equipment */

#equipment {
	margin-bottom: 40px;
}

#equipment .imageText {
	display: flex;
}

#equipment .imageText .image {
	width: 646px;
}

#equipment .imageText .text {
	width: 580px;
	margin-left: auto;
}

#equipment .imageText .text .subheading {
	font-size: 25px;
	font-weight: normal;
}

/* Build Summary */

#buildSummary {
    max-width: 747px;
    padding: 20px;
    margin: 0 auto;
    font-family: 'Isidora Sans', Arial, sans-serif;
    box-sizing: border-box;
}

#buildSummary * {
    box-sizing: border-box;
}

#buildSummary .header {
    background: #e6e6e6;
    padding: 15px 23px;
    font-size: 13px;
    color: #4d4d4d;
    line-height: 1.4;
}

#buildSummary .header>:last-child {
    margin-bottom: 0;
}

#buildSummary .title {
    font-size: 17px;
    margin: 0 0 5px;
    font-weight: bold;
}

#buildSummary .sec {
    padding: 15px 0;
}

#buildSummary .sec .head {
    display: flex;
    border-bottom: 2px solid #ff0000;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

#buildSummary .sec .option {
    flex-shrink: 0;
    width: 248px;
    padding-right: 15px;
}

#buildSummary .sec .selection {
    flex: 1;
}

#buildSummary .sec .data {
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 16px;
    word-break: break-word;
}

#buildSummary .action {
    background: #e6e6e6;
    padding: 15px 10px;
    text-align: center; 
}

#buildSummary .action .linkBtn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    font-weight: bold;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

#buildSummary .action .linkBtn:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

/* Footer */

#footer {
	background: #000;
	color: #fff;
}

#footer .section {
	padding-top: 27px;
	padding-bottom: 27px;
	display: flex;
	align-items: center;
}

#footer .logo {
	width: 262px;
	margin-right: 54px;
}

#footer .logo img {
	display: block;
	width: 100%;
}

#footer .copyright {
	margin: 0;
}

#footer .links {
	display: flex;
	margin: 0 -17px 0 auto;
	padding: 0;
}

#footer .links li {
	position: relative;
	margin: 0;
	padding: 0 17px;
	list-style: none;
}

#footer .links li:before {
	content: "";
	position: absolute;
	left: -2px;
	top: 6px;
	width: 4px;
	height: 4px;
	border-radius: 100%;
	background: #fff;
}

#footer .links li:first-child:before {
	display: none;
}

#footer .links li a {
	color: #fff;
}

#footer .links li a:hover {
	text-decoration: underline;
}

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	width: 30px;
	outline: none;
	z-index: 10;
	top: 15px;
	left: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#menuBtn span {
	display: block;
	height: 4px;
	margin-bottom: 4px;
	background: #fff;
	border-radius: 10px;
}

.mm-hasnavbar-top-1 .mm-panels, .mm-navbar-top-2 {
	background: #0077d4;
}

.mm-menu {
	text-align: left;
}

.mm-menu ul {
	color: #000;
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu ul li.Current,
.mm-menu ul li.Parent,
.mm-menu ul li.active {
	background: #005997;
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next), .mm-menu .mm-listview>li.mm-selected>span {
	background: none;
}

.mm-menu ul li svg {
	display: none;
}

.mm-menu *:after, .mm-menu *:before {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.mm-navbar {
	background: #000 !important;
	font-size: 16px;
}

.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
	color: #fff;
}

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
	border-color: #fff;
}

.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a, .mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span, .mm-menu.mm-multiline .mm-listview>li>a, .mm-menu.mm-multiline .mm-listview>li>span {
	color: #fff;
	font-size: 16px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.mm-listview .mm-next:before {
	background: #fff;
}

.mm-menu .mm-listview>li .mm-arrow:after, .mm-menu .mm-listview>li .mm-next:after {
	border-color: #fff;
}

.mm-menu em.mm-counter {
	color: #fff;
	font-size: 16px;
}

.mm-listview>li:not(.mm-divider):after {
	background-color: #fff;
}

.mm-menu .mm-listview img {
	display: block;
	width: 100%;
}

.mm-menu .mm-listview p span {
	display: block;
}

/* Styling MMenu */

.mm-menu .mm-listview img {
	float: left;
	width: 95px;
}

.mm-menu .mm-listview p {
	position: relative;
	margin: 0 0 0 110px;
	font-size: 12px;
	min-height: 103px;
	padding-bottom: 30px;
}

.mm-menu .mm-listview p:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 8px;
	border-color: transparent transparent transparent #f03f28;
}

.mm-menu .mm-listview p span {
	display: block;
	font-size: 14px;
	font-weight: bold;
}
