*{
    margin: 0;
    padding: 0;
    font-family: 'ek mukta', sans-serif;
}
html,
body {
  overflow-x: hidden;
}


.container-xxl{
    padding-top: 50px;
 
}
.container-xxl .heading-1{
  background-color: #00A0E3;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 5px 15px 5px;
  border-radius: 5px;
  justify-content: center;
}
.container-xxl .heading-2{
  background-color: #E5097F;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 5px 15px 5px;
  border-radius: 5px;
  justify-content: center;
}
.container-xxl img{
  width: 680px;
 }
.container-xxl .intro-text p{
  font-size: 20px;
  color: #525252;
  font-weight: 500;
  text-align: justify;

}
.container-xxl .intro-text b{
  font-size: 20px;
  color: #00A0E3;
  font-weight: 600;
  text-align: justify;

}
.container-xxl .intro-text ul li{
  font-size: 18px;
  list-style: square;
}
.registration{
  background-color: #e6e6e6;
  padding: 10px;
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .container-xxl img{
   width: 360px;
  }
  .registration{
    background-color: #e6e6e6;
    padding: 10px;
    margin-top: 20px;
  }
    h3{
        font-size: 1rem;
    }
    h3 b{
        font-size: 1.2rem;
    }
    .container-xxl{
        padding-top: 30px;
    }
      }

      .clearfix:after {
        content: "";
        display: block;
        clear: both;
        visibility: hidden;
        height: 0;
      }
      
      .form_wrapper {
        background: #fff;
        width: 1200px;
        max-width: 100%;
        box-sizing: border-box;
        padding: 15px;
        margin: 4% auto 4%;
        position: relative;
        z-index: 1;
        border-top: 5px solid #E5097F;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-transition: none;
        transition: none;
        -webkit-animation: expand 0.8s 0.6s ease-out forwards;
        animation: expand 0.8s 0.6s ease-out forwards;
        opacity: 0;
        margin-top: 20px;
      }
  
      .form_wrapper .title_container {
        text-align: center;
        padding-bottom: 10px;
      }
      .form_wrapper h3 {
        font-size: 1.5em;
        font-weight: normal;
        line-height: 1.5em;
        margin: 0;
      }
      .form_wrapper label {
        font-size: 50px;
        
      }
      .form_wrapper .row {
        margin: 10px -15px;
      }
      .form_wrapper .row > div {
        padding: 0 15px;
        box-sizing: border-box;
      }
      .form_wrapper .col_half {
        width: 50%;
        float: left;
      }
      .form_wrapper .input_field {
        position: relative;
        margin-bottom: 20px;
        -webkit-animation: bounce 0.6s ease-out;
        animation: bounce 0.6s ease-out;
        font-size: 1em;;
       
      
      }
      .form_wrapper .input_field > span {
        position: absolute;
        left: 0;
        top: 0;
        color: rgb(59, 59, 59);
        height: 100%;
        border-right: 1px solid #cccccc;
        text-align: center;
        width: 30px;
      }
      .form_wrapper .input_field > span > i {
        padding-top: 10px;
      }
      .form_wrapper .textarea_field > span > i {
        padding-top: 10px;
      }
      .form_wrapper input[type="text"],
      .form_wrapper input[type="number"],
      .form_wrapper input[type="email"],
      .form_wrapper input[type="password"] {
        width: 100%;
        padding: 8px 10px 9px 35px;
        height: 35px;
        border: 1px solid #cccccc;
        box-sizing: border-box;
        outline: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
      }
      .form_wrapper input[type="text"]:hover,
      .form_wrapper input[type="email"]:hover,
      .form_wrapper input[type="password"]:hover {
        background: #fafafa;
      }
      .form_wrapper input[type="text"]:focus,
      .form_wrapper input[type="email"]:focus,
      .form_wrapper input[type="password"]:focus {
        -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
        -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
        box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
        border: 1px solid #E5097F;
        background: #fafafa;
      }
      .form_wrapper input[type="submit"] {
        background: #E5097F;
        height: 45px;
        line-height: 35px;
        width: 40%;
        border: none;
        border-radius: 5px;
        outline: none;
        cursor: pointer;
        color: rgb(255, 255, 255);
        font-size: 1.5em;
        margin-bottom: 10px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
      }
      .form_wrapper input[type="submit"]:hover {
        background: #1baa3a;
      }
      .form_wrapper input[type="submit"]:focus {
        background: #E5097F;
      }
      .form_wrapper input[type="checkbox"],
      .form_wrapper input[type="radio"] {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
      }
      
      .form_container .row .col_half.last {
        border-left: 1px solid #cccccc;
      }
      
      .checkbox_option label {
        margin-right: 1em;
        position: relative;
      }
      .checkbox_option label:before {
        content: "";
        display: inline-block;
        width: 0.5em;
        height: 0.5em;
        margin-right: 0.5em;
        vertical-align: -2px;
        border: 2px solid #cccccc;
        padding: 0.12em;
        background-color: transparent;
        background-clip: content-box;
        transition: all 0.2s ease;
      }
      .checkbox_option label:after {
        border-right: 2px solid #000000;
        border-top: 2px solid #000000;
        content: "";
        height: 20px;
        left: 2px;
        position: absolute;
        top: 7px;
        transform: scaleX(-1) rotate(135deg);
        transform-origin: left top;
        width: 7px;
        display: none;
      }
      .checkbox_option input:hover + label:before {
        border-color: #000000;
      }
      .checkbox_option input:checked + label:before {
        border-color: #000000;
      }
      .checkbox_option input:checked + label:after {
        -moz-animation: check 0.8s ease 0s running;
        -webkit-animation: check 0.8s ease 0s running;
        animation: check 0.8s ease 0s running;
        display: block;
        width: 7px;
        height: 20px;
        border-color: #000000;
      }
      
      .radio_option label {
        margin-right: 1em;
      }
      .radio_option label:before {
        content: "";
        display: inline-block;
        width: 0.5em;
        height: 0.5em;
        margin-right: 0.5em;
        border-radius: 100%;
        vertical-align: -3px;
        border: 2px solid #cccccc;
        padding: 0.15em;
        background-color: transparent;
        background-clip: content-box;
        transition: all 0.2s ease;
      }
      .radio_option input:hover + label:before {
        border-color: #000000;
      }
      .radio_option input:checked + label:before {
        background-color: #000000;
        border-color: #000000;
      }
      
      .select_option {
        position: relative;
        width: 100%;
      }
      .select_option select {
        display: inline-block;
        width: 100%;
        height: 35px;
        padding: 0px 15px;
        cursor: pointer;
        color: #7b7b7b;
        border: 1px solid #cccccc;
        border-radius: 0;
        background: #fff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        transition: all 0.2s ease;
      }
      .select_option select::-ms-expand {
        display: none;
      }
      .select_option select:hover,
      .select_option select:focus {
        color: #000000;
        background: #fafafa;
        border-color: #000000;
        outline: none;
      }
      
      .select_arrow {
        position: absolute;
        top: calc(50% - 4px);
        right: 15px;
        width: 0;
        height: 0;
        pointer-events: none;
        border-width: 8px 5px 0 5px;
        border-style: solid;
        border-color: #7b7b7b transparent transparent transparent;
      }
      
      .select_option select:hover + .select_arrow,
      .select_option select:focus + .select_arrow {
        border-top-color: #000000;
      }
      
      .credit {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 10px;
        color: #E5097F;
      }
      .credit a {
        color: #E5097F;
      }
      .credit img {
        width: 6rem;
      }
      
      @-webkit-keyframes check {
        0% {
          height: 0;
          width: 0;
        }
        25% {
          height: 0;
          width: 7px;
        }
        50% {
          height: 20px;
          width: 7px;
        }
      }
      @keyframes check {
        0% {
          height: 0;
          width: 0;
        }
        25% {
          height: 0;
          width: 7px;
        }
        50% {
          height: 20px;
          width: 7px;
        }
      }
      @-webkit-keyframes expand {
        0% {
          -webkit-transform: scale3d(1, 0, 1);
          opacity: 0;
        }
        25% {
          -webkit-transform: scale3d(1, 1.2, 1);
        }
        50% {
          -webkit-transform: scale3d(1, 0.85, 1);
        }
        75% {
          -webkit-transform: scale3d(1, 1.05, 1);
        }
        100% {
          -webkit-transform: scale3d(1, 1, 1);
          opacity: 1;
        }
      }
      @keyframes expand {
        0% {
          -webkit-transform: scale3d(1, 0, 1);
          transform: scale3d(1, 0, 1);
          opacity: 0;
        }
        25% {
          -webkit-transform: scale3d(1, 1.2, 1);
          transform: scale3d(1, 1.2, 1);
        }
        50% {
          -webkit-transform: scale3d(1, 0.85, 1);
          transform: scale3d(1, 0.85, 1);
        }
        75% {
          -webkit-transform: scale3d(1, 1.05, 1);
          transform: scale3d(1, 1.05, 1);
        }
        100% {
          -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
          opacity: 1;
        }
      }
      @-webkit-keyframes bounce {
        0% {
          -webkit-transform: translate3d(0, -25px, 0);
          opacity: 0;
        }
        25% {
          -webkit-transform: translate3d(0, 10px, 0);
        }
        50% {
          -webkit-transform: translate3d(0, -6px, 0);
        }
        75% {
          -webkit-transform: translate3d(0, 2px, 0);
        }
        100% {
          -webkit-transform: translate3d(0, 0, 0);
          opacity: 1;
        }
      }
      @keyframes bounce {
        0% {
          -webkit-transform: translate3d(0, -25px, 0);
          transform: translate3d(0, -25px, 0);
          opacity: 0;
        }
        25% {
          -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
        }
        50% {
          -webkit-transform: translate3d(0, -6px, 0);
          transform: translate3d(0, -6px, 0);
        }
        75% {
          -webkit-transform: translate3d(0, 2px, 0);
          transform: translate3d(0, 2px, 0);
        }
        100% {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          opacity: 1;
        }
      }
      @media (max-width: 600px) {
        .form_wrapper .col_half {
          width: 100%;
          float: none;
        }
      
        .bottom_row .col_half {
          width: 50%;
          float: left;
        }
      
        .form_container .row .col_half.last {
          border-left: none;
        }
      
        .remember_me {
          padding-bottom: 20px;
        }
      }
      /* display page - table */
      .main-div {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .center-div {
        width: 90%;
        height: 90vh;
        background: -webkit-linear-gradient(top, rgb(135, 47, 161), rgb(84, 26, 102));
        padding: 10px 0;
        border-radius: 10px;
      }
      h1 {
        text-align: center;
        text-transform: uppercase;
        color: rgb(26, 26, 26);
        font-weight: 650;
        font-size: 2rem;
     
      }
      table {
        border-collapse: collapse;
        background-color: #fff;
      
        border-radius: 10px;
        margin: auto;
      }
      th,
      td {
        border: 1px solid rgb(219, 219, 219);
        padding: 6px 20px;
        text-align: center;
        color: rgb(26, 26, 26);
      }
      th {
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 500;
      }
      td {
        font-size: 12px;
      }
      .mobile-style {
        font-size: 14px;
        color: #525252;
        display: inline-block;
        background: rgb(224, 224, 224);
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        line-height: 30px;
        padding: 0 14px;
      }
      .fa {
        font-size: 18px;
      }
      .fa-edit {
        color: rgba(104, 33, 125);
      }
      .fa-trash {
        color: rgb(199, 31, 31);
      }
      a {
        text-decoration: none;
        display: flex;
        justify-content: center;
        text-align: center;
      }
      #success_message {
        display: none;
      }
      /* download */
