* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
} 

body {
    font-family: 'Ysabeau', sans-serif;
    line-height: 1;
}

.pricing-mobile-img {
    display: none;
}

/* //////////VERTICAL-NAV//////////// */

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #54706d; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    border-left: 3px solid #0b322e;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #e4dbd0;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  .sub-link {
    margin-left: 1rem;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s;
    padding: 20px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  .open-nav {
      z-index: 999;
      font-size: 5rem;
      color: #333;
      display: none;
      padding-right: 0.6;
  }


/* //////////NAV//////////// */

.nav {
    background-color: #0b322e;
    margin: 0 auto;
    position: fixed;
    width: 100%;
    z-index: 9;
    border-bottom: 3px solid #54706d;
}

.nav-box {
    display: flex;
    justify-content: flex-end;
}

.nav-logos {
    display: flex;
    gap: 1.2rem;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.6rem;
    z-index: 10;
}

.nav-logo {
    width: 13rem;
    height: 100%;
    overflow: visible;
    margin-bottom: -4rem;
}

.nav-socials {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.nav-social {
    width: 4rem;
    height: 4rem;
    transition: all 0.3s;
}

.nav-social:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    list-style: none;
}

.nav-link {
    display: block;
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    font-size: 3rem;
    color: #FFF;
}

.nav-active {
    background-color: #54706d;
}

li.nav-active:hover {
    background-color: #54706d;
}

.nav-list:hover {
    background-color: #69995d4d;
}

.nav-special {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-special-img {
    width: 4rem;
}

.spacer {
    height: 4.8rem;
}

.nav-down-arrow {
    width: 1.6rem;
}

  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0b322e;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 3px solid #54706d;
    border-top: 0px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    font-size: 3rem;
    color: #FFF;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #27474e4d;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .nav-link {background-color: #27474e;}


/* //////////HERO//////////// */

.hero {
    padding: 0.6rem 0;
    background-image: url("imgs/hero.jpg");
    height: 100vh;
    background-size: cover;
    background-position-x: left;
    position: relative;
}

.hero-box {
    margin: 0 auto;
    height: 100%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    justify-content: center;
    height: 100%;
    grid-gap: 2.4rem;
}

.hero-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-self: center;
    justify-self: center;
}

.hero-header-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.hh1 {
    grid-row: 1/2;
    grid-column: 1/2;
}

.hh2 {
    grid-row: 2/3;
    grid-column: 2/3;
}

.hh3 {
    grid-row: 3/4;
    grid-column: 3/4;
}

.hero-header {
    font-size: 13rem;
    color: #fff;
    line-height: 0.8;
    letter-spacing: 0.3rem;
}

.hero-caption {
    font-size: 4.8rem;
    color: #fff;
    text-align: center;
}


/* ------ABOUT-------- */

.about {
    padding: 4.8rem 2.4rem;
}

.about-box {
    margin: 0 auto;
    max-width: 120rem;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    border: 1px solid #54706d;
}

.about-header {
    font-size: 4.8rem;
    color: #0b322e;
    text-align: center;
}

.about-text {
    font-size: 3.6rem;
    color: #777;
    text-align: center;
}

.about-link {
    font-size: 3.6rem;
    color: #fff;
    background-color: #0b322e;
    border: 1px solid #0b322e;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 13px;
    text-align: center;
    width: 18rem;
    transition: all 0.3s;
}

.about-link:hover {
    transform: scale(1.05);
}


/* //////////PARALLAX 1 SECTION//////// */

.para1 {
    background-image: url("imgs/para1.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 50rem;
}

/* ------BANNER-------- */

.banner {
    padding: 4.8rem 0.6rem;
    background-color: #0b322e;
}

.banner-box {
    margin: 0 auto;
    max-width: 140rem;
}

.banner-container {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    justify-content: space-between;
}

.banner-headers {
    font-size: 3rem;
    color: #fff;
    text-align: center;
}


/* //////////Z//////////// */

.z {
    padding: 4.8rem 1.2rem 4.8rem;
}

.z-middle {
    background-color: #0b322e;
}

.z-middle .z-header,
.z-middle .z-text {
    color: #fff;
}

.z-middle .z-link {
    background-color: #fff;
    color: #0b322e;
}

.z-box {
    margin: 0 auto;
    max-width: 120rem;
}

.z-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
}

