/* common css here */
.section-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #6FC3B2;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
}

.mick-btn {
  height: 48px;
  width: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  font-size: 22px;
  color: #1C1B1F;
  border: 0;
  outline: 0;
}

.full-screen-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
  box-shadow: 0;
}

.full-screen-btn .material-symbols-outlined {
  font-size: 30px;
  rotate: 45deg;
  color: #222222;
}

.autistic-video .mick-btn {
  position: absolute;
  top: 10px;
  left: 10px;
}

.autistic-video .full-screen-btn {
  position: absolute;
  top: 16px;
  right: 16px;
}

.play-button .material-symbols-outlined {
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

/* contact form section here */
.contact-form-wr {
  max-width: 1175px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 40px 10px 50px;
  gap: 20px;
  justify-content: space-between;
}

.form-field-wrapper {
  max-width: 540px;
  width: 100%;
}

.left-box {
  background-color: #298BE3;
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  padding: 30px 40px;
  color: #fff !important;
}

.left-box h2 {
  font-family: Lora;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 12px;
}
.left-box p{
  font-family: Open Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 38px;

}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info .info-item .blue-icon-wr {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.contact-info .info-item .blue-icon-wr span{
  font-size: 22px;
  color: #555555;
}
.info-text-st{
  font-family: Open Sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}
.info-text-st span{
  font-family: Open Sans;
  font-weight: 600;
  font-size: 20px;
  display: block;
}
.form-field-wrapper h5{
  font-family: Open Sans;
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: #222222;
  margin-bottom: 8px;
}
.form-field-wrapper p{
  font-family: Open Sans;
  font-weight: 500;
  font-size: 15px;
  color: #555555;
  margin-bottom: 36px;
}
.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #E0E2E7;
  font-family: Open Sans;
margin-bottom: -20px !important;
}
.form-control{
  padding: 12px 16px;
  
}
.form-select{
  padding: 12px 16px;
}
.form-select::placeholder{
  font-family: Open Sans;
  font-weight: 400;
  font-size: 14px;
  color: #858D9D;
}
.form-control::placeholder{
  font-family: Open Sans;
  font-weight: 400;
  font-size: 14px;
  color: #858D9D;
}
.form-label{
  font-family: Open Sans;
  font-weight: 500;
  font-size: 15px;
  color: #222222;
  margin-bottom: 8px;
  cursor: pointer;
}

.btn-primary {
  background-color: #2d8be8;
  border: none;
  border-radius: 20px;
  padding: 10px 30px;
}

.btn-primary:hover {
  background-color: #1b6dc1;
}

.common-btn {
  position: relative;
  overflow: hidden;
  padding: 14px 35px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  background-color: #298BE3;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  overflow: hidden;
  display: inline-grid;
  text-align: center;
}
.common-btn.btn-white-bg{
  background-color: #fff;
  color: #222222;
}
.common-btn::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #298BE3, #6FC3B2, #B39DDB);
  transition: bottom 0.5s ease-in-out;
  z-index: -1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.common-btn:hover::before {
  bottom: 50px;
}

.common-btn:hover {
  transform: scale(0.95);
}

.btn-text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}

.common-btn:hover .btn-text-hover {
  transform: translateY(-100%);
}

/* .button-fancy {
  background: #007bff;
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.button-fancy span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: color 0.4s ease;
}
.button-fancy:hover {
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #4adede);
  background-size: 300% 100%;
  animation: gradientShift 3s ease infinite;
}
.button-fancy:hover span {
  animation: textGlow 1.5s ease-in-out infinite alternate;
}
.button-fancy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: 1;
  opacity: 0.6;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}
.button-fancy:hover::before {
  opacity: 1;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
 }
  50% {
    background-position: 100% 50%;
 }
  100% {
    background-position: 0% 50%;
 }
}
@keyframes textGlow {
  from {
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #ff6ec4, 0 0 15px #7873f5;
 }
  to {
    color: #ffe6fb;
    text-shadow: 0 0 10px #ff6ec4, 0 0 20px #7873f5, 0 0 30px #4adede;
 }
} */

 
@media only screen and (max-width:1024px) {
  .left-box{
      max-width: 390px;
        padding: 16px;
    }
    .form-field-wrapper{
      padding:24px !important;
    }
    .left-box h2{
      font-size: 32px;
      line-height: 42px;
    }
    .left-box p{
      margin-bottom:16px;
    }
    .info-text-st{
      font-size: 16px;
    }
    .info-text-st span{
      font-size: 18px;
    }
    .contact-info .info-item .blue-icon-wr {
        height: 46px;
        width: 46px;
    }
    .contact-form-wr{
       padding: 30px 10px 30px;
    }
}
 
@media only screen and (max-width:768px) {
  .contact-form-wr{
      flex-direction: column;
    }
    .left-box {
        max-width: 100%;
     }
     .form-field-wrapper {
         max-width: 100%;
     }    
     .left-box h2 {
        font-size: 28px;
        line-height: 38px;
      }
  .form-field-wrapper{
      padding:20px !important;
    }
}
 


//------developer change------//
.screen-reader-response{
	display: none !important;
}

.wpcf7-not-valid-tip {
    color: red !important;
    font-size: 14px;
    margin-top: 25px;
    display: block;
}

.wpcf7-response-output{
 color: red !important;
}