@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");
@import url("https://use.typekit.net/nuj0bkw.css");

/* Variables */

:root {
  /* Colors */
  --c_black: #111;
  --c_blue: #0070bb;
  --c_general: #3f3f3f;
  --c_white: #fff;

  /* Fonts */
  --f_general: "Open Sans", sans-serif;
  --fgen_italic: "Open Sans Italic", sans-serif;
  --fgen_Bold-italic: "Open Sans bold Italic", sans-serif;
  --f_italic: "Roboto Serif", serif;
  --f_nav-font: "Segoe UI", sans-serif;

  /* Sizes
    fs: font size
    fw: font weight
    mg: margin size
    pd: padding size
    wd: width size
    ht: height size
    btm: bottom
    top: top
    lft: left
    rgt: right
    lr: left & right*/

  --fs_nav: 1.5rem;
  --fs_btn: 1.15rem;
  --fs_para: .9rem
  --fs_small:.7rem;
  --fw_head: 600;
  --wd_full: 100vw;
  --wd_nav-logo: 10rem;
  --wd_container: 84vw;
  --wd_hero-logo: 42.125rem;

  /* Columns */
  --cols: 12;
  --gap: 1.25rem;
}

/*general styles*/

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f_general);
  color: var(--c_general);
  line-height: 1.5;
  max-width: var(--wd_full);
}

#full-container {
  margin: auto;
  display: flex;
  flex-direction: column;
}

h1,h2,h3 {
  font-family: "Times New Roman", sans-serif;
  font-weight: 600;
  color: var(--c_blue);
}

h1 {
  font-size: clamp(3rem, 4.5vw, 6rem);
}

h2 {
  font-size:clamp(1.5rem, 3.5vw, 5rem);
}

h3 {
  font-size: clamp(2rem, 2.5vw, 4rem);
}

h4 {
  font-size:clamp(.8rem, 1.5vw, 3.34rem);
}

h5 {
  font-size:clamp(.7rem, 1.5vw, 1.5rem);

}

p {
  font-family: var(--f_general);
  line-height: 130%;
  font-size: clamp(.7rem, 2.5vw, 2.5rem);
  color: var(--c_general);
}

em {
  font-family: var(--f_italic);
  font-style: italic;
}

.container {
  width:100%;
  max-width: 84vw;
  max-height: 45vh;
  margin: 0 auto;
  overflow: hidden;
}

.layout_flex {
  display: flex;
}

.layout_flex-spc-btwn {
  justify-content: space-between;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.btn .btn:visited {
  font-family: var(--f_general);
  display: inline-block;
  color: var(--c_black);
  border: 1px solid var(--c_blue);
  padding: 1rem 1.5rem;
  margin: 0 auto;
}

/* NAV STYLES for mobile 1st*/

/* NAV Styles */
#nav-responsive {
  position: sticky;
  top: 1rem;
  margin-right: 1rem;
}

.nav {
  top: 0;
  width: 100%;
  position: relative;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: var(--c_blue);
  padding: 10px 10px 10px 10px;
}

.nav > .nav-logo {
  display: none;
}

.nav-logo img {
  padding-top: 40px;
  max-width: 210px;
  height: auto;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0.3, 0.3));
}


.nav > .nav-btn {
  display:inline-block;
  position: relative;
  height:20%;
  margin-top:10px;
}

.nav > .nav-btn > label {
  display:inline-block;
  margin-right: .5rem;
  height:10%;
  width: 10%;
  border-radius: 6px;
  background-color: var(--c_blue);
}
 .nav-btn > .nav-check > span  {
  display: inline-block;
  padding:0;   
}

.nav > .nav-links {
  display: inline-block;
  font-size:var(--fs_general);
  width: 100%;
  max-height: 50vh;
}

.nav > .nav-links > a {
  font-weight: 500;
  display: block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: var(--c_blue);
  text-transform: uppercase;
}

.nav > #nav-check {
  display: none;
  width: 20px;
  height: 20px;
}
.nav-link-desktop-only {
  display: none;
}

/* Hero Section */
#hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  max-width: 100%;
  width: 100vw;
  background: url("https://assets.codepen.io/1064831/bg_welcome.jpg") no-repeat;
  background-size: cover;
  margin: 0;
}

.hero_logo-wrapper {
  width: 90%;
  max-width: 300px;
}

.hero_logo-img {
  width: 100%;
  height: auto;
}

/* How Section */
/* How Styles*/
#how {
  background: url("https://assets.codepen.io/1064831/bg_about.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 46vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin:0;
  padding: 1rem;
}

#how .container {
  background-color: rgba(17, 17, 17, 0.85);
  text-align: center;
  max-width: 84vw;
  max-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left:26px;
  padding-right:36px;
  padding-bottom: 25px;
  letter-spacing: 1px;
}

.about_span {
  font: var(--f_italic);
  color: white;
  font-size: 16pt;
  padding-top: .5rem;
}

#how .btn {
  border: 1px solid var(--c_white);
  color: var(--c_white);
  font-size: 10pt;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 35px;
  min-height: 25px;
  max-width:310px;
  font-style: italic;
  text-decoration: none;
  margin-bottom: 10px;
}

/* Welcome Section - Hidden on Mobile */
#welcome {
  display: none;
}

