:root {
    --primary-font: "Roboto", serif;
    --primary-color: #F46ECB;
    --white: rgb(255, 255, 255);
    --black: rgb(0, 0, 0);
}


/* General CSS start */

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
strong,
sub,
sup,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
figure,
footer,
header,
menu,
nav,
section,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    outline: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
    color: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    -ms-interpolation-mode: bicubic;
    height: auto;
    vertical-align: middle;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    max-width: 100%;
    display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1
}

::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1
}

::placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1
}

button::-moz-focus-inner {
    border: 0;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    border: solid 1px #3f4645;
    color: var(--black);
    border-radius: 0px;
    padding: 15px;
    font-size: 16px;
    line-height: 120%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: 50px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=submit],
input[type=button] {
    cursor: pointer;
    border: 0;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

label {
    display: inline-block;
    line-height: 1.5;
    vertical-align: middle;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 16px;
    line-height: 120%;
    margin: 0;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 120%;
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--primary-font);
    font-size: clamp(14px, 0.835vw, 16px);
    font-weight: 400;
    line-height: 150%;
    color: var(--black);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.h1,
h1 {
    font-size: clamp(28px, 2.083vw, 40px);
}

.h2,
h2 {
    font-size: clamp(24px, 1.667vw, 32px);
}

.primary-btn {
    background: var(--primary-color);
    font-family: var(--primary-font);
    padding: clamp(11px, 0.833vw, 16px) 32px;
    border-radius: 100px;
    border: solid 2px var(--primary-color);
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 600;
    line-height: 150%;
    color: var(--white);
    display: inline-block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.primary-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

label.error {
    font-size: clamp(14px, 0.833vw, 16px) !important;
    color: #ff0000 !important;
    line-height: normal !important;
    display: block;
    font-weight: 400;
    margin-top: 3px;
}


/* General CSS end */


/* Header css start */

header {
    padding: 16px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 999;
    box-shadow: 0 0 2px #00000075;
}

header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

header .logo img {
    max-width: 130px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}


/* Header css end */


/* Banner form css start */

.banner-form {
    padding: 40px 0;
}

.banner-form-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.banner-form-logo img {
    height: clamp(50px, 4.17vw, 60px);
    width: auto;
    object-fit: contain;
}
.kinetiq-logo img {
    height: 70px;
}
.bn-formcont-top .h2 {
    text-align: center;
    text-transform: capitalize;
    margin-bottom: clamp(32px, 2.083vw, 40px);
    font-size: 18Px;
}

.banner-form-cont {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 3.125vw, 60px);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.main-form-sec .h2 {
    text-align: center;
    margin-bottom: clamp(32px, 2.083vw, 40px);
    text-transform: capitalize;
}

.main-form-sec .form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: clamp(24px, 1.875vw, 36px);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-form-sec .form-inner .form-group {
    width: calc(50% - 18px);
    position: relative;
}

.main-form-sec .form-inner .form-group-100 {
    width: 100%;
}

button:focus {
    border: solid 2px #000;
}

.submit-button {
    text-align: center;
}

.main-form-sec .name-field {
    position: absolute;
    top: -7px;
    left: 1rem;
    background: #fff;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    color: #3f4645;
}

.primary-traffic-select select.traffic-select {
    appearance: none;
    background-image: url(../images/down-to-arrow.svg);
    background-size: 20px;
    background-position: 98% center;
    background-repeat: no-repeat;
    padding-right: clamp(24px, 1.667vw, 32px);
    cursor: pointer;
}

.textarea-cont textarea {
    min-height: 50px !important;
    scrollbar-width: none;
}

.errow-server ul {
    display: flex;
    gap: 4px 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.errow-server ul li {
    color: red;
    font-size: 14px;
}
.thank-you-cont {
    text-align: center;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.thank-you-cont .primary-btn {
    display: inline-block;
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
}

.terms-desc p {
    font-size: clamp(12px, 0.835vw, 16px);
}
/* Banner form css end */

@media only screen and (max-width: 767px) {
    .banner-form-top {
        justify-content: space-evenly;
    }
    .main-form-sec .form-inner .form-group {
        width: 100%;
    }
    .banner-form-cont {
        flex-direction: column-reverse;
    }
    header .logo img {
        max-width: 100px;
    }
    .thank-you-main {
        flex-direction: initial;
        flex-wrap: wrap;
        justify-content: center;
    }
}