* {
  box-sizing: border-box;
}

body {
  font-family: 'Raleway';
  font-size: 20px;
  margin: 0 auto;
}

h1,h2,h3,h4,h5,
.card a {
  font-family: "Raleway", sans-serif;
  color: #35c4d4;
}

a {
  text-decoration:  none;
}

ul {
  list-style-type:  none;
}
.writing {
  list-style-type: disc;
}

.sitecontainer {
  padding: 20px;
  background: #f1f1f1;
}

.footer p {
  font-weight: 700;
  color: #4C9FDA;
}

/* header */

.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 10px;
  color:  #4C94DA;
  font-size:  16px;
  font-family: "Raleway", sans-serif;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header li a:hover,
.header .menu-btn:hover {
  border-bottom:  2px solid #35c4d4;
}


.header .logo {
  display: block;
  float: left;
  font-size: 2rem;
  padding: 5px 20px;
  text-decoration: none;
}

.logo {
  font-family: "Raleway";
  color: #4C94DA;
}

/* menu */

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

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 30px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #4C94DA;
  display: block;
  height: 2.5px;
  position: relative;
  transition: background .2s ease-out;
  width: 20px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #4C94DA;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

/* hero image */

#hero {
  margin-top: 40px;
}
.hero {
   position: relative;
   width: 100vw;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
}
.hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url(images/ai-generated-8992625_1920.png);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   filter: brightness(60%);
}
.hero-content {
   position: relative;
   font-family: "Raleway", sans-serif;
   color: white;
   text-align: center;
   margin: 0.625rem;
}
.hero-title {
   font-size: 3rem;
   font-weight: 600;
   margin-bottom: 0;
}
.hero-subtitle {
   font-size: 1.875rem;
   font-weight: 400;
   margin-top: 1.25rem;
}

/*.hero-subtitle a::after {
  content: "|";
  color: #A37A00;
  font-weight: 600;
  margin-left: 16px;
  margin-right: 5px;
}

.hero-subtitle a:last-child::after {
  display: none;
}*/
.hero-subtitle a {
  margin-right:  1.675rem;
}

.hero-subtitle a:hover {
  border-bottom: 3px solid #35c4d4;
}

.hero-button {
   background-color: #ae2d59;
   color: white;
   border: 1px solid #cb376a;
   margin-top: 5rem;
   padding: 0.9375rem 1.875rem;
   font-family: "Raleway", sans-serif;
   font-size: 1.125rem;
   font-weight: 200;
   cursor: pointer;
}
.hero-button:hover {
   background-color: #cb376a;
   border: 1px solid #db7598;
}

@media (min-width: 1024px) {
  .hero-content {
   margin: 1.25rem;
}

  .hero-title {
   font-size: 5rem;
   font-weight: 600;
   margin-bottom: 0;
}
.hero-subtitle {
   font-size: 2rem;
   font-weight: 200;
   margin-top: 1rem;
}
.hero-button {
   font-size: 1.25rem;

}
}

/* Site Footer  */


.site-footer {
  clear: both;
  width: 100%;
  background-color: #ddd;
  font-family: "Raleway", sans-serif;
  font-size:  12px;
  text-align: center;
  padding: 20px;
 }

.copyright,
.footernav a{
  color: #35c4d4;
}

.footernav ul li {
  display: inline-block;
}

.footernav li::after {
  content: "|";
  color: #35c4d4;
  font-weight: 600;
  margin-left: 5px;
  margin-right: 2px;
}

.footernav li:last-child::after {
  display: none;
}
.footernav a {
  color:  #4C94DA;
}

.footernav a:hover {
  border-bottom: 3px solid #35c4d4;
}

.webgrow {
  font-size: 12px;
}


/* Header/Blog Title */
/*.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}*/

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
   background-color: #fff;
   padding: 20px;
   margin-top: 20px;
}

.card h3 {
  color: #35c4d4;
}

.card a {
  color:  #000;
}

.card a:hover {
  border-bottom: 2px solid #35c4d4;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
/*.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}*/



/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

@media screen and (min-width:  769px) {

  .navlink:hover {
    color:  #35c4d4;
  }
}

/** FLUID TYPE**/
 
.fluid-type {
  --fluid-type-min-size: 1;
  --fluid-type-max-size: 2;
  --fluid-type-min-screen: 20;
  --fluid-type-max-screen: 88;

  /* We multiply by 1rem to essentially stick a rem unit to a number. */
  font-size: calc(
    (var(--fluid-type-min-size) * 1rem) + (var(--fluid-type-max-size) - var(--fluid-type-min-size)) *
      (100vw - (var(--fluid-type-min-screen) * 1rem)) /
      (var(--fluid-type-max-screen) - var(--fluid-type-min-screen))
  );
}

h1.fluid-type {
  --fluid-type-min-size: 2;
  --fluid-type-max-size: 4;
}

h2.fluid-type {
  --fluid-type-min-size: 1.5;
  --fluid-type-max-size: 2.2;
}

.front-page-2 {
  background-image: 
    radial-gradient(80% 80% at 50% 38%, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,0)),
    linear-gradient(#f2f2f2, #f2f2f2);
}

.front-page-3 {
  background-image: 
    radial-gradient(80% 80% at 50% 38%, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,0)),
    linear-gradient(#35C4D4, #35C4D4);
}

.front-page-4 {
  background-image: 
    radial-gradient(80% 80% at 50% 38%, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,0)),
    linear-gradient(#f2f2f2, #f2f2f2);
}