/* CSS files add styling rules to your content */

body {
    font-family:lato;
    color:#293D52;
  }
  
  h1, h2, h3{
    font-family:"Cormorant Garamond";
  }
  
  .lato{
    font-family:"Lato";
  }

  .cormorant{
    font-family:"Cormorant Garamond";
  }

  .cormorant-number{
    font-family:"Cormorant";
  }

  .hamburger{
    padding:0px 0px;
}

.hamburger-inner, .hamburger-inner:before, .hamburger-inner:after {
    height: 2px;
    width: 30px;
}

.hamburger.is-active:hover {
    opacity: 1;
}

  .bg-seomba{
    background-color: #F9F5F1;
  }

  .bg-seomba-dark{
    background-color:#293D52;
  }
  
  .seomba-light{
    color:#F9F5F1;
  }

  .seomba-red-accent{
    color:#CF534A;
  }
  
  .b--seomba-red-accent{
    border-color:#CF534A;
  }

  .b--seomba-blue{
    border-color:#293D52;
  }
  
  .seomba-red{
    color:#CF534A;
  }
  
  .bg-seomba-red{
    background-color:#CF534A;
  }

  p a, p a:visited{
    color:#CF534A;
  }

  @media (min-width: 60em) { 

    .maintitle{
      font-size:60px;
      line-height:65px;
    }
  }

#wistia_chrome_23{
  box-shadow:0 0 0.8rem rgb(0 0 0 / 13%);
}

.testimonialshadow{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
}

mark {
  margin: 0 -0.4em;
  padding: 0.1em 0.4em;
  border-radius: 0.8em 0.3em;
  background: transparent;
  background-image: linear-gradient(
    to right,
    rgba(255, 244, 112, 0.1),
    rgba(255, 244, 112, 0.6) 4%,
    rgba(255, 244, 112, 0.3)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

summary {
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #fff;
  color: #333;
  padding: 1rem;
  margin-top: 1rem;
  outline: none;
  border-radius: 0.25rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}
details > summary::after {
  position: absolute;
  content: "+";
  right: 20px;
}
details[open] > summary::after {
  position: absolute;
  content: "-";
  right: 20px;
}
details > summary::-webkit-details-marker {
  display: none;
}

.toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 54px;
  height: 24px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #293D52;
  transition: background-color ease 0.3s;
}

/* For toggle switch */
.toggle:before {
  content: "on off";
  display: block;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: #fff;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  font: 10px/22px Helvetica;
  text-transform: uppercase;
  font-weight: bold;
  text-indent: -28px;
  word-spacing: 37px;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
}

.toggle:checked:before {
  left: 32px;
}


/* Strikethrough styling */
s, strike{text-decoration:none;position:relative;}
s::before, strike::before {
    top: 50%; /*tweak this to adjust the vertical position if it's off a bit due to your font family */
    background:red; /*this is the color of the line*/
    opacity:.7;
    content: '';
    width: 110%;
    position: absolute;
    height:.1em;
    border-radius:.1em;
    left: -5%;
    white-space:nowrap;
    display: block;
    transform: rotate(-15deg);  
}
s.straight::before, strike.straight::before{transform: rotate(0deg);left:-1%;width:102%;}