:root{
  --font: "Montserrat", sans-serif;
  --white: #FFF;
  --black: #3D4141;
  --pink: #FED3D6;
}

/*page layout*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

/*page styles*/
body{
  background: #FFF;
/*
  display: flex;
  width: 120rem;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
*/
}

/*nav related items*/
.navbar a:hover{
  color:var(--pink);
}

/*font sizes and description*/

button{
  border: 4px solid #F7DD72;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 1rem 2rem;
  text-align: center;
  display: inline-block;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  font-family: var(--font);
  font-style: normal;
  color: #3D4141;
}

button:hover{
  background-color: #F5E9B9;
}

#button{
  font-size: 1.5rem !important;
  font-weight: 400;
  padding-bottom: 1rem;
}

/* only used once, for the large hello*/
h1{
  color: #3D4141;
  font-family: var(--font);
  font-size: 12.5rem; /*200px*/
  font-style: normal;
  font-weight: 800;
  line-height: 7.1875rem; /* 57.5% */
}

/*second subheader, semi bold 40, this is for the intro description and for section headers*/
h2{
  color: #3D4141;
  font-family: var(--font);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/*third subheaders, for the cards, extrabold 30*/
h3{
  color: #3D4141;
  font-family: var(--font);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* for my name 70*/
h4{
  color: #3D4141;
  font-family: var(--font);
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* larger title,medium 30*/
h5{
  font-weight: 500;
  color: #3D4141;
  font-family: Montserrat;
  font-size: 2rem;
  font-style: normal;
  line-height: normal;
}

/* card title option 2 and logo semibold 20 */
h6{
  font-weight: 600;
  color: #3D4141;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  line-height: normal;
}

/*body text, regular 20*/
p{
  color: #3D4141;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

ul {
  display: block;
  margin-left: 1rem;
  margin-right: 0;
  padding-left:0;
}

li{
  color: #3D4141;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

a{
  color: #3D4141;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
}


#logo{
  font-weight: 600;
}

/*pills, semibold 14 - need to find how to reference this*/

/*navigation starts*/
.navbar{
  position:absolute;
  width:100%;
  padding:50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.navbar .logo{
  font-size:2em;
}

.navbar .nav-links ul{
  display:flex;
}

.navbar .nav-links ul li{
  margin:0 25px;
}

.nav-menu li{
  list-style-type: none;
}
/*navigation ends*/

/*header section-main*/
.main-header{
  text-align: left;
  padding-top: 18.75rem;
  padding-left: 16.5rem;
  padding-bottom: 10rem;
  padding-right: 16.5rem;
}

.main-header h1{
  padding-bottom:3rem;
}

.main-header h4{
  padding-bottom: 2rem;
}

.main-header h2{
  padding-right: 10rem;
}
/* header section-main ends*/

/* content begins */
.about-2column{
  padding-left: 16.5rem;
  padding-right: 16.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;

  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 1.5rem;
}

.about-text{
  padding-right:1rem;
  padding-left:1rem;

  display: grid;
  grid-template-rows: auto;
  grid-row-gap:1rem;
}

#section-title{
  padding-left: 16.5rem;
  padding-right: 16.5rem;
  padding-bottom: 2rem;
}

.case-study{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  word-wrap: break-word;
  padding-top: 2rem;
  row-gap:3.5rem;
}

.cards-opt1 {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
  transition: 0.3s;
  border-radius: 5px;
  width:500px;
}

/* On mouse-over, add a deeper shadow
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}*/

/* Add some padding inside the card container */
.container-opt1 {
  padding: 1rem 1rem;
}

/*this one is used in the qualification section*/
.container{
  width:575px;
}

#title{
  padding-bottom:1rem;
}

/* content ends*/

/*divider starts*/
.horizontal-line {
  border-top:.15rem solid var(--pink);
  margin-right: 16.5rem;
  margin-left: 16.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
/*dividers ends*

/*pill layout starts*/
.pill-flex{
  display: flex;
  flex-wrap: wrap;
  column-gap:.25rem;
  row-gap:.25rem;
  padding-top:.75rem;
  padding-bottom:.75rem;
}

.pills{
  pointer-events: none;
  background-color: var(--pink);
  border: none;
  color: var(--black);
  padding-top: .6rem;
  padding-bottom: .6rem;
  padding-left: .75rem;
  padding-right: .75rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: .7rem !important;
  font-style: normal;
  font-weight: 600 !important;
  border-radius: 10px;
}
/*pill layout ends*/

/*pill layout
display: flex;
padding: 0.625rem;
justify-content: center;
align-items: center;
gap: 0.625rem;
*/
/*pill style
border-radius: 0.5rem;
background: #FED3D6;
*/

#gap{
  padding-top:10rem;
}

/*case study pages */
#case-study-title{
  padding-bottom:1rem;
}

#case-study-paragraphs{
  padding-top:2rem;
  padding-bottom:1rem;

}

#case-study-imgs{
  padding-top:1rem;
  padding-bottom:1rem;
}

