body{
  min-height: 100vh;
  width: 100%;
  background: #fff;
}
.container{
  width: 85%;
  margin: 40px auto;
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.container .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .content .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details{
  margin: 14px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color: #02C100;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #afafb6;
}
.container .content .right-side2{
  width: 75%;
  margin-left: 75px;
}
.right-side{
  width: 50%;
  margin: auto;
  scroll-margin-top: 100px;
}
.right-side .topic-text{
  font-size: 23px;
  margin: 30px 0;
  font-weight: 600;
  color: #02C100;
}
.right-side .input-box{
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.right-side .text-box{
  margin-bottom: 12px;
}

.right-side .input-box input,
.right-side .input-box select,
.right-side .text-box textarea{
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 30px;
  padding: 15px;
  resize: none;
}
.right-side .message-box{
  min-height: 110px;
}
.right-side .text-box textarea{
  padding-top: 6px;
  height: 130px;
  border-radius: 10px;
  resize: none;
}
.right-side .buto{
  display: block;
  margin-top: 12px;
}

.right-side .buto button{
    color: #fff;
    font-size: 18px;
    outline: none;
    margin-bottom: 20px;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    background: #02C100;
    cursor: pointer;
    transition: all 0.3s ease;
  }

.c-menu__nav-link.w-nav-link{
    color: #fff;
}

.c-menu__nav-link.w-nav-link:hover{
    color: #02C100;
}
  
.dropdown{
    box-sizing: border-box;
}



@media (max-width: 992px) {
  .container .content{
    flex-direction: column-reverse;
  }
 .container .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .container .content .left-side::before{
   display: none;
 }
 .container .content .right-side2, .right-side{
   width: 100%;
   margin: 0;
  }
  .right-side{
    padding: 20px;
  }
}


.contact-alert{
  position: fixed;
  display: none;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 0 0.85rem;
  border-radius: 10px;
  background: #000;
  z-index: 99999;
  text-align: center;
}

.contact-alert p{
  font-size: 17px;
  margin: 0 1.5rem;
}

.contact-loader{
  position: absolute;
  width: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}

.text-success{
  color: #02C100;
}

.text-danger{
  color: #f00;
}

.flex-box{
  display: flex;
  gap: 20px;
}

@media (max-width: 479px) {
  .flex-box{
    display: block;
  }
}

select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

.arrow-box{
  position: relative;
}
.arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  color: #000;
  z-index: 999;
  font-size: 18px;
  pointer-events: none;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 2px 2px 10px #00000056;
  z-index: 1000;
}

.popup-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 30px 30px;
  font-weight: bold;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

.close:hover {
  color: #02C100;
}

.calendly-btn{
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  outline: none;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  background: #02C100;
  cursor: pointer;
}