* {
    padding: 0px;
    margin: 0px auto;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
}

.font {
    font-family: 'Inter', sans-serif;
    font-family: 'Manrope', sans-serif;
}

.container {
    max-width: 1818px;
    margin: 0 auto;
}

.toggle-menu-icon {
    display: inline-block;
    float: left;
    margin-top: 30px;
    margin-right: 28px;
}

.logo {
    display: inline-block;
    float: left;
    margin-top: 20px;
}

.navbar-default {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
    width: 100%;
    display: inline-block;
    /* padding: 10px 15px; */
}

.navbar-primary ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    display: inline-block;
    float: left;
}

.logine-btn {
    display: inline-block;
    float: right;
    margin-top: 20px;
    margin-left: 60px;
}

.logine-btn a {
    background: #4D4DFF;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 27px;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: white;
    padding: 0 30px;
    text-decoration: none;
}

.logine-btn a:hover {
    background: #FF4164;
    color: white;
}

.logine-btn a i {
    width: 16px;
    height: 16px;
    border-radius: 50px;
    color: #fff;
}

.navbar-primary ul li {
    display: inline-block;
}

.navbar-primary ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1C1C37;
    padding: 30px 26px;
    display: block;
    text-decoration: none;
}

.navbar-primary ul li a:hover {
    color: #03045e;
}

.navbar-primary ul li:hover {
    /* background: #4D4DFF; */
    color: #D61614 !important;
}

.navbar-primary ul ul {
    position: absolute;
    min-width: 200px;
    background: lightgrey;
    display: none;
}

.navbar-primary ul ul li {
    display: block;
    background: #e3e3e3;
}

.navbar-primary ul ul li a {
    padding: 8px 15px;
    font-size: 16px;
}

.navbar-primary ul li:hover ul {
    display: block;
    background: #fff;
}

.navbar-primary ul li i {
    color: #292929;
    float: right;
    padding-left: 9px;
    margin-top: 11px;
    font-size: 10px;
}

.navbar-primary ul li a:hover i {
    color: #03045e;
    float: right;
    padding-left: 0px;
    padding-right: 9px;
    margin-top: 9px;
    transform: rotate(180deg);
}

.navbar-primary {
    color: #292929;
    font-size: 14px;
    /* padding: 0.6em; */
    display: inline-block;
    float: right;
    /* display: none; */
}

.toggle {
    display: none;
}

.margine145 {
    margin-bottom: 145px;
}

@media(max-width: 768px) {
    .navbar-default {
        padding: 0 0px;
    }
    .toggle-menu-icon {
        display: none;
        float: left;
    }
    .toggle {
        display: block;
        float: right;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border: #03045E 2px solid;
        text-align: center;
        border-radius: 6px;
        margin-top: 12px;
    }
    .toggle .fa {
        font-size: 20px;
        color: #D61614;
    }
    .logo {
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .navbar-primary {
        display: none;
        width: 100%;
    }
    .navbar-primary ul {
        /* display: none; */
        position: static;
        background: #4D4DFF;
        width: 100%;
    }
    .navbar-primary ul li {
        display: block;
    }
    .navbar-primary ul li a {
        padding: 10px 15px;
        color: #000;
    }
    .navbar-primary ul ul {
        position: static;
        background: #e3e3e3;
    }
    .logine-btn {
        display: inline-block;
        float: left;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0px;
    }
}

.body-section {
    background: url(../images/top-bg.png) no-repeat top right;
}

.body-section-bg-bottom {
    background: url(../images/bottom-bg.png) no-repeat bottom left;
    padding: 150px 0 130px 0;
}

.register {
    background: transparent;
    max-width: 674px;
    padding-left: 28px;
}

.mandatory-fields {
    color: #D61614;
}

label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin: 0 0 0;
    color: #000;
    font-size: 15px;
    padding: 30px 0 15px 0;
    line-height: 1.50em;
}

[type="text"],
[type="date"],
[type="time"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
select {
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    color: #7A86A1;
    font-weight: 400;
    border: none;
    outline: none;
    background: transparent;
    line-height: 44px;
    border-radius: 50px;
    border: 1px solid #EBEBEB;
    transition: all .4s ease-in-out;
}

textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    color: #1C1D21;
    font-weight: bold;
    border: none;
    background: transparent;
    border-bottom: 1px solid #ECECF2;
    outline: none;
    height: 100px;
    resize: none;
    transition: all .4s ease-in-out;
}

