* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: url(../img/background.png);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #535C63;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

h1, 
.h1,
h2, 
.h2,
h3, 
.h3,
h4, 
.h4,
h5, 
.h5,
h6, 
.h6 {
    margin:0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

ul, 
ol,
li {
    padding: 0 0 0 0;
    margin: 0;
    list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.clearfix:before, .clearfix:after,
.container:before, .container:after,
.container-fluid:before, .container-fluid:after,
.row:before, .row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after { clear: both; }

.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(100.31deg, #A4D41F 4.68%, #79A403 92.83%);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(100.31deg, #79A403 4.68%, #A4D41F 92.83%);
}

.btn-secondary {
  background: transparent;
  color: #7AA503;
  border: 1px solid #7AA503;
  padding: 14px 30px;
}

.btn-secondary:hover {
  background: linear-gradient(100.31deg, #79A403 4.68%, #A4D41F 92.83%);
  border: 1px solid #7AA503;
  color: #fff;
}

input[type=text], input[type=number] {
    width: 100%;
    height: 100%;
    display: block;
    padding: 12px 15px 12px 70px;
    border: transparent;
    background: transparent;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #535C63;
}

.btn i {
  vertical-align: middle;
  padding: 0 5px 1px;
}

input[type=text]:focus, input[type=number]:focus {
    box-shadow: none;
    outline: none;
}

.mar-b-0 {
  margin-bottom: 0 !important;
}

a {
  color: #005091;
  font-weight: 600;
  text-decoration: none;
}
a:hover {
  color: #7AA503;
  text-decoration: none;
}

.column {
  position: relative;
  padding: 20px 15px;
}

.column-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 20px 50px rgba(220, 239, 177, 0.6);
}

.column-left {
  position: relative;
}

.column-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.column-image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.column-image-info {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 70px 15px;
  color: #fff;
  text-align: center;
}

.logo {
  max-width: 180px;
  margin: 0 auto 25px;
}

.column-image-text h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding-bottom: 15px;
}

.column-image-text h5 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.column-image-text h5 span {
  font-weight: 600;
}

.form-group {
  margin-bottom: 0;
  padding-top: 10px;
  text-align: right;
  display: flex;
  justify-content: space-between;
}

@media( min-width: 1025px) {

  .column-wrapper {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 100%;
  }

  .column-left {
    width: 50%;
    height: auto;
  }

  .column-right {
    width: 50%;
    border-radius: 15px;
  }

  .column-image-info {
      height: 100%;
      display: flex;
      justify-content: center;
      flex-direction: column;
  }

  .column-image-text h4 {
    font-size: 25px;
  }
  
  .column-image-text h5 {
    font-size: 30px;
  }

  .logo {
    max-width: 270px;
    margin: 0 auto 38px;
  }


}




.form-wizard {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  padding: 10px;
}

.steps {
  margin: 0 0;
  overflow: hidden;
  background: #DFECB1;
  border-radius: 15px;
  color: #535C63;
  padding: 20px 15px;
}

.steps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.steps ul li {
  color: #535C63;
  padding: 0 0;
  position: relative;
  width: 33.333%;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
}

.steps ul li:hover, 
.steps ul li.active {
  color: #005091;
}
.steps ul li:hover span.step-no, .steps ul li.active span.step-no {
  background: #005091;
  color: #fff;
}
.steps ul li:hover::after, .steps ul li.active::after {
  background: #005091;
  width: 100%;
}
.steps ul li::before, .steps ul li::after {
  content: "";
  position: absolute;
  left: -50%;
  top: 22px;
  width: 100%;
  height: 1px;
  background: #535C63;
  -webkit-transition: all 0.4s ease-in-out 0;
  -moz-transition: all 0.4s ease-in-out 0;
  -ms-transition: all 0.4s ease-in-out 0;
  -otransition: all 0.4s ease-in-out 0;
  transition: all 0.4s ease-in-out 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -otransform: translateY(-50%);
  transform: translateY(-50%);
}
.steps ul li::after {
  width: 0;
}
.steps ul li span.step-no {
  display: block;
  margin: 0 auto 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #535C63;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out 0;
  -moz-transition: all 0.4s ease-in-out 0;
  -ms-transition: all 0.4s ease-in-out 0;
  -otransition: all 0.4s ease-in-out 0;
  transition: all 0.4s ease-in-out 0;
  border-radius: 50%;
}
.steps ul li:first-child::before, .steps ul li:first-child::after {
  display: none;
}

.form-container {
  clear: both;
  display: none;
  padding: 20px 0;
}

.form-container.active {
  display: block;
}

.form-title {
  position: relative;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  color: #005091;
}

.donate-col {
  margin: 20px 0;
}

.donate-col p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #3C4D5C;
}

.radio_box_area { 
  margin:0; 
  padding:0;
}
.radio_box_area .radio-col {
  float: left;
  margin-right: 30px;
}

