/*
 *	Table of Contents:
 *
 *	1. Inits & Resets
 *	2. Menu
 *	3. Main Content
 *	4. Home Page
 *	5. About Page
 *	6. Resume Page
 *	7. Portfolio Page
 *	8. Footer
 *	9. Themes
 *	10. Media Queries
*/


/*
===============================================
			1. CSS Reset
===============================================
*/

/* inits & resets */
body{
	color: #333333;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1;
	display: block;
}
html, body{
	min-height:100%;
	height:auto;
	width: 100%;
}
hr{
    float:left;
    width:100%;
    display:block;
    height: 1px;
    border: 0;
    background: #666666;
}
*:focus{
	outline: none;
}
.clear{
	clear: both;
}

/* anchor tag */
a{
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}

#wrapper{
	display: block;
	width: 960px;
	margin: 0 auto;
	height: 100%;
	overflow: hidden;
	opacity: 0;
}


.loading_overlay{
	display: block;
	position: absolute;
	background: rgba(0, 0, 0, 1);
	width: 100%;
	height: 100%;
	left:0;
	top:0;	
}

.loading_overlay div{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 52px;
	line-height: 50px;
	margin: -30px 0 0 -30px;
	padding: 6px;
}

.loading_overlay img{
	width:50px;
	height: 52px;
}

/*
===============================================
			2. Menu
===============================================
*/

.main_menu{
	width:97px;
	float: left;
	display: inline-block;
	margin-top: 20px;
	opacity: 0;
}

.main_menu ul{
	display: block;
	width: 100%;
	list-style-type: none;
	padding: 0;
	margin:	0;
}

.main_menu ul li{
	display: block;
}

.main_menu ul li a{
	text-align: center;
	display: block;
	width: 97px;
	height: 92px;
	opacity: 0.55;
	line-height: 97px;
	font-size: 28px;
	color: #333333;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.main_menu ul li a i{
	float: left;
	width: 100% !important;
	line-height: 92px;
}

.main_menu ul li a:hover{
	color: #222222;
	opacity: 0.8;
}

.main_menu ul li a:active,
.main_menu ul li a.active{
	color: #111111;
	text-shadow: 0 1px 0 #A3A3A3;
	opacity: 0.95;
}

/*
===============================================
			3. Main Content
===============================================
*/

.main_content{
	width: 726px;
	height: 100%;
	display: block;
	float: left;
	position: absolute;
	margin-left: 117px;
	margin-right: 20px;
}

.main_slider{
	width: 100%;
	height: 440px;
	display: block;
	float: left;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.main_slider .overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	display: block;
	background: rgba(0, 0, 0, 0.7);
	-webkit-transition: box-shadow 0.3s;
	-moz-transition: box-shadow 0.3s;
	-o-transition: box-shadow 0.3s;
	transition: box-shadow 0.3s;
	z-index: 9999;
}

.main_slider .overlay .name{
	font-size: 64px;
	color: #dedede;
	display: block;
	text-align: center;
	margin-top: 3%;
	margin-bottom: 3%;
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}

.main_slider .overlay .description{
	font-family: 'Lato', cursive, Tahoma, Arial;
	font-style: italic;
	font-size: 16px;
	color:#dedede;
	display: block;
	font-weight: 300;
	text-align: center;
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}

.main_slider .overlay:hover .name,
.main_slider .overlay:hover .description{
	color:#ffffff;
}

.main_slider img{
	display: block;
	width: 726px;
	height: 440px;
}

.btn{
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
	padding: 8px;
	color:#ffffff;
	cursor: pointer;
	display: inline-block;
	border: none;
}

.btn:active{
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3) inset;
}

input[type="text"],
input[type="email"],
textarea{
	padding: 8px;
	color:#666666;
	border:1px solid #dedede;
	background: #fafafa;
	display: inline-block;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}

input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus{
	border: 1px solid #bebebe;
	color:#333333;
	background: #ffffff;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus{
	box-shadow: 0 2px 1px #dedede inset, 0 2px 1px #dedede;
}

.content{
	display: block;
	float: left;
	position: relative;
	overflow: hidden;
	width: 100% !important;
	height: 100% !important;
	-webkit-perspective: 1200px;
	-moz-perspective: 1200px;
	perspective: 1200px;
    transform-style: preserve-3d;
}

.content > div{
	position: absolute;
	background: rgba(255, 255, 255, 0.75);
	width: 100% !important;
	height: 100% !important;
	padding: 20px;
	top: 0;
	left: 0;
	opacity: 0;
	margin-top: 20px;
	visibility: hidden;
	overflow: hidden;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.content > div .tse-scrollable{
	width: 100% !important;
	height: 100% !important;
}

.content > div.pt-page-current{
	visibility: visible !important;
	z-index: 1 !important;
	opacity: 1 !important;
}

.content > div .title{
	display: block;
	width: 100%;
	border-bottom: 0;
	padding-bottom: 14px;
	margin-bottom: 20px;
	font-size: 26px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

.content > div .title:after{
	height: 1px;
	display: block;
	top: 15px;
	left: 0;
	content: " ";
	position: relative;
	width: 125px;
}

.content > div .jspPane{
	padding: 20px !important;
	width: 670px !important;
}

/*
===============================================
			4. Home Page
===============================================
*/

.content > div#home .jspPane{
	padding:0 !important;
	width: 726px !important;
}

.content > div#home{
	display: block;
	padding: 0;
	background: transparent;
	width: 100%;
}

.content > div#home .scroller-bar{
	display: none !important;
}

.content > div#home .resume_btn,
.content > div#home .cv_download_btn,.content > div#virtual-tour .cv_download_btn{
	height: 92px;
	display: inline-block;
	line-height: 97px;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	color:#dedede;
	cursor: pointer;
	width:100%;
	float: left;
	text-align: center;
	display: inline-block;
	background: rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.content > div#home .resume_btn:hover{
	color: #ffffff;
	background: rgba(0, 0, 0, 0.25);
}

.content > div#home .cv_download_btn, .content > div#virtual-tour .cv_download_btn{	
	background: rgba(0, 0, 0, 0.3);
	text-decoration: none;
}

.content > div#home .resume_btn i,
.content > div#home .cv_download_btn i{
	margin-right: 10px;
	font-size: 23px;
}

.content > div#home .cv_download_btn:hover, .content > div#virtual-tour .cv_download_btn:hover{
	background: rgba(0, 0, 0, 0.35);
	color: #ffffff;
}

.content > div#home .resume_btn:active,
.content > div#home .cv_download_btn:active, .content > div#virtual-tour .cv_download_btn:active{
	box-shadow: 0 1px 12px 1px rgba(0, 0, 0, 0.3) inset;
}

a.btn{
	text-decoration: none;
}

.content > div .left_side{
	width:321px;
	margin-right: 20px;
	display: inline-block;
	float: left;
}

.content > div .right_side{
	width: 321px;
	display: inline-block;
	float: right;
}

/*
===============================================
			5. About Page
===============================================
*/

.content > div#about .left_side,
.content > div#about .right_side,
.content > div#about .box.awards{
	display: none;
}

.content > div#about .box{
	display: inline-block;
	float: left;
	width: 321px;
	margin-bottom: 20px;
}

.content > div#about .box .title,
.content > div .box_title{
	padding: 0;
}

.content > div#about .box .title:after,
.content > div .box_title:after{
	top:1px;
	width: 155px;
}

.content > div#about .box .title .icon,
.content > div .box_title .icon{
	float: left;
	display: inline-block;
	padding: 10px;
	font-size: 20px;
	margin-bottom: -1px;
	color:#ffffff;
	width: 20px;
	text-align: center;
}

.content > div#about .box .title .text,
.content > div .box_title .text{
	display: inline-block;
	float: left;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	margin-left: 10px;
	margin-top: 10px;
}

.content > div#about .box > .text{
	display: block;
	font-size: 14px;
	width: 100%;
	margin-top:10px;
	margin-bottom: 10px;
	line-height: 20px;
}

.content > div#about .box .personal_details{
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.content > div#about .box .personal_details .item{
	display: block;
	width: 100%;
	margin-bottom: 15px !important;
}

.content > div#about .box .personal_details .title{
	margin-bottom: 0;
}

.content > div#about .box .personal_details .title .icon{
	background: transparent !important;
	padding: 5px;
	width: 33%;
	text-align: left;
}

.content > div#about .box .personal_details .title .icon i{
	margin-right: 10px;
	width: 20px;
	text-align: center;
}

.content > div#about .box .personal_details .title .icon span{
	font-size: 17px;
}

.content > div#about .box .personal_details .title .text{
	color:#333333 !important;
	font-size: 14px;
}

.content > div#about .box .personal_details .title:after{
	width: 120px;
}

.content > div#about .box.pictures{
	overflow: hidden;
}

.content > div#about .box.pictures img{
	display: none;
	border:1px solid #cccccc;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
	opacity: 0.7;
	-webkit-transition: rotate, scale;
   	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	-moz-transition: rotate, scale;
   	-moz-transition: -webkit-transform 0.3s ease-in-out;
	-o-transition: rotate, scale;
   	-o-transition: -webkit-transform 0.3s ease-in-out;
	transition: rotate, scale;
   	transition: -webkit-transform 0.3s ease-in-out;
}

.content > div#about .box.pictures img.first{
	display: block;
}

.content > div#about .box.pictures:hover img{
	opacity: 1;
   -webkit-transform: rotate(10deg) scale(1.3,1.3);
   -moz-transform: rotate(10deg) scale(1.3,1.3);
   -o-transform: rotate(10deg) scale(1.3,1.3);
   -ms-transform: rotate(10deg) scale(1.3,1.3);
   transform: rotate(10deg) scale(1.3,1.3);

}

.content > div#about .box.what_i_do .title:after{
	width: 165px;
}

.content > div#about .box.my_services .title:after{
	width: 184px;
}

.content > div#about .box.my_services{
	margin-bottom: 26px;
}

.accordion{
	display: inline-block;
}

.content > div#about .box.my_services .accordion{
	display: block;
	width: 100%;
}

.accordion .item{
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.accordion .item .item_title{
	display: block;
	width: 99.3%;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #dedede;
}

.accordion .item .item_title .item_btn{
	display: inline-block;
	float: left;
	padding: 11px;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
	cursor: pointer;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.accordion .item .item_title .item_btn .text{
	font-size:13px;
}

.accordion .item .item_title .item_btn .arrow{
	float: left;
	margin-right: 10px;
}

.accordion .item .item_title .item_btn .arrow i{
	font-size:14px;
	color:#333333;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.accordion .item .item_title .item_btn:hover .arrow i,
.accordion .item .item_title .item_btn.active .arrow i{
	color:#ffffff;
}

.accordion .item .item_title .item_btn:active,
.accordion .item .item_title .item_btn.active{
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2) inset;
}

.accordion .item .item_text{
	display: none;
	width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	padding: 5px;
	border: 1px solid #dedede;
	border-top: none;
	background: rgba(255, 255, 255, 0.65);
	line-height: 20px;
}

.content > div#about .box.tools_i_use .title:after{
	width:172px;
}

.content > div#about .box.tools_i_use .tools .tool{
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 7px;
	color: #ffffff;
	cursor: pointer;
}


.content > div#about .box.awards{
	width: 100%;
	margin-bottom: 0;
}

.content > div#about .box.awards .title:after{
	width:176px;
}

.content > div#about .box.awards .award{
	margin-bottom: 15px;
	width: 100%;
}

.content > div#about .box.awards .award .date{
	padding: 10px;
	color:#ffffff;
	font-size:15px;
	font-family: 'Lato', sans-serif;
}

.content > div#about .box.awards .award .body{
	background: rgba(0, 0, 0, 0.05);
	padding: 10px;
	line-height: 18px;
}

.content > div#about .box.awards .award .body .award_title{
	margin-bottom: 5px;
	border-bottom: 1px solid #777777;
	font-size:15px;
	font-weight: 600;
	padding-bottom: 5px;
}

/*
===============================================
			6. Resume Page
===============================================
*/

.content > div#resume .left_side{
	width: 410px;
}

.content > div#resume .right_side{
	width: 230px;
}

.content > div#resume .left_side,
.content > div#resume .right_side{
	display: none;
}

.content > div#resume .left_side .title,
.content > div#resume .right_side .title{
	padding: 0;
}

.content > div#resume .left_side .title:after,
.content > div#resume .right_side .title:after{
	top:1px;
	width: 166px;
}

.content > div#resume .education,
.content > div#resume .employment{
	margin-bottom: 20px;
}

.content > div#resume .lists .box_title:after{
	width:177px;
}

.content > div#resume .lists .items .item{
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.content > div#resume .lists .items .item .title{
	padding-bottom: 5px;
	font-size: 18px;
	margin-bottom: 10px;
}

.imagenes {
	background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #AEADB3;
    box-shadow: 1px 1px 2px #CCCCCC;
	margin:0 auto;
    padding: 5px;
	width: 90%;
	display: block;
}

.deck {
	background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #AEADB3;
    box-shadow: 1px 1px 2px #CCCCCC;
	margin-left:35px;
    padding: 5px;
}

.content > div#resume .lists .items .item .subtitle{
	color:#666666;
}

.content > div#resume .lists .items .item .subtitle .date{
	display: inline-block;
	margin-right: 5px;
	font-weight: bold;
}

.content > div#resume .lists .items .item .subtitle .name{
	display: inline-block;
	margin-left: 5px;
}

.content > div#resume .lists .items .item .text{
	margin-top:5px;
	line-height: 18px;
}

.content > div#resume .lists .items .item .subtitle .date_text{
	display: inline-block;
	margin-right: 5px;
}

.content > div#resume .lists .items .item .subtitle i{
	display: inline-block;
	margin-right: 5px;
}

.content > div#resume .lists .items .item .title:after{
	top:6px;
	width:80%;
}

.content > div#resume .employment .box_title:after{
	width:198px;
}

.content > div#resume .skills .box_title:after{
	width:118px;
}

.content > div#resume .skills .item{
	margin-bottom: 10px;
}

.content > div#resume .skills .item .name{
	margin-bottom: 5px;
}

.content > div#resume .skills .section{
	margin-bottom: 20px;
}

.content > div#resume .skills .section .title{
	padding-bottom: 8px;
	font-size: 15px;
	width:100%;
	font-family: 'Lato', sans-serif;
	margin-bottom: 15px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.content > div#resume .skills .section .title i{
	display: inline-block;
	margin-right: 5px;
}

.content > div#resume .skills .section .title:after{
	background: transparent;	
}

.content > div#resume .skills .section .bar_outer{
	height: 20px;
	background: rgba(0, 0, 0, 0.1);
	width: 100%;
}

.content > div#resume .skills .section .bar_inner{
	position: relative;
	height: 20px;
	width:0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.content > div#resume .skills .section .bar_inner .text{
	position: absolute;
	display: none;
	right: 0px;
	top: 0px;
	height: 20px;
	background: rgba(0, 0, 0, 0.1);
	color: #ededed;
	text-shadow: 0 1px 0 #333333;
	line-height: 19px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}

.content > div#resume .skills .section:hover .bar_inner .text{
	color:#ffffff;
}

.content > div#resume .skills .section .bar_inner{
	opacity: 0.65;
}

.content > div#resume .skills .section:hover .bar_inner{
	opacity: 0.8;
}

.content > div#resume .resume_download .box_title:after{
	width: 148px;
}

.content > div#resume .resume_download a.btn{
	width: 100%;
	color:#ffffff;
	padding: 15px;
	display: block;
	text-decoration: none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content > div#resume .resume_download a.btn i{
	margin-right: 15px;
	font-size: 25px;
	float: left;
}

.content > div#resume .resume_download a.btn span{
	float: left;
	display: inline-block;
	font-size: 15px;
	margin-top: 5px;
}

/*
===============================================
			7. Portfolio Page
===============================================
*/

.content > div#portfolio .page_info{
	margin-bottom: 5px;
	line-height: 19px;
	text-align: center;
}

.content > div#portfolio .portfolio_selector{
	list-style-type: none;
	width: 100%;
	float: left;
	margin-bottom: 15px;
	padding: 0;
	text-align: center;
}

.content > div#portfolio .portfolio_selector li{
	display: inline-block;
	margin-right: 10px;
	color:#ffffff;
	padding: 10px;
	cursor: pointer;
	opacity: 0.65;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.content > div#portfolio .portfolio_selector li:hover,
.content > div#portfolio .portfolio_selector li.active{
	opacity: 1;
}

.content > div#portfolio #portfolio_grid{
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	margin-left: 10px;
	margin-top: 5px;
}

.content > div#portfolio #portfolio_grid .mix{
	position: relative;
	display: none;
	opacity: 0;
	overflow: hidden;
	width: 220px;
	height: 170px;
	float: left;
}

.content > div#portfolio #portfolio_grid .mix a{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	overflow: hidden;
}

.content > div#portfolio #portfolio_grid .mix a img{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	opacity: 0.8;
	-webkit-transition: scale;
   	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	-moz-transition: scale;
   	-moz-transition: -webkit-transform 0.3s ease-in-out;
	-o-transition: scale;
   	-o-transition: -webkit-transform 0.3s ease-in-out;
	transition: scale;
   	transition: -webkit-transform 0.3s ease-in-out;
}

.content > div#portfolio #portfolio_grid .mix:hover a img{
	opacity: 1;
   -webkit-transform: scale(1.3,1.3);
   -moz-transform: scale(1.3,1.3);
   -o-transform: scale(1.3,1.3);
   -ms-transform: scale(1.3,1.3);
   transform: scale(1.3,1.3);
}

.content > div#portfolio #portfolio_grid .mix a > div.main{
	position: absolute;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
}

.content > div#portfolio #portfolio_grid .mix a > div.main .inner{
	position: relative;
	width: 100%;
	height: 100%;
}

.content > div#portfolio #portfolio_grid .mix a > div.main .inner i{
	position: absolute;
	padding: 10px;
	font-size:35px;
	top: 50%;
	left:50%;
	margin-top:-10%;
	color:#ffffff;
	text-align: center;
	text-shadow:0 1px 0 #000000;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}

.content > div#portfolio #portfolio_grid .mix a > div.main .inner i.licon{
	margin-left:-60px;
}

.content > div#portfolio #portfolio_grid .mix a > div.main .inner i.ricon{
	margin-left:10px;
}
.content > div#portfolio #portfolio_grid .mix a > div.main .inner i.cicon{
	margin-left:-20px;
}

.content > div#portfolio #portfolio_grid .gap{
	display: inline-block;
	width: 220px;
}

.content > div#portfolio #portfolio_popup{
	display: none;
}

/*
===============================================
			8. Footer
===============================================
*/

.footer{
	text-align:center;
	display: none;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 1.35;
	float: none;
	clear:both;
	background: rgba(0, 0, 0, 0.05);
	padding: 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content > div#home .footer{
	margin-bottom: 0;
}

.content > div#about .footer{
	margin-top:5px;
}

.content > div#portfolio .footer{
	margin-top:8px;
}

.footer a{
	color: #333333 !important;
}

.visible{
	display: block !important;
}

/*
===============================================
			9. Themes
===============================================
*/

body.theme_1 .color,
body.theme_1 .content > div#about .box .title .text,
body.theme_1 .content > div#about .box .personal_details .title .icon,
body.theme_1 .content > div .box_title .text,
body.theme_1 a{
	color: #008ec3;
}

body.theme_1 a.btn{
	color: #ffffff;
}

body.theme_1 .main_menu ul li a.home{
	background: #3C7DC4;
}

body.theme_1 .main_menu ul li a.about{
	background: #3CC4C4;
}

body.theme_1 .main_menu ul li a.resume{
	background: #5A8F29;
}

body.theme_1 .main_menu ul li a.portfolio{
	background: #E86850;
}

body.theme_1 .main_menu ul li a.blog{
	background: #FF8F00;
}

body.theme_1 .content > div .title:after{
	background: #008ec3;
}

body.theme_1 .content > div#portfolio #portfolio_grid .mix a > div .inner i{
	background: #006AB1;
}

body.theme_1 .content > div#about .box .title .icon,
body.theme_1 .content > div .box_title .icon,
body.theme_1 .content > div#about .box.awards .award .date,
body.theme_1 .content > div#portfolio #portfolio_grid .mix a > div .inner i:hover,
body.theme_1 .content > div#resume .skills .section .bar_inner,
body.theme_1 .content > div#about .box.my_services .accordion .item .item_title .item_btn,
body.theme_1 .btn{
	background: #008ec3;
}

body.theme_1 .btn:hover{
	background: #00A7E6;
}

body.theme_1 .content > div#about .box.my_services .accordion .item .item_title .item_btn{
	opacity: 0.8;
	color: #ffffff;
}

body.theme_1 .content > div#about .box.my_services .accordion .item .item_title .item_btn:hover,
body.theme_1 .content > div#about .box.my_services .accordion .item .item_title .item_btn.active{
	opacity: 1;
}

body.theme_1 .content > div#about .awards .award{
	border-top:1px solid #008ec3;
}

body.theme_1 input[type="text"]:focus,
body.theme_1 input[type="email"]:focus,
body.theme_1 textarea:focus{
	border: 1px solid #008ec3;
}

.mobile{
	display: none !important;
}

/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #dde;
	position: relative;
}

.jspDrag
{
	background: #bbd;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #80808d;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #cccccc; }
    .mfp-preloader a:hover {
      color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
    background: rgba(0, 0, 0, 0.6);
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: -44px;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

#portfolio_popup {
    margin: 40px auto;
    position: relative;
    text-align: left;
    z-index: 120;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff !important;
    width: 58%;
}
#portfolio_popup img{
    width: 100%;
}

#portfolio_popup p{
    color: #ffffff;
}

#portfolio_popup .top{
	width: 100%;
	color:#ffffff;
    float: left;
}

#portfolio_popup .bottom{
	padding: 10px;
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	float: left;
}
#portfolio_popup .bottom ul{
	padding-left: 20px;
}
#portfolio_popup .bottom ul li{
    margin-bottom: 10px;
}

#portfolio_popup .bottom .line{
	width: 100%;
}

#portfolio_popup .bottom .line > a{
	display: inline-block;
	float: left;
	margin-top:5px;
}