/* What Section */
#what {
  width: 100%;
  height: 50vh;
  display: inline-block;
  text-align: center;
  justify-content: center;
  align-content: center;
  margin-bottom: 30px;
  padding: 0;
}

.container.row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-size: var(--fs_small);
  line-height: 120%;
  margin: auto;
}

.what_box.col.col-1 {
  text-align: left;
  width: 322px;
  margin-bottom: .5rem;
  display: flex;
  flex-direction: row;
}

.what_box.col.col-2 {
  text-align: left;
  width: 322px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
}

.what_box img {
  padding: 12px;
  width: 40%;
  height: 40%;
  margin:auto;
  margin-right: 10px;
}

.what-blurb {
  color: var(--c_blue);
  font-weight: 400;
  text-align: center;
  padding-bottom:1rem;
  line-height: 130%;
  margin:0 auto;
}

.what-consult{ 
  color:var(--c_general);
  font-weight: 100;
  text-align: center;
  margin: auto;
}

/* Hide some boxes on mobile */
.what_box.col-3,
.what_box.col-4 {
  display: none;
}

/* History Section */
#history{
  display: none;
}
#history {
  padding: 3rem 0;
  text-align: center;
}

.history_timeline img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.history_bank-img img {
  width: 100px;
  margin: 0 auto 1rem;
}

.history_paragraph {
  text-align: center;
}

/* Clients Section */
#clients {
  background-image:url(https://assets.codepen.io/1064831/bg_idontlnow.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 400px;
  max-height: 1000px;
}

.list_cta {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  text-align: center;
  margin:0;
  max-width: 100%;
  padding:0;
  gap:8rem;
  max-height: 40vh;
}

.join-us{
  padding-top:0;
  margin: 0;
}


.we-need{  
  padding-top:0;
  margin: 0;
  }


.client_list-categories {
  display: flex;
  flex-direction:column;
  flex-wrap: nowrap;
  text-align: center;
  width: 100%;
  height: 100%;
}

.health {
  display: flex;
  justify-content: space-around;
  align-items: center;
  justify-items: auto;
  background-color: var(--c_black);
  color: var(--c_white);
  font-size:var(--fs_small);
  padding-left:30px;
  padding-right: 30px;
}

.care{margin-right:13px;
margin-left: 13px;
}

.retail{margin:10px;} 

.prof{
width: 80%;
}


.client_list-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 360px; 
  margin: 0 auto;
  text-align: center;
  background-color: rgba(173, 216, 230, 0.3);
}

.client_list img {
  width: 150px;   
  max-width: 250px; 
  height: auto;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}


.client_list.col.col-1{
  padding-top: 30px;
}

.client_list-bkg-img {
  display: none; 
}



/* Contact Section */
#contact {
  color:var(--c_general);
  padding: 30px;
  font-weight: 100;
  text-align: center;
  margin: auto;
}

.contact_btn {
  display: flex;
  color:var(--c_blue);
  font-weight: 400;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 10px;
  background-color:var(--c_black);
  max-height: 45px;
  max-width: 180px;
}

/* RESPONSIVE STYLES */
.layout_responsive {
  display: none;
}

/* Columns Styles */

.row {
  display: flex;
}

.col {
  --span: 1;
  flex: 0 0 auto;
  width: calc(((100% - (var(--cols) - 1) * var(--gap)) * var(--span) / var(--cols)) + ((var(--span) - 1) * var(--gap)));
}

.col-1 { --span: 1;
}
.col-2 {--span: 2;
}
.col-3 {  --span: 3;
}
.col-4 {  --span: 4;
}
.col-5 {  --span: 5;
}
.col-6 {  --span: 6;
}
.col-7 {  --span: 7;
}
.col-8 {  --span: 8;
}
.col-9 {  --span: 9;
}
.col-10 {  --span: 10;
}
.col-11 {  --span: 11;
}
.col-12 {  --span: 12;
}


@media screen and (min-width: 1000px) {
  #welcome {
    display: inline-block;
    width: 100%;
    height: ;
    padding: 13px;
  }
  #hero{
    width: 1400px;
    height:750px;
    padding: 13px;
  }
}





/* Responsive Nav media query */
@media (max-width:1000px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: var(--c_blue);
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: var(--c_blue);
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
    text-align: center; 
  }
  .nav > .nav-links > a {
    color: white;
    display: block;
    width: 100%;
  }
  
  .nav > .nav-links > a:first-child {
    padding-top: 5rem;
  }
  
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}


@media screen and (min-width: 1000px) {
  #welcome {
    display: initial;
  }
}

@media screen and (min-width: 768px) {
  #welcome {
    display: initial;
  }
  #hero{
    width: 768px;
    height:750px;
    padding: 13px;
  }

  #how{
    width: 768px;
    height:auto;
    padding: 13px;
  
  }
#how .container {
  text-align: center;
  max-width: 84vw;
  max-height: 40vh;
  float: right;
  padding-left:26px;
  padding-right:36px;
  padding-bottom: 25px;
  letter-spacing: 1px; 

}


/* Responsive Nav media query */
@media (max-width:1000px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: var(--c_blue);
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: var(--c_blue);
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
    text-align: center; 
  }
  .nav > .nav-links > a {
    color: white;
    display: block;
    width: 100%;
  }
  
  .nav > .nav-links > a:first-child {
    padding-top: 5rem;
  }
  
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}
