/* Site Stylesheet
  1. Global Styles
  2. Typography Styles
  3. Navigation Styles
  4. Grid styles
======================================== */

/* 1. Global Styles
======================================== */

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    text-rendering: optimizeLegibility;
    background-color: #F1E9D9;
}

/* 2. Typography Styles
======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Work Sans', Helvetica, sans-serif;
  font-weight: 700;
  line-height: 3px;
  margin-bottom: 15px;
  transition: font-size 0.25s ease;  
  color: #443E3D;
}

h1 {
    font-size: calc(60px / 1.5);
    line-height: 0.85;
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-weight: 700;
    line-height: 3px;
    margin-bottom: 15px;
}

h2 {
    font-size: 28px;
    margin-top: 10px;
    line-height: 1;
}

h3 {
    font-size: 18px;
    margin-top: 10px;
    line-height: 1;
}
@media(min-width: 720px) {
    h1 {
      font-size: calc(60px / 1.25);
    }
    h2 {
      font-size: 26px;
    }
}

@media(min-width: 1024px) {
    h1 {
      font-size: 50px;
    }
    h2 {
      font-size: 30px;
    }

}

p {
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 15px;
    color: #443E3D;
}

.a-light {
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 16px;
    color: #FE9789;
    font-weight: 600;
}
.a-dark {
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 16px;
    color: #115259;
    font-weight: 600;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 23px;
    list-style: none;
}

img {
    width: 90%;
}

.text-light {
    color: #E2E0DD;
    margin-bottom: 20px;
}

/* 3. Navigation Styles
======================================== */

.fixed-nav-bar {
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: #2AC7AF;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
}
  
.fixed-nav-bar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #2AC7AF;
    text-align: left;
}

.fixed-nav-bar li {
    display: inline-block;
    align-items: left;
}
  
  .fixed-nav-bar li a {
    display: block;
    padding: 20px;
    border-right: 1px solid #E2E0DD;
    text-decoration: none;
}
  
.fixed-nav-bar li a:hover,
.fixed-nav-bar li a:active,
.fixed-nav-bar li a:focus {
    color: #443E3D;
    text-decoration: underline;
    font-weight: 600;
    background-color:#80FBE8;
} 
  
.fixed-nav-bar .logo {
    display: block;
    float: left;
    font-size: 16px;
    padding: 10px 20px;
    text-decoration: none;
}

img.logo {
    width: 5em;
    height: auto;
}

.nav-anchor {
    color: #443E3D;
    text-decoration: none !important;
}
  
/* responsive menu */

.fixed-nav-bar .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.fixed-nav-bar .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}
  
.fixed-nav-bar .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}
  
.fixed-nav-bar .menu-icon .navicon:before,
.fixed-nav-bar .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
  
.fixed-nav-bar .menu-icon .navicon:before {
    top: 5px;
}
  
.fixed-nav-bar .menu-icon .navicon:after {
    top: -5px;
}
  
/* menu btn */
  .fixed-nav-bar .menu-btn {
    display: none;
}
  
.fixed-nav-bar .menu-btn:checked ~ .menu {
    max-height: 240px;
}
  
.fixed-nav-bar .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}
  
.fixed-nav-bar .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}  

.fixed-nav-bar .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}
  
.fixed-nav-bar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.fixed-nav-bar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}
@media (min-width: 1090px) {
    .fixed-nav-bar li {
      float: left;
}

.fixed-nav-bar li a {
      padding: 20px 30px;
}

.fixed-nav-bar .menu {
      clear: none;
      float: right;
      max-height: none;
}

.fixed-nav-bar .menu-icon {
      display: none;
    }
}

/* 4. Landing Page
======================================== */

.container {
    display: grid;
    max-width: 1300px;
    gap: 1.5em;
    align-content: space-between;
    align-items: center;
    justify-items: center;
    padding: 70px 100px;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2em;
    margin: auto;
}
@media (max-width: 920px) {
    .container {
        padding: 70px 15px;
        display: block;
        margin: 5px 10px;
    }
    .box {
        transition: width 0.25s ease;
        width: 80%;
    }
    .dark-mode .container .item-right table.client-buddy{
        border-spacing: 10px;
        text-align: center;
    }
}

.item-left {
    line-height: 2em;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.item-left h1 {
    color:#115259;
    line-height: 1;
}

/* .item-right img {
    width: 80%;
} */

@media (max-width: 920px) {
    .item-right img {
        display: none;
    }
    .item-right .dashboard{
        display: inherit;
    }
}

.item-right {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.box {
    background: rgba(128, 251, 232, 0.5);
    padding: 30px 50px;
    border-radius: 10px;
}

.box li {
    list-style: initial;
}


.divider {
    width: 100%;
    padding: 0px 70px;
}

.divider table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #BFB0AC;
    border-spacing: 30px;
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 14px;
}

.divider .square {
    background-color: #2AC7AF;
    width: 50px;
    height: 50px;
    margin-right: 5em;
}

.divider .number {
    width: 200px;
    text-align: left;
    vertical-align: middle;
    font-variant-numeric: slashed-zero;
    padding-left: 10px;
    border-right: 0.5px solid #BFB0AC;
}

@media (max-width: 920px) {
    .divider {
        padding: 0px 20px;
    }
    .divider .number {
        border-right: none;
    }
}

/* ==== Dark Mode ==== */

.dark-mode {
    background-color: #443E3D;
    width: 100%;
    height: auto;
    color: #FAFAFA;
}


.divider-dm {
    width: 100%;
    padding: 0px 70px;
}

.divider-dm table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #BFB0AC;
    border-spacing: 30px;
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 14px;
}