#portfolio_popup .bottom .share{
	display: inline-block !important;
	margin-left:5px;
}

#portfolio_popup .bottom .share span{
	float: left;
	display: inline-block;
	margin-right: 5px;
	margin-top:5px;
}

#portfolio_popup .bottom .share a{
	display: inline-block;
	float: left;
	margin-right: 5px;
	padding: 5px;
	color:#ffffff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.3);
}

#portfolio_popup .bottom .share a:hover{
	background: rgba(255, 255, 255, 0.5);
}

#portfolio_popup button {
    color: #ffffff;
}

#portfolio_popup .icon-search{
    display: none;
}

#portfolio_popup .video{
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

#portfolio_popup iframe{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mfp-iframe-holder .mfp-close{
    width: 44px;
    height:44px;
    text-align: center;
    padding-right: 0;
}

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;

    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

    -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;

    -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    transform: translateY(0) perspective( 600px ) rotateX( 0 );
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;

    -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}


/*
===============================================
			10. Media Queries
===============================================
*/

/* responsive css */

/* Portrait tablet to landscape and desktop */
@media only screen and (min-width: 768px) and (max-width: 959px) {

	#wrapper{
		width: 750px;
	}

	#wrapper .main_menu{
		width:68px;
	}

	#wrapper .main_menu ul li a{
		width:68px;
		height: 69px;
		font-size: 22px;
	}

	#wrapper .main_menu ul li a i{
		line-height: 69px;
	}

	#wrapper .main_content{
		margin-left: 88px;
		width: 575px;
	}

	#wrapper .main_slider .overlay .name{
		margin-top: 22%;
	}

	#wrapper .main_slider,
	#wrapper .main_slider .overlay{
		height: 325px;
	}

	#wrapper .main_slider img{
		width: 575px;
		height: 325px;
	}

	#wrapper .content > div .jspPane{
		width: 522px !important;
		padding: 10px;
	}

	#wrapper .content > div#home .jspPane{
		padding:0 !important;
		width: auto !important;
	}

	#wrapper .content > div#home .resume_btn,
	#wrapper .content > div#home .cv_download_btn{
		height: 69px;
		line-height: 69px;
		font-size: 18px;
	}

	#wrapper .content > div .left_side,
	#wrapper .content > div .right_side,
	#wrapper .content > div#about .box,
	#wrapper .content > div#about .box.pictures img{
		width: 251px;
	}

	#wrapper .content > div#about .box.awards{
		width: 100%;
	}

	#wrapper .content > div#portfolio #portfolio_grid .mix{
		width: 254px;
		height: 196px;
	}

	#wrapper .content > div#about .box .personal_details .title .icon i{
		width: 8px;
		font-size: 13px;
	}

}

/* Landscape phone to portrait tablet */
@media only screen and (min-width: 480px) and (max-width: 767px) {

	#wrapper{
		width: 470px;
		height: 100%;
	}

	#wrapper .main_menu{
		width: 100%;
		margin-top:0;
	}

	#wrapper .main_menu ul li{
		display: inline;
	}

	#wrapper .main_menu ul li a{
		width: 78.33333333px;
		height: 69px;
		font-size: 22px;
		float: left;
	}

	.main_menu ul li a{
		display: inline-block;
	}

	#wrapper .main_menu ul li a i{
		line-height: 69px;
	}

	#wrapper .main_content{
		margin-left: 0;
		margin-top:20px;
		width: 382px;
		top: 69px;
	}

	#wrapper .main_slider .overlay .name{
		margin-top: 21%;
		font-size: 30px;
	}

	#wrapper .main_slider .overlay .description{
		font-size: 14px;
	}

	#wrapper .main_slider,
	#wrapper .main_slider .overlay{
		height: 219px;
	}

	#wrapper .main_slider img{
		width: 100%;
		height: 219px;
	}

	#wrapper .content > div{
		margin-top:0 !important;
		width: 382px !important;
	}

	#wrapper .content > div .jspPane{
		padding: 10px !important;
		width: 346px !important;
	}

	#wrapper .content > div#home .jspPane{
		padding:0 !important;
		width: auto !important;
	}

	#wrapper .content > div#home{
		padding-top:0;
	}

	#wrapper .content > div#home .resume_btn,
	#wrapper .content > div#home .cv_download_btn{
		height: 69px;
		line-height: 69px;
		font-size: 14px;
	}

	#wrapper .content > div .left_side,
	#wrapper .content > div .right_side,
	#wrapper .content > div#about .box,
	#wrapper .content > div#about .box.pictures img{
		width: 100%;
	}

	#wrapper .content > div .left_side{
		margin-right: 0;
	}

	#wrapper .content > div#about .box.awards{
		width: 100%;
	}

	#wrapper .content > div#portfolio #portfolio_grid .mix{
		width: 254px;
		height: 196px;
	}

	#wrapper .content > div#about .box .personal_details .title .icon i{
		width: 8px;
		font-size: 13px;
	}

	#wrapper .content > div#portfolio .portfolio_selector{
		margin:0;
	}

	#wrapper .content > div#portfolio .portfolio_selector li{
		margin-bottom: 10px;
		margin-right: 2px;
		width: 100%;
	    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
	    box-sizing: border-box;         /* Opera/IE 8+ */
	}

	#wrapper .content > div#portfolio #portfolio_grid{
		width: 254px;
		margin: 0 auto;
		display: block;
		float: none;
	}

}

/* Landscape phones and down */
@media only screen and (max-width: 479px) {

	#wrapper{
		/*width: 300px;*/
		width: 98%;
		height: 100%;
	}

	#wrapper .main_menu{
		text-align: center;
		width: 100%;
		margin:10px 0;
	}

	#wrapper .main_menu ul li{
		display: inline;
	}

	#wrapper .main_menu ul li a{
		width: 50px;
		height: 50px;
		font-size: 20px;
		/*float: left;*/
	}

	#wrapper .main_menu ul li a i{
		width: 50px;
	}

	.main_menu ul li a{
		display: inline-block;
	}

	#wrapper .main_menu ul li a i{
		line-height: 50px;
	}

	#wrapper .main_content{
		margin-left: 0;
		margin-top: 100px;
		width: 99.1%;
		top: 69px;
	}

	#wrapper .main_slider .overlay .name{
		margin-top: 20%;
		font-size: 24px;
	}

	#wrapper .main_slider .overlay .description{
		font-size: 14px;
		line-height: 18px;
	}

	#wrapper .main_slider,
	#wrapper .main_slider .overlay{
		height: 182px;
		width: 100%;
	}

	#wrapper .main_slider img{
		width: 100%;
		height: 182px;
	}

	#wrapper .content > div{
		/*width: 300px !important;*/
		width: 98%!important;
		margin-top:0;
	}

	#wrapper .content > div#home{
		padding-top:0;
	}

	#wrapper .content > div .jspPane{
		padding: 10px !important;
		/*width: 264px !important;*/
		width: 90%!important;
	}

	#wrapper .content > div#home .jspPane{
		padding:0 !important;
		width: auto !important;
	}

	#wrapper .content > div#home .resume_btn,
	#wrapper .content > div#home .cv_download_btn{
		height: 49px;
		line-height: 49px;
		font-size: 14px;
		width: 100%;
	}

	#wrapper .content > div .left_side,
	#wrapper .content > div .right_side,
	#wrapper .content > div#about .box,
	#wrapper .content > div#about .box.pictures img{
		width: 100%;
	}

	#wrapper .content > div .left_side{
		margin-right: 0;
	}

	#wrapper .content > div#about .box.awards{
		width: 100%;
	}

	#wrapper .content > div#portfolio #portfolio_grid{
		width: 100%;
		display: block;
		float: left;
		margin-left: 0;
	}

	#wrapper .content > div#portfolio #portfolio_grid .mix{
		width: 100%;
		height: 201px;
	}

	#wrapper .content > div#about .box .personal_details .title .icon i{
		width: 8px;
		font-size: 13px;
	}

	#wrapper .content > div#portfolio .portfolio_selector{
		margin:0;
	}

	#wrapper .content > div#portfolio .portfolio_selector li{
		margin-bottom: 10px;
		margin-right: 2px;
		width: 100%;
	    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
	    box-sizing: border-box;         /* Opera/IE 8+ */
	}

}

.botones{text-align:center;margin:10px 0 20px 0;}
.botones i{font-size:1.3rem;margin-right:5px;}
.boton{border-radius: 5px; padding: 10px 15px;margin:0 10px;line-height: 3em;border:2px solid #ff6500;background-color:transparent;color:#ff6500!important;}
.boton:hover{ background-color: #ff6500;color:#fff!important;text-decoration:none;border:2px solid #ff6500 }

.v360{padding-left: 25px;display: inline-block;line-height: 20px;}
.v360{background: url("images/sprits-buttons.png") 0 -40px no-repeat !important;}
.tooltip {position: relative;font-size: 0.9em;line-height: 1.4em;cursor: pointer;font-weight: 100;z-index: 2;}
.tooltip::before {content: attr(aria-label);visibility: hidden;width: 250px;background-color: #333;color: #fff;text-align: center;border-radius: 5px;padding: 10px;position: absolute;opacity: 0;transition: opacity 0.3s;}
.tooltip-icon {background-color: #ffc107; border-radius: 2px; padding: 5px; display: inline-block;}
.tooltip[data-direction="top"]::before {bottom: 125%;left: 50%;transform: translateX(-50%);}
.tooltip[data-direction="bottom"]::before {top: 125%;left: 50%;transform: translateX(-50%);}
.tooltip[data-direction="left"]::before {top: 50%;right: 125%;transform: translateY(-50%);}
.tooltip[data-direction="right"]::before {top: 50%;left: 125%;transform: translateY(-50%);}
.tooltip:hover::before,.tooltip:focus::before {visibility: visible;opacity: 1;}
.tooltip:focus {outline: none;}
.table {width: 100%;max-width: 100%;margin-bottom: 1rem;background-color: transparent;font-size:15px;border-bottom: 1px solid #008ec3;}
.table td, .table th {padding: 0.5rem;vertical-align: middle;border-top: 1px solid #008ec3;}
.activities{font-size:0.8rem}
.footerTable{gap:3px 20px; font-size: 1.1em; width: 100%; display:flex;flex-wrap:wrap; justify-content: center;margin-bottom:50px;}
nm{display:inline}
m{display:none}
@media only screen and (max-width: 479px) {
	.table{font-size:14px}
	m{display:inline}
	nm{display:none}
	.table td, .table th {padding: 0.3rem}
	.boton{margin:0 5px;}
	.imagenes {width: 99%;}
	.text span{display: block;font-size:0.9rem;line-height:1.3rem;}
	.content > div .box_title .text{margin-top:0}
}

/* Ship inner pages: keep 360, itinerary and gallery content aligned. */
body.page-ship #wrapper .content > div#resume .jspPane,
body.page-ship #wrapper .content > div#virtual-tour .jspPane,
body.page-ship #wrapper .content > div#portfolio .jspPane{
	width:calc(100% - 52px) !important;
	padding:26px !important;
	box-sizing:border-box !important;
}

body.page-ship #wrapper .content > div#resume .imagenes,
body.page-ship #wrapper .content > div#resume .table,
body.page-ship #wrapper .content > div#resume .footerTable,
body.page-ship #wrapper .content > div#resume .botones,
body.page-ship #wrapper .content > div#virtual-tour .iframe-360,
body.page-ship #wrapper .content > div#portfolio #portfolio_grid{
	width:100% !important;
	max-width:100% !important;
	margin-left:0 !important;
	margin-right:0 !important;
	box-sizing:border-box !important;
}

body.page-ship #wrapper .content > div#resume .imagenes{
	display:block !important;
	height:auto !important;
	border-radius:0 !important;
}

body.page-ship #wrapper .content > div#virtual-tour .iframe-360{
	margin-top:18px !important;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid{
	display:grid !important;
	grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
	gap:18px !important;
	padding:0 !important;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix{
	width:100% !important;
	margin:0 !important;
}

body.page-ship .content > div#resume .lists .box_title.title .icon i{
	display:inline-flex !important;
	align-items:center !important;
	justify-content:center !important;
	width:100% !important;
	height:100% !important;
	color:#fff !important;
	font-size:18px !important;
	line-height:1 !important;
}

@media only screen and (min-width: 768px) and (max-width: 1020px){
	body.page-ship #wrapper .content > div#resume .jspPane,
	body.page-ship #wrapper .content > div#virtual-tour .jspPane,
	body.page-ship #wrapper .content > div#portfolio .jspPane{
		width:100% !important;
		padding:24px !important;
	}

	body.page-ship #wrapper .content > div#portfolio #portfolio_grid{
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
	}

	body.page-ship #wrapper .content > div#virtual-tour .iframe-360{
		margin-top:18px !important;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship #wrapper .content > div#resume .jspPane,
	body.page-ship #wrapper .content > div#virtual-tour .jspPane,
	body.page-ship #wrapper .content > div#portfolio .jspPane{
		width:100% !important;
		padding:16px !important;
	}

	body.page-ship #wrapper .content > div#portfolio #portfolio_grid{
		grid-template-columns:1fr !important;
		gap:14px !important;
	}

	body.page-ship #wrapper .content > div#virtual-tour .iframe-360{
		margin-top:18px !important;
	}
}

@media only screen and (max-width: 767px){
	html,
	body.page-ship{
		min-height:100%;
		height:auto !important;
		overflow-x:hidden;
	}

	body.page-ship{
		padding:0;
		background:#f7f9fc !important;
		color:var(--nemo-ink);
	}

	body.page-ship #wrapper{
		width:100% !important;
		height:auto !important;
		min-height:100vh;
		padding:0 12px 104px;
		box-sizing:border-box;
		overflow:visible !important;
	}

	body.page-ship #wrapper .main_menu{
		position:sticky;
		top:0;
		z-index:8000;
		width:auto !important;
		min-height:0;
		margin:0 -12px 14px !important;
		padding:24px 20px 18px !important;
		display:flex !important;
		align-items:center;
		justify-content:space-between;
		border:0;
		border-radius:0;
		background:rgba(247,249,252,0.96);
		box-shadow:none;
		backdrop-filter:blur(16px);
		opacity:1 !important;
	}

	body.page-ship .main_menu .site_logo{
		width:auto;
		margin:0 !important;
		text-align:left;
	}

	body.page-ship .main_menu .site_logo img{
		width:168px !important;
		height:auto !important;
		padding-top:0 !important;
		display:block;
	}

	.mobile_menu_toggle{
		width:58px;
		height:58px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		border:1px solid rgba(8,47,73,0.1);
		border-radius:999px;
		background:#fff;
		color:var(--nemo-navy);
		font-size:24px;
		box-shadow:0 12px 30px rgba(8,47,73,0.08);
		cursor:pointer;
	}

	body.page-ship .main_menu ul{
		position:absolute;
		top:calc(100% - 4px);
		left:12px;
		right:12px;
		z-index:8100;
		max-height:calc(100vh - 126px);
		padding:14px;
		display:none !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:8px !important;
		overflow:auto;
		border:1px solid rgba(8,47,73,0.08);
		border-radius:18px;
		background:rgba(255,255,255,0.98);
		box-shadow:0 24px 60px rgba(8,47,73,0.18);
	}

	body.mobile_nav_open.page-ship .main_menu ul{
		display:grid !important;
	}

	body.page-ship .main_menu ul li.nav_group_label{
		grid-column:1 / -1;
		margin:12px 4px 2px !important;
	}

	body.page-ship .main_menu ul li.nav_group_label:first-child{
		margin-top:0 !important;
	}

	body.page-ship #wrapper .main_menu ul li a,
	body.page-ship #wrapper .main_menu ul li .ship_link{
		height:48px !important;
		border-radius:10px;
	}

	body.page-ship #wrapper .main_content{
		width:100% !important;
		height:auto !important;
		min-height:0;
		margin:0 !important;
		position:relative;
		top:auto !important;
	}

	body.page-ship #wrapper .content{
		width:100% !important;
		height:auto !important;
		min-height:0;
		position:relative;
		overflow:visible;
	}

	body.page-ship #wrapper .content > div#home.pt-page-current{
		position:relative;
		height:auto !important;
		min-height:0;
		margin:0;
		padding:0;
		overflow:visible;
		transform:none;
	}

	body.page-ship #wrapper .content > div#home .jspContainer,
	body.page-ship #wrapper .content > div#home .jspPane{
		width:100% !important;
		height:auto !important;
		min-height:0;
		overflow:visible !important;
		padding:0 !important;
		position:relative !important;
	}

	body.page-ship .main_slider{
		--mobile-hero-height:clamp(590px, 158vw, 650px);
		--mobile-features-height:516px;
		width:100%;
		height:calc(var(--mobile-hero-height) + 24px + var(--mobile-features-height) + 24px + 108px) !important;
		min-height:0;
		max-height:none;
		margin:0;
		position:relative;
		overflow:visible;
		border-radius:0;
		background:transparent;
		box-shadow:none;
	}

	body.page-ship .main_slider::after{
		inset:0 0 auto 0;
		height:var(--mobile-hero-height);
		border-radius:18px;
		background:linear-gradient(180deg, rgba(6,24,48,0.5), rgba(6,24,48,0.18) 42%, rgba(6,24,48,0.72));
	}

	body.page-ship .main_slider img{
		width:100% !important;
		height:var(--mobile-hero-height) !important;
		min-height:0;
		display:block;
		object-fit:cover;
		object-position:center;
		border-radius:18px;
		box-shadow:0 18px 46px rgba(8,47,73,0.16);
	}

	body.page-nemo3 .main_slider img{
		object-position:center;
	}

	body.page-ship .hero_panel{
		top:90px;
		left:20px;
		width:calc(100% - 40px);
	}

	body.page-ship .hero_eyebrow{
		padding:11px 16px;
		border-radius:999px;
		background:rgba(255,255,255,0.14);
		color:#fff;
		font-size:11px;
		line-height:1;
		letter-spacing:1.6px;
		text-shadow:none;
		backdrop-filter:blur(8px);
		opacity:1;
	}

	body.page-ship .hero_title{
		margin-top:34px;
		padding-bottom:30px;
		position:relative;
		font-size:54px;
		line-height:0.95;
		font-weight:850;
		text-shadow:0 12px 28px rgba(0,0,0,0.38);
	}

	body.page-ship .hero_title::after{
		content:"";
		position:absolute;
		left:0;
		bottom:0;
		width:68px;
		height:5px;
		border-radius:999px;
		background:var(--nemo-teal);
	}

	body.page-ship .hero_subtitle{
		margin-top:28px;
		font-size:26px;
		line-height:1.35;
		font-weight:750;
		text-shadow:0 6px 22px rgba(0,0,0,0.42);
	}

	body.page-ship .hero_stats{
		margin-top:36px;
		gap:18px;
		align-items:center;
	}

	body.page-ship .hero_stats > span{
		gap:12px;
		text-shadow:0 6px 18px rgba(0,0,0,0.48);
	}

	body.page-ship .hero_stats > span + span{
		padding-left:18px;
		border-left:1px solid rgba(255,255,255,0.28);
	}

	body.page-ship .hero_stats i{
		width:48px !important;
		height:48px !important;
		min-width:48px;
		background:rgba(255,255,255,0.16);
		font-size:21px;
	}

	body.page-ship .hero_stats strong{
		font-size:18px;
		letter-spacing:0.2px;
	}

	body.page-ship .hero_stats small{
		display:block;
		margin-top:7px;
		font-size:12px;
		color:rgba(255,255,255,0.86);
	}

	body.page-ship .hero_actions{
		margin-top:36px;
		display:grid;
		grid-template-columns:1fr 1fr;
		gap:14px;
	}

	body.page-ship .hero_actions a{
		min-height:68px;
		padding:0 18px;
		justify-content:center;
		border-radius:24px;
		font-size:16px;
		line-height:1.1;
		font-weight:850;
		white-space:normal;
	}

	body.page-ship .hero_actions a.primary{
		background:linear-gradient(135deg, #0284c7, #0f5fbb);
		box-shadow:0 18px 34px rgba(2,132,199,0.34);
	}

	body.page-ship .hero_actions a.primary::after{
		content:"\f061";
		margin-left:14px;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-weight:900;
	}

	body.page-ship .hero_actions a.secondary{
		border:2px solid rgba(255,255,255,0.86);
		background:rgba(4,20,38,0.16);
		box-shadow:none;
	}

	body.page-ship .hero_actions a.secondary::before{
		content:"\f073";
		margin-right:10px;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-weight:400;
	}

	body.page-ship .hero_features{
		position:absolute;
		top:calc(var(--mobile-hero-height) + 24px);
		left:8px;
		right:8px;
		bottom:auto;
		height:var(--mobile-features-height);
		padding:0;
		display:grid;
		grid-template-columns:repeat(2, minmax(0, 1fr));
		gap:16px;
		background:transparent;
	}

	body.page-ship .hero_feature{
		min-height:210px;
		padding:28px 24px 24px;
		display:block;
		position:relative;
		border:1px solid rgba(8,47,73,0.06);
		border-radius:18px;
		background:#fff;
		box-shadow:0 18px 38px rgba(8,47,73,0.1);
	}

	body.page-ship .hero_feature::after{
		content:"\f105";
		position:absolute;
		top:55px;
		right:24px;
		color:var(--nemo-navy);
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-size:26px;
		font-weight:900;
		line-height:1;
	}

	body.page-ship .hero_feature i{
		width:58px !important;
		height:58px !important;
		margin-bottom:24px;
		border-radius:50%;
		background:#f0f5fa;
		color:var(--nemo-blue);
		font-size:28px;
	}

	body.page-ship .hero_feature strong{
		font-size:19px;
		line-height:1.18;
		color:var(--nemo-navy);
	}

	body.page-ship .hero_feature span{
		display:block;
		margin-top:10px;
		color:var(--nemo-ink);
		font-size:16px;
		line-height:1.42;
		font-weight:500;
	}

	body.page-ship .hero_trust_bar{
		position:absolute;
		top:calc(var(--mobile-hero-height) + 24px + var(--mobile-features-height) + 24px);
		left:8px;
		right:8px;
		bottom:auto;
		min-height:108px;
		padding:22px 28px;
		grid-template-columns:1fr;
		border-radius:18px;
		background:linear-gradient(135deg, #082f5c, #061d36);
		box-shadow:0 18px 40px rgba(8,47,73,0.2);
	}

	body.page-ship .hero_trust_bar span{
		grid-template-columns:54px minmax(0, 1fr) 18px;
		column-gap:18px;
	}

	body.page-ship .hero_trust_bar span::after{
		content:"\f105";
		align-self:center;
		color:rgba(255,255,255,0.95);
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-size:24px;
		font-weight:900;
	}

	body.page-ship .hero_trust_bar span:nth-child(n+2){
		display:none;
	}

	body.page-ship .hero_trust_bar i{
		width:48px;
		height:48px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		font-size:28px;
	}

	body.page-ship .hero_trust_bar strong{
		font-size:21px;
		line-height:1.15;
	}

	body.page-ship .hero_trust_bar small{
		display:block;
		margin-top:8px;
		font-size:16px;
		line-height:1.3;
		color:rgba(255,255,255,0.88);
	}

	body.page-ship .main_content > .site_footer{
		display:none !important;
	}

	.mobile_bottom_nav{
		position:fixed;
		left:0;
		right:0;
		bottom:0;
		z-index:9000;
		height:78px;
		padding:8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
		display:grid;
		grid-template-columns:repeat(5, minmax(0, 1fr));
		gap:0;
		box-sizing:content-box;
		border-top:1px solid rgba(8,47,73,0.08);
		background:rgba(255,255,255,0.96);
		box-shadow:0 -18px 40px rgba(8,47,73,0.12);
		backdrop-filter:blur(16px);
	}

	.mobile_bottom_nav a{
		min-width:0;
		display:flex;
		flex-direction:column;
		align-items:center;
		justify-content:center;
		gap:7px;
		color:#27364b;
		font-size:12px;
		line-height:1;
		font-weight:800;
		text-align:center;
	}

	.mobile_bottom_nav a:hover{
		text-decoration:none;
	}

	.mobile_bottom_nav i{
		width:28px;
		height:28px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		color:#27364b;
		font-size:22px;
	}

	.mobile_bottom_nav a.active,
	.mobile_bottom_nav a.active i{
		color:#075fae;
	}
}

/*
===============================================
			Nemo Visual Refresh 2026
===============================================
*/

:root{
	--nemo-navy:#082f49;
	--nemo-blue:#075985;
	--nemo-teal:#0891b2;
	--nemo-coral:#f9735b;
	--nemo-ink:#17324d;
	--nemo-muted:#5d7186;
	--nemo-line:rgba(15, 77, 112, 0.16);
	--nemo-glass:rgba(255,255,255,0.9);
	--nemo-soft:rgba(237,248,252,0.92);
}

body.page-ship,
body.page-tool{
	color:var(--nemo-ink);
	font-family:'Open Sans', Helvetica, Arial, sans-serif;
	font-size:15px;
	line-height:1.55;
	background-color:#d7edf6 !important;
	background-position:center center !important;
}

body.page-ship{
	background:#f5f7fb !important;
}

body.page-ship::before,
body.page-tool::before{
	content:"";
	position:fixed;
	inset:0;
	z-index:-1;
	background:
		linear-gradient(90deg, rgba(3,26,42,0.55), rgba(255,255,255,0.14) 38%, rgba(3,26,42,0.28)),
		linear-gradient(180deg, rgba(224,244,252,0.72), rgba(225,245,250,0.38));
	pointer-events:none;
}

body.page-ship::before{
	display:none;
}

body.page-tool::before{
	background:
		linear-gradient(90deg, rgba(224,244,252,0.94), rgba(255,255,255,0.55) 52%, rgba(14,92,122,0.15)),
		linear-gradient(180deg, rgba(231,248,253,0.95), rgba(222,241,247,0.68));
}

body.page-ship #wrapper,
body.page-tool #wrapper{
	width:min(1240px, calc(100% - 48px));
	overflow:visible;
	padding-top:22px;
	position:relative;
}

