/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-font : "Inter", sans-serif;
    --bg-black : #000;
    --bg-white : #fff;
    --white : #fff;
    --black : #000;
    --sky-blue : #57A3D9;
    --green : #00F55E;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;    
    background: var(--bg-white);
    color: var(--black);
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.f_button {
    font-size: 15px; 
    font-weight: 600;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 10px;
    background: var(--bg-black);
    border: none;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.f_button i {
    margin-left: 20px;
}

.f_button:hover {
    color: var(--white);
}

.f_button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: var(--sky-blue);
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.f_button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: var(--sky-blue);
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.f_button:hover:after {
    width: 60%;
}

.f_button:hover:before {
    width: 60%;
}

/*=== main content start ===*/

.main-content {
    overflow: hidden;
}

.application-area {
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-item-inner {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sky-blue);
    margin: 0 auto 50px;
}

.application-item-inner img {
    max-width: 40px;
}

.application-item h2 {
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 25px;
}

.application-item p {
    color: #818181;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
}

.application-item-inner-second {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.application-item-inner-second div:nth-of-type(1) {
    width: 500px;
    padding-right: 8px;
}

.form-input input,
.form-input .nice-select {
    color: #7A7A7A;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    border-radius: 10px;
    border: 2px solid #E1E1E1;
}

.form-input input::placeholder {
    color: #7A7A7A;
    opacity: 1;
}

/*=== step 02 page start ===*/

.application-item-inner-third {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.application-item-inner-third .form-input {
    width: 64px;
    margin-right: 9px;
}

.application-item-inner-third .form-input input {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.application-item-inner-third .form-input input::placeholder {
    color: #000;
    opacity: 1;
}

.application-item-inner-third .form-button {
    margin-left: 4px;
}

/*=== step 02 page start ===*/

.application-item-third form {
    max-width: 900px;
    margin: 0 auto;
}

.application-item-inner-fourth {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.application-item-inner-fifth {
    width: 50%;
    padding: 0 7px;
}

.application-item-inner-sixth {
    width: calc(100% - 200px);
    padding: 0 7px;
}

.application-item-inner-seventh {
    width: 200px;
    padding: 0 7px;
}

.application-item-inner-eighth {
    width: 33.333%;
    padding: 0 7px;
}

.application-item-inner-nineth {
    width: 66.666%;
    padding: 0 7px;
}

.application-item-inner-nineth {
    width: 66.666%;
    padding: 0 7px;
}

.application-item-inner-tenth {
    width: 100%;
    padding: 0 7px;
}

.application-item-inner-eleventh {
    width: 25%;
    padding: 0 7px;
}

.application-item-2 {
    width: 27%;
}

.application-item-3 {
    width: 24%;
}

.application-item-inner-fourth .form-input label {
    color: #0C0C0C;
    font-size: 15px;
    font-weight: 400;
    margin-left: 16px;
    margin-bottom: 11px;
    display: block;
}

.application-item-inner-fourth .form-input input {
    margin-bottom: 10px;
}

.application-item-inner-fourth .form-input .nice-select {
    margin-bottom: 10px;
}

.nice-select:after {
    width: 8px;
    height: 8px;
    border-color: #0C0C0C;
    right: 19px;
}

.nice-select .list {
    width: 100%;
    z-index: 9;
}

.application-item-inner-fourth h6 {
    color: #989898;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    max-width: 307px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.form-group {
    display: block;
    margin: 14px 0 22px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    color: #A0A0A0;
    font-size: 11px;
    font-weight: 400;
    max-width: 745px;
    display: flex;
    align-items: center;
}

.form-group label:before {
  content:'';
    -webkit-appearance: none;
    width: 23px;
    flex: 0 0 23px;
    height: 23px;
    border-radius: 7px;
    border: 2px solid #818181;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 9px;
}

.form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 8px);
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #818181;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/*=== step 02 page start ===*/

.application-item-fourth-inner {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 94, 0.05);
}

.application-item-fourth-inner .application-item-inner {
    margin: 0;
    background: var(--green);
}

.application-item-fourth h2 {
    margin-bottom: 45px;
}

.application-item-fourth p {
    margin-bottom: 0;
}