.collapsible {
  background-color: #78a7c3;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.container p {
  /* Base font size for body text (16px or larger is recommended) */
  font-size: 14px; 
  /* Optimal line height (1.4 to 1.6 times the font size) to prevent lines from feeling cramped */
  line-height: 1.5; 
  /* Adds vertical space between paragraphs */
  margin-bottom: 1em; 
  /* Optional: adds indentation to the first line of paragraphs */
  text-indent: 0em; 
  /* Ensures a consistent left margin, which is easier for the eye to track */
  text-align: left; 
}

.collapsible a {
  color: #ffd466;
}

.active, .collapsible:hover {
  background-color: #779f78;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

h4.w3ls-inner-title {
    color: #006eb7;
    font-size: 1.5em;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 1.8em;
    position: relative;
    background: linear-gradient(to left,violet,
            indigo, blue, green, orange, red);
    -webkit-background-clip: text;
    color: transparent;
}

h4.w3ls-inner-title:before {
    content: '';
    position: absolute;
    top: 37px;
    left: 0;
    width: 34%;
    height: 3px;
    display: block;
	  background: linear-gradient(to right, rgba(0, 128, 0, 0.7),rgba(0, 0, 255, 0.6),rgba(75, 0, 130, 0.6),rgba(238, 130, 238, 0.6),rgba(255, 0, 0, 0.6),rgba(255, 165, 0, 0.6),rgba(255, 255, 0, 0.6));
    background: -moz-linear-gradient(to right, rgba(0, 128, 0, 0.7),rgba(0, 0, 255, 0.6),rgba(75, 0, 130, 0.6),rgba(238, 130, 238, 0.6),rgba(255, 0, 0, 0.6),rgba(255, 165, 0, 0.6),rgba(255, 255, 0, 0.6));
    background: -webkit-gradient(to right, rgba(0, 128, 0, 0.7),rgba(0, 0, 255, 0.6),rgba(75, 0, 130, 0.6),rgba(238, 130, 238, 0.6),rgba(255, 0, 0, 0.6),rgba(255, 165, 0, 0.6),rgba(255, 255, 0, 0.6));
    background: -webkit-linear-gradient(to right, rgba(0, 128, 0, 0.7),rgba(0, 0, 255, 0.6),rgba(75, 0, 130, 0.6),rgba(238, 130, 238, 0.6),rgba(255, 0, 0, 0.6),rgba(255, 165, 0, 0.6),rgba(255, 255, 0, 0.6));
    background: -o-linear-gradient(to right, rgba(0, 128, 0, 0.7),rgba(0, 0, 255, 0.6),rgba(75, 0, 130, 0.6),rgba(238, 130, 238, 0.6),rgba(255, 0, 0, 0.6),rgba(255, 165, 0, 0.6),rgba(255, 255, 0, 0.6));
    background: -ms-linear-gradient(to right, rgba(0, 128, 0, 0.7),rgba(0, 0, 255, 0.6),rgba(75, 0, 130, 0.6),rgba(238, 130, 238, 0.6),rgba(255, 0, 0, 0.6),rgba(255, 165, 0, 0.6),rgba(255, 255, 0, 0.6));
}


h5.w3ls-inner-title {
    color: #9a3634;
    font-size: 1.3em;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 0.5em;
    margin-top: 1em;
}

.title-strong {
  font-size: 20px;
}

.small-txt {
  font-size: 16px;
  font-style: italic;
}

 @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }
.blinking-text {
    text-align: center;
    margin-top: 20%;
    font-size: 24px;
    /* color: green; */
    animation: blink 1s infinite;
}

.gfg_tooltip .gfg_text {
            visibility: hidden;
            min-width: 100px;
            background-color: rgb(252, 213, 37);
            color: rgb(15, 20, 12);
            text-align: center;
            border-radius: 6px;
            padding: 5px 0;
            position: absolute;
            z-index: 1;
            top: 25%;
            left: 105%;
        }

.gfg_tooltip {
            position: relative;
            display: inline-block;
            /* background-color: green;
            color: black; */
            padding: 15px;
            /* text-align: center; */
            display: inline-block;
            /* font-size: 16px; */
        }

.gfg_tooltip:hover .gfg_text {
    visibility: visible;
}