/*
 Theme Name:   Divi 5 Test
 Description:  This is a child theme for Divi
 Author:       Kimberly Rowe
 Template:     Divi
 Version:      1.2
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: divi5testchild
*/



.test {
  background: red;
}

.test-2 h2 {
  background: blue;
  color: #fff;
}

/*___HEADER___*/

.ttd-header {
  backdrop-filter: blur(5px);
}

/*style testimonial quote mark */

.test-quote {
  position: relative;
}

.test-quote::before {
  content: "“";
  font-family: 'Source Serif Pro';
  position: absolute;
  font-size: 10em;
  color: #F53263;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 999;
}



/*add checkmark after list items on homepage 

.list-check h4:after {
  content: "\4e";
  font-family: "ETmodules";
  margin-left: 10px;
  color: #F53263;
  display: inline-block;
  animation: checkOff 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkOff {
  0% { 
      transform: scale(0) rotate(-180deg);
      opacity: 0;
  }
  70% {
      transform: scale(1.3) rotate(10deg);
  }
  100% { 
      transform: scale(1) rotate(0deg);
      opacity: 1;
  }
}

*/

/*add checkmark after list items on homepage */

.list-check h4:before {
  content: "\4e";
  font-family: "ETmodules";
  margin-right: 10px;
  color: #F53263;
  display: inline-block;
  animation: checkOff 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkOff {
  0% { 
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.3) rotate(10deg);
  }
  100% { 
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

