/* Global Styles */

body {
  background-color: #F1F1F1 !important;
}

/* Menu  */
  .menu {
    background-color: #ffffff;
    color: rgba(255, 255, 255, 0.65);
    font-family: Quicksand;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-size: large;
    border-bottom: solid 1px #1fadff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  }

  /* Link hover color */
    .link-color:hover {
      color: #ef6394 !important;
    }    

    .link-illustration:hover {
      color: #b4d43d !important;
    }

    .link-publishing:hover {
      color: #04a2cd !important;
    }
    
    .link-about:hover {
      color: #f5d908 !important;
    }

    .link-testimonials:hover {
      color: #624e9b !important;
    }


    

/* Publishing Page Sections */

.container-fluid {
  position: relative;
  overflow: hidden;
  /* makes the sections full width, since bootstrap 5 has padded container-fluid */
  padding-right:0 !important;
  padding-left:0 !important;
  margin-right:auto;
  margin-left:auto;
}

.img-cust::after { /* adds overlay of white to select as link  */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0); /* Set initial background color to fully transparent */
  transition: background-color 0.3s; /* Add transition for background color change */
}

.img-cust:hover::after {
  background-color: rgba(255, 255, 255, 0.167); /* Red with 50% opacity */
}

/*Publishing Title Location for each section*/
.img-title {
  position: absolute;
  top: 0px; /* Adjust the top distance as needed */
  left: 0px; /* Adjust the left distance as needed */
  color: rgb(0, 0, 0);
  z-index: 1;
}

.img-title-bg {
  background: rgba(255, 255, 255, 0.939);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05) !important;

}



.cstm-row {
  margin-bottom: 0px;
}

/*
.cstm-col {
  margin-left: -5px;
  margin-right: -5px;
}
*/

/* Publishing Intro Paragraph*/
  .intro-text {
    text-align: left;
    font-size: 18px;
  }

  .section-cstm {
    background: white;
  }





