/*=== Header area start ===*/

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

body {	
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

a {
    text-decoration: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.main-area {
    background-image: url(images/main-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.form-area {
    width: 100%;
    padding-right: calc(calc(100% - 1630px) / 2);
    padding-left: 15px;
    padding-top: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.form-area2 {
    width: 100%;
    padding-right: calc(calc(100% - 1630px) / 2);
    padding-left: 15px;
    padding-top: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



.form-item3 {
    width: 100%;
}

.form-item {
    max-width: 1105px;
    padding-right: 15px;
    margin-left: auto;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-item-inner {
    width: calc(100% - 255px);
    padding-right: 18px;
    padding-top: 40px;
}

.form-item-inner-delete {
    width: calc(100% - 255px);
    padding-right: 18px;
    padding-top: 40px;
}

.form-item-inner2 {
    width: calc(100% - 255px);
    padding-left: 10px;
    margin-bottom: 70px;
    position: relative;
}

.form-item-inner2:after {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    background: #244EA2;
    height: calc(100% - 22px);
}

.form-item-inner2 h2 {
    font-size: 34px;
    font-weight: 300;
    color: #2A3D7D;
    margin: 0 0 10px;
}

.form-item-inner2 h2 span {
    font-weight: 600;
}

.form-item-inner2 p {
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    color: #2A3D7D;
    margin: 0;
}

.form-item-inner4 label {
    font-size: 14px;
    font-weight: 700;
    color: #2A3D7D;
    margin: 0 0 2px 6px;
    cursor: pointer;
}

.form-item-inner4 label a {
    color: #2A3D7D;
    margin-left: 3px;
    text-decoration: underline;
}

.form-item-inner4 > input {
    font-size: 14px;
    font-weight: 700;
    color: #2A3D7D;
    width: 100%;
    border: 1px solid #2A3D7D;
    border-radius: 8px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 18px;
}

.Myselect {
    font-size: 14px;
    font-weight: 700;
    color: #2A3D7D;
    width: 100%;
    border: 1px solid #2A3D7D;
    border-radius: 8px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 18px;
}

.form-item-inner4 input:focus {
    box-shadow: none;
}

.checkboxs-wrapper {
  position: relative;
}
.checkboxs-wrapper input[name="radio-for-required-checkboxes"],
.checkboxs-wrapper input[name="radio-for-required-checkboxes2"] {
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    pointer-events: none;
    border: none;
    background: none;
}

.form-item-inner4 h6 {
    font-size: 12px;
    font-weight: 700;
    color: #2A3D7D;
    margin: 19px 0 2px;
    text-decoration: underline;
}

.form-item-inner4 h5 {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    color: #2A3D7D;
    margin: 0 0 14px;
}

.form-item-inner5 label {
    font-size: 12px;
    margin: 0 0 14px;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline-block;
    color: #2A3D7D;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #2A3D7D;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #2A3D7D;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-group {
    display: block;
    margin-bottom: 14px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    font-size: 12px;
    margin: 0;
    display: flex;
    align-items: flex-start;
}

.form-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #2A3D7D;
    border-radius: 3px;
    width: 16px;
    height: 16px;
    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: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #2A3D7D;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-item-inner6 label {
    font-weight: 600;
}

.form-item-inner7 {
    max-width: 536px;
    height: 2px;
    background: #1F6E9E;
    margin: 0 auto;
}
.form-item-inner7_canc {
    height: 2px;
    background: #1F6E9E;
    margin: 0 auto;
}

.form-item-inner4 button {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    width: 122px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #2A3D7D;
    margin-left: auto;
    border-radius: 8px;
    margin-top: 37px;
    margin-bottom: 30px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.form-item-inner4_bis button {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    width: 122px;
    height: 45px;
    
    align-items: center;
    justify-content: center;
    border: none;
    background: #2A3D7D;
    margin-left: auto;
    border-radius: 8px;
    margin-top: 37px;
    margin-bottom: 30px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.form-item-inner4 button:hover {
    opacity: .8;
}

.form-item-inner8 {
    width: 255px;
    top: -40px;
    position: relative;
}

.form-item-inner8 img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.form-item-inner8 p {
    font-size: 10px;
    font-weight: 600;
    color: #244EA2;
    text-align: center;
    margin: 4px 0 0;
}

.form-item2 {
    width: 100%;
    padding: 32px 0;
    padding-bottom: 12px;
    padding-right: 124px;
    margin-top: auto;
}

.form-item2 p {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-align: right;
    margin: 0;
}

/*=== page-02 start ===*/

.form-item-inner9 {
    max-width: 398px;
    margin: 0 auto;
}

.form-item-inner9 h4 {
    font-size: 12px;
    font-weight: 400;
    color: #172E40;
    margin: 0 0 44px;
}

.form-item-inner9 button {
    width: 100%;
    margin: 0 0 25px;
}

.form-item-inner9 div > a {
    font-size: 12px;
    font-weight: 600;
    color: #013266;
    text-decoration: underline;
}

/*=== page-03 start ===*/

.form-item-inner11 {
    max-width: 610px;
    margin-left: auto;
    padding-right: 18px;
}

.form-item-inner11 img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px; 
}

.form-item-inner11 h2 {
    font-size: 40px;
    font-weight: 700;
    color: #74B65F;
    text-align: center;
    margin: 0;
}

.form-item-inner11 p {
    font-size: 28px;
    font-weight: 600;
    color: #74B65F;
    text-align: center;
    margin: 0 0 60px;
}

.form-item-inner12 {
    max-width: 710px;
    margin-left: auto;
    padding-bottom: 45px;
    margin-right: -43px;
}

.form-item-inner12 h6 {
    font-size: 21px;
    font-weight: 400;
    color: #244EA2;
    text-align: center;
    margin: 0 0 25px;
}

.form-item-inner12 h6 span {
    display: block;
    font-weight: 700;
}

.form-item-inner13 {
    max-width: 650px;
    margin-left: auto;
    margin-right: -9px;
    padding-bottom: 40px;
}

.form-item-inner13 h3 {
    font-size: 14px;
    font-weight: 600;
    color: #244EA2;
    text-align: center;
    margin: 0;
}

/*=== page-04 start ===*/

.form-item-inner15 {
    max-width: 640px;
    text-align: center;
    margin-left: auto;
    margin-top: 300px;
}

.form-item-inner15 h3 {
    font-size: 28px;
    font-weight: 600;
    color: #D24943;
    margin: 0 0 170px;
}

.form-item-inner15 a {
    font-size: 14px;
    font-weight: 600;
    color: #2A3D7C;
    text-decoration: underline;
}

.contactform label.error {
    color: red;
    display: block;  
    margin: 0;
    margin-top: -20px;
}