.header-grid{
  background-color: #F5E9B9;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 1rem;

  width: 100%;

  padding-top: 10rem;
  padding-left: 16.5rem;
  padding-bottom: 3rem;
  padding-right: 3rem;

}

.header-grid-element h4{
  text-align: left;
}

.header-grid-element img{
}

.project-overview-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 6rem;
}

/* footer */
.footer{
  position:absolute;
  width:100%;
  padding:50px;
  display: flex;
  justify-content: space-between;
}
/*footer ends*/

/* mobile */
@media (min-width: 375px) and (max-width: 500px) {
/*navigation starts*/
  .navbar {
      padding: 1rem 2rem 1rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .navbar .logo {
      display: block;
      margin-top: 20px;
      width: 150px; /* Adjust the width as necessary */
  }
  .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
      width: 100%;
  }

  .nav-links ul {
      display: flex;
      flex-direction: row; /* This makes the links go side by side */
      justify-content: center;
      align-items: center;
      padding: 0;
      list-style: none;
      gap: 1rem; /* Adds spacing between the links */
  }
/* navigation ends */

/*header section-main*/
.main-header{
  text-align: left;
  padding-top: 18.75rem;
  padding-left: 1rem;
  padding-bottom: 10rem;
  padding-right: 1rem;
}

.main-header h1{
  padding-bottom:0rem;
  font-size: 5.75rem;
}

.main-header h4{
  padding-bottom: 1rem;
  font-size: 2rem;
}

.main-header h2{
  padding-right: 3rem;
  font-size: 1rem;
}
/* header section-main ends*/

/*divider*/
.horizontal-line {
  border-top:.15rem solid var(--pink);
  margin-right: 1rem;
  margin-left: 1rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
/*dividers ends*

/* content begins */
.about-2column{
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;

  display: grid;
  grid-template-columns: auto;
}

.about-text{
  padding-right:1rem;
  padding-left:1rem;

  display: grid;
  grid-template-rows: auto;
  grid-row-gap:1rem;
}

.about-2column img {
    display: none;
  }

  #section-title{
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
  }

  .case-study{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    word-wrap: break-word;
    padding-top: 2rem;
    padding-bottom: 2rem;
    row-gap:2rem;
  }

  .cards-opt1 {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
    transition: 0.3s;
    border-radius: 5px;
    width:375px;
  }

/* content ends */

.project-overview-grid{
  display: grid;
  grid-template-columns: 1fr;
}


.header-grid{
  background-color: #F5E9B9;
  display: grid;
  grid-template-columns: 1fr;

  width: 100%;

  padding-top: 10rem;
  padding-left: 1rem;
  padding-bottom: 3rem;
  padding-right: 1rem;

}

/* footer */
.footer{
  position:absolute;
  display: flex;
  flex-direction: column;
}
/*footer ends*/

}