[type="text"]::placeholder,
[type="date"]::placeholder,
[type="time"]::placeholder,
[type="datetime"]::placeholder,
[type="datetime-local"]::placeholder,
[type="email"]::placeholder,
[type="month"]::placeholder,
[type="number"]::placeholder,
[type="password"]::placeholder,
[type="search"]::placeholder,
[type="tel"]::placeholder,
[type="url"]::placeholder,
[type="week"]::placeholder,
select::placeholder,
textarea::placeholder {
    color: #7A86A1;
    transition: color .4s ease-in-out;
}

[type="text"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
select:focus,
textarea:focus {
    border-color: #ffedb3;
}

.register p {
    font-size: 14px;
}

.register a {
    color: #FA3F61;
    text-decoration: none;
}

.register a:hover {
    color: #4D4DFF;
}

.register ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 32px;
    /* border-bottom: 1px solid #333; */
    width: 100%;
    margin-bottom: 52px;
}

.register h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 42px;
}

.register ul.tabs li {
    float: left;
    margin: 0;
    cursor: pointer;
    padding: 0px 21px;
    /* height: 31px;
    line-height: 31px;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
    background-color: #666;
    color: #ccc; */
    overflow: hidden;
    position: relative;
    width: 50%;
    height: 54px;
    line-height: 54px;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    text-align: center;
    border-radius: 22px;
    box-shadow: 3.99px 22.65px 57px rgba(254, 56, 99, 0.24);
}

.register .tab_last {
    /* border-right: 1px solid #333; */
}

.register ul.tabs li:hover {
    background-color: #FE4164;
    color: #fff;
}

.register ul.tabs li:first-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.register ul.tabs li:last-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.register ul.tabs li.active {
    background-color: #FE4164;
    color: #fff;
    display: block;
}

.register .tab_container {
    /* border: 1px solid #333; */
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    overflow: auto;
}

.register .tab_content {
    padding: 0px;
    display: none;
}

.register .tab_drawer_heading {
    display: none;
}

@media screen and (max-width: 768px) {
    .register .tabs {
        /* display: none; */
    }
    .register .tab_drawer_heading {
        background-color: #fff;
        color: #000;
        border: 1px solid #FE4164;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        font-size: 22px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    .register .d_active {
        background-color: #FE4164;
        color: #fff;
    }
    .register {
        background: #fff;
        max-width: 100%;
        padding-left: 0px;
        position: relative;
    }
    .register h2 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .register .tab_content {
        padding: 0 10px 30px 10px;
        background: #fff;
    }
    label {
        font-size: 14px;
        padding: 11px 0 3px 0;
    }
    .header_btn {
        line-height: 40px !important;
        height: 40px !important;
        padding: 0 50px !important;
        font-size: 14px;
        margin-bottom: 20px !important;
        margin-top: 30px !important;
    }
    .register ul.tabs li {
        font-size: 18px;
    }
    [type="checkbox"]:checked+label::before,
    [type="checkbox"]:not(:checked)+label::before {
        top: 14px !important;
    }
    [type="checkbox"]:checked+label::after,
    [type="checkbox"]:not(:checked)+label::after {
        top: 16px !important;
    }
}

.header_btn {
    line-height: 62px;
    height: 62px;
    width: 299px;
    background-color: #FF4164;
    color: #fff;
    font-size: 14px;
    border-radius: 50px;
    transition: all ease-in-out 0.3s;
    border: 1px solid transparent;
    box-shadow: 4px 23px 57px rgba(239, 56, 89, 0.40);
    margin-bottom: 60px;
    margin-top: 87px;
}

.header_btn:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid #4D4DFF;
    background: #4D4DFF;
}

.field-icon {
    float: right;
    margin-left: 0px;
    margin-top: -33px;
    position: relative;
    z-index: 2;
    margin-right: 17px;
}

.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

[type="checkbox"]:checked+label,
[type="checkbox"]:not(:checked)+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    padding-bottom: 0;
    line-height: 20px;
    display: inline-block;
    color: #395474;
    font-size: 14px;
    font-weight: 300;
    margin-right: 10px;
    margin-bottom: 10px;
}

[type="checkbox"]:checked+label:last-child,
[type="checkbox"]:not(:checked)+label:last-child {
    margin-right: 0;
    margin-bottom: 0;
}

[type="checkbox"]:checked+label:before,
[type="checkbox"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    width: 20px;
    height: 20px;
    border: #C0BDCC 1px solid;
    border-radius: 6px;
}

[type="checkbox"]:checked+label:after,
[type="checkbox"]:not(:checked)+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 32px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #EF3859;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
}

[type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
    display: none;
}