.z-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.8rem;
    justify-content: center;
    align-items: center;
}

.z-img {
    width: 50rem;
}

.z-text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2.4rem;
    text-align: center;
}

.z-header {
    font-size: 3.6rem;
    color: #0b322e;
}

.z-text {
    font-size: 3rem;
    color: #666;
}

.z-link {
    padding: 0.6rem 1.2rem;
    background-color: #0b322e;
    color: #fff;
    font-size: 3.6rem;
    text-decoration: none;
    width: 18rem;
    border-radius: 13px;
    transition: all 0.3s;
}

.z-link:hover {
    transform: scale(1.05);
}

/* //////////PARALLAX 2 SECTION//////// */

.para2 {
    background-image: url("imgs/para2.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 50rem;
}


/* //////////E//////////// */

.e {
    padding: 9.6rem 1.2rem 9.6rem;
}

.e-box {
    margin: 0 auto;
    max-width: 120rem;
}

.e-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
}

.e-text-box {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-content: flex-start;
    height: 100%;
}

.e-header {
    font-size: 3.6rem;
    color: #0b322e;
    text-align: center;
}

.e-text {
    font-size: 3rem;
    color: #777;
}

.e-img {
    width: 100%;
}


/* -------CTA SECTION------ */

.cta {
    padding: 9.6rem 0.6rem 9.6rem;

}

.cta-box {
    max-width: 120rem;
    margin: 0 auto;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
}

.cta-text {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-items: center;
    align-items: center;
    color: #777;
}

.cta-title {
    font-size: 4.8rem;
    color: #0b322e;
    text-align: center;
}

.cta-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 3.6rem;
    text-align: center;
    padding: 1.2rem;
}

.email-text,
.number-text {
    color: #0b322e;
    text-decoration: none;
}

.cta-socials {
    align-self: center;
    justify-self: center;
    display: flex;
    gap: 6.2rem;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-box {
    border: none;
    border-bottom: 3px solid #0b322e;
    resize: none;
    padding: 1.2rem;
}

/* .input-box::placeholder {
    font-family: 'Quicksand', sans-serif;
} */

.message-input {
    height: 12rem;
}

/* .message-input::placeholder {
    font-family: 'Quicksand', sans-serif;
} */

.submit-btn {
    width: auto;
    align-self: flex-end;
    padding: 0.6rem 1.2rem;
    border-radius: 13px;
    border: none;
    background-color: #0b322e;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    /* border: 1px solid #0d3b66; */
}



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

  .footer {
    padding: 9.6rem 4.8rem;
    background-color: #0b322e;
    color: #777;
    display: grid;
    grid-template-columns: 1fr;
}

.footer-box {
    max-width: 150rem;
    margin: 0 auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.footer-logo-copy {
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 30rem;
}

.copyright {
    font-size: 2.4rem;
    line-height: 1.4;
    color: #fff;
}

.footer-socials-box {
    display: flex;
    gap: 2.4rem;
}

.footer-social {
    width: 4.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-social:hover {
    transform: scale(1.05);
}

.footer-header {
    font-size: 3.6rem;
    padding-bottom: 1.8rem;
    color: #c6b8d0;
}

.footer-details {
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}

.footer-link {
    font-size: 2.4rem;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.created-by {
    justify-self: center;
    margin-top: 5rem;
    font-size: 2.4rem;
    color:#fff;
    text-align: center;
}

.pauledward {
    text-decoration: none;
    color: #fff;
}

.footer-placeholder {
    font-size: 4.8rem;
}


/* //////////PAGE//////////// */

.page {
    padding: 4.8rem 2.4rem;
}

.page-box {
    margin: 0 auto;
    max-width: 80rem;
}

.page-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}

.page-info-box {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.page-header {
    font-size: 4.8rem;
    color: #333;
    text-align: center;
}

.page-text {
    font-size: 2.2rem;
    color: #666;
}

.page-title {
    padding: 6rem 2.4rem 4.8rem;
    font-size: 7.2rem;
    color:#333;
    text-align: center;
    border-bottom: 3px solid #0b322e;
    /* border-top: 3px solid #fa7387; */
}