/* ======================================================
BOAT
====================================================== */

.boat{

background:#fff;

}

.boat-grid{

display:grid;
grid-template-columns:.95fr 1.05fr;
gap:90px;
align-items:center;

}

.boat-content{

max-width:560px;

}

.boat h2{

margin:16px 0 30px;

}

.boat p{

font-size:17px;
line-height:1.9;

}

.boat-specs{

margin:40px 0 50px;
padding:0;

}

.boat-specs li{

padding:18px 0;

border-bottom:1px solid rgba(8,28,44,.08);

font-size:16px;

color:#081C2C;

}

.boat-image{

overflow:hidden;

border-radius:28px;

}

.boat-image img{

width:100%;

height:760px;

object-fit:cover;

transition:.8s;

}

.boat-image:hover img{

transform:scale(1.04);

}