body.page-ship #wrapper{
	display:grid;
	width:min(1120px, calc(100% - 40px));
	grid-template-columns:188px minmax(0, 1fr);
	grid-template-areas:
		"nav main";
	column-gap:0;
	row-gap:0;
	align-items:start;
}

body.page-tool #wrapper{
	display:grid;
	width:min(1120px, calc(100% - 40px));
	grid-template-columns:188px minmax(0, 1fr);
	grid-template-areas:
		"nav main";
	column-gap:0;
	row-gap:0;
	align-items:start;
}

.site_logo{
	grid-area:logo;
	margin-bottom:18px;
}

.site_logo img{
	width:260px;
	max-width:74vw;
	height:auto;
	padding-top:0 !important;
	filter:drop-shadow(0 12px 20px rgba(8,47,73,0.16));
}

.page-ship .main_menu{
	width:178px;
	margin-top:14px;
	opacity:0;
}

.page-ship .main_menu{
	grid-area:nav;
	float:none;
	width:100%;
	min-height:calc(100vh - 40px);
	max-height:none;
	margin-top:0;
	padding:22px 20px;
	display:flex;
	flex-direction:column;
	box-sizing:border-box;
	border:1px solid rgba(255,255,255,0.58);
	border-right:0;
	border-radius:14px 0 0 14px;
	background:linear-gradient(180deg, rgba(249,252,255,0.98), rgba(238,245,251,0.95));
	box-shadow:0 22px 52px rgba(8,47,73,0.16);
	backdrop-filter:blur(16px);
}

.page-ship .main_menu .site_logo{
	grid-area:auto;
	width:100%;
	margin:0 0 22px;
	text-align:left;
}

.page-ship .main_menu .site_logo img{
	width:138px;
	max-width:100%;
	filter:none;
}

.page-tool .main_menu{
	grid-area:nav;
	float:none;
	width:100%;
	margin-top:0;
	opacity:0;
	padding:22px 20px;
	box-sizing:border-box;
	border:1px solid rgba(255,255,255,0.58);
	border-right:0;
	border-radius:14px 0 0 14px;
	background:linear-gradient(180deg, rgba(249,252,255,0.98), rgba(238,245,251,0.95));
	box-shadow:0 22px 52px rgba(8,47,73,0.16);
	backdrop-filter:blur(16px);
}

.page-tool .main_menu .site_logo{
	grid-area:auto;
	width:100%;
	margin:0 0 22px;
	text-align:left;
}

.page-tool .main_menu .site_logo img{
	width:138px;
	max-width:100%;
	filter:none;
}

.page-ship .main_menu ul li{
	margin-bottom:10px;
}

.page-ship .main_menu ul li a{
	width:100%;
	height:62px;
	padding:0 14px;
	display:flex;
	align-items:center;
	gap:12px;
	box-sizing:border-box;
	border:1px solid rgba(255,255,255,0.48);
	border-radius:8px;
	background:rgba(255,255,255,0.72) !important;
	color:var(--nemo-navy) !important;
	line-height:1;
	font-size:14px;
	font-weight:750;
	letter-spacing:0;
	text-align:left;
	text-shadow:none;
	opacity:1;
	box-shadow:0 12px 30px rgba(8,47,73,0.12);
	backdrop-filter:blur(14px);
}

.page-ship .main_menu ul li a i{
	float:none;
	width:28px !important;
	min-width:28px;
	height:28px;
	line-height:28px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:8px;
	background:rgba(8,145,178,0.12);
	color:var(--nemo-teal);
	font-size:16px;
}

.page-ship .main_menu ul li a span{
	display:inline-block;
	white-space:normal;
}

.page-ship .main_menu ul li a:hover,
.page-ship .main_menu ul li a.active{
	text-decoration:none;
	transform:translateY(-2px);
	border-color:rgba(8,145,178,0.36);
	background:rgba(255,255,255,0.95) !important;
	box-shadow:0 18px 35px rgba(8,47,73,0.18);
}

.page-ship .main_menu ul li a.active i{
	background:linear-gradient(135deg, var(--nemo-teal), var(--nemo-blue));
	color:#fff;
}

.page-ship .main_menu ul li{
	margin-bottom:7px;
}

.page-ship .main_menu ul li.nav_group_label{
	margin:15px 4px 8px;
	color:rgba(23,50,77,0.62);
	font-size:9px;
	font-weight:850;
	line-height:1;
	text-transform:uppercase;
	letter-spacing:1px;
}

.page-ship .main_menu ul li.nav_group_label:first-child{
	margin-top:0;
}

.page-ship .main_menu ul li a,
.page-ship .main_menu ul li .ship_link{
	width:100%;
	height:36px;
	padding:0 10px;
	display:flex;
	align-items:center;
	gap:10px;
	box-sizing:border-box;
	border:1px solid transparent;
	border-radius:8px;
	background:transparent !important;
	color:var(--nemo-navy) !important;
	line-height:1;
	font-size:11px;
	font-weight:780;
	letter-spacing:0;
	text-align:left;
	text-shadow:none;
	box-shadow:none;
	backdrop-filter:none;
}

.page-ship .main_menu ul li a i,
.page-ship .main_menu ul li .ship_link i{
	float:none;
	width:22px !important;
	min-width:22px;
	height:22px;
	line-height:22px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:8px;
	background:rgba(8,145,178,0.12);
	color:var(--nemo-teal);
	font-size:11px;
}

.page-ship .main_menu ul li a span,
.page-ship .main_menu ul li .ship_link span{
	display:inline-block;
	white-space:normal;
}

.page-ship .main_menu ul li a:hover,
.page-ship .main_menu ul li a.active{
	transform:none;
	border-color:rgba(8,145,178,0.22);
	background:rgba(255,255,255,0.92) !important;
	box-shadow:0 10px 24px rgba(8,47,73,0.1);
}

.page-ship .main_menu ul li a.active i{
	background:linear-gradient(135deg, var(--nemo-teal), var(--nemo-blue));
	color:#fff;
}

.page-ship .main_menu ul li .ship_link{
	cursor:default;
}

.page-ship .main_menu ul li a.ship_link{
	cursor:pointer;
}

.page-ship .main_menu ul li .ship_link.active_ship{
	border-color:rgba(255,255,255,0.2);
	background:linear-gradient(135deg, var(--nemo-navy), var(--nemo-blue)) !important;
	color:#fff !important;
	box-shadow:0 14px 30px rgba(8,47,73,0.22);
}

.page-ship .main_menu ul li .ship_link.active_ship i{
	background:rgba(255,255,255,0.18);
	color:#fff;
}

.page-ship .main_menu ul li a.tool_link i{
	background:rgba(249,115,91,0.14);
	color:var(--nemo-coral);
}

.page-tool .main_menu ul{
	display:block;
	width:100%;
	list-style:none;
	padding:0;
	margin:0;
}

.page-tool .main_menu ul li{
	display:block;
	margin-bottom:7px;
}

.page-tool .main_menu ul li.nav_group_label{
	margin:16px 4px 8px;
	color:rgba(23,50,77,0.62);
	font-size:11px;
	font-weight:850;
	line-height:1;
	text-transform:uppercase;
	letter-spacing:1px;
}

.page-tool .main_menu ul li.nav_group_label:first-child{
	margin-top:0;
}

.page-tool .main_menu ul li a,
.page-tool .main_menu ul li .ship_link,
.page-tool .main_menu ul li .tool_link{
	width:100%;
	height:46px;
	padding:0 10px;
	display:flex;
	align-items:center;
	gap:10px;
	box-sizing:border-box;
	border:1px solid transparent;
	border-radius:8px;
	background:transparent !important;
	color:var(--nemo-navy) !important;
	line-height:1;
	font-size:13px;
	font-weight:780;
	letter-spacing:0;
	text-align:left;
	text-shadow:none;
	box-shadow:none;
	backdrop-filter:none;
	opacity:1;
}

.page-tool .main_menu ul li a i,
.page-tool .main_menu ul li .ship_link i,
.page-tool .main_menu ul li .tool_link i{
	float:none;
	width:26px !important;
	min-width:26px;
	height:26px;
	line-height:26px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:8px;
	background:rgba(8,145,178,0.12);
	color:var(--nemo-teal);
	font-size:14px;
}

.page-tool .main_menu ul li a span,
.page-tool .main_menu ul li .ship_link span,
.page-tool .main_menu ul li .tool_link span{
	display:inline-block;
	white-space:normal;
}

.page-tool .main_menu ul li a:hover{
	transform:none;
	text-decoration:none;
	border-color:rgba(8,145,178,0.22);
	background:rgba(255,255,255,0.92) !important;
	box-shadow:0 10px 24px rgba(8,47,73,0.1);
}

.page-tool .main_menu ul li a.tool_link i,
.page-tool .main_menu ul li .tool_link i{
	background:rgba(249,115,91,0.14);
	color:var(--nemo-coral);
}

.page-tool .main_menu ul li .active_tool{
	border-color:rgba(255,255,255,0.2);
	background:linear-gradient(135deg, var(--nemo-navy), var(--nemo-blue)) !important;
	color:#fff !important;
	box-shadow:0 14px 30px rgba(8,47,73,0.22);
	cursor:default;
}

.page-tool .main_menu ul li .active_tool i{
	background:rgba(255,255,255,0.18);
	color:#fff;
}

.page-ship .main_content{
	grid-area:main;
	position:relative;
	float:none;
	width:100%;
	min-width:0;
	margin:0;
	inset:auto;
}

.page-ship .content > div#home{
	margin-top:0;
}

.page-tool .main_content{
	grid-area:main;
	position:relative;
	float:none;
	width:100%;
	min-width:0;
	margin:0;
}

.page-ship .content > div:not(#home),
.page-tool .content > div{
	margin-top:0;
	background:var(--nemo-glass);
	border:1px solid rgba(255,255,255,0.62);
	border-radius:8px;
	box-shadow:0 30px 70px rgba(8,47,73,0.18);
	backdrop-filter:blur(16px);
}

.page-ship .content > div .jspPane,
.page-tool .content > div .jspPane{
	width:calc(100% - 52px) !important;
	padding:26px !important;
}

.page-ship .content > div#virtual-tour .jspPane,
.page-availability .content > div#virtual-tour .jspPane{
	min-height:100%;
	display:flex;
	flex-direction:column;
	box-sizing:border-box;
}

.page-ship .content > div .title,
.page-tool .content > div .title{
	border-bottom:0;
	color:var(--nemo-navy);
	font-size:25px;
	font-weight:780;
	line-height:1.15;
	letter-spacing:0;
	text-transform:none;
}

.page-ship .content > div .title:after,
.page-tool .content > div .title:after{
	background:linear-gradient(90deg, var(--nemo-teal), var(--nemo-coral));
	height:2px;
	width:118px;
	top:16px;
}

.page-ship .main_slider{
	--hero-bottom-space:230px;
	--hero-trust-height:74px;
	height:calc(100vh - 40px);
	min-height:620px;
	max-height:none;
	border-radius:0 14px 0 0;
	background:#fff;
	box-shadow:0 22px 52px rgba(8,47,73,0.18);
	overflow:hidden;
}

.page-ship .content > div#home .main_slider{
	margin-bottom:0;
}

.page-ship .content > div#home .jspPane{
	width:100% !important;
	padding:0 !important;
}

.page-ship .main_slider::after{
	content:"";
	position:absolute;
	inset:0 0 var(--hero-bottom-space) 0;
	z-index:120;
	display:block;
	background:linear-gradient(90deg, rgba(6,31,56,0.68), rgba(6,31,56,0.22) 36%, rgba(6,31,56,0.02) 62%);
	pointer-events:none;
}

.page-ship .main_slider img{
	width:100%;
	height:calc(100% - var(--hero-bottom-space));
	object-fit:cover;
	object-position:center;
}

.hero_panel{
	position:absolute;
	top:78px;
	left:42px;
	z-index:150 !important;
	width:min(430px, calc(100% - 84px));
	color:#fff;
}

.hero_eyebrow{
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:0;
	border-radius:8px;
	background:transparent;
	border:0;
	color:#fff;
	font-size:11px;
	font-weight:900;
	text-transform:uppercase;
	letter-spacing:1.4px;
	text-shadow:0 3px 14px rgba(0,0,0,0.58);
	opacity:0.82;
}

.hero_title{
	max-width:430px;
	margin-top:58px;
	font-family:inherit;
	font-size:54px;
	line-height:1;
	font-weight:850;
	letter-spacing:0;
	text-shadow:0 12px 34px rgba(0,0,0,0.42);
}

.hero_subtitle{
	margin-top:12px;
	color:rgba(255,255,255,0.94);
	font-size:17px;
	line-height:1.35;
	font-weight:750;
	text-shadow:0 3px 16px rgba(0,0,0,0.45);
}

.hero_panel p{
	max-width:390px;
	margin:22px 0 30px;
	color:#fff;
	font-size:18px;
	line-height:1.35;
	font-weight:850;
	text-shadow:0 3px 14px rgba(0,0,0,0.58);
}

.hero_actions{
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	margin-top:26px;
}

.hero_actions a,
.content > div#home .cv_download_btn,
.content > div#virtual-tour .cv_download_btn{
	border-radius:999px;
	font-weight:800;
	letter-spacing:0;
	text-decoration:none;
}

.hero_actions a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:38px;
	padding:0 20px;
	border:1px solid rgba(255,255,255,0.54);
	box-sizing:border-box;
}

.hero_actions a.primary{
	background:#e95420;
	color:#fff !important;
	box-shadow:0 16px 34px rgba(233,84,32,0.28);
}

.hero_actions a.secondary{
	background:rgba(255,255,255,0.08);
	color:#fff !important;
	backdrop-filter:blur(3px);
}

.hero_actions a:hover{
	transform:translateY(-2px);
	text-decoration:none;
}

.hero_stats{
	display:flex;
	align-items:baseline;
	gap:24px;
	flex-wrap:nowrap;
	margin-top:24px;
	white-space:nowrap;
}

.hero_stats > span{
	display:inline-flex;
	align-items:center;
	gap:10px;
	min-width:auto;
	padding:0;
	border:0;
	border-radius:0;
	background:transparent;
	color:#fff;
	font-size:12px;
	font-weight:850;
	line-height:1.1;
	letter-spacing:0.4px;
	box-shadow:none;
	text-shadow:0 3px 14px rgba(0,0,0,0.62);
}

.hero_stats > span + span{
	padding-left:20px;
	border-left:1px solid rgba(255,255,255,0.35);
}

.hero_stats i{
	width:36px;
	height:36px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:999px;
	background:rgba(255,255,255,0.12);
	color:#fff;
	font-size:17px;
}

.hero_stats small{
	display:block;
	margin-top:5px;
	color:rgba(255,255,255,0.78);
	font-size:9px;
	font-weight:700;
	letter-spacing:0;
}

.hero_stats strong{
	display:inline;
	color:#fff;
	font-size:16px;
	line-height:1;
	font-weight:850;
	letter-spacing:0;
}

.hero_features{
	position:absolute;
	left:0;
	right:0;
	bottom:var(--hero-trust-height);
	z-index:155;
	height:136px;
	padding:22px 42px;
	display:grid;
	grid-template-columns:repeat(4, minmax(0, 1fr));
	gap:14px;
	box-sizing:border-box;
	background:#fff;
}

.hero_feature{
	min-height:92px;
	padding:18px 16px;
	display:grid;
	grid-template-columns:30px minmax(0, 1fr);
	column-gap:12px;
	align-items:start;
	box-sizing:border-box;
	border-radius:10px;
	border:1px solid var(--nemo-line);
	background:#fff;
	box-shadow:0 12px 28px rgba(8,47,73,0.1);
	color:var(--nemo-ink);
}

.hero_feature i{
	grid-row:1 / span 2;
	width:30px;
	height:30px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	color:var(--nemo-blue);
	font-size:23px;
}

.hero_feature strong{
	display:block;
	color:var(--nemo-navy);
	font-size:11px;
	line-height:1.2;
	font-weight:850;
}

.hero_feature span{
	display:block;
	margin-top:7px;
	color:var(--nemo-muted);
	font-size:10px;
	line-height:1.5;
	font-weight:650;
}

.hero_trust_bar{
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index:150;
	min-height:var(--hero-trust-height);
	padding:0 42px;
	display:grid;
	grid-template-columns:repeat(3, minmax(0, 1fr));
	align-items:center;
	gap:22px;
	box-sizing:border-box;
	background:rgba(7,40,71,0.96);
	color:#fff;
}

.hero_trust_bar span{
	display:grid;
	grid-template-columns:34px minmax(0, 1fr);
	column-gap:12px;
	align-items:center;
	min-width:0;
}

.hero_trust_bar span + span{
	border-left:1px solid rgba(255,255,255,0.24);
	padding-left:36px;
}

.hero_trust_bar i{
	grid-row:1 / span 2;
	font-size:22px;
	color:rgba(255,255,255,0.92);
}

.hero_trust_bar strong{
	display:block;
	font-size:10px;
	line-height:1.2;
	font-weight:850;
}

.hero_trust_bar small{
	display:block;
	margin-top:5px;
	color:rgba(255,255,255,0.78);
	font-size:9px;
	line-height:1.35;
	font-weight:650;
}

body.page-ship .content > div#home > .cv_download_btn{
	display:none !important;
}

.content > div#home .cv_download_btn{
	height:74px;
	line-height:74px;
	background:rgba(8,47,73,0.8);
	color:#fff !important;
	box-shadow:0 18px 40px rgba(8,47,73,0.18);
	backdrop-filter:blur(12px);
}

.content > div#home .cv_download_btn:hover,
.content > div#virtual-tour .cv_download_btn:hover{
	background:var(--nemo-teal);
	color:#fff !important;
	text-decoration:none;
}

.page-ship .content > div .left_side,
.page-ship .content > div .right_side{
	width:calc(50% - 13px);
}

.page-ship .content > div .box{
	border-radius:8px;
	background:rgba(255,255,255,0.58);
	border:1px solid var(--nemo-line);
	box-shadow:0 14px 35px rgba(8,47,73,0.08);
}

.page-ship .content > div#about .jspPane{
	display:grid;
	grid-template-columns:minmax(0, 1.05fr) minmax(300px, 0.95fr);
	gap:22px 28px;
	align-items:start;
	width:calc(100% - 52px) !important;
}

