.contactForm-second {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 40px;
    border-radius: 8px;
    /*box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);*/
}

.contactForm-second label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-top: 15px;
    text-align: left;
}

.contactForm-second input[type="text"],
.contactForm-second input[type="tel"],
.contactForm-second select,
.contactForm-second textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contactForm-second input[type="radio"],

/*.contactForm-second input[type="submit"] {
    display: block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contactForm-second input[type="submit"]:hover {
    background-color: #0056b3;
}*/
.contactForm-second .contactFormFull{margin-top: 15px;}

.contactForm-second textarea {
    height: 80px;
    resize: vertical;
}

.radio {
  margin: 0.5rem;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #3197EE;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #3197EE;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.check-box-wrap{
  text-align: left;
  font-size: 16px;
  margin: 0.5rem;
}
.check-box-wrap label{
  display: inline-block;
  margin:0;
}

.my-checkbox {
  transform: scale(1.8);
  margin-right: 11px;
  margin-top:15px;
}

.success-label {
    display: block;
    background-color: #4CAF50;  /* Green background */
    color: #fff;  /* White text color */
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.success-label .icon {
    font-weight: bold;
    margin-right: 5px;
}

.pt-0{padding-top: 0 !important;}
.font-bold{font-weight: bold !important;}

.text-center{text-align: center !important;}

.cnt-btn-wrap input{
  border-radius: 80px !important;
  border: 0 !important;
}
.cruzBtn {
    display: inline-block;
    background: var(--blue);
    font-size: 28px;
    text-align: center;
    color: var(--white);
    text-transform: capitalize;
    padding: 15px 70px;
    font-weight: 600;
}
.cruzBtn:hover {
    background: var(--orange);
}

.d-none{display: none !important;}

/* popup css*/
.custom-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}
.custom-overlay:target, .custom-overlay-success, .custom-overlay-opened {
  visibility: visible;
  opacity: 1;
}

.custom-popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 40%;
  position: relative;
  transition: all 1s ease-in-out;
}

.custom-popup .custom-close {
  position: absolute;
  top: 10px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.custom-popup .custom-close:hover {
  color: #06D85F;
}
.custom-popup .custom-content {
  max-height: 30%;
  overflow: auto;
}
@media screen and (max-width: 1024px){
  .custom-popup{width: 50%;}
}
@media screen and (max-width: 1023px){
  .custom-overlay {
  	z-index: 10000;
  }
  .custom-popup {
    z-index: 10001!important;
  }

}
@media screen and (max-width: 768px){
  .custom-popup{width: 70%;}
}
@media screen and (max-width: 700px){
  .custom-popup{width: 85%;}
}
/*end popup css*/

@media only screen and (min-width: 768px) and (max-width: 1023px) {
     .cruzBtn {
        font-size: 21px;
    }
}
@media only screen and (max-width: 767px) {
    .cruzBtn {
        font-size: 19px;
    }
}
@media only screen and (max-width: 479px) {
    .contactForm-second {
        padding: 0;
    }
}
/* hidden text */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
/* end hidden text */