.radio_box_area [type="radio"]:checked,
.radio_box_area [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio_box_area [type="radio"]:checked + label,
.radio_box_area [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 24px;
  display: inline-block;
  color: #3C4D5C;
  font-size: 18px;
  font-weight: 400;
}

.radio_box_area [type="radio"]:checked + label:before,
.radio_box_area [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid #8393A2;
  box-sizing: border-box;
  box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.25);
}

.radio_box_area [type="radio"]:checked + label:before {
  border: 1px solid #90B725;
  box-shadow: inset 0px 4px 5px rgba(144, 183, 37, 0.5);
}

.radio_box_area [type="radio"]:checked + label:after,
.radio_box_area [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #90B725;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.radio_box_area [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio_box_area [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}


.check_box_area { 
  margin:0 0 0; 
  padding:20px 0 0;
}
.check_box_area .check-col { 
  margin: 10px 0;
  position: relative;
}
.check_box_area [type="checkbox"]:checked,
.check_box_area [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.check_box_area [type="checkbox"]:checked + label,
.check_box_area [type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 34px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  font-weight: normal;
  font-size: 14px;
  color: #535C63;
}

.check_box_area [type="checkbox"]:checked + label:before,
.check_box_area [type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 1px solid #8393A2;
  box-sizing: border-box;
  box-shadow: inset 0px 4px 7px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.check_box_area [type="checkbox"]:checked + label:after,
.check_box_area [type="checkbox"]:not(:checked) + label:after {
  content: '\f00c';
  width: 24px;
  height: 24px;
  font-family:'FontAwesome';
  position: absolute;
  top: 0px;
  left:0px;
  border-radius:5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color:#fff;
  text-align:center; 
  font-weight:normal;
  line-height:24px;
  background: linear-gradient(100.31deg, #A4D41F 4.68%, #79A403 92.83%);
  box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.check_box_area [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.check_box_area [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}


.amount-col p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #3C4D5C;
}

.amount-col ul {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  justify-content: flex-start;
  text-align: center;
}

.amount-col ul li {
  box-sizing: border-box;
  flex: 0 0 auto;
  flex-basis: auto;
  padding-right: 0;
  padding-left: 0;
  margin: 5px 5px;
  width: calc(25% - 10px);
  background: #FFFFFF;
  border: 1px solid #DEE7C8;
  box-sizing: border-box;
  box-shadow: 0px 5px 20px rgba(195, 203, 177, 0.55);
  border-radius: 7px;
  position: relative;
  font-size: 14px;
  color: #535C63;
  line-height: 17px;
  font-weight: 400;
  padding: 8px 0;
  cursor: pointer;
}

.amount-col ul li.active {
  color: #fff;
  background: linear-gradient(100.31deg, #A4D41F 4.68%, #79A403 92.83%);
}

.amount-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #F4F9E7;
  font-size: 32px;
}
.amount-col ul li.active .amount-icon {
  color: rgba(254, 255, 252, 0.2);
}

.amount-col ul li span {
  font-weight: 800;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: #7AA503;
  display: block;
}

.amount-col ul li.active span {
  color: #fff;
}

.amount-input {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(195, 203, 177, 0.55);
  border-radius: 10px;
  width: 100%;
  height: 65px;
  margin-top: 15px;
}

.amount-input-icon {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 55px;
  height: 55px;
  background: #3C4D5C;
  border-radius: 7px;
  line-height: 55px;
  text-align: center;
  font-size: 32px;
  color: #fff;
}

@media( min-width: 768px) {
  .amount-col ul li {
      width: calc(22% - 10px);
  }

  .form-container {
      padding: 30px 20px 15px;
  }

  .btn {
    width: 200px;
  }
  
  .donate-col {
    display: flex;
    align-items: center;
  }
  .donate-col p {
    margin: 0 10px 0 0;
    padding: 0;
}
.radio_box_area [type="radio"]:checked + label,
.radio_box_area [type="radio"]:not(:checked) + label {
  margin: 0;
}
.check_box_area .check-col {
  margin: 14px 0;
  position: relative;
}

.check_box_area {
  margin: 0 0 0;
  padding: 10px 0 0;
}

.column {
  padding: 100px 15px;
}

}




.input_wrap input[type="text"] {
  border: 1px solid #8393A1;
  border-radius: 5px;
  height: 46px;
  width:100%;
  color: #8393A1;
  font-size: 12px;
  padding-left: 20px;
  box-shadow: none;
  text-align: left;
}

.input_wrap input:focus + label, 
.input_wrap input:valid + label{
  font-size: 10px;
  color: #8393A1;
  top: -7px;
  left:10px;
  background: #ffffff;
  padding: 0px 5px 0px 5px;
  opacity: 1;
}

.input_wrap input:focus + label span, 
.input_wrap input:valid + label span {
  color: #E31A6E;
}

.details-form {
  margin-top: 20px;
}

.input_wrap {
  width:auto; 
  height:auto; 
  position:relative;
  margin: 0 0 25px 0;
}

.input_wrap label {
  font-size:12px;
  color: #fff;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  left: 0;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
  pointer-events: none;
  opacity: 0;
}


.input_wrap input[type="text"]:focus {
  outline:none;
}

.input_wrap input::placeholder {
  color: #8393A1;
  opacity: 1; 
}

.input_wrap input:-ms-input-placeholder {
  color: #8393A1;
}

.input_wrap input::-ms-input-placeholder { 
  color: #8393A1;
}

.select {
  margin-bottom: 25px;
}

.select select {
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  appearance:none;
  outline:0;
  box-shadow:none;
  border:0!important;
  background: #fff;
  background-image: none;
  flex: 1;
  padding: 0 20px;
  color:#8393A1;
  cursor:pointer;
  font-size: 12px;
  font-family: 'Inter', sans-serif; 
}
.select select::-ms-expand {
  display: none;
}
.select {
  position: relative;
  display: flex;
  border: 1px solid #8393A1;
  border-radius: 5px;
  height: 46px;
  width: 100%;
  line-height: 1em;
  overflow: hidden;
}
.select::after {
  content: '\f107';
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0 0;
  cursor:pointer;
  pointer-events:none;
  transition:.25s all ease;
  color: #3C4D5C;
  font-size: 24px;
  font-family:'FontAwesome';
}


.two-col-row{
  display: flex;
  flex-direction: row;
}
.two-col{
  width: 50%;
}
.two-col:first-child{
  padding-right: 20px;
}
.p-b_145{
  padding-bottom: 45px;
}
.card-num_ber{
  position: relative;  
}
.card-num_ber::after{
  content: "";
  position: absolute;
  width: 28px;
  height: 20px;
  right: 14px;
  top: 13px;
  background: url(../img/visa.png);
}

.card-num_ber input::placeholder {
  font-size: 14px;
}

.card-num_ber input:-ms-input-placeholder {
  font-size: 14px;
}

.card-num_ber input::-ms-input-placeholder { 
  font-size: 18px;
}
.cvc{
  position: relative;
}
.cvc input[type="text"],
.card-num_ber input[type="text"]{
  padding-right: 48px;
}
.cvc::after{
  content: "";
  position: absolute;
  width: 25px;
  height: 20px;
  right: 14px;
  top: 13px;
  background: url(../img/cvc.png);
}

@media (min-width:768px) {
  .p-b_145{
    padding-bottom: 145px;
  }    
  .end-page .form-group .btn{
    width: 290px;
  }
}

.end-page{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}
.end-page h2{
  font-size: 25px;
  font-weight: 600;
  color: #005091;
  margin: 0 0 26px 0;
}
.end-page h3{
  font-size: 16px;
  font-weight: 500;
  color: #005091;
  margin: 0 0 41px 0;
}
.end-page h3 span{
  color: #3C4D5C;
}
.end-page img{
  margin-bottom: 46px;
}
.end-page p{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  font-size: 14px;
  color: #535C63;
  margin-bottom: 0px;
}

@media (min-width:768px) {
  .end-page{
    padding-top: 50px;
  }
  .end-page p{
    font-size: 16px;
  }

}


@media( max-width: 767px) {
  .logo {
      max-width: 100px;
      margin: 0 auto 10px;
  }

  .column-image-text h4 {
      font-size: 15px;
      padding-bottom: 5px;
  }
  .column-image-text h5 {
      font-size: 15px;
  }
  .column-image-info {
      padding: 10px 15px 15px;
  }

  /*.steps {
    display: none;
  }*/

  .form-container {
      padding: 2px 0;
  }

  .form-title {
      font-size: 20px;
      line-height: 22px;
  }

  .donate-col {
      margin: 10px 0 5px;
  }

  .amount-col p {
    display: none;
  }

.check_box_area [type="checkbox"]:checked + label, 
.check_box_area [type="checkbox"]:not(:checked) + label {
  font-size: 12px;
  line-height: 16px;
}

.amount-col ul li {
  margin: 2px 5px;
  font-size: 12px;
  line-height: 17px;
  padding: 5px 0;
}
.amount-col ul li span {
  font-size: 18px;
  line-height: 20px;
}
.amount-input-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 27px;
}
input[type="text"] {
  font-size: 16px;
}
.check_box_area {
  padding: 10px 0 0;
}
.check_box_area .check-col {
  margin: 6px 0;
}
.form-group .btn-secondary,
.form-group .btn {
  padding: 12px 18px;
}
.amount-input {
  height: 54px;
  margin-top: 10px;
}
.column {
  padding: 5px 15px;
}
.end-page img {
  margin-bottom: 25px;
  max-width: 120px;
}
.end-page h3 {
  margin: 0 0 15px 0;
}
}

