/* tablet */
@media (min-width: 501px) and (max-width: 800px) {
  /*navigation starts*/
    .navbar {
        padding: 1rem 2rem 1rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .logo {
        display: block;
        margin-top: 20px;
        width: 150px; /* Adjust the width as necessary */
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
    }

    .nav-links ul {
        display: flex;
        flex-direction: row; /* This makes the links go side by side */
        justify-content: center;
        align-items: center;
        padding: 0;
        list-style: none;
        gap: 1rem; /* Adds spacing between the links */
    }
  /* navigation ends */

  /*header section-main*/
  .main-header{
    text-align: left;
    padding-top: 18.75rem;
    padding-left: 1rem;
    padding-bottom: 10rem;
    padding-right: 1rem;
  }

  .main-header h1{
    padding-bottom:0rem;
    font-size: 5.75rem;
  }

  .main-header h4{
    padding-bottom: 1rem;
    font-size: 2rem;
  }

  .main-header h2{
    padding-right: 3rem;
    font-size: 1rem;
  }
  /* header section-main ends*/

  /*divider*/
  .horizontal-line {
    border-top:.15rem solid var(--pink);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
  }
  /*dividers ends*/

  /* content begins */
  .about-2column{
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;

    display: grid;
    grid-template-columns: auto;
  }

  .about-text{
    padding-right:1rem;
    padding-left:1rem;

    display: grid;
    grid-template-rows: auto;
    grid-row-gap:1rem;
  }

  .about-2column img {
      display: none;
    }

    #section-title{
      padding-left: 1rem;
      padding-right: 1rem;
      padding-bottom: 2rem;
    }

    .case-study{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      word-wrap: break-word;
      padding-top: 2rem;
      padding-bottom: 2rem;
      row-gap:2rem;
    }

    .cards-opt1 {
      /* Add shadows to create the "card" effect */
      box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
      transition: 0.3s;
      border-radius: 5px;
      width:375px;
    }
  /* content ends */

  .header-grid{
    background-color: #F5E9B9;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;

    padding-top: 10rem;
    padding-left: 1rem;
    padding-bottom: 3rem;
    padding-right: 1rem;
  }

  /* footer */
  .footer{
    position:absolute;
    display: flex;
    flex-direction: column;
  }
  /*footer ends*/
}


/* desktop */
@media (min-width: 901px) and (max-width: 1500px) {

/* navigation starts */
  .nav{
    display:grid;
    grid-template-columns: auto auto;
    grid-column-gap: 5rem;
    width: 100%;
    padding-top: 3rem;
    padding-bottom:1rem;
    display: flex;
    justify-content: center;
    text-align: center;
  }
/* navigation ends */

/*header starts */
/*header section-main*/
.main-header{
  text-align: left;
  padding-top: 18.75rem;
  padding-left: 9rem;
  padding-bottom: 10rem;
  padding-right: 9rem;
}

.main-header h1{
  padding-bottom:3rem;
}

.main-header h4{
  padding-bottom: 2rem;
}

.main-header h2{
  padding-right: 10rem;
}
/* header section-main ends*/
/*header ends*/

/*divider starts*/
.horizontal-line {
  border-top:.15rem solid var(--pink);
  margin-right: 9rem;
  margin-left: 9rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
/*dividers ends*/

/* content begins */
.about-2column{
  padding-left: 9rem;
  padding-right: 9rem;
  padding-top: 2rem;
  padding-bottom: 2rem;

  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 1.5rem;
}

.about-text{
  padding-right:1rem;
  padding-left:1rem;

  display: grid;
  grid-template-rows: auto;
  grid-row-gap:1rem;
}

#section-title{
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 2rem;
}

/*this one is used in the qualification section*/
.container{
  width:400px;
}
/* content ends*/

}


/* desktop large */
@media (min-width: 1501px) {
/* navigation starts */
.nav{
  grid-template-columns: auto auto;
  grid-column-gap: 15rem;
  width: 100%;
  padding-top: 3rem;
  padding-bottom:2rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
/* navigation ends */
}
