/* =====================
   START GENERAL PAGE 
===================== */
.chartergrid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.chartercard{
    background-color: white;
    margin: 1em;
    outline: 3px solid var(--color-brown);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.chartercard i{
    margin-right: 0.5em;
}

.chartercard h2{
    background-color: white;
}

.chartercardimg img{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    top: 0;
}

.chartercardinfo{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2em;
}
.chartercardinfo div{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.chartercardinfo p{
    margin-top: 6px;
    margin-bottom: 0;
}

.key-item2{ 
    text-align:center; 
    max-height: 50px;
    max-width: 100%;
    height: auto;
}

.key-item2 img{ 
    height: 50px;
    width: 100%;
    object-fit: contain;
    margin:0 auto 0.5rem; 
    }


.chartercardbutton{
   position: relative;
   margin: 2em 0;
}
.chartercardbutton1{
    background-color: var(--color-brown);
    border: 2px solid var(--color-brown);
    color: white;
    padding: 0.5em 1em;
    border-radius: 100vw;
}

/* =====================
    END GENERAL PAGE
===================== */

/* =====================
   START BOATPAGE
===================== */

.container {
     max-width:900px;
      margin:0 auto; 
      padding:1rem; 
    }

.carousel {
     position:relative; 
     overflow:hidden; 
     width:100%; 
     height:350px; 
     background-color: lightblue;
    }

.carousel img {
     width:100%; 
     height:100%; 
     object-fit:cover; 
     display:none; 
    }

.carousel img.active { 
    display:block; 
}
.carousel-controls {
     position:absolute; 
     top:50%; 
     width:100%;
     display:flex; 
     justify-content:space-between; 
     transform:translateY(-50%); 
     background-color: transparent;
    }

.carousel-controls button { 
    background:rgba(0,0,0,0.4); 
    color:#fff;
     border:none; 
     padding:0.5rem 1rem; 
     cursor:pointer; 
    }

.section { 
    text-align: center;
}

.key-info {
     display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:1.5rem; 
}

.key-item { 
    text-align:center; 
    max-width: 100%;
    height: auto;
}

.key-item img{ 
  height: 50px;
  width: 100%;
  object-fit: contain;
  margin:0 auto 0.5rem; 
    }

.pricing table {
     width:100%; 
     border-collapse:collapse; 
     margin-top:1rem;
     }

.pricing th{
    color: var(--color-blue);
}     

.pricing th, .pricing td { 
    border:1px solid #ccc;
     padding:0.75rem; 
     text-align:left; 
    }

.form-section form { 
     display:grid;
     gap:5rem; 
     margin-top:1rem;
     border: 1px solid red;
    }

.form-section p{
    padding-bottom: 1em;
}

.form{
    padding:0.75rem; 
    border:none; 
    color:#fff; 
    cursor:pointer; 
    overflow: visible;
    height: 700px;
    }


@media (min-width: 1024px) { /* desktops */
    .chartergrid{
        grid-template-columns: 1fr 1fr 1fr;
      }

.carousel {
     height: 600px;
    }

.key-item img { 
    min-height:50px; 
   max-width: 50px;
    }
}


@media screen and (max-width: 675px) {
    .contactcontact1 p{
        font-size: var(--highlight-font-size-mobile);
      }
      .contactcontact1 h1{
          font-size: var(--title-font-size-mobile);
      }

      .chartergrid{
        display: block;
      }
}