*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
}

body{
    background: #fff;
    padding: 0 10px;
}

/* header */

.nav-background{
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: #fff;
    border-bottom: 4px solid #09A603;
    z-index: 100;
}

.logo{
    position: absolute;
    margin-top: 2px;
    margin-left: 15px;
    z-index: 400;
}

.logo h1{
    font-size: 56px;
    font-style: italic;
    color: #4a4a4a;
}

.logo h1 span{
    color: #09A603;
}

nav ul{
    position: relative;
    float: right;
    margin-top: 20px;
    margin-right: 15px;

}

nav ul li{
    display: inline-block;
    margin-left: 15px;
}

nav ul li a:link,
nav ul li a:visited{
    color: #4a4a4a;
    font-size: 32px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a:visited{
    border-bottom: 2px solid #09A603;
    transition: 0.5s;
}

.mobile-nav-icon{
    float: right;
    margin-top: 5px;
    display: none;
}

h1 {
    font-size: 32px;
    color: #4a4a4a;
    margin-bottom: 30px;
    text-align: center;
    
}



/* form */

iframe {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.wrapper{
    max-width: 500px;
    width: 100%;
    background: #fff;
    margin: 150px auto;
    padding: 30px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.125);
}

.wrapper .title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #09A603;
    text-transform: uppercase;
    text-align: center;
}

.wrapper .title .type-course{
    display: flex;
    align-items: center;
}

.wrapper .form{
    width: 100%;
}

.wrapper .form .input_field{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.wrapper .form .input_field label{
    width: 200px;
    color: #757575;
    margin-right: 10px;
    font-size: 14px;
}

.wrapper .form .input_field .input,
.wrapper .form .input_field .textarea{
    width: 100%;
    outline: none;
    border: 1px solid #d5dbd9;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.wrapper .form .input_field .textarea{
    resize: none;
    height: 125px;
}

.wrapper .form .input_field .custom_select{
    position: relative;
    width: 100%;
    height: 37px;
}

.wrapper .form .input_field .custom_select select{
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #d5dbd9;
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    border-radius: 3px;
    outline: none;
}

.wrapper .form .input_field .custom_select::before{
    content: "";
    position: absolute;
    top: 12px;
    right: 10px;
    border: 8px solid;
    border-color: #d5dbd9 transparent transparent transparent;
    pointer-events: none;
}


.wrapper .form .input_field .input:focus,
.wrapper .form .input_field .textarea:focus,
.wrapper .form .input_field select:focus{
    border: 1px solid #09A603;
}

.wrapper .form .input_field p{
    font-size: 14px;
    color: #757575;
}

.wrapper .form .input_field .check{
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    cursor: pointer;
}

.wrapper .form .input_field .check input[type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.wrapper .form .input_field .check .checkmark{
    width: 15px;
    height: 15px;
    border: 1px solid #09A603;
    display: block;
    position: relative;
}

.wrapper .form .input_field .check .checkmark::before{
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: 5px;
    height: 2px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg);
    display: none;
}

.wrapper .form .input_field .check input[type="checkbox"]:checked ~ .checkmark{
    background: #09A603;
}

.wrapper .form .input_field .check input[type="checkbox"]:checked ~ .checkmark::before{
    display: block;
}

.wrapper .form .input_field .btn{
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border: 0;
    background: #09A603;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    outline: none;
}

.terms a{
    text-decoration: none;
}

.wrapper .form .input_field:last-child{
    margin-bottom: 0;
}

.wrapper .form .input_field .btn:hover{
    background: #f08547;
}

@media (max-width:420px){
    .wrapper .form .input_field{
        flex-direction: column;
        align-items: flex-start;
    }

    .wrapper .form .input_field label{
        margin-bottom: 5px;
    }

    .wrapper .form .input_field.terms{
        flex-direction: row;
    }

}




/* Footer */

body footer{
    background-color: #09A603;
}

footer{
    width: 100%;
    bottom: 0;
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.row-footer{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col-footer{
    flex-basis: 25%;
    padding: 10px;
}

.logo-footer{
    width: 80px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.sidlo-text img{
    color: #fff;
    width: 20px;
    height: 20px;
}

.col-footer h3{
    width: fit-content;
    margin-top: 24px;
    position: relative;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc; 
}

.social{
    margin: 10px auto;
    text-align: center;
}

.social img{
    width: 30px;
    height: 30px;
    margin: 10px;
    filter: invert(1);
}

.footerText{
    margin: 10px auto;
    text-align: center;
}

.e-test {
    text-align: center;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: 200ms;
    transform: scale(1);
    margin-bottom: 20px;
}

.e-test a{
    text-decoration: none;
}

.e-test a:link,
.e-test a:visited{
    color: #fff;
    font-size: 32px;
    text-decoration: none;
}

.confirm-h1{
    margin-top: 150px;
    margin-bottom: 150px;
    text-align: center;
    color: #4a4a4a;
}

.nahled {
    margin-top: 20px;
}




/* stop float */

.clearfix::after{
    content: "";
    display: table;
    clear: both;
}