body { margin: 0; }

:root {
	--container-width: 1000px;
	--main-header-height: 90px;
}

* { font-family: "Josefin Sans"; -webkit-tap-highlight-color: transparent; }

/* Buttons */

.btn { border: 0; outline: none; padding: 0 12px; height: 36px; border-radius: 8px; cursor: pointer; font-size: 18px; display: flex; flex-direction: row; align-items: center; justify-content: center; text-decoration: none; }
.btn:hover { transform: translateY(-3px); box-shadow: rgba(0,0,0,0.2) 0 2px 8px; }
.btn:active { transform: none; box-shadow: none; }

.btn-orange { background: #F68B38; color: #fff; transition: 200ms all ease; }
.btn-blue { background: #4C84DB; color: #fff; transition: 200ms all ease; }


/* Topbar */

.topbar { padding: 6px 10px; display: flex; flex-direction: row; justify-content: center; background: #0d1e38; z-index: 1000; position: relative; }
.topbar .container { display: inherit; flex-wrap: wrap; column-gap: 20px; row-gap: 5px; flex-wrap: wrap;; }
.topbar a { display: flex; flex-direction: row; align-items: center; justify-content: center; text-decoration: none; }
.topbar .icon,
.topbar .value { transition: 200ms all ease; }
.topbar .icon { width: 25px; margin-right: 5px; opacity: 0.5; flex-shrink: 0; }
.topbar .value { font-size: 13px; font-weight: 300; line-height: 13px; color: #fff; opacity: 0.9; text-align: center; }
.topbar a:hover .icon { opacity: 0.9; }
.topbar a:hover .value { opacity: 1; }

@media screen and (max-width: 1100px) {
	.topbar { padding: 16px 10px; }
	.topbar .container { width: 100%; column-gap: 25px; max-width: var(--max-width-mobile); justify-content: center; }
	.topbar .icon { opacity: 1; }
	.topbar .value { display: none; }
}

/* Header */

.main-header { position: sticky; z-index: 999; top: 0; height: var(--main-header-height); background: #1C4179; box-shadow: 0 2px 1px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.1); }
.main-header .container { width: calc(100% - 60px); max-width: var(--container-width); height: var(--main-header-height); margin: 0 auto; display: flex; flex-direction: row; align-items: flex-start; gap: 30px; }
.main-header .logo { width: 260px; height: 170px; flex-shrink: 0; background: white; border-radius: 0 0 20px 20px; box-shadow: 0 2px 1px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.1); transition: 200ms all ease; display: flex; align-items: center; justify-content: center; }
.main-header .logo img { width: 180px; transition: 200ms all ease; }
.main-header .logo:hover { padding-top: 5px; }

.main-header .logo.small { width: 190px; height: 110px; margin: 0 35px; }
.main-header .logo.small img { width: 120px; }

/* Header Menu */

.main-header .menu { height: 100%; flex-grow: 1; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 30px; }
.main-header .menu .item { height: 100%; text-decoration: none; position: relative; position: relative; }
.main-header .menu .item img { max-width: 25px; max-height: 25px; }
.main-header .menu .dot { width: 4px; height: 4px; border-radius: 50%; background: white; }
.main-header .menu .line { position: absolute; width: calc(100% + 12px); left: -6px; bottom: 0; border-radius: 6px 6px 0 0; background: white; opacity: 0; transition: 300ms all ease; height: 6px; }
.main-header .menu .item:hover .line { opacity: 1; }
.main-header .menu .active .line { opacity: 1; }
.main-header .menu .item .label { display: flex; align-items: center; transition: 200ms all ease; color: white; font-size: 22px; height: 100%; }
.main-header .menu:hover .item .label { opacity: 0.5; }
.main-header .menu .item:hover .label { opacity: 1; }


/* Mobile Menu */

.main-header .mobile-menu-button { display: none; user-select: none; flex-direction: column; align-items: center; row-gap: 5px; cursor: pointer; position: absolute; right: 30px; margin-top: 20px; }
.main-header .mobile-menu-button .text { font-size: 13px; color: #1C4179; }
.main-header .hamburger-icon { width: 35px; height: 27px; position: relative; }
.main-header .hamburger-icon span { display: block; position: absolute; height: 3px; width: 100%; background: #1C4179; border-radius: 1.5px; left: 0; transform: rotate(0deg); transition: 300ms all ease; }
.main-header .hamburger-icon span:nth-child(1) { top: 0px; transform-origin: left center; } 
.main-header .hamburger-icon span:nth-child(2) { top: 10px; transform-origin: left center; } 
.main-header .hamburger-icon span:nth-child(3) { top: 20px; transform-origin: left center; }
.main-header.open-menu .hamburger-icon span:nth-child(1) { transform: rotate(45deg); top: -3px; left: 6px; } 
.main-header.open-menu .hamburger-icon span:nth-child(2) { width: 0%; opacity: 0; }
.main-header.open-menu .hamburger-icon span:nth-child(3) { transform: rotate(-45deg); top: 22px; left: 6px; }

@media screen and (max-width: 1100px) {
	.main-header .menu { gap: 20px; }
}
@media screen and (max-width: 1000px) {
	.main-header { background: white; height: auto; padding: 10px 0; }
	.main-header .container { height: 100%; align-items: center; flex-direction: column; }
	.main-header .menu { display: none; flex-direction: column; gap: 30px; padding-bottom: 20px; }
	.open-menu .menu { display: flex; }
	.main-header .menu .item .label { color: #1C4179; display: block; }
	.main-header .menu .item .label svg * { fill: #1C4179; }
	.main-header .menu .dot { display: none; }
	.main-header .logo { width: auto; background: transparent; border-radius: 0; box-shadow: none; height: 100%; margin: 0 auto; }
	.main-header .logo.small { margin: 0 auto; width: auto; height: 100%; }
	.main-header .logo img { width: 120px; transition: 200ms all ease; }
	.main-header .logo:hover { padding: 0; }
	.main-header .mobile-menu-button { display: flex; }
}


/* Slides */

.main-slide { height: 600px; position: relative; background: #eee; }

.main-slide .fixed-info { width: 200px; padding: 30px; position: absolute; z-index: 1; bottom: 0; left: calc(50% - (var(--container-width) / 2)); border-radius: 20px 20px 0 0; background: #285BA7; display: flex; flex-direction: column; gap: 10px; color: white; }
.main-slide .fixed-info h1 { font-size: 36px; line-height: 120%; margin: 0; font-weight: 700; }
.main-slide .fixed-info p { font-size: 19px; line-height: 130%; margin: 0; font-weight: 400; }

.main-slide .photos { position: absolute; width: 100%; height: 100%; }

.main-slide .item { position: absolute; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: 300ms all ease; background-size: cover; background-position: center; }
.main-slide .item.active { opacity: 1; visibility: visible; }

.main-slide .slide-info { width: calc(var(--container-width) - 260px - 60px); left: calc(50% + 260px - (var(--container-width) / 2)); position: absolute; bottom: 0; padding: 30px; background: rgba(255, 255, 255, 0.9); border-radius: 0 20px 0 0; display: flex; flex-direction: row; align-items: center; gap: 30px; }

.main-slide .slide-info .arrow,
.main-slide .slide-info .arrow img { width: 25px; }
.main-slide .slide-info .arrow { opacity: 0.2; transition: 200ms all ease; cursor: pointer; display: flex; }
.main-slide .slide-info .arrow:hover { opacity: 0.3; }
.main-slide .slide-info .arrow.right { transform: rotate(180deg); }
.main-slide .slide-info .arrow.disabled { cursor: default; opacity: 0.1; }

.main-slide .slide-info .text { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; flex-grow: 1; }

.main-slide .slide-info h2 { font-size: 24px; line-height: 120%; margin: 0; font-weight: 700; color: #F68B38; }
.main-slide .slide-info p { font-size: 17px; line-height: 130%; margin: 0; font-weight: 400; color: #5F5F5F; }

@media screen and (max-width: 1100px) {
	.main-slide { height: 800px; display: flex; flex-direction: column-reverse; }
	.main-slide .fixed-info { width: calc(100% - 80px); left: 0; position: relative; border-radius: 0; padding: 50px 40px; }
	.main-slide .photos { position: relative; }
	.main-slide .slide-info { width: calc(100% - 140px); left: 40px; border-radius: 20px 20px 0 0; }
}
@media screen and (max-width: 800px) {
	.main-slide .fixed-info { width: calc(100% - 40px); text-align: center; padding: 40px 20px; }
	.main-slide .slide-info .arrow { position: absolute; bottom: 20px; }
	.main-slide .slide-info .left { right: 50px; }
	.main-slide .slide-info .right { right: 20px; }
	.main-slide .slide-info .arrow img { width: 20px; }
}
@media screen and (max-width: 700px) {
	.main-slide .slide-info { width: calc(100% - 80px); left: 20px; padding: 20px; }
}
@media screen and (max-width: 500px) {
	.main-slide .slide-info { width: calc(100% - 70px); left: 20px; padding: 15px; }
}
@media screen and (max-width: 400px) {
	.main-slide .slide-info { width: calc(100% - 30px); left: 0px; padding: 15px; }
}

.highlights { background: #234880 url(../img/highlights/highlight-bg.jpg) no-repeat center; background-size: cover; padding: 180px 0 120px 0; display: flex; flex-direction: column; gap: 50px; align-items: center; }
.highlights .container { width: calc(100% - 40px); max-width: var(--container-width); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.highlights .item { background: #28569C; border-radius: 20px; padding: 60px 20px 30px 20px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; position: relative; transition: 300ms all ease; }
.highlights .item:hover { transform: scale(1.04); }
.highlights .icon { width: 70px; height: 70px; position: absolute; top: -35px; left: calc(50% - 35px); display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 10px; box-shadow: 0 4px 4px rgba(0,0,0,0.25); }
.highlights .icon img { width: 70px; }
.highlights h1 { font-size: 28px; line-height: 120%; margin: 0; font-weight: 700; color: white }
.highlights p { font-size: 21px; line-height: 130%; margin: 0; font-weight: 400; color: #B6D3FF }

@media screen and (max-width: 1100px) {
	.highlights { padding: 100px 50px 80px 50px; }
	.highlights .container { display: flex; flex-direction: column; gap: 100px; align-items: center; }
	.highlights .item { width: calc(100% - 60px); }
}
@media screen and (max-width: 800px) {
	.highlights { padding: 80px 40px 80px 40px; }
}
@media screen and (max-width: 600px) {
	.highlights { padding: 80px 20px 80px 20px; }
}
@media screen and (max-width: 500px) {
	.highlights { padding: 80px 0 60px; }
	.highlights .container { gap: 80px; }
}
@media screen and (max-width: 400px) {
	.highlights .container { width: calc(100% - 30px); }
	.highlights .item { padding: 60px 16px 30px 16px; }
}

/* FOOTER */

.footer { padding: 60px 0; background: #313744; }
.footer .container { width: calc(100% - 40px); max-width: var(--container-width); display: flex; flex-direction: row; margin: 0 auto; column-gap: 20px; }
.footer .box { width: 40%; display: flex; flex-direction: column; align-items: flex-start; }
.footer .brand { row-gap: 20px; align-items: center; }
.footer .nav { width: 20%; }
.footer .links { width: 40%; }
.footer .logo img { width: 160px; }
.footer .social-networks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: row; column-gap: 10px; }
.footer .social-networks li a { display: flex; opacity: 0.6; transition: 300ms all ease; }
.footer .social-networks li a:hover { opacity: 0.8; transform: scale(1.1); }
.footer .social-networks img { width: 38px; height: 38px; }
.footer .brand-info { color: rgba(255,255,255,0.7); line-height: 28px; font-weight: 300; margin: 0; text-align: center; }
.footer .title { font-size: 21px; font-weight: 600; color: rgba(255,255,255,1); margin: 0 0 20px 0; }
.footer .menu { display: flex; flex-direction: column; align-items: inherit; list-style: none; margin: 0; padding: 0; }
.footer .menu li { padding: 0 0 0 2px; margin: 0 0 10px 0; }
.footer .menu li a { transition: 200ms all ease; color: rgba(255,255,255,0.6); font-weight: 300; font-size: 17px; line-height: 21px; display: flex; flex-direction: row; align-items: center; text-decoration: none; }
.footer .menu li a:hover { color: rgba(255,255,255,0.9); }
.footer .menu li a img { width: 25px; flex-shrink: 0; margin-right: 10px; opacity: 0.4; transition: 200ms all ease; }
.footer .menu li a:hover img { opacity: 0.8; }
.footer .line { display: none; }

@media screen and (max-width: 1100px) {
	.footer .container { row-gap: 20px; flex-direction: column-reverse; }
	.footer .box { width: 100%; }
	.footer .logo { margin: 20px auto 0 auto; }
	.footer .brand-info,
	.footer .title { text-align: center; align-items: center; width: 100%; }
	.footer .line { display: block; width: 100%; height: 1px; background: rgba(255,255,255,0.2); }
}


/* Itineraries */

.itineraries { padding: 100px 0; display: flex; flex-direction: column; align-items: center; background: #FFF9F4 url(../img/itineraries/itineraries-bg.jpg) center no-repeat; background-size: cover; gap: 80px; }
.itineraries .header,
.itineraries .info { width: calc(100% - 60px); max-width: 500px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; }
.itineraries .header .icon { width: 80px; }
.itineraries .header h1 { line-height: 130%; margin: 0; text-align: center; max-width: 500px; font-size: 32px; font-weight: 700; line-height: 130%; color: #F68B38; }
.itineraries .container { width: calc(100% - 60px); max-width: var(--container-width); display: flex; flex-direction: column; align-items: center; gap: 60px; }

.itineraries .item { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.itineraries .photos { width: 100%; height: 400px; position: relative; box-shadow: 0 0 0 6px white, rgba(0,0,0,0.2) 0 10px 20px; background: rgb(208, 216, 231); }
.itineraries h1.name { position: absolute; left: -10px; top: -10px; transform: rotate(-5deg); padding: 12px 16px 8px 16px; font-size: 24px; line-height: 24px; color: white; box-shadow: 0 0 0 6px white, rgba(0,0,0,0.2) 0 10px 20px; background: #F68B38; transition: 200ms all ease; }
.itineraries .item:hover .name { transform: scale(1.08); background: #1E4176; }
.itineraries .separator { width: 150px; }
.itineraries h1 { font-size: 26px; font-weight: 400; line-height: 140%; color: #1E4684; margin: 0; }
.itineraries h2 { font-size: 18px; font-weight: 400; line-height: 140%; color: #4672B5; margin: 0; }
.itineraries .list { display: flex; flex-direction: column; column-gap: 20px; white-space: nowrap; justify-content: center; align-items: center; text-align: left; }
.itineraries .list li { font-size: 18px; font-weight: 400; line-height: 140%; color: #4F8DEF; margin: 0; }
.itineraries .price { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.itineraries .price-box { display: flex; flex-direction: row; align-items: center; padding: 16px 24px 10px 24px; border-radius: 10px; background: rgba(189, 181, 174, 0.3); font-size: 21px; color: #1E4684; }
.itineraries .price-box .a { padding-right: 10px; }
.itineraries .price-box .b { padding-bottom: 11px; padding-right: 5px; }
.itineraries .price-box .c { font-size: 46px; font-weight: 500; }
.itineraries .price-box .d { padding-bottom: 18px; padding-left: 5px; }
.itineraries .price-details { font-size: 16px; font-weight: 400; line-height: 140%; color: #727272; margin: 0; }

@media screen and (max-width: 1100px) {
	.itineraries .container { width: calc(100% - 200px); }
}
@media screen and (max-width: 800px) {
	.itineraries { gap: 50px; padding: 60px 0; }
	.itineraries .container { width: calc(100% - 150px); gap: 40px; }
	.itineraries .photos { height: 350px; }
	.itineraries .separator { margin-bottom: 20px; }
}
@media screen and (max-width: 600px) {
	.itineraries .container { width: calc(100% - 100px); }
	.itineraries .photos { height: 300px; }
}
@media screen and (max-width: 500px) {
	.itineraries .container { width: calc(100% - 60px); }
	.itineraries .photos { height: 230px; }
	.itineraries .info { width: 100%; gap: 30px; }

}
@media screen and (max-width: 400px) {
	.itineraries .container { width: calc(100% - 50px); }
	.itineraries .photos { height: 200px; }
	
}

/* Vessels */

.vessels { padding: 100px 0; display: flex; flex-direction: column; align-items: center; background: #fff url(../img/vessels/vessels-bg.png) center no-repeat; background-size: cover; gap: 80px; }
.vessels .header { width: calc(100% - 60px); max-width: 500px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.vessels .header .icon { width: 80px; }
.vessels h1,
.vessels h2 { line-height: 130%; margin: 0; text-align: center; max-width: 500px; }
.vessels h1 { font-size: 32px; font-weight: 700; line-height: 130%; color: #1E4176; }
.vessels h2 { font-size: 18px; font-weight: 400; line-height: 140%; color: #4672B5; }
.vessels .container { width: calc(100% - 60px); max-width: var(--container-width); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.vessels .item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; }
.vessels .photos { width: 100%; height: 360px; position: relative; box-shadow: 0 0 0 6px white, rgba(0,0,0,0.2) 0 10px 20px; background: rgb(208, 216, 231); }
.vessels h1.name { position: absolute; left: -10px; top: -10px; transform: rotate(-5deg); padding: 12px 16px 8px 16px; font-size: 24px; line-height: 24px; color: white; box-shadow: 0 0 0 6px white, rgba(0,0,0,0.2) 0 10px 20px; background: #1E4176; transition: 200ms all ease; }
.vessels .item:hover .name { transform: scale(1.08); background: #F68B38; }
.vessels-video { object-fit: cover; width: calc(100% - 60px); max-width: 420px; height: 300px; box-shadow: 0 0 0 6px white, rgba(0,0,0,0.2) 0 10px 20px; background: rgb(208, 216, 231); }
.vessels .description { font-size: 19px; line-height: 130%; font-weight: 400; color: #25426e; }
.vessels .description .list { display: flex; flex-direction: column; text-align: left; }
.vessels .description li { font-size: 18px; font-weight: 400; line-height: 140%; color: #4F8DEF; margin: 0; }

@media screen and (max-width: 1100px) {
	.vessels .container { display: flex; flex-direction: column; align-items: center; }
	.vessels .item { max-width: 420px; }
}

/* Slides */

.slides { position: relative; }
.slides .slide { position: absolute; width: 100%; height: 100%; background-color: inherit; background-size: cover; background-position: center; opacity: 0; visibility: hidden; transition: 400ms all ease; }
.slides .slide video { width: 100%; height: 100%; position: absolute; left: 0; background: #000; object-fit: cover; }
.slides .slide.active { opacity: 1; visibility: visible; }
.slides .dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: row; align-items: center; height: 24px; padding: 0 8px; border-radius: 12px; background: rgba(0,0,0,0.2); gap: 10px; transition: 200ms all ease; }
.slides .dots:hover { background: rgba(0,0,0,0.5); }
.slides .dot { width: 10px; height: 10px; border-radius: 50%; background: white; box-shadow: 0 0 0 3px transparent, 0 2px 5px rgba(0,0,0,0.2); cursor: pointer; transition: 200ms all ease; }
.slides .dot:hover { transform: scale(1.2); }
.slides .dot.active { background: #353535; box-shadow: 0 0 0 3px white, 0 2px 5px rgba(0,0,0,0.2); }
.slides .dot.active:hover { transform: scale(1.2); }
.slides .arrow { position: absolute; width: 31px; height: 50px; top: calc(50% - 25px); cursor: pointer; opacity: 0; transition: 200ms all ease; transform: scale(0.8); }
.slides .arrow:hover { transform: scale(1); }
.slides .arrow.left { left: 15px; }
.slides .arrow.right { right: 15px; }
.slides:hover .arrow { opacity: 1; }

@media screen and (max-width: 1100px) {
	.slides .arrow { opacity: 1; }
}

.map { padding: 50px 0; display: flex; align-items: center; justify-content: center; background: #c3d2db; }
.map img { width: calc(100% - 60px); max-width: 900px; box-shadow: 0 0 0 3px white, 0 2px 5px rgba(0,0,0,0.2); border-radius: 10px; }