@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*COMMON CSS==================================================*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    height: 100%;
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-size: 1.6rem;
    background-color: #000000;
}

body,
html,
div,
p,
span,
ul,
li,
ol,
a,
img,
label,
form,
iframe,
i,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    outline: 0px;
    border: 0px;
    text-decoration: none;
    list-style-type: none;
}

/*--------------------*/
a {
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    display: inline-block;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    display: inline-block;
    width: 100%;
    font-weight: 600;
    color: #b7943d;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0rem;
    padding: 0;
    width: 100%;
}

h1 {
    font-size: 3.5rem;
    line-height: 4rem;
}

h2 {
    font-size: 3.4rem;
    line-height: 4.2rem;
}

h3 {
    font-size: 3.2rem;
    line-height: 3.2rem;
}

h4 {
    font-size: 4rem;
}

h5 {
    font-size: 3.6rem;
}

h6 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 0;
    padding: 0;
    font-size: 1.8rem;
    width: 100%;
}

/*--------------------*/
/*FORM ELEMENTS============================================================*/
input,
textarea,
select,
form,
label,
button,
div.select-box,
div.select-box select,
i.chk,
i.rdo {
    margin: 0px;
    padding: 0px;
    outline: none;
    font-size: 2rem;
    color: #000;
}

/*----------*/
input[type="text"],
input[type="password"],
input[type="number"],
textarea {
    float: left;
    width: 100%;
    font-size: 1.6rem;
    color: #ffffff;
    padding: 4px;
    resize: none;
    background-color: #202020;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    border: 0;
    border-radius: 0px;
    z-index: 2;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

button {
    outline: 0;
}

a img {
    border: 0px;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #000000 inset !important;
}

input:focus,
textarea:focus,
select:focus {
    border-width: 2px;
    border-color: #ffffff;
}

.err-red input {
    border-color: red;
}

.inputfield {
    height: 85px;
}

/*--------------------*/

/*ERROR MESSAGE==================================================*/
p.e {
    width: 100%;
    max-width: 530px;
    margin: 4px 0 0 !important;
    padding: 0;
    font-size: 1.4rem !important;
    line-height: 1.6rem !important;
    color: red;
    font-weight: 200;
    text-align: left;
    text-transform: none !important;
}

/*--------------------*/
label {
    display: inline-block;
    width: 100%;
    color: #ffffff;
    font-size: 10px;
    margin-bottom: 5px;
    text-align: left;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 100;
}

label em {
    font-style: normal;
    margin-left: -2px;
    font-size: .8em;
    color: red;
}

/*btn CSS==================================================*/
.submit {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #bf953d;
    color: #000000;
    border: 1px solid #000000;
    font-size: 1.6rem;
    border: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500 !important;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.submit:hover

/* .submit:focus */
    {
    color: #bf953d;
    background: #000;
}

a.btn:hover span,
input.btn:hover {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}

/*SELECT BOX CSS==================================================*/
div.select-box {
    float: left;
    width: 100%;
    height: 60px;
    position: relative;
    border: 0;
    background: #e9f4ac;
    overflow: hidden;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    border-radius: 13px;
    margin-bottom: 3rem;
}

div.select-box select {
    float: left;
    width: 100%;
    height: 60px;
    padding: 0px 38px;
    outline: none;
    border: 0;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

div.select-box select option {
    background: #ffffff;
    color: #828282;
    padding: 5px 20px;
    border: 0px;
    cursor: pointer;
    border-bottom: 1px solid #a0a0a0;
}

div.select-box select option:hover {
    background: #ffffff;
}

div.select-box:after {
    padding: 0px;
    position: absolute;
    pointer-events: none;
    content: "";
    background-image: url(../images/select-ar.svg);
    background-size: 18px 22px;
    background-position: center center;
    background-repeat: no-repeat;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 60px;
    display: inline-block;
    background-color: transparent;
    text-align: center;
    line-height: 40px;
}

div.select-box:hover:after {
    color: #000000;
}

i.chk em,
i.rdo em {
    display: none;
}

i.chk,
i.rdo {
    width: 100%;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-style: normal;
    background-color: #e5e5e5;
    padding: 15px 30px;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    letter-spacing: 0.5px;
}

i.chk {
    font-size: 1.4rem;
    padding: 12px 20px;
    height: 100%;
    min-height: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


i.chk input,
i.rdo input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}


/*SCROLL BAR CSS===================================*/
:root {
    scrollbar-color: rgb(120, 120, 120) rgb(46, 46, 46) !important;
    scrollbar-width: thin !important;
}

::-webkit-scrollbar {
    width: 3px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background: #848484;

}

::-webkit-scrollbar-thumb {
    background: #2e2e2e;

    padding: 0px 0px;
}

/*MX DIALOGUE==================================================*/

div.mxdialog {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    z-index: 11;
}

div.mxdialog div.body {
    display: flex;
    max-height: 90%;
    background: #e8e8e8;
    padding: 80px 50px;
    flex-flow: row wrap;
    position: relative;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    width: 100%;
    max-width: 750px;
    color: #000;
    border-radius: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

div.mxdialog div.conten {
    float: left;
    width: 100%;
    margin: 0px;
    max-height: 70vh;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-color: #000 transparent;
    scrollbar-width: thin;
    font-size: 1.2rem;
    position: relative;
    text-align: center;
}

div.mxdialog a.del {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
    background: #000;
    border-radius: 0;
    padding: 8px;
    border-radius: 50%;
}

div.mxdialog a.del:hover,

div.mxdialog a.del:hover {
    transform: scaleX(-1);
}

div.mxdialog a.del:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/del.svg);
    background-size: 95%;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mxdialog ul li {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    height: 70px;
    align-items: flex-start;
    align-content: flex-start;
    overflow: hidden;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    opacity: 1;
}

.mxdialog ul li label {
    width: auto;
    text-align: left;
    white-space: nowrap;
    font-size: 1.6rem;
    padding-right: 10px;
    min-width: 90px;
    line-height: 45px;
    height: 45px;
    margin: 0;
}

.mxdialog input,
.mxdialog div.select-box {
    border: 1px solid #3d3d3d;
    border-radius: 7px;
    margin-bottom: 0;
    flex: 1;
    min-width: 50%;
    color: #000;
}

.mxdialog input,
.mxdialog div.select-box,
.mxdialog div.select-box select,
.mxdialog div.select-box option,
.mxdialog div.select-box:after {
    height: 45px;
    padding: 0px 15px;
    background-color: transparent;
    font-size: 1.4rem;
}

.mxdialog div.select-box select {
    padding: 0 !important;
    height: 100%;
}

.mxdialog div.select-box:after {
    background-size: 15px 15px;
    padding: 0;
    background-image: url(../images/arow_2.svg);
    width: 30px;
}

.mxdialog p.e {
    padding-left: 100px;
    margin-top: 6px;
}

.mxdialog input.btn {
    background: #000;
    color: #fff;
    border-radius: 30px;
    height: 40px;
    line-height: 40px;
    min-width: 200px;
    margin-top: 5px;
    padding: 0;
}

.mxdialog input.btn:hover,
.mxdialog input.btn.active {
    background: transparent;
    color: #000;
}

.mxdialog ul li.other-industry {
    height: 0;
    visibility: hidden;
    opacity: 0;
}

div.loader {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;
    background: url(../../images/loader.gif) no-repeat center rgba(0, 0, 0, 0.85);
}

.spinner {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/loader1.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 170px;
    background-color: rgb(0 0 0 / 50%);
    z-index: 9999;
    display: block;
}

.spinner div {
    display: none;
}

div.progress {
    display: none;
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    background: #828282;
}

/*MX DIALOGUE==================================================*/





/* --- HEADER CSS --STAER-- ============================================ */
header {
    background-color: #2e2e2e;
    padding: 10px;
    text-align: center;
    margin: auto;
}

header img {
    background-color: #ffffff;
    max-width: 350px;
    width: 100%;
    vertical-align: middle;
}

/* --- HEADER CSS --END---- ============================================ */
footer {
    padding: 20px;
    background-image: url(../images/foot-banner.jpg);
    background-color: rgba(46, 46, 46, 0.6);
    background-size: cover;
    background-position: bottom center;

}

/* --- FOOTER CSS --START-- ============================================ */
footer p {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: #fff;
    font-weight: 400;
}

/* --- FOOTER CSS --END---- ============================================ */
/* --- MAIN CSS ----STAER-- ============================================ */

.btn {
    transition: all 0.2s ease 0s;
    background: #BF953D;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #000000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn:hover {
    background-color: #807C35;
}

section.into-sec,
section.form-sec {
    background-color: #000000;
    padding: 0 40px;
    display: flex;
    flex-flow: row wrap;
}

section.into-sec .data {
    padding-top: 80px;
}

section.into-sec h2 {
    line-height: 5.6rem;
}

.data,
.img-box {
    width: 50%;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.data {
    text-align: center;
    padding: 50px 0 80px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.data p {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 200;
}

section.into-sec h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

section.into-sec .logo {
    max-width: 180px;
    margin: auto;
    margin-bottom: 40px;
}

section.into-sec .logo img {
    width: 100%;
}

.data ul {
    flex: 1;
    text-transform: uppercase;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.data ul li {
    padding: 15px 0;
    position: relative;
    width: auto;
    font-weight: 200;
}

.data ul li::after {
    content: '';
    background-image: linear-gradient(to right, transparent 50%, #b7943d 50%);
    background-size: 10px 100%;
    width: 270px;
    height: 1px;
    /* border-bottom: 2px dashed #b7943d; */
    position: absolute;
    bottom: 0;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.data ul li:last-child:after {
    display: none;
}

/* section 2 */

.data h2 span {
    display: block;
    color: #ffffff;
    font-weight: 200;
    font-size: 2.8rem;
    line-height: 2.8rem;
}

.data h2 i {
    font-style: normal;
}

section.form-sec .data p {
    margin: 15px 0 30px 0;
}

section.form-sec>.img-box {
    padding-bottom: 40px;
}

section.form-sec .data .img-box {
    max-width: 350px;
}

.form-wrap {
    padding: 15px;
    width: 100%;
    max-width: 500px;
}

.form-wrap h6 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 200;
    text-transform: none;
    margin-bottom: 15px;
}

/* list */
section.cmp-sec {
    background-color: #404040;
}

section.cmp-sec h1 {
    padding: 15px;
    text-align: center;
    background-color: #2e2e2e;
}

ul.cmp-list {
    max-width: 950px;
    margin: auto;
    padding: 0 15px;
}

ul.cmp-list li {
    background-color: #000000;
    display: flex;
    flex-flow: row wrap;
    font-size: 1.6rem;
}

ul.cmp-list li .img-box,
ul.cmp-list li .data {
    width: 50%;
}

ul.cmp-list li .data {
    padding: 20px 50px 60px 50px;
    text-align: left;
    align-items: flex-start;
    position: relative;
}

ul.cmp-list h2 {
    color: #978446;
    font-size: 2.8rem;
    line-height: 3.6rem;
    font-weight: 400;
}

ul.cmp-list p {
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 300;
    text-transform: none;
    color: #978446;
}

ul.cmp-list h4 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 200;
    color: #ffffff;
    margin: 10px 0;
}

ul.cmp-list ul {
    align-items: flex-start;
}

ul.cmp-list ul li {
    padding: 5px 0;
    letter-spacing: .1em;
}

ul.cmp-list>li:nth-child(odd) {
    flex-direction: row-reverse;
}

ul.cmp-list ul li::after {
    transform: translate(0);
    left: 0;
}

section.note {
    text-align: center;
    background-color: #ffffff;
    padding: 30px 0;
}

section.note h6 {
    font-size: 2rem;
    color: rgba(0, 0, 0, .75);
    text-transform: none;
    font-weight: 400;
}

.thankyou {
    padding-top: 30px;
}

.thankyou p {
    text-transform: none;
    font-weight: 500;
    color: green;
}

/* --- MAIN CSS ----END---- ============================================ */