.request_qoute_heading{
    font-family: PoppinsSemiBold;
    font-size: 36px;
}
.services_heading_req_qoute{
    font-family: PoppinsSemiBold;
    font-size: 22px;
}
.service_option{
    font-family: PoppinsSemiBold;
    font-size: 16px;
}
.request_send_msg_btn{ font-size: 18px; letter-spacing: 1px; color: #fff; font-family: PoppinsSemiBold; padding: 0; 
    text-align: center;  background: #FDBC11; border: 0; display: block;   border-radius:0; outline: none; line-height: 1; padding: 2% 15%; margin-bottom: 15px; } 
.request_send_msg_btn:hover, .request_send_msg_btn:focus{ background-color:#1c232b;}
.contact_info_heading{
    color: #fff;
    font-size: 22px;
    font-family: PoppinsSemiBold;
    background: #000000;
}
.contact_info_form{
    padding: 1% 18% 3% 18%
}


/* The container */
.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius:10px;
    font-family: PoppinsSemiBold;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius:5px;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox_container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox_container input:checked ~ .checkmark {
    background-color: #FEB207;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox_container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox_container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


  @media (min-width:320px) and (max-width:480px) {
    .request_qoute_heading{
        font-size: 18px;
    }
    .contact_info_heading{
        font-size: 16px;
    }
    .services_heading_req_qoute {
        font-size: 16px;
    }
    .checkbox_container{
        font-size: 14px;
    }
    .checkmark{
        height: 20px;
        width: 20px;
    }
    .checkbox_container .checkmark:after{
        left: 7px;
        top: 3px;
        width: 6px;
        height: 12px;
    }
    .request_send_msg_btn{
        font-size: 14px;
    }
  }