.page-ship .content > div#about > .title,
.page-ship .content > div#about .jspPane > .title{
	grid-column:1 / -1;
	margin-bottom:0;
}

.page-ship .content > div#about .left_side,
.page-ship .content > div#about .right_side{
	display:block !important;
	float:none !important;
	width:100% !important;
	margin:0 !important;
}

.page-ship .content > div#about .box{
	display:block !important;
	float:none !important;
	width:100% !important;
	box-sizing:border-box;
	margin:0 0 18px;
	overflow:hidden;
}

.page-ship .content > div#about .box > .text,
.page-ship .content > div#about .personal_details{
	box-sizing:border-box;
	padding:16px 18px;
	margin:0;
	line-height:1.55;
}

.page-ship .content > div#about .box.who_i_am > .text:first-child{
	background:linear-gradient(135deg, rgba(235,250,253,0.88), rgba(255,255,255,0.64));
	border-bottom:1px solid var(--nemo-line);
	font-size:14px;
	line-height:1.45;
}

.page-ship .content > div#about .box.pictures{
	padding:0;
	background:transparent;
	border:0;
	box-shadow:0 18px 42px rgba(8,47,73,0.12);
}

.page-ship .content > div#about .box.pictures img{
	width:100% !important;
	height:auto !important;
	min-height:260px;
	max-height:360px;
	object-fit:cover;
	border:0;
	border-radius:8px;
	opacity:1;
	box-shadow:none;
}

.page-ship .content > div#about .box.pictures:hover img{
	transform:none;
}

.page-ship .content > div#about .deck,
.page-ship .content > div#about .botones,
.page-ship .content > div#about > .deck,
.page-ship .content > div#about .jspPane > .deck,
.page-ship .content > div#about .jspPane > .botones{
	grid-column:1 / -1;
}

.page-ship .content > div#about .jspPane > .deck{
	display:block;
	width:100% !important;
	height:430px !important;
	max-width:100%;
	margin:6px auto 0;
	padding:18px;
	box-sizing:border-box;
	object-fit:contain;
	object-position:center center;
	background:rgba(255,255,255,0.86);
	border:1px solid var(--nemo-line);
	border-radius:8px;
	box-shadow:0 18px 44px rgba(8,47,73,0.12);
}

.page-ship .content > div#about .right_side{
	display:flex !important;
	flex-direction:column;
	gap:18px;
}

.page-ship .content > div#about .right_side > .text{
	padding:2px 0 0;
	line-height:1.55;
}

.page-ship .content > div#about .box.my_services{
	margin-bottom:0;
}

.page-ship .content > div#about .clear{
	display:none;
}

.page-ship .content > div#about .box .title,
.page-ship .content > div .box_title.title,
.page-tool .content > div .box_title.title{
	background:transparent;
	border-bottom:1px solid var(--nemo-line);
}

.page-ship .content > div#about .box .title .icon,
.page-ship .content > div .box_title .icon,
.page-tool .content > div .box_title .icon{
	border-radius:8px;
	background:linear-gradient(135deg, var(--nemo-teal), var(--nemo-blue));
	color:#fff;
}

.page-ship .deck{
	width:100% !important;
	max-width:100%;
	height:auto;
	border-radius:8px;
	box-shadow:0 22px 55px rgba(8,47,73,0.16);
}

.boton{
	border:1px solid rgba(249,115,91,0.6);
	background:rgba(255,255,255,0.82);
	color:#c84f39 !important;
	font-weight:800;
	border-radius:8px;
}

.boton:hover{
	background:var(--nemo-coral);
	border-color:var(--nemo-coral);
	color:#fff !important;
}

.page_intro{
	margin:-8px 0 22px;
	color:var(--nemo-muted);
	font-size:16px;
	line-height:1.55;
	max-width:640px;
}

body.page-ship #wrapper .content > div#portfolio .jspPane{
	width:calc(100% - 52px) !important;
	padding:26px !important;
	box-sizing:border-box;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid{
	width:100%;
	margin:18px 0 0;
	padding:0;
	display:grid !important;
	grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
	gap:16px;
	box-sizing:border-box;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix{
	position:relative !important;
	top:auto !important;
	left:auto !important;
	width:100% !important;
	height:auto !important;
	aspect-ratio:4 / 3;
	min-height:0;
	display:block !important;
	float:none !important;
	opacity:1 !important;
	overflow:hidden;
	border:1px solid var(--nemo-line);
	border-radius:8px;
	background:#fff;
	box-shadow:0 14px 30px rgba(8,47,73,0.1);
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix a{
	position:absolute !important;
	inset:0;
	width:100%;
	height:100% !important;
	display:block;
	border-radius:8px;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix a img{
	position:absolute !important;
	inset:0;
	width:100%;
	height:100% !important;
	display:block;
	object-fit:cover;
	opacity:1;
	transform:none !important;
	-webkit-transform:none !important;
	-moz-transform:none !important;
	-o-transform:none !important;
	-ms-transform:none !important;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix:hover a img{
	transform:none !important;
	-webkit-transform:none !important;
	-moz-transform:none !important;
	-o-transform:none !important;
	-ms-transform:none !important;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix a > div.main{
	inset:0 !important;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(7,40,71,0.38);
	opacity:0;
	transform:none !important;
	transition:opacity 0.2s ease-in-out;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix:hover a > div.main{
	opacity:1;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix a > div.main .inner{
	width:auto;
	height:auto;
	position:static;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .mix a > div.main .inner i{
	position:static;
	margin:0 !important;
	width:44px;
	height:44px;
	padding:0;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:999px;
	background:rgba(255,255,255,0.92);
	color:var(--nemo-blue);
	font-size:20px;
	text-shadow:none;
}

body.page-ship #wrapper .content > div#portfolio #portfolio_grid .popup_information{
	display:none;
}

#portfolio_popup .popup_information,
#portfolio_popup .popup_information .top{
	display:block !important;
}

#portfolio_popup .popup_information .top{
	float:none;
}

#portfolio_popup .popup_information img{
	display:block;
}

.page-ship .content > div#virtual-tour .iframe-360{
	width:100%;
	height:clamp(560px, calc(100vh - 160px), 650px);
	min-height:560px;
	flex:0 0 auto;
	margin-top:20px;
	position:relative;
	overflow:hidden;
	box-sizing:border-box;
	border:1px solid var(--nemo-line);
	border-radius:8px;
	background:#eaf6fb;
	box-shadow:0 18px 42px rgba(8,47,73,0.12);
}

.page-ship .content > div#virtual-tour .iframe-360 iframe{
	position:absolute;
	inset:0;
	width:100% !important;
	height:100% !important;
	min-height:0;
	display:block;
	border:0;
}

.page-ship .content > div#virtual-tour .iframe-360.is-loading::before{
	content:"Loading tour 360...";
	position:absolute;
	inset:0;
	z-index:2;
	display:flex;
	align-items:center;
	justify-content:center;
	padding-top:58px;
	box-sizing:border-box;
	background:linear-gradient(135deg, rgba(234,246,251,0.94), rgba(255,255,255,0.86));
	color:var(--nemo-blue);
	font-size:15px;
	font-weight:850;
	text-transform:uppercase;
}

.page-ship .content > div#virtual-tour .iframe-360.is-loading::after{
	content:"";
	position:absolute;
	left:50%;
	top:50%;
	z-index:3;
	width:38px;
	height:38px;
	margin:-34px 0 0 -19px;
	border:4px solid rgba(0,155,194,0.18);
	border-top-color:var(--nemo-teal);
	border-radius:50%;
	animation:nemoTourSpin 0.8s linear infinite;
}

@keyframes nemoTourSpin{
	to{
		transform:rotate(360deg);
	}
}

.page-ship .content > div#virtual-tour .left_side{
	width:100% !important;
	float:none !important;
	margin:20px 0 0 !important;
}

.page-ship .content > div#virtual-tour .left_side > a{
	display:block;
	overflow:hidden;
	border:1px solid var(--nemo-line);
	border-radius:8px;
	background:#eaf6fb;
	box-shadow:0 18px 42px rgba(8,47,73,0.12);
}

.page-ship .content > div#virtual-tour .left_side img{
	width:100% !important;
	min-height:440px;
	max-height:560px;
	display:block;
	object-fit:cover;
}

.page-ship .content > div#virtual-tour .left_side p{
	margin:18px 0 0;
	text-align:center;
}

.page-ship .content > div#virtual-tour .left_side h2{
	margin:0;
	color:var(--nemo-teal);
	font-size:24px;
	line-height:1.2;
	font-weight:850;
}

.page-tool .content > div#virtual-tour{
	overflow:hidden;
}

.page-tool .dates-filter{
	display:grid;
	grid-template-columns:repeat(2, minmax(0, 1fr));
	gap:14px;
	margin:20px 0 4px;
	padding:16px;
	border:1px solid rgba(8,145,178,0.22);
	border-radius:8px;
	background:linear-gradient(135deg, rgba(235,250,253,0.9), rgba(255,255,255,0.82));
	box-shadow:0 16px 36px rgba(8,47,73,0.08);
}

.page-tool .dates-filter .span6{
	width:100%;
	display:flex;
	align-items:center;
	gap:8px;
}

.page-tool .text-filter{
	color:var(--nemo-navy);
	font-weight:800;
}

.page-tool select,
.page-tool .form-control{
	width:100%;
	min-height:42px;
	border:1px solid rgba(8,89,133,0.22);
	border-radius:8px;
	background:#fff;
	color:var(--nemo-ink);
	padding:0 10px;
	font-weight:650;
	box-shadow:0 8px 18px rgba(8,47,73,0.06);
}

.page-tool .cruise-itinerary,
.page-tool #ibox-content{
	border-radius:8px;
}

.page-tool #ibox-content .cruise-itinerary,
.page-tool #ibox-content table,
.page-tool .table{
	box-shadow:0 18px 42px rgba(8,47,73,0.08);
}

.page-tool .table,
.page-tool table{
	border-collapse:separate;
	border-spacing:0;
	overflow:hidden;
	border-radius:8px;
}

.page-tool .table th,
.page-tool .rates table th{
	background:var(--nemo-navy);
	color:#fff;
	border-color:rgba(255,255,255,0.16);
	text-transform:uppercase;
	font-size:12px;
	letter-spacing:0.4px;
}

.page-tool .table td,
.page-tool .rates table td{
	border-color:rgba(8,89,133,0.16);
	line-height:1.35;
}

.page-availability .main_content,
body.page-availability #wrapper .main_content{
	height:auto !important;
}

.page-availability .content{
	height:auto !important;
	overflow:visible;
}

.page-availability .content > div#virtual-tour{
	position:relative;
	height:auto !important;
	min-height:0 !important;
	margin-top:0;
	padding:0;
	overflow:visible;
}

.page-availability .content > div#virtual-tour .jspContainer{
	width:100% !important;
	height:auto !important;
	overflow:visible;
}

.page-availability .content > div#virtual-tour .jspPane{
	position:relative !important;
	top:0 !important;
	left:0 !important;
	width:calc(100% - 8px) !important;
	min-height:0 !important;
	padding:26px !important;
	box-sizing:border-box;
}

.page-availability .content > div#virtual-tour .jspVerticalBar{
	display:none !important;
}

.page-availability .main_content > .site_footer{
	position:relative;
	top:auto !important;
	left:auto !important;
	width:100% !important;
	margin-top:32px;
}

.page-material .left_side,
.page-material .right_side{
	width:calc(50% - 14px);
}

.page-material .content > div#virtual-tour .jspPane{
	display:grid;
	width:calc(100% - 14px) !important;
	grid-template-columns:repeat(2, minmax(0, 1fr));
	gap:30px 34px;
	align-items:start;
	box-sizing:border-box;
}

.page-material .content > div#virtual-tour .jspPane > .page_title,
.page-material .content > div#virtual-tour .jspPane > .page_intro,
.page-material .content > div#virtual-tour .jspPane > .box_title.title{
	grid-column:1 / -1;
}

.page-material .content > div#virtual-tour .jspPane > .page_title{
	margin-bottom:-10px;
}

.page-material .content > div#virtual-tour .jspPane > .page_intro{
	margin-bottom:-2px;
}

.page-material .content > div#virtual-tour .jspPane > .clear,
.page-material .content > div#virtual-tour .jspPane > br{
	display:none;
}

.page-material .left_side,
.page-material .right_side{
	float:none !important;
	width:100% !important;
	margin:0 !important;
	min-width:0;
}

.page-material .content > div#virtual-tour .jspPane > .box_title.title{
	margin:14px 0 -8px;
}

.page-material .content > div#virtual-tour .jspPane > .box_title.title:first-of-type{
	margin-top:0;
}

.page-material .left_side > .box_title.title,
.page-material .right_side > .box_title.title{
	margin-bottom:6px;
}

.page-material .rates{
	display:block;
	padding:12px;
	border:1px solid var(--nemo-line);
	border-radius:8px;
	background:rgba(255,255,255,0.66);
	box-shadow:0 14px 34px rgba(8,47,73,0.08);
}

.page-material .rates table{
	border-collapse:separate;
	border-spacing:0;
	width:100%;
	table-layout:auto;
}

.page-material .rates tbody tr:hover{
	background:rgba(8,145,178,0.08);
}

.page-material .rates td,
.page-material .rates th{
	padding:8px 12px;
	vertical-align:middle;
}

.page-material .rates td:first-child{
	padding-left:0;
}

.page-material .rates td:last-child,
.page-material .rates th:last-child{
	padding-right:0;
}

.page-material .rates tbody a{
	color:var(--nemo-blue) !important;
	text-decoration:none;
	font-weight:200;
	border-bottom:1px solid rgba(8,145,178,0.35);
}

.page-material .rates tbody a:hover{
	color:var(--nemo-coral) !important;
	border-bottom-color:var(--nemo-coral);
}

.page-material .descriptive{
	width:100%;
	table-layout:fixed;
	border:1px solid var(--nemo-line);
	border-radius:8px;
	background:rgba(255,255,255,0.72);
	box-shadow:0 14px 34px rgba(8,47,73,0.08);
	overflow:hidden;
}

.page-material table.descriptive td{
	padding:10px 12px;
	border-bottom:1px solid rgba(8,89,133,0.14);
	line-height:1.35;
	vertical-align:top;
}

.page-material table.descriptive tr:last-child td{
	border-bottom:0;
}

.page-material table.descriptive td:first-child{
	width:70%;
}

.page-material table.descriptive td:last-child{
	width:30%;
	text-align:right;
}

.page-material table.descriptive a{
	color:var(--nemo-blue) !important;
	font-weight:400;
	text-decoration:none;
}

.page-material table.descriptive a[style]{
	display:inline-flex;
	align-items:center;
	justify-content:flex-end;
	gap:6px;
	margin-left:0 !important;
}

.page-material .left_side h3,
.page-material .right_side h3{
	margin:0 0 10px;
	color:var(--nemo-navy);
	font-size:18px;
	line-height:1.25;
	font-weight:820;
}

.page-material .left_side h3 img,
.page-material .right_side h3 img{
	margin-right:4px;
	vertical-align:-2px;
}

.page-tool .cv_download_btn{
	width:calc(50% - 8px) !important;
	margin-right:12px;
	min-height:58px;
	line-height:58px !important;
	background:var(--nemo-navy) !important;
	color:#fff !important;
	box-shadow:0 14px 32px rgba(8,47,73,0.16);
}

.page-tool .cv_download_btn:last-of-type{
	margin-right:0;
	background:var(--nemo-teal) !important;
}

.footer{
	border-radius:8px;
	min-height:40px;
	margin:32px 0 0;
	padding:10px 18px;
	display:none;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	gap:6px;
	border:1px solid rgba(255,255,255,0.62);
	background:rgba(255,255,255,0.72);
	color:rgba(8,47,73,0.78);
	font-size:14px;
	font-weight:650;
	letter-spacing:0;
	text-align:center;
	box-shadow:0 14px 34px rgba(8,47,73,0.12);
	backdrop-filter:blur(12px);
}

.footer.visible{
	display:flex !important;
}

.main_content > .site_footer{
	position:absolute;
	margin:0;
	z-index:20;
	box-sizing:border-box;
}

.page-ship .main_content > .site_footer{
	border-top:0;
	border-radius:0 0 14px 14px;
}

.footer .footer_brand{
	color:var(--nemo-navy);
	font-weight:850;
}

.footer .footer_separator{
	margin:0 6px;
	color:rgba(8,47,73,0.34);
}

.page-ship .content > div#home .footer,
.page-tool .content > div#virtual-tour .footer{
	margin-top:32px;
}

.page-ship .content > div .jspPane > .footer,
.page-tool .content > div .jspPane > .footer{
	grid-column:1 / -1;
	width:100%;
	margin-top:32px;
}

.page-ship .content > div#virtual-tour .jspPane > .footer,
.page-availability .content > div#virtual-tour .jspPane > .footer{
	margin-top:auto;
}

.page-ship .jspVerticalBar,
.page-tool .jspVerticalBar{
	width:8px;
	background:rgba(8,47,73,0.08);
	border-radius:8px;
	right:6px;
}

.page-ship .jspTrack,
.page-tool .jspTrack{
	background:transparent;
	border-radius:8px;
}

.page-ship .jspDrag,
.page-tool .jspDrag{
	background:linear-gradient(180deg, var(--nemo-teal), var(--nemo-blue));
	border-radius:8px;
}

.page-ship .jspHorizontalBar,
.page-tool .jspHorizontalBar{
	display:none !important;
}

.loading_overlay{
	background:rgba(8,47,73,0.94);
	z-index:10000;
}

.mobile_menu_toggle,
.mobile_bottom_nav{
	display:none;
}

