@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap');

:root {
    --bg: rgb(207 227 112);
    --text-color: rgba(9, 7, 10, 1);
    --blue: rgb(158 102 1);
    --orange: rgba(255, 142, 24, 1);
    --orange-low: rgba(255, 173, 89, 1);
    --white: rgba(255, 250, 250, 1);
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--bg);
    overflow-x: hidden;
}

.toggle-body {overflow-y: hidden;}

h1 {
    font-size: 42px;
    font-weight: 700;
    padding: 10px 0 30px;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
}

h3 {
    font-size: 26px;
    font-weight: 600;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.68px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--blue);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0px 15px;
    max-width: 1070px;
    height: 72px;
}

button {
    outline: none;
    padding: 10px 30px;
    cursor: pointer;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.mob-menu {
    display: none;
    width: 27px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-right: 10px;
}

.mob-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--white);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }

 .mob-menu span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
  }
  
 .mob-menu span:nth-child(2) {
    top: 8px;
    transform-origin: left center;
  }
  
 .mob-menu span:nth-child(3) {
    top: 16px;
    transform-origin: left center;
  }
  
 .mob-menu.open span:nth-child(1) {
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
  }
  
 .mob-menu.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  
 .mob-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 17px;
    left: 8px;
  }

.left-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-section span{
    color: var(--white);
    font-size: 22px;
    font-weight: 700;

}

.menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 50px;
}

.menu-items img {
    display: none;
}

.toggle-img {
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;    
    top: -2px;
}

.middle-content img {
    display: block;
    max-width: 100%;
    margin: 15px auto;
}

.menu-items-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

.menu-toggle {
    display: flex !important;
    position: absolute;
    align-items: start;
    top: 57px;
    left: 0;
    margin: 0;
    z-index: 10;
    background-color: var(--white);
    padding: 31px 15px;
    width: 100%;      
}

.menu-toggle .menu-items-section-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    position: absolute;
    z-index: 25;

}

.menu-toggle .menu-items-section-content a {
    margin-left: 30px;
    width: 100%;
    padding: 16px 10px;
}


.menu-items a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.menu-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sign-in {
    background: transparent;
    border: 1px solid var(--white);
  }
  
.sign-in:hover {
  background: var(--orange);
  border: 1px solid var(--orange);
}

.sign-up {
    border: none;
    background: var(--orange);
    padding: 11px 31px;
}

.sign-up:hover {background: var(--orange-low);}

main {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 48px;
}

.top-content {
    background-image: url(./images/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
}

.banner-div {
    max-width: 1070px;
    margin: 22px 20px 22px 20px;
    position: relative;
}

.banner-div img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
}

.middle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 21px 20px 21px 20px;
    gap: 24px;
    max-width: 1070px;
}

.middle-content-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.middle-content-content h1 {
  text-align: center;
}

.middle-content-content p span {
    color: var(--blue);
    text-decoration: underline;
}

.middle-content-content ul, .middle-content-content ol {
  margin-left: 38px;
}

.middle-content-content ul li, .middle-content-content ol li {
    margin-top: 8px;
}

.middle-content-banner {
    max-width: 850px;
    margin: 8px 0px;
}

.middle-content-banner img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
}


table {
    border-collapse: separate;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    border-spacing: 0;
    overflow: hidden;
  }

  thead tr {
    background: var(--blue) !important;
    color: white;
  }

  tr:nth-child(odd) {background-color: rgba(255, 253, 253, 1);}
  tr:nth-child(even) {background-color: rgba(244, 244, 244, 1);}

  tbody tr:last-child {
    border-radius: 13px;
  }
  

  table th {
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
  }

  table td {
    font-size: 16px;
    font-weight: 400;
    padding: 1.2em;
  }

  table th,
  table td {
    text-align: center;
  }

  tr:first-child th:first-child {
    border-top-left-radius: 13px;
  }
  tr:first-child th:last-child {
    border-top-right-radius: 13px;
  }
  tr:last-child td:first-child {
    border-bottom-left-radius: 13px;
  }
  tr:last-child td:last-child {
    border-bottom-right-radius: 13px;
  }

  tr td {
    border-top: none;
  }

  tr td:not(:last-child) {
    border-right: none;
  }
  tr td:not(:last-child) {
    border-top: none;
    border-right: none;
  }

  footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 63px;
    background-color: var(--blue);
  }

  .bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bottom-content span {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    line-height: 14.63px;
  }
  

  @media (max-width: 680px){
    nav {
        height: 56px;
    }

    .menu-items {
        display: none;
    }

    .mob-menu {
        display: flex;
    }

    .banner-div {
        margin-top: 31px;
    }

    button {
        padding: 10px 16px;
        font-size: 12px;
    }

    h1 {font-size: 38px;}
    h2 {font-size: 32px;}
    h3 {font-size: 26px;}
    p {font-size: 14px;}

    table th {
        font-size: 16px;
        padding: 12px;
    }
    
    table td {
      padding: 12px;
      font-size: 14px;
    }
  }