header .badge {
  margin-top: 120px;
}

header .logo img {
  width: 25%;
  margin-top: 50px;
}
.d-grid .btn {
  background: #1ca74b;
  color: #fff;
  font-weight: 600;
}
.d-grid .btn:hover {
  background: #f5d322;
  color: #000;
}
figure .blockquote h1 {
  margin-top: 40px;
  font-family: "baloo 2", sans-serif;
  font-weight: bold;
  color: #3c3387;
  font-size: 2rem;
  line-height: 45px;
}
figure .blockquote h1 span {
  color: #e92787;
}
figure .blockquote h3 {
  font-family: "baloo 2", sans-serif;
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.8rem;
}
.d-grid img {
  width: 20px;
}

@media only screen and (max-width: 780px) {
  header .logo img {
    width: 50%;
  }
  figure .blockquote h3 {
    background: #f5d322;
    border-radius: 5px;
    padding: 5px;
    font-size: 1.2rem;
  }
  figure .blockquote h1 {
    margin-top: 40px;
    font-family: "baloo 2", sans-serif;
    font-weight: bold;
    color: #3c3387;
    font-size: 1.4rem;
    line-height: 30px;
  }
}

/*-------- header css --------------*/

header {
  background: url("../img/badge_bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  height: 700px;
  color: rgb(31, 31, 31);
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  overflow: hidden;
}
header .header-content {
  margin-top: 220px;
}
.header-content img {
  width: 100%;
  z-index: 999;
  position: relative;
}
.header-content h2 {
  line-height: 40px;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 28px;
  font-family: "baloo 2", sans-serif;
}
.header-content h3 {
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
  color: #3c3387;
  font-family: "baloo 2", sans-serif;
}

.header-content .btn-ornge {
  background: #f5d322 none repeat scroll 0 0;
  margin-left: 145px;
  border: medium none;
  border-radius: 20px;
  font-weight: bold;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 40px;
  position: relative;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
}
.btn-ornge span {
  position: relative;
}
.header-content .btn-ornge:hover {
  background: #fff none repeat scroll 0 0;
  color: #3c3387;
}