@media only screen and (max-width: 767px){
	html,
	body.page-ship{
		min-height:100%;
		height:auto !important;
		overflow-x:hidden;
	}

	body.page-ship{
		padding:0;
		background:#f7f9fc !important;
		color:var(--nemo-ink);
	}

	body.page-ship #wrapper{
		width:100% !important;
		height:auto !important;
		min-height:100vh;
		padding:0 12px 104px;
		box-sizing:border-box;
		overflow:visible !important;
	}

	body.page-ship #wrapper .main_menu{
		position:sticky;
		top:0;
		z-index:8000;
		width:auto !important;
		min-height:0;
		margin:0 -12px 14px !important;
		padding:24px 20px 18px !important;
		display:flex !important;
		align-items:center;
		justify-content:space-between;
		border:0;
		border-radius:0;
		background:rgba(247,249,252,0.96);
		box-shadow:none;
		backdrop-filter:blur(16px);
		opacity:1 !important;
	}

	body.page-ship .main_menu .site_logo{
		width:auto;
		margin:0 !important;
		text-align:left;
	}

	body.page-ship .main_menu .site_logo img{
		width:168px !important;
		height:auto !important;
		padding-top:0 !important;
		display:block;
	}

	.mobile_menu_toggle{
		width:58px;
		height:58px;
		display:inline-flex !important;
		align-items:center;
		justify-content:center;
		border:1px solid rgba(8,47,73,0.1);
		border-radius:999px;
		background:#fff;
		color:var(--nemo-navy);
		font-size:24px;
		box-shadow:0 12px 30px rgba(8,47,73,0.08);
		cursor:pointer;
	}

	body.page-ship .main_menu ul{
		position:absolute;
		top:calc(100% - 4px);
		left:12px;
		right:12px;
		z-index:8100;
		max-height:calc(100vh - 126px);
		padding:14px;
		display:none !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:8px !important;
		overflow:auto;
		border:1px solid rgba(8,47,73,0.08);
		border-radius:18px;
		background:rgba(255,255,255,0.98);
		box-shadow:0 24px 60px rgba(8,47,73,0.18);
	}

	body.mobile_nav_open.page-ship .main_menu ul{
		display:grid !important;
	}

	body.page-ship .main_menu ul li.nav_group_label{
		grid-column:1 / -1;
		margin:12px 4px 2px !important;
	}

	body.page-ship .main_menu ul li.nav_group_label:first-child{
		margin-top:0 !important;
	}

	body.page-ship #wrapper .main_menu ul li a,
	body.page-ship #wrapper .main_menu ul li .ship_link{
		height:48px !important;
		border-radius:10px;
	}

	body.page-ship #wrapper .main_content{
		width:100% !important;
		height:auto !important;
		min-height:0;
		margin:0 !important;
		position:relative;
		top:auto !important;
	}

	body.page-ship #wrapper .content{
		width:100% !important;
		height:auto !important;
		min-height:0;
		position:relative;
		overflow:visible;
	}

	body.page-ship #wrapper .content > div#home.pt-page-current{
		position:relative;
		height:auto !important;
		min-height:0;
		margin:0;
		padding:0;
		overflow:visible;
		transform:none;
	}

	body.page-ship #wrapper .content > div#home .jspContainer,
	body.page-ship #wrapper .content > div#home .jspPane{
		width:100% !important;
		height:auto !important;
		min-height:0;
		overflow:visible !important;
		padding:0 !important;
		position:relative !important;
	}

	body.page-ship .main_slider{
		--mobile-hero-height:clamp(590px, 158vw, 650px);
		--mobile-features-height:516px;
		width:100%;
		height:calc(var(--mobile-hero-height) + 24px + var(--mobile-features-height) + 24px + 108px) !important;
		min-height:0;
		max-height:none;
		margin:0;
		position:relative;
		overflow:visible;
		border-radius:0;
		background:transparent;
		box-shadow:none;
	}

	body.page-ship .main_slider::after{
		inset:0 0 auto 0;
		height:var(--mobile-hero-height);
		border-radius:18px;
		background:linear-gradient(180deg, rgba(6,24,48,0.5), rgba(6,24,48,0.18) 42%, rgba(6,24,48,0.72));
	}

	body.page-ship .main_slider img{
		width:100% !important;
		height:var(--mobile-hero-height) !important;
		min-height:0;
		display:block;
		object-fit:cover;
		object-position:center;
		border-radius:18px;
		box-shadow:0 18px 46px rgba(8,47,73,0.16);
	}

	body.page-ship .hero_panel{
		top:90px;
		left:20px;
		width:calc(100% - 40px);
	}

	body.page-ship .hero_eyebrow{
		padding:11px 16px;
		border-radius:999px;
		background:rgba(255,255,255,0.14);
		color:#fff;
		font-size:11px;
		line-height:1;
		letter-spacing:1.6px;
		text-shadow:none;
		backdrop-filter:blur(8px);
		opacity:1;
	}

	body.page-ship .hero_title{
		margin-top:34px;
		padding-bottom:30px;
		position:relative;
		font-size:54px;
		line-height:0.95;
		font-weight:850;
		text-shadow:0 12px 28px rgba(0,0,0,0.38);
	}

	body.page-ship .hero_title::after{
		content:"";
		position:absolute;
		left:0;
		bottom:0;
		width:68px;
		height:5px;
		border-radius:999px;
		background:var(--nemo-teal);
	}

	body.page-ship .hero_subtitle{
		margin-top:28px;
		font-size:26px;
		line-height:1.35;
		font-weight:750;
		text-shadow:0 6px 22px rgba(0,0,0,0.42);
	}

	body.page-ship .hero_stats{
		margin-top:36px;
		gap:18px;
		align-items:center;
	}

	body.page-ship .hero_stats > span{
		gap:12px;
		text-shadow:0 6px 18px rgba(0,0,0,0.48);
	}

	body.page-ship .hero_stats > span + span{
		padding-left:18px;
		border-left:1px solid rgba(255,255,255,0.28);
	}

	body.page-ship .hero_stats i{
		width:48px !important;
		height:48px !important;
		min-width:48px;
		background:rgba(255,255,255,0.16);
		font-size:21px;
	}

	body.page-ship .hero_stats strong{
		font-size:18px;
		letter-spacing:0.2px;
	}

	body.page-ship .hero_stats small{
		display:block;
		margin-top:7px;
		font-size:12px;
		color:rgba(255,255,255,0.86);
	}

	body.page-ship .hero_actions{
		margin-top:36px;
		display:grid;
		grid-template-columns:1fr 1fr;
		gap:14px;
	}

	body.page-ship .hero_actions a{
		min-height:68px;
		padding:0 18px;
		justify-content:center;
		border-radius:24px;
		font-size:16px;
		line-height:1.1;
		font-weight:850;
		white-space:normal;
	}

	body.page-ship .hero_actions a.primary{
		background:linear-gradient(135deg, #0284c7, #0f5fbb);
		box-shadow:0 18px 34px rgba(2,132,199,0.34);
	}

	body.page-ship .hero_actions a.primary::after{
		content:"\f061";
		margin-left:14px;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-weight:900;
	}

	body.page-ship .hero_actions a.secondary{
		border:2px solid rgba(255,255,255,0.86);
		background:rgba(4,20,38,0.16);
		box-shadow:none;
	}

	body.page-ship .hero_actions a.secondary::before{
		content:"\f073";
		margin-right:10px;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-weight:400;
	}

	body.page-ship .hero_features{
		position:absolute;
		top:calc(var(--mobile-hero-height) + 24px);
		left:8px;
		right:8px;
		bottom:auto;
		height:var(--mobile-features-height);
		padding:0;
		display:grid;
		grid-template-columns:repeat(2, minmax(0, 1fr));
		gap:16px;
		background:transparent;
	}

	body.page-ship .hero_feature{
		min-height:210px;
		padding:28px 24px 24px;
		display:block;
		position:relative;
		border:1px solid rgba(8,47,73,0.06);
		border-radius:18px;
		background:#fff;
		box-shadow:0 18px 38px rgba(8,47,73,0.1);
	}

	body.page-ship .hero_feature::after{
		content:"\f105";
		position:absolute;
		top:55px;
		right:24px;
		color:var(--nemo-navy);
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-size:26px;
		font-weight:900;
		line-height:1;
	}

	body.page-ship .hero_feature i{
		width:58px !important;
		height:58px !important;
		margin-bottom:24px;
		border-radius:50%;
		background:#f0f5fa;
		color:var(--nemo-blue);
		font-size:28px;
	}

	body.page-ship .hero_feature strong{
		font-size:19px;
		line-height:1.18;
		color:var(--nemo-navy);
	}

	body.page-ship .hero_feature span{
		display:block;
		margin-top:10px;
		color:var(--nemo-ink);
		font-size:16px;
		line-height:1.42;
		font-weight:500;
	}

	body.page-ship .hero_trust_bar{
		position:absolute;
		top:calc(var(--mobile-hero-height) + 24px + var(--mobile-features-height) + 24px);
		left:8px;
		right:8px;
		bottom:auto;
		min-height:108px;
		padding:22px 28px;
		grid-template-columns:1fr;
		border-radius:18px;
		background:linear-gradient(135deg, #082f5c, #061d36);
		box-shadow:0 18px 40px rgba(8,47,73,0.2);
	}

	body.page-ship .hero_trust_bar span{
		grid-template-columns:54px minmax(0, 1fr) 18px;
		column-gap:18px;
	}

	body.page-ship .hero_trust_bar span::after{
		content:"\f105";
		align-self:center;
		color:rgba(255,255,255,0.95);
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-size:24px;
		font-weight:900;
	}

	body.page-ship .hero_trust_bar span:nth-child(n+2){
		display:none;
	}

	body.page-ship .hero_trust_bar i{
		width:48px;
		height:48px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		font-size:28px;
	}

	body.page-ship .hero_trust_bar strong{
		font-size:21px;
		line-height:1.15;
	}

	body.page-ship .hero_trust_bar small{
		display:block;
		margin-top:8px;
		font-size:16px;
		line-height:1.3;
		color:rgba(255,255,255,0.88);
	}

	body.page-ship .main_content > .site_footer{
		display:none !important;
	}

	.mobile_bottom_nav{
		position:fixed;
		left:0;
		right:0;
		bottom:0;
		z-index:9000;
		height:78px;
		padding:8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
		display:grid !important;
		grid-template-columns:repeat(5, minmax(0, 1fr));
		gap:0;
		box-sizing:content-box;
		border-top:1px solid rgba(8,47,73,0.08);
		background:rgba(255,255,255,0.96);
		box-shadow:0 -18px 40px rgba(8,47,73,0.12);
		backdrop-filter:blur(16px);
	}

	.mobile_bottom_nav a{
		min-width:0;
		display:flex;
		flex-direction:column;
		align-items:center;
		justify-content:center;
		gap:7px;
		color:#27364b;
		font-size:12px;
		line-height:1;
		font-weight:800;
		text-align:center;
	}

	.mobile_bottom_nav a:hover{
		text-decoration:none;
	}

	.mobile_bottom_nav i{
		width:28px;
		height:28px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		color:#27364b;
		font-size:22px;
	}

	.mobile_bottom_nav a.active,
	.mobile_bottom_nav a.active i{
		color:#075fae;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1020px){
	body.page-ship #wrapper,
	body.page-tool #wrapper{
		width:min(920px, calc(100% - 32px));
	}

	body.page-ship #wrapper{
		grid-template-columns:180px minmax(0, 1fr);
		column-gap:0;
	}

	body.page-tool #wrapper{
		grid-template-columns:180px minmax(0, 1fr);
		column-gap:0;
	}

	.page-ship .main_menu,
.page-tool .main_menu{
		width:100%;
	}

	.page-ship .main_content,
	.page-tool .main_content{
		width:100%;
		min-width:0;
		margin:0;
	}

	.page-ship .main_menu ul li a{
		height:58px;
		padding:0 10px;
		font-size:12px;
	}

	.page-ship .main_menu ul li a,
	.page-ship .main_menu ul li .ship_link{
		height:44px;
		padding:0 9px;
		font-size:12px;
	}

	.page-ship .main_slider{
		--hero-bottom-space:368px;
		--hero-trust-height:126px;
		min-height:760px;
	}

	.page-tool .main_menu ul li a,
	.page-tool .main_menu ul li .ship_link,
	.page-tool .main_menu ul li .tool_link{
		height:44px;
		padding:0 9px;
		font-size:12px;
	}

	.hero_title{
		font-size:44px;
	}

	.hero_features{
		height:218px;
		padding:18px 32px;
		grid-template-columns:repeat(2, minmax(0, 1fr));
	}

	.hero_feature{
		min-height:84px;
	}

	.hero_trust_bar{
		grid-template-columns:1fr;
		gap:8px;
		padding:14px 32px;
	}

	.hero_trust_bar span + span{
		border-left:0;
		padding-left:0;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship,
	body.page-tool{
		background-attachment:scroll !important;
	}

	body.page-ship #wrapper,
	body.page-tool #wrapper{
		width:calc(100% - 24px);
		padding-top:14px;
	}

	body.page-ship #wrapper,
	body.page-tool #wrapper{
		display:block;
	}

	body.page-ship #wrapper{
		width:calc(100% - 24px);
	}

	.site_logo{
		margin-bottom:10px;
	}

	.site_logo img{
		width:238px;
	}

	.page-ship .main_menu,
.page-tool .main_menu{
		width:100%;
		float:none;
		display:block !important;
		margin:10px 0;
		text-align:left;
	}

	.page-ship .main_menu{
		min-height:0;
		max-height:none;
		border-right:1px solid rgba(255,255,255,0.58);
		border-radius:8px;
	}

	.page-ship .main_menu .site_logo{
		text-align:center;
		margin-bottom:16px;
	}

	.page-ship .main_menu .site_logo img,
	.page-tool .main_menu .site_logo img{
		width:236px;
	}

	.page-tool .main_menu .site_logo{
		text-align:center;
		margin-bottom:16px;
	}

	body.page-ship #wrapper .main_menu,
body.page-tool #wrapper .main_menu{
		width:100% !important;
		float:none !important;
		display:block !important;
	}

	body.page-ship #wrapper .main_menu{
		padding:12px !important;
	}

	body.page-tool #wrapper .main_menu{
		padding:12px !important;
	}

	.page-ship .main_menu ul,
.page-tool .main_menu ul{
		display:grid !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:8px !important;
	}

	.page-ship .main_menu ul li,
.page-tool .main_menu ul li{
		margin:0;
		display:block !important;
		width:auto !important;
	}

	.page-ship .main_menu ul li.nav_group_label{
		grid-column:1 / -1;
		margin:10px 2px 0 !important;
	}

	.page-tool .main_menu ul li.nav_group_label{
		grid-column:1 / -1;
		margin:10px 2px 0 !important;
	}

	.page-ship .main_menu ul li.nav_group_label:first-child{
		margin-top:0 !important;
	}

	.page-tool .main_menu ul li.nav_group_label:first-child{
		margin-top:0 !important;
	}

	.page-ship .main_menu ul li a,
.page-tool .main_menu ul li a,
.page-tool .main_menu ul li .ship_link,
.page-tool .main_menu ul li .tool_link{
		width:100%;
		height:52px;
		float:none;
		font-size:12px;
		padding:0 10px;
	}

	body.page-ship #wrapper .main_menu ul li a,
body.page-ship #wrapper .main_menu ul li .ship_link,
body.page-tool #wrapper .main_menu ul li a,
body.page-tool #wrapper .main_menu ul li .ship_link,
body.page-tool #wrapper .main_menu ul li .tool_link{
		width:100% !important;
		min-width:0 !important;
		height:52px !important;
		display:flex !important;
		float:none !important;
		line-height:1 !important;
		font-size:14px !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .main_menu ul li a span,
body.page-ship #wrapper .main_menu ul li .ship_link span,
body.page-tool #wrapper .main_menu ul li a span,
body.page-tool #wrapper .main_menu ul li .ship_link span,
body.page-tool #wrapper .main_menu ul li .tool_link span{
		display:inline-block !important;
		font-size:14px !important;
	}

	.page-ship .main_menu ul li a i,
.page-ship .main_menu ul li .ship_link i,
.page-tool .main_menu ul li a i,
.page-tool .main_menu ul li .ship_link i,
.page-tool .main_menu ul li .tool_link i{
		float:none !important;
		width:24px !important;
		min-width:24px;
		height:24px;
		line-height:24px;
		font-size:13px;
	}

	.page-ship .main_content,
	.page-tool .main_content{
		position:relative;
		float:none;
		width:100%;
		min-width:0;
		margin:12px 0 0;
		top:auto;
	}

	body.page-ship #wrapper .main_content{
		margin:12px 0 0 !important;
		top:auto !important;
	}

	body.page-tool #wrapper .main_content{
		margin:12px 0 0 !important;
		top:auto !important;
	}

	.page-ship .content > div,
	.page-tool .content > div{
		width:100% !important;
	}

	.page-ship .content > div .jspPane,
	.page-tool .content > div .jspPane{
		width:calc(100% - 32px) !important;
		padding:16px !important;
	}

	body.page-ship #wrapper .content > div#portfolio .jspPane{
		width:calc(100% - 32px) !important;
		padding:16px !important;
	}

	body.page-ship #wrapper .content > div#portfolio #portfolio_grid{
		grid-template-columns:1fr;
		gap:16px;
	}

	.page-ship .content > div#virtual-tour .iframe-360{
		height:clamp(420px, 68vh, 540px);
		min-height:420px;
		margin-top:16px;
	}

	.page-ship .content > div#virtual-tour .iframe-360 iframe{
		min-height:0;
	}

	.page-ship .content > div#virtual-tour .left_side img{
		min-height:280px;
		max-height:420px;
	}

	.page-ship .content > div#about .jspPane{
		display:block;
		width:calc(100% - 32px) !important;
	}

	.page-ship .content > div#about .box.pictures img{
		min-height:0;
		max-height:none;
	}

	.page-ship .content > div#about .jspPane > .deck{
		height:auto !important;
		min-height:0;
		padding:10px;
	}

	.page-ship .main_slider{
		--hero-bottom-space:444px;
		--hero-trust-height:126px;
		height:890px !important;
		border-radius:8px 8px 0 0;
	}

	.page-ship .main_slider img{
		height:calc(100% - var(--hero-bottom-space)) !important;
	}

	.hero_panel{
		top:36px;
		left:22px;
		width:calc(100% - 44px);
	}

	.hero_eyebrow{
		font-size:11px;
		letter-spacing:1px;
	}

	.hero_title{
		max-width:100%;
		margin-top:24px;
		font-size:44px;
		line-height:1;
	}

	.hero_subtitle{
		font-size:15px;
		line-height:1.35;
	}

	.hero_stats{
		gap:14px;
		margin-top:18px;
	}

	.hero_stats > span{
		gap:8px;
	}

	.hero_stats > span + span{
		padding-left:14px;
	}

	.hero_stats i{
		width:30px;
		height:30px;
		font-size:14px;
	}

	.hero_stats strong{
		font-size:14px;
	}

	.hero_stats small{
		display:none;
	}

	.hero_panel p{
		font-size:15px;
		margin:16px 0 20px;
		max-width:100%;
	}

	.hero_actions{
		gap:10px;
	}

	.hero_actions a{
		min-height:44px;
		padding:0 16px;
	}

	.hero_features{
		left:0;
		right:0;
		bottom:var(--hero-trust-height);
		height:304px;
		padding:16px 18px;
		grid-template-columns:1fr;
		gap:10px;
	}

	.hero_feature{
		min-height:58px;
		padding:12px;
	}

	.hero_feature span{
		display:none;
	}

	.hero_trust_bar{
		min-height:var(--hero-trust-height);
		padding:12px 18px;
		grid-template-columns:1fr;
		gap:8px;
	}

	.hero_trust_bar span{
		grid-template-columns:26px minmax(0, 1fr);
	}

	.hero_trust_bar span + span{
		border-left:0;
		padding-left:0;
	}

	.hero_trust_bar i{
		font-size:17px;
	}

	.hero_trust_bar small{
		display:none;
	}

	.page-ship .main_content > .site_footer{
		border-radius:0 0 8px 8px;
	}

	.content > div#home .cv_download_btn{
		height:64px;
		line-height:64px;
	}

	.page-ship .content > div .left_side,
	.page-ship .content > div .right_side,
	.page-material .left_side,
	.page-material .right_side{
		width:100%;
		float:none;
		margin-right:0;
	}

	.page-tool .dates-filter{
		grid-template-columns:1fr;
		padding:12px;
	}

	.page-availability .content > div#virtual-tour .jspPane{
		width:calc(100% - 8px) !important;
		padding:16px !important;
	}

	.page-material .content > div#virtual-tour .jspPane{
		width:calc(100% - 14px) !important;
		padding:14px !important;
		grid-template-columns:1fr;
		gap:22px;
	}

	.page-material .content > div#virtual-tour .jspPane > .page_title,
	.page-material .content > div#virtual-tour .jspPane > .page_intro,
	.page-material .content > div#virtual-tour .jspPane > .box_title.title{
		grid-column:1;
	}

	.page-material table.descriptive td{
		padding:9px 8px;
	}

	.page-material table.descriptive td:first-child{
		width:66%;
	}

	.page-material table.descriptive td:last-child{
		width:34%;
	}

	.page-tool .dates-filter .span6{
		display:block;
	}

	.page-tool .text-filter{
		display:block;
		margin-bottom:6px;
	}

	.page-tool .cv_download_btn{
		width:100% !important;
		margin:0 0 10px !important;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship{
		background:#f7f9fc !important;
		padding:0 !important;
		overflow-x:hidden;
	}

	body.page-ship #wrapper{
		width:100% !important;
		height:auto !important;
		min-height:100vh !important;
		padding:0 12px 104px !important;
		overflow:visible !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .main_menu{
		width:calc(100% + 24px) !important;
		min-height:0 !important;
		height:auto !important;
		margin:0 -12px 14px !important;
		padding:24px 20px 18px !important;
		position:sticky !important;
		top:0 !important;
		z-index:8000 !important;
		display:flex !important;
		flex-direction:row !important;
		align-items:center !important;
		justify-content:space-between !important;
		float:none !important;
		border:0 !important;
		border-radius:0 !important;
		background:rgba(247,249,252,0.96) !important;
		box-shadow:none !important;
		box-sizing:border-box !important;
	}

	body.page-ship .main_menu .site_logo{
		width:auto !important;
		height:auto !important;
		margin:0 !important;
		display:flex !important;
		align-items:center !important;
		justify-content:flex-start !important;
		flex:0 0 auto !important;
		text-align:left !important;
	}

	body.page-ship .main_menu .site_logo img{
		width:168px !important;
		height:auto !important;
		padding-top:0 !important;
		display:block !important;
		margin:0 !important;
	}

	body.page-ship .mobile_menu_toggle{
		width:58px !important;
		height:58px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		flex:0 0 58px !important;
		border:1px solid rgba(8,47,73,0.1) !important;
		border-radius:999px !important;
		background:#fff !important;
		color:var(--nemo-navy) !important;
		font-size:24px !important;
		box-shadow:0 12px 30px rgba(8,47,73,0.08) !important;
	}

	body.page-ship .main_menu ul{
		position:absolute !important;
		top:calc(100% - 4px) !important;
		left:12px !important;
		right:auto !important;
		width:calc(100% - 24px) !important;
		z-index:8100 !important;
		max-height:calc(100vh - 126px) !important;
		padding:14px !important;
		display:none !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:8px !important;
		overflow:auto !important;
		border:1px solid rgba(8,47,73,0.08) !important;
		border-radius:18px !important;
		background:rgba(255,255,255,0.98) !important;
		box-shadow:0 24px 60px rgba(8,47,73,0.18) !important;
		box-sizing:border-box !important;
	}

	body.mobile_nav_open.page-ship .main_menu ul{
		display:grid !important;
	}

	body.page-ship #wrapper .main_content,
	body.page-ship #wrapper .content{
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		margin:0 !important;
		position:relative !important;
		top:auto !important;
		overflow:visible !important;
	}

	body.page-ship #wrapper .content > div#home.pt-page-current{
		position:relative !important;
		height:auto !important;
		min-height:0 !important;
		margin:0 !important;
		padding:0 !important;
		overflow:visible !important;
		transform:none !important;
	}

	body.page-ship #wrapper .content > div#home .jspContainer,
	body.page-ship #wrapper .content > div#home .jspPane{
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		padding:0 !important;
		position:relative !important;
		overflow:visible !important;
	}

	body.page-ship .main_slider{
		--mobile-hero-height:clamp(590px, 158vw, 650px);
		--mobile-features-height:516px;
		width:100% !important;
		height:calc(var(--mobile-hero-height) + 24px + var(--mobile-features-height) + 24px + 108px) !important;
		min-height:0 !important;
		max-height:none !important;
		margin:0 !important;
		position:relative !important;
		overflow:visible !important;
		border-radius:0 !important;
		background:transparent !important;
		box-shadow:none !important;
	}

	body.page-ship .main_slider::after{
		inset:0 0 auto 0 !important;
		height:var(--mobile-hero-height) !important;
		border-radius:18px !important;
		background:linear-gradient(180deg, rgba(6,24,48,0.5), rgba(6,24,48,0.18) 42%, rgba(6,24,48,0.72)) !important;
	}

	body.page-ship .main_slider img{
		width:100% !important;
		height:var(--mobile-hero-height) !important;
		min-height:0 !important;
		display:block !important;
		object-fit:cover !important;
		object-position:center !important;
		border-radius:18px !important;
		box-shadow:0 18px 46px rgba(8,47,73,0.16) !important;
	}

	body.page-ship .hero_panel{
		top:90px !important;
		left:20px !important;
		width:calc(100% - 40px) !important;
	}

	body.page-ship .hero_eyebrow{
		padding:11px 16px !important;
		border-radius:999px !important;
		background:rgba(255,255,255,0.14) !important;
		font-size:11px !important;
		letter-spacing:1.6px !important;
	}

	body.page-ship .hero_title{
		margin-top:34px !important;
		padding-bottom:30px !important;
		position:relative !important;
		font-size:54px !important;
		line-height:0.95 !important;
	}

	body.page-ship .hero_title::after{
		content:"" !important;
		position:absolute !important;
		left:0 !important;
		bottom:0 !important;
		width:68px !important;
		height:5px !important;
		border-radius:999px !important;
		background:var(--nemo-teal) !important;
	}

	body.page-ship .hero_subtitle{
		margin-top:28px !important;
		font-size:26px !important;
		line-height:1.35 !important;
	}

	body.page-ship .hero_stats{
		width:100% !important;
		margin-top:34px !important;
		display:flex !important;
		gap:10px !important;
		align-items:center !important;
		justify-content:flex-start !important;
		overflow:hidden !important;
	}

	body.page-ship .hero_stats > span{
		min-width:0 !important;
		gap:9px !important;
		flex:0 1 auto !important;
	}

	body.page-ship .hero_stats > span + span{
		padding-left:10px !important;
		border-left:1px solid rgba(255,255,255,0.28) !important;
	}

	body.page-ship .hero_stats i{
		width:42px !important;
		height:42px !important;
		min-width:42px !important;
		background:rgba(255,255,255,0.16) !important;
		font-size:18px !important;
	}

	body.page-ship .hero_stats strong{
		font-size:16px !important;
		letter-spacing:0 !important;
	}

	body.page-ship .hero_stats small{
		display:block !important;
		margin-top:6px !important;
		font-size:10px !important;
		white-space:nowrap !important;
	}

	body.page-ship .hero_actions{
		margin-top:34px !important;
		display:grid !important;
		grid-template-columns:1fr 1fr !important;
		gap:12px !important;
	}

	body.page-ship .hero_actions a{
		min-height:64px !important;
		padding:0 14px !important;
		justify-content:center !important;
		border-radius:22px !important;
		font-size:15px !important;
		line-height:1.1 !important;
	}

	body.page-ship .hero_actions a.primary{
		background:linear-gradient(135deg, #0284c7, #0f5fbb) !important;
	}

	body.page-ship .hero_actions a.primary::after{
		content:"\f061";
		margin-left:12px;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-weight:900;
	}

	body.page-ship .hero_actions a.secondary{
		border:2px solid rgba(255,255,255,0.86) !important;
		background:rgba(4,20,38,0.16) !important;
		box-shadow:none !important;
	}

	body.page-ship .hero_actions a.secondary::before{
		content:"\f073";
		margin-right:8px;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free";
		font-weight:400;
	}

	body.page-ship .hero_features{
		position:absolute !important;
		top:calc(var(--mobile-hero-height) + 24px) !important;
		left:8px !important;
		right:8px !important;
		bottom:auto !important;
		height:var(--mobile-features-height) !important;
		padding:0 !important;
		display:grid !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:16px !important;
		background:transparent !important;
	}

	body.page-ship .hero_feature{
		min-height:250px !important;
		padding:26px 22px 24px !important;
		display:block !important;
		position:relative !important;
		border-radius:18px !important;
		background:#fff !important;
		box-shadow:0 18px 38px rgba(8,47,73,0.1) !important;
	}

	body.page-ship .hero_feature::after{
		content:"\f105" !important;
		position:absolute !important;
		top:53px !important;
		right:22px !important;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free" !important;
		font-size:24px !important;
		font-weight:900 !important;
	}

	body.page-ship .hero_feature i{
		width:58px !important;
		height:58px !important;
		margin-bottom:22px !important;
		border-radius:50% !important;
		background:#f0f5fa !important;
		font-size:28px !important;
	}

	body.page-ship .hero_feature strong{
		font-size:18px !important;
		line-height:1.18 !important;
	}

	body.page-ship .hero_feature span{
		display:block !important;
		margin-top:10px !important;
		font-size:15px !important;
		line-height:1.4 !important;
	}

	body.page-ship .hero_trust_bar{
		position:absolute !important;
		top:calc(var(--mobile-hero-height) + 24px + var(--mobile-features-height) + 24px) !important;
		left:8px !important;
		right:8px !important;
		bottom:auto !important;
		height:108px !important;
		min-height:108px !important;
		padding:22px 26px !important;
		display:grid !important;
		grid-template-columns:1fr !important;
		align-items:center !important;
		border-radius:18px !important;
		background:linear-gradient(135deg, #082f5c, #061d36) !important;
		box-shadow:0 18px 40px rgba(8,47,73,0.2) !important;
		box-sizing:border-box !important;
		overflow:hidden !important;
	}

	body.page-ship .hero_trust_bar span{
		display:grid !important;
		grid-template-columns:48px minmax(0, 1fr) 18px !important;
		column-gap:16px !important;
		align-items:center !important;
	}

	body.page-ship .hero_trust_bar span:nth-child(n+2){
		display:none !important;
	}

	body.page-ship .hero_trust_bar span::after{
		content:"\f105" !important;
		font-family:"Font Awesome 5 Pro","Font Awesome 5 Free" !important;
		font-size:22px !important;
		font-weight:900 !important;
		grid-column:3 !important;
		grid-row:1 / span 2 !important;
		align-self:center !important;
	}

	body.page-ship .hero_trust_bar i{
		width:44px !important;
		height:44px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		font-size:25px !important;
		grid-row:1 / span 2 !important;
	}

	body.page-ship .hero_trust_bar strong{
		font-size:20px !important;
		line-height:1.15 !important;
		grid-column:2 !important;
	}

	body.page-ship .hero_trust_bar small{
		display:block !important;
		margin-top:7px !important;
		font-size:15px !important;
		line-height:1.25 !important;
		grid-column:2 !important;
	}

	body.page-ship .main_content > .site_footer{
		display:none !important;
	}

	body.page-ship .mobile_bottom_nav{
		position:fixed !important;
		left:0 !important;
		right:0 !important;
		bottom:0 !important;
		z-index:9000 !important;
		height:78px !important;
		padding:8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right)) !important;
		display:grid !important;
		grid-template-columns:repeat(5, minmax(0, 1fr)) !important;
		border-top:1px solid rgba(8,47,73,0.08) !important;
		background:rgba(255,255,255,0.96) !important;
		box-shadow:0 -18px 40px rgba(8,47,73,0.12) !important;
		backdrop-filter:blur(16px) !important;
		box-sizing:content-box !important;
	}

	body.page-ship .mobile_bottom_nav a{
		min-width:0 !important;
		display:flex !important;
		flex-direction:column !important;
		align-items:center !important;
		justify-content:center !important;
		gap:7px !important;
		color:#27364b !important;
		font-size:12px !important;
		line-height:1 !important;
		font-weight:800 !important;
		text-align:center !important;
	}

	body.page-ship .mobile_bottom_nav i{
		width:28px !important;
		height:28px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		color:#27364b !important;
		font-size:22px !important;
	}

	body.page-ship .mobile_bottom_nav a.active,
	body.page-ship .mobile_bottom_nav a.active i{
		color:#075fae !important;
	}
}

