body {
    margin: 0;
    padding: 0;
    font-family: "Heebo", sans-serif, Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.header {
    display: grid;
    grid-template-columns: 1fr 2.3fr;
    padding: 0.6rem 0.6rem;
    background-color: #500101;
}

/* ***************************** */
/* HOME_IMAGE SECTION */
/* ***************************** */

.home-img {
    margin-bottom: 0;
    width: 100%;
}

.home-img img {
    width: 100%;
    height: auto;
}

.home-img h2 {
    position: absolute;
    top: 70%;
    left: 50%;
    font-size: 4rem;
    transform: translate(-50%, -50%);
    color: white;
    padding: 10px;
    width: 50%;
}

/* *************************** */
/* HEADER SECTION */
/* *************************** */

.header .logo-title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.logo {
    height: 7.5rem;
    margin-right: 0.5rem;
    margin-left: 0.3rem;
}

.headline {
    line-height: 0.8;
    margin: 0;
    padding-top: 1rem;
    padding-right: 3.2rem;
}

.head-line1,
.head-line2 {
    font-size: 1.2rem;
    color: #fff;
}

.head-tagline {
    font-size: 1rem;
    color: #fff;
}

/* *************************** */
/* BUTTON CLOSE AND OPEN SECTION */
/* *************************** */

.menu-icon,
.close-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* *************************** */
/* NAVIGATION SECTION */
/* *************************** */

.main-nav-links {
    display: grid;
    grid-auto-flow: column;
    list-style: none;
    font-weight: 200;
    padding-top: 1.4rem;
}

.dropbtn {
    background-color: #500101;
    color: white;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.fa-angle-down {
    padding: 0.4rem;
}

/* Links Inside the Dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change Color of Dropdown Links on Hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the Dropdown Menu When Clicked */
.show {
    display: block;
    width: 270px;
    text-align: center;
    line-height: 1.6;
    font-weight: 500px;
    transform: translateX(-50%);
    padding: 2rem;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    padding: 0;
}

.dropdown-content a {
    font-size: 1.4rem;
    color: #500101;
}

/* *************************** */
/* HEADER IMAGE SECTION */
/* *************************** */

.header-content-image {
    position: relative;
    width: 100%;
    height: auto;
}

.main-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-img-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marine-header {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 20%;
    left: 2%;
    color: #fff;
    transform: translateX(1%);
    font-size: 2rem;
    padding-right: 50rem;
}

.marine-header div {
    margin: 0;
}

.marine-header div h2,
.marine-header div h1 {
    margin: 0;
    padding-bottom: 1rem;
    height: 2;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* ***************************** */
/* VISION MISSION BOX SECTION */
/* ***************************** */

.vm {
    background-color: #25333c;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 4rem;
    padding-left: 8rem;
    padding-right: 8rem;
}

.text-block {
    border: 1px solid none;
    border-radius: 2rem;
    padding: 3rem;
    transition: transform 0.3s ease;
}

.text-block:hover {
    transform: scale(1.1);
}

.text-block h1 {
    font-size: 2.6rem;
    color: #fff;
    text-decoration: underline #500101;
    text-underline-offset: 1rem;
}

.text-block p {
    padding-top: 2rem;
    font-size: 1.6rem;
    color: #fff;
}

/* **************************************************** */

/* ***************************** */
/* FOOTER SECTION */
/* ***************************** */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    background-color: rgb(51, 51, 51);
}

.logo-title-tag {
    display: grid;
    grid-template-columns: 1fr 6.5fr;
    gap: 10px;
}

.footer-img {
    height: 7.5rem;
    margin-right: 0.5rem;
    margin-left: 0.3rem;
}

.footer-title {
    font-size: 25px;
    font-weight: bold;
    line-height: 0.3;
    margin-top: 25px;
}

.footer-title p {
    color: #fff;
}

.footer-headline-1 {
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: #fff;
}

.footer-tagline h2 {
    margin-top: 0;
}

.footer-follow-us {
    margin: 15px 30px;
    color: #fff;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.social-media {
    width: 50px;
    height: 60px;
}

/* *************************** */
/* FOOTER COPYRIGHT SECTION */
/* *************************** */

.copyright {
    font-size: 20px;
    font-weight: bold;
    background-color: black;
    color: #fff;
    margin: 0;
    padding: 15px;
}