.divider-dm .square {
    background-color: #2AC7AF;
    width: 50px;
    height: 50px;
    margin-right: 5em;
}

.divider-dm .number {
    width: 200px;
    text-align: left;
    vertical-align: middle;
    font-variant-numeric: slashed-zero;
    padding-left: 10px;
    border-right: 0.5px solid #BFB0AC;
}

@media (max-width: 920px) {
    .divider-dm {
        padding: 0px 20px;
    }
    .divider-dm .number {
        border-right: none;
    }
}

.container-ourwork {
    display: grid;
    max-width: 1300px;
    padding: 10px 70px;
    column-gap: 2em;
    grid-template-columns: repeat(4, 1fr);
    align-items: baseline;
    margin: auto;
}

.container-ourwork .apprenticeship {
    align-items: center;
}
.container-ourwork p {color: #FAFAFA;}

@media (max-width: 920px) {
    .container-ourwork {
        padding: 10px 15px;
        display: block;
        align-items: center;
        margin: 5px 10px;
    }
}

.col1-top {
    grid-column-start: 1;
    grid-column-end: 3;
    
}
.col1-top h2 {
    color: #FAFAFA;
}

.col1-top p {
    color: #FAFAFA;
}
.col2-top {
    grid-column-start: 3;
    grid-column-end: 5;
}
.col2-top p  {
    color: #FAFAFA;
}
.col2-top li{
    list-style: decimal;
}
.col1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
}
.col1 h4{color: #FAFAFA;}
.col1 p {color: #FAFAFA;}

.col2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
}
.col2 h4{color: #FAFAFA;}
.col2 p {color: #FAFAFA;}

.col3 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}
.col3 h4{color: #FAFAFA;}
.col3 p {color: #FAFAFA;}

.col4 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    
}
.col4 h4{color: #FAFAFA;}
.col4 p {color: #FAFAFA;}

.apprenticeship {
    width: 50px;
    height: 50px;
    background-color:rgba(128, 251, 232, 0.5);
    border-radius: 5px;
    border: 3px dashed #2AC7AF;
}

.entry {
    width: 50px;
    height: 80px;
    background-color:#2AC7AF;
    border-radius: 5px;
}

.mid {
    width: 50px;
    height: 120px;
    background-color:#2AC7AF;
    border-radius: 5px;
}

.expert {
    width: 50px;
    height: 200px;
    background-color:#2AC7AF;
    border-radius: 5px;
}

.footnote {
    font-weight: 200;
    font-style: italic;
}

.item-right-figure {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.img-mobile {display: none;}

/* ==== AI Features section ==== */
.dark-mode .container .item-left h2 {color: #F2F2F2}
.dark-mode .container .item-left p {color: #F2F2F2}

.dark-mode .container .item-right h3 {color: #F2F2F2}
.dark-mode .container .item-right p {color: #F2F2F2}


.client-buddy-mobile{
    display: none;
}

.dark-mode .container .item-left .client-buddy-desktop{
    width: 100%;
    display: inline-flex;
    margin-top: 4em;
}


.dark-mode .container .item-left .circle  {
    background-color: #2AC7AF;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
}

.dark-mode .container .item-left .circle .icon {
    width: 70%;
    margin: auto;
}

@media (max-width: 920px) {
    .dark-mode .container .item-left .client-buddy-desktop {
        display: none;
    }
    .client-buddy-mobile {
        display: inline-flex;
        width: 100%;
        margin: 20px 0px;
    }

    .dark-mode .container .item-right .circle  {
        background-color: #2AC7AF;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        text-align: center;
    }
    .dark-mode .container .item-right .circle .icon {
        width: 70%;
        margin: auto;
        display: inherit;
    }
    img {
        display: inherit;
        width: 70%;
        margin: 10px 0px;
    }
    .img-desktop{
        display: none;
    }
    .img-mobile{
        display: inherit;
        width: 70%;
        margin: 20px 0px;
    }
}

.item-left li {
    list-style:initial;
}

.login {
    border: 2px solid #115259;
    border-radius: 5px;
    width: 90%;
    margin-top: 130px;
    padding: 10px 20px;
    grid-column-start: 3;
    grid-column-end: 5;
    text-align: center;
    justify-self: center;
}

@media (max-width: 920px) {
    .login {
        margin-top: 50px;
    }
}

.cta {
    color:#115259;
    font-size: 24px;
}

.google-button {
    background-color:#FE725F;
    padding: 15px;
    font-family: 'Work Sans', Helvetica, sans-serif;
    border-radius: 200px;
    border: none;
    width: 200px;
    color: #F2F2F2;
    cursor: pointer;
}

.google-button:hover {
    background-color:#FE725F;
    box-shadow: 5px 5px 28px 4px rgba(254,114,95,0.52);
    padding: 15px;
    font-family: 'Work Sans', Helvetica, sans-serif;
    border-radius: 200px;
    border: none;
    width: 200px;
    color: #F2F2F2;
    cursor: pointer;
}

.sign-up {
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-weight: 500;
    color: inherit;
    background-color: transparent;
    border: 1.5px solid #115259;
    border-radius: 200px;
    padding: 10px 30px;
    cursor: pointer;
}

.email-form {
    border: 1px solid;
    border-radius: 200px;
    padding: 10px;
    font-family: 'Work Sans', Helvetica, sans-serif;
    background: transparent;
    width: 200px;
    text-align: center;
}

/*==== Footer ====*/

footer {
  display: inline-block;
  background-color: #115259;
  padding: 70px 15px;
  color: #FAFAFA;
  margin: 0;
  text-align: center;
  width: 100%;
}

footer a {
  color: #FAFAFA;
}

footer p {
    color: #FAFAFA;
}

footer img {
    max-width: 50px;
}