body.page-ship .content > div h1.title,
body.page-ship .content > div h1.page_title,
body.page-tool .content > div h1.title,
body.page-tool .content > div h1.page_title,
body.page-ship .content > div .jspPane > h1.title,
body.page-ship .content > div .jspPane > h1.page_title,
body.page-tool .content > div .jspPane > h1.title,
body.page-tool .content > div .jspPane > h1.page_title{
	position:relative;
	display:block;
	width:100%;
	margin:0 0 30px !important;
	padding:0 0 17px !important;
	border:0 !important;
	color:var(--nemo-navy) !important;
	font-family:inherit !important;
	font-size:clamp(22px, 2.2vw, 26px) !important;
	font-weight:900 !important;
	line-height:1.15 !important;
	letter-spacing:0 !important;
	text-transform:uppercase !important;
}

body.page-ship .content > div h1.title:after,
body.page-ship .content > div h1.page_title:after,
body.page-tool .content > div h1.title:after,
body.page-tool .content > div h1.page_title:after,
body.page-ship .content > div .jspPane > h1.title:after,
body.page-ship .content > div .jspPane > h1.page_title:after,
body.page-tool .content > div .jspPane > h1.title:after,
body.page-tool .content > div .jspPane > h1.page_title:after{
	content:"";
	position:absolute;
	left:0;
	right:auto;
	bottom:0;
	top:auto !important;
	width:68px !important;
	height:4px !important;
	margin:0 !important;
	border-radius:999px;
	background:#0b78d0 !important;
}

@media only screen and (max-width: 767px){
	body.page-ship .content > div h1.title,
	body.page-ship .content > div h1.page_title,
	body.page-tool .content > div h1.title,
	body.page-tool .content > div h1.page_title,
	body.page-ship .content > div .jspPane > h1.title,
	body.page-ship .content > div .jspPane > h1.page_title,
	body.page-tool .content > div .jspPane > h1.title,
	body.page-tool .content > div .jspPane > h1.page_title{
		margin-bottom:26px !important;
		padding-bottom:15px !important;
		font-size:23px !important;
	}

	body.page-ship .content > div h1.title:after,
	body.page-ship .content > div h1.page_title:after,
	body.page-tool .content > div h1.title:after,
	body.page-tool .content > div h1.page_title:after,
	body.page-ship .content > div .jspPane > h1.title:after,
	body.page-ship .content > div .jspPane > h1.page_title:after,
	body.page-tool .content > div .jspPane > h1.title:after,
	body.page-tool .content > div .jspPane > h1.page_title:after{
		width:66px !important;
		height:3px !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1020px){
	body.page-ship,
	body.page-tool{
		background-attachment:scroll !important;
	}

	body.page-ship #wrapper,
	body.page-tool #wrapper{
		width:calc(100% - 44px) !important;
		max-width:920px !important;
		height:auto !important;
		min-height:100vh !important;
		margin:22px auto 108px !important;
		top:auto !important;
		left:auto !important;
		display:block !important;
		overflow:visible !important;
		transform:none !important;
	}

	body.page-ship #wrapper .main_menu,
	body.page-tool #wrapper .main_menu{
		width:100% !important;
		max-width:none !important;
		min-width:0 !important;
		height:108px !important;
		min-height:0 !important;
		margin:0 !important;
		padding:22px 26px !important;
		position:sticky !important;
		top:0 !important;
		z-index:8200 !important;
		display:flex !important;
		flex-direction:row !important;
		align-items:center !important;
		justify-content:space-between !important;
		float:none !important;
		opacity:1 !important;
		visibility:visible !important;
		border:0 !important;
		border-radius:18px 18px 0 0 !important;
		background:rgba(247,249,252,0.96) !important;
		box-shadow:0 18px 44px rgba(8,47,73,0.1) !important;
		box-sizing:border-box !important;
		backdrop-filter:blur(16px) !important;
		transform:none !important;
		animation:none !important;
	}

	body.page-ship .main_menu .site_logo,
	body.page-tool .main_menu .site_logo{
		width:auto !important;
		height:auto !important;
		margin:0 !important;
		display:flex !important;
		align-items:center !important;
		justify-content:flex-start !important;
		flex:0 0 auto !important;
		text-align:left !important;
	}

	body.page-ship .main_menu .site_logo img,
	body.page-tool .main_menu .site_logo img{
		width:190px !important;
		max-width:42vw !important;
		height:auto !important;
		padding-top:0 !important;
		display:block !important;
		margin:0 !important;
		filter:none !important;
	}

	body.page-ship #wrapper .mobile_menu_toggle,
	body.page-tool #wrapper .mobile_menu_toggle{
		width:60px !important;
		height:60px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		flex:0 0 60px !important;
		border:1px solid rgba(8,47,73,0.1) !important;
		border-radius:999px !important;
		background:#fff !important;
		color:var(--nemo-navy) !important;
		font-size:25px !important;
		box-shadow:0 12px 30px rgba(8,47,73,0.09) !important;
	}

	body.page-ship #wrapper .main_menu ul,
	body.page-tool #wrapper .main_menu ul{
		position:absolute !important;
		top:calc(100% - 4px) !important;
		left:18px !important;
		right:18px !important;
		width:auto !important;
		max-height:calc(100vh - 150px) !important;
		padding:16px !important;
		display:none !important;
		grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
		gap:10px !important;
		overflow:auto !important;
		border:1px solid rgba(8,47,73,0.08) !important;
		border-radius:18px !important;
		background:rgba(255,255,255,0.98) !important;
		box-shadow:0 24px 60px rgba(8,47,73,0.18) !important;
		box-sizing:border-box !important;
	}

	body.mobile_nav_open.page-ship #wrapper .main_menu ul,
	body.mobile_nav_open.page-tool #wrapper .main_menu ul{
		display:grid !important;
	}

	body.page-ship #wrapper .main_menu ul li,
	body.page-tool #wrapper .main_menu ul li{
		width:auto !important;
		margin:0 !important;
		display:block !important;
	}

	body.page-ship #wrapper .main_menu ul li.nav_group_label,
	body.page-tool #wrapper .main_menu ul li.nav_group_label{
		grid-column:1 / -1 !important;
		margin:8px 2px 0 !important;
		font-size:10px !important;
		line-height:1 !important;
		letter-spacing:1.2px !important;
	}

	body.page-ship #wrapper .main_menu ul li.nav_group_label:first-child,
	body.page-tool #wrapper .main_menu ul li.nav_group_label:first-child{
		margin-top:0 !important;
	}

	body.page-ship #wrapper .main_menu ul li a,
	body.page-ship #wrapper .main_menu ul li .ship_link,
	body.page-tool #wrapper .main_menu ul li a,
	body.page-tool #wrapper .main_menu ul li .ship_link,
	body.page-tool #wrapper .main_menu ul li .tool_link{
		width:100% !important;
		min-width:0 !important;
		height:58px !important;
		padding:0 14px !important;
		display:flex !important;
		align-items:center !important;
		gap:12px !important;
		float:none !important;
		border-radius:12px !important;
		font-size:14px !important;
		line-height:1 !important;
		text-align:left !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .main_menu ul li a i,
	body.page-ship #wrapper .main_menu ul li .ship_link i,
	body.page-tool #wrapper .main_menu ul li a i,
	body.page-tool #wrapper .main_menu ul li .ship_link i,
	body.page-tool #wrapper .main_menu ul li .tool_link i{
		width:30px !important;
		min-width:30px !important;
		height:30px !important;
		line-height:30px !important;
		float:none !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		font-size:14px !important;
	}

	body.page-ship #wrapper .main_menu ul li a span,
	body.page-ship #wrapper .main_menu ul li .ship_link span,
	body.page-tool #wrapper .main_menu ul li a span,
	body.page-tool #wrapper .main_menu ul li .ship_link span,
	body.page-tool #wrapper .main_menu ul li .tool_link span{
		display:inline-block !important;
		max-width:none !important;
		font-size:14px !important;
		line-height:1.15 !important;
		white-space:normal !important;
	}

	body.page-ship #wrapper .main_content,
	body.page-tool #wrapper .main_content{
		width:100% !important;
		min-width:0 !important;
		height:auto !important;
		min-height:0 !important;
		margin:0 !important;
		position:relative !important;
		top:auto !important;
		left:auto !important;
		float:none !important;
		overflow:visible !important;
	}

	body.page-ship #wrapper .content,
	body.page-tool #wrapper .content{
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		overflow:visible !important;
		position:relative !important;
	}

	body.page-ship .content > div:not(.pt-page-current),
	body.page-tool .content > div:not(.pt-page-current){
		position:absolute !important;
		height:0 !important;
		min-height:0 !important;
		overflow:hidden !important;
		visibility:hidden !important;
		opacity:0 !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current,
	body.page-tool #wrapper .content > div.pt-page-current{
		position:relative !important;
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		margin:0 !important;
		padding:0 !important;
		overflow:visible !important;
		visibility:visible !important;
		opacity:1 !important;
		transform:none !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current .jspContainer,
	body.page-ship #wrapper .content > div.pt-page-current .jspPane,
	body.page-tool #wrapper .content > div.pt-page-current .jspContainer,
	body.page-tool #wrapper .content > div.pt-page-current .jspPane{
		position:relative !important;
		left:auto !important;
		top:auto !important;
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		overflow:visible !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .jspPane,
	body.page-tool #wrapper .content > div.pt-page-current .jspPane{
		padding:26px !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current .jspVerticalBar,
	body.page-ship #wrapper .content > div.pt-page-current .jspHorizontalBar,
	body.page-tool #wrapper .content > div.pt-page-current .jspVerticalBar,
	body.page-tool #wrapper .content > div.pt-page-current .jspHorizontalBar{
		display:none !important;
	}

	body.page-ship .main_slider{
		--tablet-hero-height:clamp(540px, 72vw, 640px);
		--tablet-features-height:318px;
		--tablet-trust-height:94px;
		width:100% !important;
		height:calc(var(--tablet-hero-height) + 24px + var(--tablet-features-height) + 24px + var(--tablet-trust-height)) !important;
		min-height:0 !important;
		max-height:none !important;
		margin:0 !important;
		position:relative !important;
		overflow:visible !important;
		border-radius:0 0 18px 18px !important;
		background:#fff !important;
		box-shadow:0 24px 54px rgba(8,47,73,0.14) !important;
	}

	body.page-ship .main_slider::after{
		inset:0 0 auto 0 !important;
		height:var(--tablet-hero-height) !important;
		border-radius:0 !important;
		background:linear-gradient(90deg, rgba(6,31,56,0.72), rgba(6,31,56,0.28) 44%, rgba(6,31,56,0.04) 72%) !important;
	}

	body.page-ship .main_slider img{
		width:100% !important;
		height:var(--tablet-hero-height) !important;
		display:block !important;
		object-fit:cover !important;
		object-position:center !important;
		border-radius:0 !important;
	}

	body.page-ship .hero_panel{
		top:78px !important;
		left:44px !important;
		width:min(470px, calc(100% - 88px)) !important;
	}

	body.page-ship .hero_title{
		margin-top:44px !important;
		font-size:clamp(46px, 7vw, 64px) !important;
		line-height:1 !important;
	}

	body.page-ship .hero_subtitle{
		font-size:23px !important;
		line-height:1.25 !important;
	}

	body.page-ship .hero_actions{
		margin-top:30px !important;
	}

	body.page-ship .hero_actions a{
		min-height:52px !important;
		padding:0 24px !important;
		font-size:16px !important;
	}

	body.page-ship .hero_features{
		position:absolute !important;
		top:calc(var(--tablet-hero-height) + 24px) !important;
		left:28px !important;
		right:28px !important;
		bottom:auto !important;
		height:var(--tablet-features-height) !important;
		padding:0 !important;
		display:grid !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:16px !important;
		background:transparent !important;
	}

	body.page-ship .hero_feature{
		min-height:148px !important;
		padding:24px 26px !important;
		display:grid !important;
		grid-template-columns:50px minmax(0, 1fr) 18px !important;
		column-gap:18px !important;
		align-items:center !important;
		border-radius:12px !important;
		background:#fff !important;
	}

	body.page-ship .hero_feature i{
		width:50px !important;
		height:50px !important;
		margin:0 !important;
		font-size:24px !important;
	}

	body.page-ship .hero_feature strong,
	body.page-ship .hero_feature span{
		grid-column:2 !important;
	}

	body.page-ship .hero_feature strong{
		font-size:15px !important;
		line-height:1.2 !important;
	}

	body.page-ship .hero_feature span{
		margin-top:7px !important;
		font-size:12px !important;
		line-height:1.35 !important;
	}

	body.page-ship .hero_trust_bar{
		position:absolute !important;
		top:calc(var(--tablet-hero-height) + 24px + var(--tablet-features-height) + 24px) !important;
		left:0 !important;
		right:0 !important;
		bottom:auto !important;
		height:var(--tablet-trust-height) !important;
		min-height:0 !important;
		padding:18px 34px !important;
		display:grid !important;
		grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
		gap:18px !important;
		border-radius:0 0 18px 18px !important;
	}

	body.page-ship .hero_trust_bar span{
		min-width:0 !important;
	}

	body.page-ship .main_content > .site_footer{
		display:none !important;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship #wrapper .main_menu,
	body.page-tool #wrapper .main_menu{
		width:100% !important;
		height:76px !important;
		min-height:0 !important;
		margin:10px 0 20px !important;
		padding:10px 12px !important;
		display:flex !important;
		align-items:center !important;
		justify-content:space-between !important;
		gap:16px !important;
		border:0 !important;
		border-radius:0 !important;
		background:transparent !important;
		box-shadow:none !important;
	}

	body.page-ship .main_menu .site_logo img,
	body.page-tool .main_menu .site_logo img{
		width:166px !important;
		max-width:calc(100vw - 132px) !important;
		height:auto !important;
		margin:0 !important;
		padding-top:0 !important;
	}

	body.page-ship #wrapper .mobile_menu_toggle,
	body.page-tool #wrapper .mobile_menu_toggle{
		width:56px !important;
		height:56px !important;
		min-width:56px !important;
		flex:0 0 56px !important;
	}

	body.page-ship #wrapper .content > div#resume .botones{
		display:grid !important;
		grid-template-columns:repeat(2, minmax(0, 1fr));
		gap:10px;
		width:100%;
		margin:12px 0 20px;
		padding:0;
		box-sizing:border-box;
	}

	body.page-ship #wrapper .content > div#resume .botones .boton{
		width:100%;
		min-width:0;
		min-height:42px;
		margin:0 !important;
		padding:8px 10px;
		display:flex;
		align-items:center;
		justify-content:center;
		gap:7px;
		box-sizing:border-box;
		line-height:1.15;
		font-size:14px;
		text-align:center;
		white-space:nowrap;
	}

	body.page-ship #wrapper .content > div#resume .botones .boton i{
		margin-right:0;
		font-size:16px;
	}

	body.page-ship .main_slider::after{
		background:
			linear-gradient(90deg, rgba(6,31,56,0.72), rgba(6,31,56,0.32) 48%, rgba(6,31,56,0.06) 76%),
			linear-gradient(180deg, rgba(6,31,56,0.18), rgba(6,31,56,0.68)) !important;
	}

	body.page-ship .hero_panel{
		top:82px !important;
		left:30px !important;
		width:calc(100% - 60px) !important;
	}

	body.page-ship .hero_eyebrow{
		padding:0 !important;
		border:0 !important;
		border-radius:0 !important;
		background:transparent !important;
		backdrop-filter:none !important;
		color:#fff !important;
		font-size:11px !important;
		font-weight:900 !important;
		line-height:1 !important;
		text-transform:uppercase !important;
		letter-spacing:1.4px !important;
		text-shadow:0 3px 14px rgba(0,0,0,0.58) !important;
		opacity:0.82 !important;
	}

	body.page-ship .hero_title{
		margin-top:54px !important;
		padding-bottom:0 !important;
		font-family:inherit !important;
		font-size:54px !important;
		line-height:1 !important;
		font-weight:850 !important;
		letter-spacing:0 !important;
		text-shadow:0 12px 34px rgba(0,0,0,0.42) !important;
	}

	body.page-ship .hero_title::after{
		display:none !important;
		content:none !important;
	}

	body.page-ship .hero_subtitle{
		margin-top:12px !important;
		color:rgba(255,255,255,0.94) !important;
		font-size:clamp(18px, 5vw, 21px) !important;
		line-height:1.35 !important;
		font-weight:750 !important;
		text-shadow:0 3px 16px rgba(0,0,0,0.45) !important;
	}

	body.page-ship .hero_stats{
		margin-top:24px !important;
		gap:24px !important;
		align-items:baseline !important;
		white-space:nowrap !important;
		overflow:visible !important;
	}

	body.page-ship .hero_stats > span{
		gap:10px !important;
		text-shadow:0 3px 14px rgba(0,0,0,0.62) !important;
	}

	body.page-ship .hero_stats > span + span{
		padding-left:20px !important;
		border-left:1px solid rgba(255,255,255,0.35) !important;
	}

	body.page-ship .hero_stats i{
		width:36px !important;
		height:36px !important;
		min-width:36px !important;
		background:rgba(255,255,255,0.12) !important;
		font-size:17px !important;
	}

	body.page-ship .hero_stats strong{
		font-size:16px !important;
		line-height:1 !important;
		letter-spacing:0 !important;
	}

	body.page-ship .hero_stats small{
		display:block !important;
		margin-top:5px !important;
		color:rgba(255,255,255,0.78) !important;
		font-size:9px !important;
		font-weight:700 !important;
		letter-spacing:0 !important;
		white-space:normal !important;
	}

	body.page-ship .hero_actions{
		margin-top:26px !important;
		display:grid !important;
		grid-template-columns:1fr 1fr !important;
		gap:12px !important;
	}

	body.page-ship .hero_actions a{
		min-height:42px !important;
		padding:0 12px !important;
		border:1px solid rgba(255,255,255,0.54) !important;
		border-radius:999px !important;
		font-size:clamp(13px, 3.8vw, 15px) !important;
		line-height:1 !important;
		font-weight:800 !important;
		letter-spacing:0 !important;
		white-space:nowrap !important;
		text-decoration:none !important;
	}

	body.page-ship .hero_actions a.primary{
		background:#e95420 !important;
		color:#fff !important;
		box-shadow:0 16px 34px rgba(233,84,32,0.28) !important;
	}

	body.page-ship .hero_actions a.secondary{
		background:rgba(255,255,255,0.08) !important;
		color:#fff !important;
		box-shadow:none !important;
		backdrop-filter:blur(3px) !important;
	}

	body.page-ship .hero_actions a.primary::after,
	body.page-ship .hero_actions a.secondary::before{
		display:none !important;
		content:none !important;
	}
}

