/*================== PLACEHODEL====================*/
.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.8) !important;
}
.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.8) !important;
}
.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.8) !important; 
}
.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.8) !important;
}
.form-control:hover, .form-control:focus {
    background: transparent;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.4);
}
.form-control:focus {
    border-color: rgba(255, 255, 255, 0.4); 
}
/*================== PLACEHODEL====================*/
.form-group {
    position: relative;
}
.d-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}
.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.w-50 {
    width: 50% !important;
}
.flex-1{
    flex:1;
}
.ftco-section{
/* padding: 12.75em 0;*/
height: 100vh;
display: grid;
place-items: center;
background: url(../../assets/img/bg.jpg) top center no-repeat;
background-size: 110%;
background-position-y: 100%;
position: relative;
z-index: 1;
}
.ftco-section:before{
    position: absolute;
    content: '';
    inset: 0;
    background: rgba(0 0 0 / 45%);
    z-index: -1;
}
.btn_re{
    color: #fff;
    cursor: pointer;
    transition: all 500ms;
}
.btn_re:hover{
    transform: scale(1.1);
}
.form-control {
    background: transparent;
    border: none;
    height: 50px;
    color: white !important;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    width: 100%;
    padding: 0.375rem 3rem;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}
.field-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-family: "FontAwesome";
}
.fa-eye:before {
    content: "\f06e";
}
.heading-section{
    font-size: 28px;
    color: #fff;
    font-family: 'Montserrat';
}
.btn.btn-primary {
    background: #fbceb5 !important;
    border: 1px solid #fbceb5 !important;
    color: #000 !important;
    border-radius: 40px;
    box-shadow: none !important;
    font-size: 15px;
    text-transform: uppercase;
}
.checkbox-primary {
    color: #fbceb5;
}
.checkbox-wrap {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
input[type="radio"], input[type="checkbox"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "\f0c8";
    font-family: "FontAwesome";
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 20px;
    margin-top: -1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    @media (prefers-reduced-motion: reduce) {
        .checkmark:after {
          -webkit-transition: none;
          -o-transition: none;
          transition: none; } }

/* Show the checkmark when checked */
.checkbox-wrap input:checked ~ .checkmark:after {
    display: block;
    content: "\f14a";
    font-family: "FontAwesome";
    color: rgba(0, 0, 0, 0.2); }

/* Style the checkmark/indicator */
.checkbox-primary {
    color: #fbceb5; }
    .checkbox-primary input:checked ~ .checkmark:after {
        color: #fbceb5; }

@media screen  and (max-width:767px){
    .ftco-section{
        background-size: unset ;
    }
    .modal-content{
        width: 96vw !important;
    }
}