* {
    margin: 0px;
    padding: 0px;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.6px;
}

img {
    max-width: 100%;
}

.clear {
    clear: both;
}

.wrapper {
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.page_redirect {
    width: 100%;
    float: left;
    padding: 50px 0;
    position: relative;
}

.page_redirect h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #489c37;
    margin-bottom: 40px;
}

.page_redirect h1 span {
    display: block;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    color: #424242;
    margin-top: 5px;
}

.page_redirect form {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: #fbfbfb;
    padding: 40px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
    position: relative;
    max-width: 600px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

.page_redirect h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: #424242;
    margin-bottom: 30px;
}

.page_redirect form .box {
    display: inline-block;
    color: #4e4e4e;
    width: 100%;
    text-align: left;
    position: relative;
}

.page_redirect form .box label {
    width: 100%;
    float: left;
    font-size: 20px;
    cursor: pointer;
    padding: 6px 10px 6px 36px;
    border-radius: 3px;
    border: solid 1px transparent;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.page_redirect form .box label:hover {
    background: #90ec7d;
    border: solid 1px #489c37;
    color: #000;
}

.page_redirect input[type='radio'] {
    position: relative;
    display: none;
}

.page_redirect .circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: #fff;
    border: solid 2px #9c9c9c;
    position: absolute;
    top: 7px;
    left: 10px;
}

.page_redirect .circle::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: #000;
    -webkit-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.page_redirect .form_div label {
    width: 100%;
    float: left;
    padding: 0 2px;
    font-size: 15px;
    color: #7b7b7b;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 2px;
}

.page_redirect input[type='radio']:checked+.circle {
    border: solid 2px #178a0b;
}

.page_redirect input[type='radio']:checked+.circle::before {
    background: #178a0b;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
}

.page_redirect .form_div {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.page_redirect .form_div input {
    width: 100%;
    float: left;
}

.page_redirect .form_div input,
.page_redirect .form_div textarea {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    float: left;
    padding: 10px 12px;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #525252;
    border: solid 1px #e8e8e8;
    border-radius: 3px;
    -webkit-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}

.page_redirect .form_div input:focus,
.page_redirect .form_div textarea:focus {
    border: solid 1px #85d276;
}

.page_redirect .form_div textarea {
    height: 100px;
}

.page_redirect input[type="submit"] {
    font-family: 'Poppins', sans-serif;
    background: #489c37;
    color: #fff;
    font-size: 16px;
    padding: 12px 32px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.page_redirect input[type="submit"]:hover {
    background: #2d6e20;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 33px;
    font-size: 20px;
    cursor: pointer;
    line-height: 40px;
    display: block;
    color: #525252;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 3px;
}
[type="radio"]:checked + label:hover,
[type="radio"]:not(:checked) + label:hover{
    background: #90ec7d;
    border: solid 1px #489c37;
    color: #000;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid #525252;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #489c37;
    position: absolute;
    top: 13px;
    left: 10px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.required-indicator{
    color: red;
}
/* loader-css */

.loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #378e25;
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    -webkit-animation: lds-ellipsis1 0.6s infinite;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    -webkit-animation: lds-ellipsis3 0.6s infinite;
    animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-webkit-keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
}
.errors{
    font-size: 12px;
    color: red;
}
.errorField{
    border-color: red !important;
}
textarea#message{
    resize: vertical;
}