/* Keep slider images clean while preserving text readability. */
body.page-ship .main_slider::after{
	display:none !important;
	content:none !important;
	background:transparent !important;
}

body.page-ship .hero_panel{
	z-index:160 !important;
}

body.page-ship .hero_eyebrow,
body.page-ship .hero_title,
body.page-ship .hero_subtitle,
body.page-ship .hero_stats{
	text-shadow:
		0 2px 5px rgba(0,0,0,0.92),
		0 10px 26px rgba(0,0,0,0.52) !important;
}

body.page-ship .hero_eyebrow{
	opacity:1 !important;
}

body.page-ship .hero_stats i{
	background:rgba(0,0,0,0.26) !important;
	box-shadow:0 8px 20px rgba(0,0,0,0.24) !important;
}

body.page-ship .hero_actions a{
	text-shadow:none !important;
}

@media only screen and (max-width: 767px){
	body.page-ship .hero_panel{
		top:76px !important;
	}

	body.page-ship .hero_subtitle{
		max-width:280px;
	}

	body.page-ship .hero_stats{
		max-width:100%;
	}

	body.page-ship .hero_actions{
		max-width:100%;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship .main_slider{
		--mobile-features-height:300px !important;
		--mobile-trust-height:252px !important;
		height:calc(var(--mobile-hero-height) + 18px + var(--mobile-features-height) + 16px + var(--mobile-trust-height)) !important;
	}

	body.page-ship .hero_features{
		top:calc(var(--mobile-hero-height) + 18px) !important;
		left:0 !important;
		right:0 !important;
		height:var(--mobile-features-height) !important;
		padding:0 !important;
		display:grid !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:12px !important;
		background:transparent !important;
	}

	body.page-ship .hero_feature{
		min-height:144px !important;
		padding:15px 12px !important;
		display:grid !important;
		grid-template-columns:36px minmax(0, 1fr) !important;
		column-gap:10px !important;
		align-items:start !important;
		border:1px solid var(--nemo-line) !important;
		border-radius:10px !important;
		background:#fff !important;
		box-shadow:0 12px 28px rgba(8,47,73,0.1) !important;
		color:var(--nemo-ink) !important;
	}

	body.page-ship .hero_feature::after{
		display:none !important;
		content:none !important;
	}

	body.page-ship .hero_feature i{
		grid-row:1 / span 2 !important;
		width:32px !important;
		height:32px !important;
		min-width:32px !important;
		margin:0 !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		border-radius:0 !important;
		background:transparent !important;
		color:var(--nemo-blue) !important;
		font-size:22px !important;
	}

	body.page-ship .hero_feature strong{
		grid-column:2 !important;
		display:block !important;
		color:var(--nemo-navy) !important;
		font-size:13px !important;
		line-height:1.2 !important;
		font-weight:850 !important;
	}

	body.page-ship .hero_feature span{
		grid-column:2 !important;
		display:block !important;
		margin-top:7px !important;
		color:var(--nemo-muted) !important;
		font-size:11px !important;
		line-height:1.42 !important;
		font-weight:650 !important;
	}

	body.page-ship .hero_trust_bar{
		top:calc(var(--mobile-hero-height) + 18px + var(--mobile-features-height) + 16px) !important;
		left:0 !important;
		right:0 !important;
		bottom:auto !important;
		height:var(--mobile-trust-height) !important;
		min-height:var(--mobile-trust-height) !important;
		padding:14px 20px !important;
		display:grid !important;
		grid-template-columns:1fr !important;
		grid-template-rows:repeat(3, minmax(0, 1fr)) !important;
		gap:0 !important;
		align-items:stretch !important;
		border-radius:18px !important;
		background:#0f3659 !important;
		box-shadow:0 18px 40px rgba(8,47,73,0.2) !important;
		box-sizing:border-box !important;
		overflow:hidden !important;
	}

	body.page-ship .hero_trust_bar span,
	body.page-ship .hero_trust_bar span:nth-child(n+2){
		display:grid !important;
		grid-template-columns:42px minmax(0, 1fr) !important;
		grid-template-rows:auto auto !important;
		column-gap:14px !important;
		align-content:center !important;
		align-items:center !important;
		padding:10px 0 !important;
		color:#fff !important;
	}

	body.page-ship .hero_trust_bar span + span{
		border-left:0 !important;
		border-top:1px solid rgba(255,255,255,0.22) !important;
		padding-left:0 !important;
	}

	body.page-ship .hero_trust_bar span::after{
		display:none !important;
		content:none !important;
	}

	body.page-ship .hero_trust_bar i{
		grid-column:1 !important;
		grid-row:1 / span 2 !important;
		width:32px !important;
		height:32px !important;
		margin:0 !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		color:#fff !important;
		font-size:22px !important;
	}

	body.page-ship .hero_trust_bar strong{
		grid-column:2 !important;
		display:block !important;
		color:#fff !important;
		font-size:14px !important;
		line-height:1.15 !important;
		font-weight:850 !important;
	}

	body.page-ship .hero_trust_bar small{
		grid-column:2 !important;
		display:block !important;
		margin-top:4px !important;
		color:rgba(255,255,255,0.86) !important;
		font-size:11px !important;
		line-height:1.28 !important;
		font-weight:650 !important;
	}
}

@media only screen and (max-width: 359px){
	body.page-ship .main_slider{
		--mobile-features-height:328px !important;
		--mobile-trust-height:270px !important;
	}

	body.page-ship .hero_feature{
		min-height:158px !important;
		padding:14px 10px !important;
		grid-template-columns:30px minmax(0, 1fr) !important;
		column-gap:8px !important;
	}

	body.page-ship .hero_feature i{
		width:28px !important;
		height:28px !important;
		min-width:28px !important;
		font-size:20px !important;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship #wrapper .main_menu,
	body.page-tool #wrapper .main_menu{
		position:sticky !important;
		top:0 !important;
		z-index:8200 !important;
		width:100% !important;
		height:76px !important;
		min-height:0 !important;
		margin:10px 0 20px !important;
		padding:10px 12px !important;
		display:flex !important;
		align-items:center !important;
		justify-content:space-between !important;
		gap:16px !important;
		float:none !important;
		overflow:visible !important;
		border:0 !important;
		border-radius:0 !important;
		background:transparent !important;
		box-shadow:none !important;
		box-sizing:border-box !important;
	}

	body.page-ship .main_menu .site_logo,
	body.page-tool .main_menu .site_logo{
		width:auto !important;
		height:auto !important;
		margin:0 !important;
		display:flex !important;
		align-items:center !important;
		flex:1 1 auto !important;
		text-align:left !important;
	}

	body.page-ship .main_menu .site_logo img,
	body.page-tool .main_menu .site_logo img{
		width:166px !important;
		max-width:calc(100vw - 132px) !important;
		height:auto !important;
		margin:0 !important;
		padding-top:0 !important;
		display:block !important;
		filter:none !important;
	}

	body.page-ship #wrapper .mobile_menu_toggle,
	body.page-tool #wrapper .mobile_menu_toggle{
		width:56px !important;
		height:56px !important;
		min-width:56px !important;
		flex:0 0 56px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		border:1px solid rgba(8,47,73,0.08) !important;
		border-radius:999px !important;
		background:#fff !important;
		color:var(--nemo-navy) !important;
		font-size:24px !important;
		box-shadow:0 10px 26px rgba(8,47,73,0.08) !important;
	}

	body.page-ship #wrapper .main_menu ul,
	body.page-tool #wrapper .main_menu ul{
		position:absolute !important;
		top:calc(100% + 8px) !important;
		left:0 !important;
		right:0 !important;
		width:auto !important;
		max-height:calc(100vh - 128px) !important;
		margin:0 !important;
		padding:14px !important;
		display:none !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:8px !important;
		overflow:auto !important;
		list-style:none !important;
		border:1px solid rgba(8,47,73,0.08) !important;
		border-radius:16px !important;
		background:rgba(255,255,255,0.99) !important;
		box-shadow:0 24px 60px rgba(8,47,73,0.18) !important;
		box-sizing:border-box !important;
	}

	body.mobile_nav_open.page-ship #wrapper .main_menu ul,
	body.mobile_nav_open.page-tool #wrapper .main_menu ul{
		display:grid !important;
	}
}

@media only screen and (max-width: 767px){
	body.page-tool #wrapper .main_menu{
		position:sticky !important;
		top:0 !important;
		z-index:8200 !important;
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		margin:10px 0 12px !important;
		padding:14px 16px !important;
		display:flex !important;
		align-items:center !important;
		justify-content:space-between !important;
		gap:14px !important;
		float:none !important;
		overflow:visible !important;
		border:1px solid rgba(8,47,73,0.07) !important;
		border-radius:16px !important;
		background:rgba(247,249,252,0.97) !important;
		box-shadow:0 16px 38px rgba(8,47,73,0.11) !important;
		box-sizing:border-box !important;
	}

	body.page-tool .main_menu .site_logo{
		width:auto !important;
		height:auto !important;
		margin:0 !important;
		display:flex !important;
		align-items:center !important;
		flex:1 1 auto !important;
		text-align:left !important;
	}

	body.page-tool .main_menu .site_logo img{
		width:178px !important;
		max-width:calc(100vw - 126px) !important;
		height:auto !important;
		margin:0 !important;
		padding-top:0 !important;
		display:block !important;
	}

	body.page-tool #wrapper .mobile_menu_toggle{
		width:54px !important;
		height:54px !important;
		min-width:54px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		border:1px solid rgba(8,47,73,0.1) !important;
		border-radius:999px !important;
		background:#fff !important;
		color:var(--nemo-navy) !important;
		font-size:23px !important;
		box-shadow:0 12px 28px rgba(8,47,73,0.09) !important;
	}

	body.page-tool #wrapper .main_menu ul{
		position:absolute !important;
		top:calc(100% + 8px) !important;
		left:0 !important;
		right:0 !important;
		width:auto !important;
		max-height:calc(100vh - 128px) !important;
		margin:0 !important;
		padding:14px !important;
		display:none !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:8px !important;
		overflow:auto !important;
		list-style:none !important;
		border:1px solid rgba(8,47,73,0.08) !important;
		border-radius:16px !important;
		background:rgba(255,255,255,0.99) !important;
		box-shadow:0 24px 60px rgba(8,47,73,0.18) !important;
		box-sizing:border-box !important;
	}

	body.mobile_nav_open.page-tool #wrapper .main_menu ul{
		display:grid !important;
	}

	body.page-tool #wrapper .main_menu ul li{
		width:auto !important;
		margin:0 !important;
		display:block !important;
	}

	body.page-tool #wrapper .main_menu ul li.nav_group_label{
		grid-column:1 / -1 !important;
		margin:8px 2px 0 !important;
		color:rgba(23,50,77,0.62) !important;
		font-size:10px !important;
		font-weight:850 !important;
		line-height:1 !important;
		letter-spacing:1.2px !important;
		text-align:center !important;
		text-transform:uppercase !important;
	}

	body.page-tool #wrapper .main_menu ul li.nav_group_label:first-child{
		margin-top:0 !important;
	}

	body.page-tool #wrapper .main_menu ul li a,
	body.page-tool #wrapper .main_menu ul li .ship_link,
	body.page-tool #wrapper .main_menu ul li .tool_link{
		width:100% !important;
		min-width:0 !important;
		height:52px !important;
		padding:0 10px !important;
		display:flex !important;
		align-items:center !important;
		justify-content:flex-start !important;
		gap:10px !important;
		float:none !important;
		border:1px solid transparent !important;
		border-radius:10px !important;
		background:transparent !important;
		color:var(--nemo-navy) !important;
		font-size:14px !important;
		font-weight:800 !important;
		line-height:1 !important;
		text-align:left !important;
		box-sizing:border-box !important;
		box-shadow:none !important;
	}

	body.page-tool #wrapper .main_menu ul li a i,
	body.page-tool #wrapper .main_menu ul li .ship_link i,
	body.page-tool #wrapper .main_menu ul li .tool_link i{
		width:28px !important;
		min-width:28px !important;
		height:28px !important;
		line-height:28px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		float:none !important;
		border-radius:8px !important;
		background:rgba(8,145,178,0.12) !important;
		color:var(--nemo-teal) !important;
		font-size:13px !important;
	}

	body.page-tool #wrapper .main_menu ul li a.tool_link i,
	body.page-tool #wrapper .main_menu ul li .tool_link i{
		background:rgba(249,115,91,0.14) !important;
		color:var(--nemo-coral) !important;
	}

	body.page-tool #wrapper .main_menu ul li a span,
	body.page-tool #wrapper .main_menu ul li .ship_link span,
	body.page-tool #wrapper .main_menu ul li .tool_link span{
		display:inline-block !important;
		min-width:0 !important;
		font-size:14px !important;
		line-height:1.15 !important;
		white-space:normal !important;
	}

	body.page-tool #wrapper .main_menu ul li .active_tool{
		border-color:rgba(255,255,255,0.22) !important;
		background:linear-gradient(135deg, var(--nemo-navy), var(--nemo-blue)) !important;
		color:#fff !important;
		box-shadow:0 14px 30px rgba(8,47,73,0.2) !important;
		cursor:default !important;
	}

	body.page-tool #wrapper .main_menu ul li .active_tool i{
		background:rgba(255,255,255,0.2) !important;
		color:#fff !important;
	}
}

body.page-ship .content > div#resume .lists .box_title.title,
body.page-ship .content > div#resume .education .box_title.title,
body.page-ship .content > div#resume .employment .box_title.title{
	border-bottom:0 !important;
	margin-bottom:10px !important;
	padding-bottom:0 !important;
	background:transparent !important;
}

body.page-ship .content > div#resume .lists .box_title.title:after,
body.page-ship .content > div#resume .education .box_title.title:after,
body.page-ship .content > div#resume .employment .box_title.title:after,
body.page-ship .content > div#resume .lists .box_title:after,
body.page-ship .content > div#resume .education .box_title:after,
body.page-ship .content > div#resume .employment .box_title:after{
	display:none !important;
	content:none !important;
	width:0 !important;
	height:0 !important;
	background:none !important;
}

body.page-material .content > div .box_title.title,
body.page-material .content > div#virtual-tour .jspPane > .box_title.title,
body.page-material .left_side > .box_title.title,
body.page-material .right_side > .box_title.title{
	border-bottom:0 !important;
	margin-bottom:8px !important;
	padding-bottom:0 !important;
	background:transparent !important;
}

body.page-material .content > div .box_title.title:after,
body.page-material .content > div#virtual-tour .jspPane > .box_title.title:after,
body.page-material .left_side > .box_title.title:after,
body.page-material .right_side > .box_title.title:after{
	display:none !important;
	content:none !important;
	width:0 !important;
	height:0 !important;
	background:none !important;
}

