/*
Theme Name: joinasone
Version: 1.0
Description: A child theme of Divi
Author: admin
Template: Divi
*/

@import url("../Divi/style.css");

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ccc; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #444; 
}

.experienceButton button {
	background: #222222;
	color:#ffffff;
    border: 1px solid #cccccc;
    font-family: 'Montserrat';
    letter-spacing: 2px;
    padding: 20px 40px;
    margin-top: 20px;
	opacity: 1; /* Default fully visible */
    transition: opacity 1s ease; /* Smooth fade-out */
	transition:.3s ease-in-out;
	cursor:pointer;
}

.experienceButton button:hover {
	background: #000000;
	color:#ffffff;
	transition:.3s ease-in-out;
}


.experienceButton button.hidden {
      opacity: 0; /* Fully transparent */
      pointer-events: none; /* Prevent interaction after hiding */
}

.wpforms-submit {
	font-family:'Montserrat' !important;
	text-transform:uppercase !important;
	font-size:14px !important;
	background:#ffffff !important;
	color:#000000 !important;
	border:1px solid #000000 !important;
	transition:.3s ease-in-out !important;
	letter-spacing: 2px !important;
    border-radius: 0px !important;
}

.wpforms-submit:hover {
	font-size:14px !important;
	background:#333333 !important;
	color:#ffffff !important;
	border:1px solid #333333 !important;
	transition:.3s ease-in-out !important;
}

#playButton1, #playButton2 {
	background: url(https://jt.joinasone.co.za/wp-content/uploads/2024/12/speech.png) no-repeat 12px center #ffffff;
    height: 30px;
    display: inline-block;
    background-size: 30px 30px;
    margin-top: 30px;
    cursor: pointer;
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 0px;
    border: 2px solid #efefef;
    border-radius: 100px;
    padding: 20px 15px 20px 50px;
    letter-spacing: 1px;
}


.accordionTop .et_pb_toggle {
	background: #fff;
    border: 0;
    border-bottom: 1px solid #efefef;
	padding: 20px 0px;
}

.accordionTop .et_pb_toggle .et_pb_toggle_title:before {
	font-family:'ElegantIcons';
	content: "3";
}


/*----Special Button----*/
.animated-button {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  overflow: hidden;
	font-weight:normal;
  text-align: center;
}

.animated-button::before,
.animated-button::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  font-size: 20px;
	line-height:19px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.animated-button::before {
  content: '→';
  left: -30px;
  animation: arrowLeft 1.5s infinite ease-in-out;
}

.animated-button::after {
  content: '←';
  right: -30px;
  animation: arrowRight 1.5s infinite ease-in-out;
}

@keyframes arrowLeft {
  0%, 100% {
    left: -30px;
    opacity: 0;
  }
  50% {
    left: 10px;
    opacity: 1;
  }
}

@keyframes arrowRight {
  0%, 100% {
    right: -30px;
    opacity: 0;
  }
  50% {
    right: 10px;
    opacity: 1;
  }
}



/*----Scroll Down----*/

.scroll-arrow {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 65px auto 0px auto;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  animation: moveArrow .8s infinite ease-in-out;
}

@keyframes moveArrow {
  0%, 100% {
    transform: translateX(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateX(10px) rotate(45deg);
    opacity: 0.6;
  }
}

