
        *{
            font-family: Gilroy, Arial, sans-serif;
            color: #434343;
            font-size: 14px;
        }
        .main_wrapper{
            max-width: 1028px;
            margin: 10px auto;
            display: flex;
        }
        img{
            width: 460px;
            height: 530px;
            object-fit: cover;
            padding: 0px 10px;
        }
        .form_wrapper{
            padding: 0px 10px;
        }
        .form_wrapper h3{
            margin: 0;
            color: #137D00;
            font-size: 32px;
            font-weight: 600;
            text-align: center;
        }
        .form_wrapper input{
            width: 100%;
            margin: 5px 0;
            box-sizing: border-box;
            padding: 20px;
        }
        .form_wrapper p{
            line-height: 20px;
        }
        .button_wrapper{
            width: 100%;
            text-align: center;
        }
        button{
            margin: 0 auto;
            width: 50%;
            cursor: pointer;
            border: none;
            border-radius: 4px;
            background-color: #147D01;
            color: #FFF;
            letter-spacing: 0.8px !important;
            font-family: museo-sans,Helvetica,Arial,sans-serif !important;
            font-size: 16px;
            text-transform: uppercase;
            font-weight: bold;
            text-align: center;
            padding-top: 10px;
            padding-bottom: 10px;
            transition: all 0.25s ease-in-out;
        }
        .typ_wrapper{
            display: none;
            padding-left: 8px;
        }

        .checkmark {
            display: inline-block;
            width: 22px;
            height: 20px;
            -ms-transform: rotate(45deg); /* IE 9 */
            -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
            transform: rotate(45deg);
        }
        
        .checkmark_stem {
            position: absolute;
            width: 4px;
            height: 16px;
            background-color: #147D01;
            left: 11px;
            top: 2px;
        }
        
        .checkmark_kick {
            background-color:#147D01;
            position: absolute;
            width: 4px;
            height: 4px;
            left: 8px;
            top: 14px;
        }
        .typ_header{
            font-size: 18px;
            padding: 8px;
        }
        .textbox{
            padding: 8px;
            line-height: 25px;
        }
        .tm{
            float: right;
            font-size: 12px;
            margin-top: 30px;
        }
        .requiredText{
            color: red;
            display: none;
            font-size: 12px;
        }

@media (max-width:800px){
     .main_wrapper {
        display: block;
        text-align: -webkit-center;
    }
    img {
        width: 425px;
        height: 250px;
    }

    .form_wrapper input {
        padding: 8px;
    }

}

@media (max-width:420px){
    img {
        width: 380px;
        height: 225px;
    }
}

.loader {
    margin: auto;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 2s linear infinite;
    display:none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