@media only screen and (min-width: 768px) and (max-width: 1020px){
	body.page-ship #wrapper.animated,
	body.page-tool #wrapper.animated,
	body.page-ship #wrapper .main_menu.animated,
	body.page-tool #wrapper .main_menu.animated{
		animation:none !important;
		transform:none !important;
	}

	body.page-ship #wrapper,
	body.page-tool #wrapper{
		width:calc(100% - 48px) !important;
		max-width:none !important;
		height:auto !important;
		min-height:100vh !important;
		margin:24px auto !important;
		top:auto !important;
		left:auto !important;
		display:grid !important;
		grid-template-columns:220px minmax(0, 1fr) !important;
		column-gap:0 !important;
		overflow:visible !important;
		transform:none !important;
	}

	body.page-ship #wrapper .main_menu,
	body.page-tool #wrapper .main_menu{
		width:220px !important;
		min-width:220px !important;
		max-width:220px !important;
		height:auto !important;
		min-height:calc(100vh - 48px) !important;
		margin:0 !important;
		padding:20px 16px !important;
		display:flex !important;
		flex-direction:column !important;
		float:none !important;
		opacity:1 !important;
		visibility:visible !important;
		border-radius:14px 0 0 14px !important;
		box-sizing:border-box !important;
	}

	body.page-ship .main_menu .site_logo,
	body.page-tool .main_menu .site_logo{
		width:100% !important;
		height:auto !important;
		margin:0 0 22px !important;
		display:block !important;
		text-align:left !important;
	}

	body.page-ship .main_menu .site_logo img,
	body.page-tool .main_menu .site_logo img{
		width:138px !important;
		max-width:100% !important;
		height:auto !important;
		padding-top:0 !important;
		display:block !important;
		margin:0 !important;
	}

	body.page-ship #wrapper .main_menu ul,
	body.page-tool #wrapper .main_menu ul{
		width:100% !important;
		display:block !important;
		position:static !important;
		padding:0 !important;
		margin:0 !important;
		overflow:visible !important;
	}

	body.page-ship #wrapper .main_menu ul li,
	body.page-tool #wrapper .main_menu ul li{
		width:100% !important;
		display:block !important;
		margin:0 0 7px !important;
	}

	body.page-ship #wrapper .main_menu ul li.nav_group_label,
	body.page-tool #wrapper .main_menu ul li.nav_group_label{
		margin:15px 4px 8px !important;
		font-size:9px !important;
		line-height:1.1 !important;
		letter-spacing:1px !important;
	}

	body.page-ship #wrapper .main_menu ul li a,
	body.page-ship #wrapper .main_menu ul li .ship_link,
	body.page-tool #wrapper .main_menu ul li a,
	body.page-tool #wrapper .main_menu ul li .ship_link,
	body.page-tool #wrapper .main_menu ul li .tool_link{
		width:100% !important;
		height:42px !important;
		min-width:0 !important;
		padding:0 10px !important;
		display:flex !important;
		align-items:center !important;
		gap:10px !important;
		float:none !important;
		font-size:12px !important;
		line-height:1 !important;
		text-align:left !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .main_menu ul li a i,
	body.page-ship #wrapper .main_menu ul li .ship_link i,
	body.page-tool #wrapper .main_menu ul li a i,
	body.page-tool #wrapper .main_menu ul li .ship_link i,
	body.page-tool #wrapper .main_menu ul li .tool_link i{
		width:24px !important;
		min-width:24px !important;
		height:24px !important;
		line-height:24px !important;
		float:none !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		font-size:12px !important;
	}

	body.page-ship #wrapper .main_menu ul li a span,
	body.page-ship #wrapper .main_menu ul li .ship_link span,
	body.page-tool #wrapper .main_menu ul li a span,
	body.page-tool #wrapper .main_menu ul li .ship_link span,
	body.page-tool #wrapper .main_menu ul li .tool_link span{
		display:inline-block !important;
		max-width:130px !important;
		color:inherit !important;
		font-size:12px !important;
		line-height:1.15 !important;
		white-space:normal !important;
	}

	body.page-ship #wrapper .mobile_menu_toggle,
	body.page-tool #wrapper .mobile_menu_toggle,
	body.page-ship .mobile_bottom_nav,
	body.page-tool .mobile_bottom_nav{
		display:none !important;
	}

	body.page-ship #wrapper .main_content,
	body.page-tool #wrapper .main_content{
		width:100% !important;
		min-width:0 !important;
		height:auto !important;
		min-height:100vh !important;
		margin:0 !important;
		position:relative !important;
		top:auto !important;
		left:auto !important;
		float:none !important;
		overflow:visible !important;
	}

	body.page-ship #wrapper .content,
	body.page-tool #wrapper .content{
		width:100% !important;
		height:100vh !important;
		min-height:720px !important;
		overflow:hidden !important;
		position:relative !important;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship #wrapper.animated,
	body.page-tool #wrapper.animated,
	body.page-ship #wrapper .main_menu.animated,
	body.page-tool #wrapper .main_menu.animated{
		animation:none !important;
		transform:none !important;
	}

	body.page-ship .content > div:not(.pt-page-current){
		position:absolute !important;
		height:0 !important;
		min-height:0 !important;
		overflow:hidden !important;
		visibility:hidden !important;
		opacity:0 !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home){
		position:relative !important;
		width:100% !important;
		height:auto !important;
		min-height:calc(100vh - 190px) !important;
		max-height:none !important;
		margin:0 !important;
		padding:0 !important;
		overflow:visible !important;
		visibility:visible !important;
		opacity:1 !important;
		transform:none !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .jspContainer,
	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .jspPane{
		position:relative !important;
		left:auto !important;
		top:auto !important;
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		overflow:visible !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .jspPane{
		padding:18px !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .jspVerticalBar,
	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .jspHorizontalBar{
		display:none !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .left_side,
	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .right_side{
		width:100% !important;
		float:none !important;
		display:block !important;
		margin:0 0 18px !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home) img{
		max-width:100% !important;
		height:auto;
	}

	body.page-ship #wrapper .main_content,
	body.page-ship #wrapper .content{
		height:auto !important;
		min-height:calc(100vh - 178px) !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1020px){
	body.page-ship #wrapper,
	body.page-tool #wrapper{
		width:calc(100% - 44px) !important;
		max-width:920px !important;
		height:auto !important;
		min-height:100vh !important;
		margin:22px auto 108px !important;
		top:auto !important;
		left:auto !important;
		display:block !important;
		grid-template-columns:none !important;
		overflow:visible !important;
		transform:none !important;
		animation:none !important;
	}

	body.page-ship #wrapper .main_menu,
	body.page-tool #wrapper .main_menu{
		width:100% !important;
		max-width:none !important;
		min-width:0 !important;
		height:108px !important;
		min-height:0 !important;
		margin:0 !important;
		padding:22px 26px !important;
		position:sticky !important;
		top:0 !important;
		z-index:8200 !important;
		display:flex !important;
		flex-direction:row !important;
		align-items:center !important;
		justify-content:space-between !important;
		float:none !important;
		opacity:1 !important;
		visibility:visible !important;
		border:0 !important;
		border-radius:18px 18px 0 0 !important;
		background:rgba(247,249,252,0.96) !important;
		box-shadow:0 18px 44px rgba(8,47,73,0.1) !important;
		box-sizing:border-box !important;
		transform:none !important;
		animation:none !important;
	}

	body.page-ship .main_menu .site_logo,
	body.page-tool .main_menu .site_logo{
		width:auto !important;
		height:auto !important;
		margin:0 !important;
		display:flex !important;
		align-items:center !important;
		flex:0 0 auto !important;
		text-align:left !important;
	}

	body.page-ship .main_menu .site_logo img,
	body.page-tool .main_menu .site_logo img{
		width:190px !important;
		max-width:42vw !important;
		height:auto !important;
		padding-top:0 !important;
		display:block !important;
		margin:0 !important;
		filter:none !important;
	}

	body.page-ship #wrapper .mobile_menu_toggle,
	body.page-tool #wrapper .mobile_menu_toggle{
		width:60px !important;
		height:60px !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		flex:0 0 60px !important;
		border:1px solid rgba(8,47,73,0.1) !important;
		border-radius:999px !important;
		background:#fff !important;
		color:var(--nemo-navy) !important;
		font-size:25px !important;
		box-shadow:0 12px 30px rgba(8,47,73,0.09) !important;
	}

	body.page-ship #wrapper .main_menu ul,
	body.page-tool #wrapper .main_menu ul{
		position:absolute !important;
		top:calc(100% - 4px) !important;
		left:18px !important;
		right:18px !important;
		width:auto !important;
		max-height:calc(100vh - 150px) !important;
		padding:16px !important;
		display:none !important;
		grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
		gap:10px !important;
		overflow:auto !important;
		border:1px solid rgba(8,47,73,0.08) !important;
		border-radius:18px !important;
		background:rgba(255,255,255,0.98) !important;
		box-shadow:0 24px 60px rgba(8,47,73,0.18) !important;
		box-sizing:border-box !important;
	}

	body.mobile_nav_open.page-ship #wrapper .main_menu ul,
	body.mobile_nav_open.page-tool #wrapper .main_menu ul{
		display:grid !important;
	}

	body.page-ship #wrapper .main_menu ul li,
	body.page-tool #wrapper .main_menu ul li{
		width:auto !important;
		margin:0 !important;
		display:block !important;
	}

	body.page-ship #wrapper .main_menu ul li.nav_group_label,
	body.page-tool #wrapper .main_menu ul li.nav_group_label{
		grid-column:1 / -1 !important;
		margin:8px 2px 0 !important;
		font-size:10px !important;
		line-height:1 !important;
		letter-spacing:1.2px !important;
	}

	body.page-ship #wrapper .main_menu ul li a,
	body.page-ship #wrapper .main_menu ul li .ship_link,
	body.page-tool #wrapper .main_menu ul li a,
	body.page-tool #wrapper .main_menu ul li .ship_link,
	body.page-tool #wrapper .main_menu ul li .tool_link{
		width:100% !important;
		min-width:0 !important;
		height:58px !important;
		padding:0 14px !important;
		display:flex !important;
		align-items:center !important;
		gap:12px !important;
		float:none !important;
		border-radius:12px !important;
		font-size:14px !important;
		line-height:1 !important;
		text-align:left !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .main_menu ul li a i,
	body.page-ship #wrapper .main_menu ul li .ship_link i,
	body.page-tool #wrapper .main_menu ul li a i,
	body.page-tool #wrapper .main_menu ul li .ship_link i,
	body.page-tool #wrapper .main_menu ul li .tool_link i{
		width:30px !important;
		min-width:30px !important;
		height:30px !important;
		line-height:30px !important;
		float:none !important;
		display:inline-flex !important;
		align-items:center !important;
		justify-content:center !important;
		font-size:14px !important;
	}

	body.page-ship #wrapper .main_menu ul li a span,
	body.page-ship #wrapper .main_menu ul li .ship_link span,
	body.page-tool #wrapper .main_menu ul li a span,
	body.page-tool #wrapper .main_menu ul li .ship_link span,
	body.page-tool #wrapper .main_menu ul li .tool_link span{
		display:inline-block !important;
		max-width:none !important;
		font-size:14px !important;
		line-height:1.15 !important;
		white-space:normal !important;
	}

	body.page-ship #wrapper .main_content,
	body.page-tool #wrapper .main_content,
	body.page-ship #wrapper .content,
	body.page-tool #wrapper .content{
		width:100% !important;
		min-width:0 !important;
		height:auto !important;
		min-height:0 !important;
		margin:0 !important;
		position:relative !important;
		top:auto !important;
		left:auto !important;
		float:none !important;
		overflow:visible !important;
	}

	body.page-ship .content > div:not(.pt-page-current),
	body.page-tool .content > div:not(.pt-page-current){
		position:absolute !important;
		height:0 !important;
		min-height:0 !important;
		overflow:hidden !important;
		visibility:hidden !important;
		opacity:0 !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current,
	body.page-tool #wrapper .content > div.pt-page-current{
		position:relative !important;
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		margin:0 !important;
		padding:0 !important;
		overflow:visible !important;
		visibility:visible !important;
		opacity:1 !important;
		transform:none !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current .jspContainer,
	body.page-ship #wrapper .content > div.pt-page-current .jspPane,
	body.page-tool #wrapper .content > div.pt-page-current .jspContainer,
	body.page-tool #wrapper .content > div.pt-page-current .jspPane{
		position:relative !important;
		left:auto !important;
		top:auto !important;
		width:100% !important;
		height:auto !important;
		min-height:0 !important;
		overflow:visible !important;
		box-sizing:border-box !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current:not(#home) .jspPane,
	body.page-tool #wrapper .content > div.pt-page-current .jspPane{
		padding:26px !important;
	}

	body.page-ship #wrapper .content > div.pt-page-current .jspVerticalBar,
	body.page-ship #wrapper .content > div.pt-page-current .jspHorizontalBar,
	body.page-tool #wrapper .content > div.pt-page-current .jspVerticalBar,
	body.page-tool #wrapper .content > div.pt-page-current .jspHorizontalBar,
	body.page-ship .mobile_bottom_nav,
	body.page-tool .mobile_bottom_nav{
		display:none !important;
	}

	body.page-ship .main_slider{
		--tablet-hero-height:clamp(540px, 72vw, 640px);
		--tablet-features-height:318px;
		--tablet-trust-height:94px;
		width:100% !important;
		height:calc(var(--tablet-hero-height) + 24px + var(--tablet-features-height) + 24px + var(--tablet-trust-height)) !important;
		min-height:0 !important;
		max-height:none !important;
		margin:0 !important;
		position:relative !important;
		overflow:visible !important;
		border-radius:0 0 18px 18px !important;
		background:#fff !important;
		box-shadow:0 24px 54px rgba(8,47,73,0.14) !important;
	}

	body.page-ship .main_slider::after{
		inset:0 0 auto 0 !important;
		height:var(--tablet-hero-height) !important;
		border-radius:0 !important;
		background:linear-gradient(90deg, rgba(6,31,56,0.72), rgba(6,31,56,0.28) 44%, rgba(6,31,56,0.04) 72%) !important;
	}

	body.page-ship .main_slider img{
		width:100% !important;
		height:var(--tablet-hero-height) !important;
		display:block !important;
		object-fit:cover !important;
		object-position:center !important;
		border-radius:0 !important;
	}

	body.page-ship .hero_panel{
		top:78px !important;
		left:44px !important;
		width:min(470px, calc(100% - 88px)) !important;
	}

	body.page-ship .hero_title{
		margin-top:44px !important;
		font-size:clamp(46px, 7vw, 64px) !important;
		line-height:1 !important;
	}

	body.page-ship .hero_subtitle{
		font-size:23px !important;
		line-height:1.25 !important;
	}

	body.page-ship .hero_features{
		position:absolute !important;
		top:calc(var(--tablet-hero-height) + 24px) !important;
		left:28px !important;
		right:28px !important;
		bottom:auto !important;
		height:var(--tablet-features-height) !important;
		padding:0 !important;
		display:grid !important;
		grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
		gap:16px !important;
		background:transparent !important;
	}

	body.page-ship .hero_feature{
		min-height:148px !important;
		padding:24px 26px !important;
		display:grid !important;
		grid-template-columns:50px minmax(0, 1fr) 18px !important;
		column-gap:18px !important;
		align-items:center !important;
		border-radius:12px !important;
		background:#fff !important;
	}

	body.page-ship .hero_feature i{
		width:50px !important;
		height:50px !important;
		margin:0 !important;
		font-size:24px !important;
	}

	body.page-ship .hero_feature strong,
	body.page-ship .hero_feature span{
		grid-column:2 !important;
	}

	body.page-ship .hero_feature strong{
		font-size:15px !important;
		line-height:1.2 !important;
	}

	body.page-ship .hero_feature span{
		margin-top:7px !important;
		font-size:12px !important;
		line-height:1.35 !important;
	}

	body.page-ship .hero_trust_bar{
		position:absolute !important;
		top:calc(var(--tablet-hero-height) + 24px + var(--tablet-features-height) + 24px) !important;
		left:0 !important;
		right:0 !important;
		bottom:auto !important;
		height:var(--tablet-trust-height) !important;
		min-height:0 !important;
		padding:18px 34px !important;
		display:grid !important;
		grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
		gap:18px !important;
		border-radius:0 0 18px 18px !important;
	}

	body.page-ship .main_content > .site_footer{
		display:none !important;
	}
}

@media only screen and (max-width: 767px){
	body.page-ship #wrapper .main_menu,
	body.page-tool #wrapper .main_menu{
		width:100% !important;
		height:76px !important;
		min-height:0 !important;
		margin:10px 0 20px !important;
		padding:10px 12px !important;
		display:flex !important;
		align-items:center !important;
		justify-content:space-between !important;
		gap:16px !important;
		border:0 !important;
		border-radius:0 !important;
		background:transparent !important;
		box-shadow:none !important;
	}

	body.page-ship .main_menu .site_logo img,
	body.page-tool .main_menu .site_logo img{
		width:166px !important;
		max-width:calc(100vw - 132px) !important;
		height:auto !important;
		margin:0 !important;
		padding-top:0 !important;
	}

	body.page-ship #wrapper .mobile_menu_toggle,
	body.page-tool #wrapper .mobile_menu_toggle{
		width:56px !important;
		height:56px !important;
		min-width:56px !important;
		flex:0 0 56px !important;
	}

	body.page-ship #wrapper .content > div#resume .lists .box_title.title,
	body.page-ship #wrapper .content > div#resume .education .box_title.title,
	body.page-ship #wrapper .content > div#resume .employment .box_title.title{
		display:grid !important;
		grid-template-columns:42px minmax(0, 1fr);
		column-gap:10px;
		align-items:start;
		width:100%;
		margin:0 0 12px !important;
	}

	body.page-ship #wrapper .content > div#resume .lists .box_title.title .icon,
	body.page-ship #wrapper .content > div#resume .education .box_title.title .icon,
	body.page-ship #wrapper .content > div#resume .employment .box_title.title .icon{
		grid-column:1;
		grid-row:1;
		float:none !important;
		width:42px !important;
		height:42px !important;
		padding:0 !important;
		display:flex !important;
		align-items:center;
		justify-content:center;
		box-sizing:border-box;
		margin:0 !important;
	}

	body.page-ship #wrapper .content > div#resume .lists .box_title.title .text,
	body.page-ship #wrapper .content > div#resume .education .box_title.title .text,
	body.page-ship #wrapper .content > div#resume .employment .box_title.title .text{
		grid-column:2;
		grid-row:1;
		float:none !important;
		width:auto !important;
		min-width:0;
		margin:0 !important;
		padding-top:1px;
		display:block !important;
		font-size:20px;
		line-height:1.08;
	}

	body.page-ship #wrapper .content > div#resume .lists .box_title.title .text span,
	body.page-ship #wrapper .content > div#resume .education .box_title.title .text span,
	body.page-ship #wrapper .content > div#resume .employment .box_title.title .text span{
		display:block;
		margin-top:4px;
		font-size:14px;
		line-height:1.2;
	}

	body.page-ship #wrapper .content > div#resume .lists .box_title.title .clear,
	body.page-ship #wrapper .content > div#resume .education .box_title.title .clear,
	body.page-ship #wrapper .content > div#resume .employment .box_title.title .clear{
		display:none !important;
	}

	body.page-ship #wrapper .content > div#resume .botones{
		display:grid !important;
		grid-template-columns:repeat(2, minmax(0, 1fr));
		gap:10px;
		width:100%;
		margin:12px 0 20px;
		padding:0;
		box-sizing:border-box;
	}

	body.page-ship #wrapper .content > div#resume .botones .boton{
		width:100%;
		min-width:0;
		min-height:42px;
		margin:0 !important;
		padding:8px 10px;
		display:flex;
		align-items:center;
		justify-content:center;
		gap:7px;
		box-sizing:border-box;
		line-height:1.15;
		font-size:14px;
		text-align:center;
		white-space:nowrap;
	}

	body.page-ship #wrapper .content > div#resume .botones .boton i{
		margin-right:0;
		font-size:16px;
	}
}

body.page-ship #wrapper .content > div#about .box.pictures{
	overflow:visible !important;
	background:transparent !important;
	border:0 !important;
	box-shadow:none !important;
}

body.page-ship #wrapper .content > div#about .box.pictures img{
	display:none;
	width:100% !important;
	height:auto !important;
	min-height:0 !important;
	max-height:none !important;
	aspect-ratio:auto !important;
	object-fit:contain !important;
	object-position:center center !important;
	border:0 !important;
	border-radius:8px;
	opacity:1 !important;
	box-shadow:0 18px 42px rgba(8,47,73,0.12) !important;
	transform:none !important;
}

body.page-ship #wrapper .content > div#about .box.pictures img.first{
	display:block;
}

body.page-ship #wrapper .content > div#about .box.pictures:hover img{
	transform:none !important;
	opacity:1 !important;
}

body.page-ship #wrapper .content > div#about .right_side > .text{
	padding:4px 0 0 !important;
	line-height:1.55;
}

body.page-ship #wrapper .content > div#about .box.who_i_am{
	background:#fff !important;
	border:1px solid rgba(12,66,96,0.14) !important;
	box-shadow:0 16px 34px rgba(8,47,73,0.08) !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am > .text:first-child{
	padding:18px 18px 12px !important;
	border-bottom:0 !important;
	background:linear-gradient(135deg, rgba(235,250,253,0.82), rgba(255,255,255,0.72)) !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am > .title,
body.page-ship #wrapper .content > div#about .personal_details .item.title,
body.page-ship #wrapper .content > div#about .box.my_services > .title{
	border-bottom:0 !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am > .title:after,
body.page-ship #wrapper .content > div#about .personal_details .item.title:after,
body.page-ship #wrapper .content > div#about .box.my_services > .title:after{
	display:none !important;
	content:none !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am > .title{
	min-height:44px;
	margin:0 !important;
	padding:0 18px 0 0 !important;
	display:flex !important;
	align-items:center;
	gap:12px;
	background:transparent !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am > .title .icon{
	flex:0 0 42px;
	width:42px !important;
	height:42px !important;
	margin:0 !important;
	display:flex;
	align-items:center;
	justify-content:center;
}

body.page-ship #wrapper .content > div#about .box.who_i_am > .title .text{
	width:auto !important;
	margin:0 !important;
	padding:0 !important;
	font-size:22px;
	line-height:1;
	letter-spacing:0;
}

body.page-ship #wrapper .content > div#about .box.who_i_am > .text:not(:first-child){
	padding:8px 18px 6px !important;
	margin:0 !important;
	line-height:1.55;
}

body.page-ship #wrapper .content > div#about .box.who_i_am h3{
	margin:14px 0 0;
	color:var(--nemo-ink);
	font-size:17px;
	line-height:1.25;
}

body.page-ship #wrapper .content > div#about .box.who_i_am .personal_details{
	padding:6px 18px 18px !important;
	margin:0 !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am .personal_details ul{
	margin:0 0 14px;
	padding-left:18px !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am .personal_details ul:last-child{
	margin-bottom:0;
}

body.page-ship #wrapper .content > div#about .box.who_i_am .personal_details li{
	margin:0 0 4px;
	line-height:1.22 !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am .personal_details .item.title{
	margin:10px 0 6px !important;
	padding:0 !important;
	display:block !important;
	clear:both !important;
	float:none !important;
	background:transparent !important;
}

body.page-ship #wrapper .content > div#about .box.who_i_am .personal_details .item.title .text{
	width:auto !important;
	margin:0 !important;
	padding:0 !important;
	display:block !important;
	clear:both !important;
	float:none !important;
	color:var(--nemo-ink) !important;
	font-size:14px;
	line-height:1.2;
}

body.page-ship #wrapper .content > div#about .box.who_i_am .personal_details .item.title + ul{
	clear:both !important;
	display:block;
}

body.page-ship #wrapper .content > div#about .accommodation_block{
	margin:0 !important;
	padding:4px 0 0 !important;
	color:#17324a;
}

body.page-ship #wrapper .content > div#about .accommodation_title{
	margin:0 0 14px;
	color:var(--nemo-ink);
	font-size:15px;
	line-height:1.25;
}

body.page-ship #wrapper .content > div#about .accommodation_list{
	display:grid;
	gap:10px;
}

body.page-ship #wrapper .content > div#about .accommodation_item{
	display:grid;
	grid-template-columns:max-content minmax(0, 1fr);
	gap:5px;
	align-items:start;
	line-height:1.35;
}

body.page-ship #wrapper .content > div#about .accommodation_item strong{
	color:var(--nemo-ink);
}

body.page-ship #wrapper .content > div#about .box.my_services{
	overflow:hidden !important;
	background:#fff !important;
	border:1px solid rgba(12,66,96,0.14) !important;
	box-shadow:0 16px 34px rgba(8,47,73,0.08) !important;
}

body.page-ship #wrapper .content > div#about .box.my_services > .title{
	min-height:46px;
	margin:0 !important;
	padding:0 16px 0 0 !important;
	display:flex !important;
	align-items:center;
	gap:12px;
	background:#fff !important;
}

body.page-ship #wrapper .content > div#about .box.my_services > .title .icon{
	flex:0 0 42px;
	width:42px !important;
	height:42px !important;
	margin:0 !important;
	display:flex;
	align-items:center;
	justify-content:center;
}

body.page-ship #wrapper .content > div#about .box.my_services > .title .text{
	width:auto !important;
	margin:0 !important;
	padding:0 !important;
	color:var(--nemo-blue) !important;
	font-size:21px;
	line-height:1.05;
	letter-spacing:0;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion{
	display:block !important;
	width:100% !important;
	padding:0 14px 12px !important;
	box-sizing:border-box;
	background:#fff !important;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item{
	margin:0 !important;
	border-top:1px solid rgba(12,66,96,0.11);
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_title{
	width:100% !important;
	border:0 !important;
	background:transparent !important;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn{
	width:100% !important;
	padding:12px 0 !important;
	display:flex !important;
	align-items:center;
	gap:10px;
	float:none !important;
	background:transparent !important;
	color:var(--nemo-ink) !important;
	opacity:1 !important;
	box-shadow:none !important;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn .arrow{
	float:none !important;
	margin:0 !important;
	order:0;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn .arrow i{
	color:var(--nemo-blue) !important;
	font-size:13px;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn .text{
	color:var(--nemo-ink) !important;
	font-size:13px;
	font-weight:700;
	line-height:1.2;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn:hover .text,
body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn.active .text,
body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn:hover .arrow i,
body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_btn.active .arrow i{
	color:var(--nemo-teal) !important;
}

body.page-ship #wrapper .content > div#about .box.my_services .accordion .item_text{
	padding:0 0 12px 24px !important;
	border:0 !important;
	background:transparent !important;
	color:#445e75;
	line-height:1.45;
}

body.page-ship #wrapper,
body.page-tool #wrapper{
	opacity:1 !important;
}

body.page-ship .loading_overlay,
body.page-tool .loading_overlay{
	display:none !important;
	visibility:hidden !important;
	pointer-events:none !important;
}
