<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main Fonts Styling */
  body{
  font-family: Nunito;
  font-size: 1.125rem;
  color: black;
  margin-top:0;
  padding-top:0;
  }

  p {
  font-family: Nunito;
  font-size: 1.125rem;
  color: black;
  line-height:1.5em;
  margin-top:0;
  padding-top:0;
  }

  h1 {
  font-family: Nunito;
  text-align:center;
  display: block;
  font-size: 2rem;
  line-height: 1.5em;
  padding-bottom: 1%;
  margin: 0;
  font-weight: bold;
  }

  h2 {
  font-family: Nunito;
  display: block;
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
  }

  h3 {
  font-family: Nunito;
  display: block;
  font-size: 1.25rem;
  margin: 0;
  font-weight: bold;
  }
/* Header*/
  header{
    display:flex;
    flex-direction:row;
    width:100%;
    padding: 1% 3% 1% 3%;
    align-items:center;
    background:#ffffff;
    border-style: solid 0px;
    box-shadow: 0px 0px 20px 0px rgba(3, 191, 199, 0.42);
    margin-bottom:2%;
    box-sizing: border-box;
    top:-100px;
    -webkit-transition:top 0.3s;
    transition:top 0.3s;

  }

  header img, .header-fixed img{
    padding-right: 1%;
  }

  header h1{
    font-size:1.5rem;
    padding-bottom:0;
    margin-bottom:0;
    float:left;
  }

  header span{
    font-size:.93rem;
    font-style:italic;
    line-height:0;
  }

  .header-limiter{
    width:100%;
  }

  /*  The header placeholder. It is displayed when the header is fixed to the top of the
    browser window, in order to prevent the content of the page from jumping up. */

  .header-fixed-placeholder{
    height: 80px;
    display: none;
  }

  /* The navigation links */

  .header-fixed .header-limiter a {
    color: black;
    text-decoration: none;
  }

  .header-fixed .header-limiter nav {
    float: right;
    line-height:40px;
  }

  .header-fixed .header-limiter nav a{
    padding: 0 5px;
    text-decoration:none;
    color: black;
    opacity: 0.9;
  }

  .header-fixed .header-limiter nav a:hover{
    opacity: 1;
  }

  .header-fixed .header-limiter nav a.selected {
    color: #608bd2;
    pointer-events: none;
    opacity: 1;
  }

  /* Fixed version of the header */

  body.fixed .header-fixed {
    padding: 10px 40px;
    height: 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }

  body.fixed .header-fixed-placeholder {
    display: block;
  }

  @media all and (max-width: 600px) {

    .header-fixed {
      padding: 20px 0;
      height: 75px;
    }

    .header-fixed .header-limiter h1 {
      float: none;
      margin: -8px 0 10px;
      text-align: center;
      line-height: 1;
    }

    .header-fixed .header-limiter nav {
      line-height: 1;
      float:none;
    }

    body.fixed .header-fixed {
      display: none;
    }

  }

/* Tabs */

  .tabs {
  	width: 60%;
    display: flex;
  	flex-wrap: wrap;
    background-color:white;
    border: 0 solid;
    border-radius: 15px;
    padding: 2%;
    margin: 0 0 2rem 0;
    box-shadow:  0px 0px 10px 0px rgba(205, 205, 205, 0.5);
  }
  .tabs label {
    order: 1;
  	display: flex;
  	cursor: pointer;
    padding: 1rem 2rem;
    margin-right: 0.2rem;
    background-color: rgb(218, 253, 255);
    border: solid 1px black;
    font-weight: bold;
    font-size:1rem;
    transition: background ease 0.2s;
    text-align: center;
    border-radius:15px;
  }
  .tabs .tab {
    order: 99;
    flex-grow: 1;
  	display: none;
    padding: 1rem;
  }
  .tabs input[type="radio"] {
  	display: none;
  }

  .tabs input[type="radio"]:checked + label {
  	background: #fff;
  }
  .tabs input[type="radio"]:checked + label + .tab {
  	display: block;
  }

  @media (max-width: 45em) {
    .tabs .tab,
    .tabs label {
      order: initial;
    }
    .tabs label {
      width: 100%;
      margin-right: 0;
    }
  }
/* Tabs Styling */
  .tabs {
  min-height: 100vh;
  max-width: 100vw;
  margin: 0 auto;
  align-content:start;
  justify-content: start;
  }
/* Stats Container */
  .card-header{
    display:flex;
    flex-direction:row;
    align-content:start;
    align-items:center;
  }

  .card-header h2{
    font-size:1.5rem;
    line-height:1rem;
  }

  .card-header i{
    padding-right:1rem;
  }

  .stats{
      display:flex;
      flex-direction: column;
      width: 30%;
      height:50%;
      border-style: 0 solid;
      border-radius: 15px;
      padding: 2%;
      box-shadow: 0px 0px 20px 0px rgba(255, 80, 169, 0.35);
    }

    .stats ul{
      list-style:none;
    }

  .services-wrapper
    {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      max-width:100vw;
      gap:1rem;
      padding:2%;
      align-items:stretch;
      align-content:start;
      justify-content: start;
    }
/* Portfolio */
    #portfolio {
    display: flex;
    flex-wrap: wrap;
    width:100%;
    align-content:start;
    }

    /* Create three equal columns that floats next to each other */
    .portfolio-item {
      float: left;
      align-content:start;
      align-items:stretch;
      border: 0 solid;
      border-radius: 15px;
      padding: 3%;
      margin: .75rem;
      box-shadow:  0px 0px 10px 0px rgba(205, 205, 205, 0.5);
    }

    /* Content */
    .content {
      align-content:start;
      background-color:white;    

    }

    .content p, a {
      font-size:.93rem; 
      text-decoration: none;
      color:black;
    }

      .column:hover {
      top: -2px;
      box-shadow: 0 4px 5px rgba(0,0,0,0.2);
    }

    details{
      padding:10px;
      width:100%;
    }
/* Testimonials */
    #testimonial-grid
    {
    display:flex;
    flex-wrap: wrap;
    width:100%;
    align-items:stretch;
    align-content:start;
    }

    .icon{
      padding-right:2rem;
    }

    .testimonial-card
    {
      display:flex;
      flex-direction:row;
      padding-bottom:1.5rem;
    }
/* Education */
  .education-wrapper
    {
      display: flex;
      flex-direction:row;
      flex-wrap: wrap;
      align-items:stretch;
      align-content:start;
      justify-content:center;
      text-align:center;
      width:100%;
    }
  .education-card
    {
      width:42%;
      border: 0 solid;
      border-radius: 15px;
      padding: 2%;
      box-shadow:  0px 0px 10px 0px rgba(205, 205, 205, 0.5);
      margin: .75rem;
    }

     .education-card p
    {
      font-size:1rem;
    }
/* Marketing Services List */
    #services-grid
    {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width:100%;
    align-items:stretch;
    align-content:start;
    justify-content:center;
    }

    .services-card
    {
      margin: .75rem;
    }

    .services-card h2{
      font-size:1.25rem;
    }

    .services-card p{
      font-size:1rem;
      margin-left:2.25rem;
    }

/* Projects */
    #projects-grid
    {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width:100%;
    align-items:stretch;
    align-content:start;
    justify-content:center;
    }

    .projects-card
    {
      width: 40%;
      padding:2%;
      margin: .75rem;
    }
/* Contact Form */

  .form{
    width:100%;
  }

</pre></body></html>