/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&display=swap');

/* General Styling */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: "Poppins", sans-serif;
}

:root {
    --color-primary: #FD001D;
    --color-secondary: #333333;
    --white: #fff;
    --black: #000;
    --field: #666;    
}

::selection {
    background-color: var(--color-secondary);
    color: var(--white);
}

::placeholder {
    color: var(--field);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f1eeee;
}

html {
    scroll-behavior: smooth;
}

a {
    display: inline-block;
    transition: all 300ms ease-in-out;
}

ul,
ol,
dl,
address,
label {
    margin-bottom: 0;
}

.imgFluid {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    transition: all 300ms ease-in-out;
    border: none;
    outline: none !important;
}

i[class^="bx"] {
    vertical-align: middle;
}

body {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background-image: url("../images/bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;    
}

.padd-y {
    padding: 4rem 0
}

.color-primary {
    color: var(--color-primary)
}

.color-secondary {
    color: var(--color-secondary)
}

/* ThemeBtn */

.themeBtn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--white) !important;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
    padding: 1rem 2.5rem;
    border-radius: 1.5rem;
}

.themeBtn--center {
    margin: 0.5rem 0;
}
/* brief-form */
.brief-form__wrapper {
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 4rem;
    padding: 3rem 3.5rem;
}

.brief-form__logo img{
    width: 160px;
    margin: 0 auto 4rem auto;
}

.brief-form__title h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.brief-form__field h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.inputField :is(input, textarea) {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--field);    
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--black);
    border-radius: 0.25rem;
}

.inputField .radio input {
    width: fit-content;
    accent-color: var(--color-primary);    
}

.error {
    color: var(--color-primary);    
}

.thankyou {
    min-height: 100vh;
}
/* Large devices (desktops, 992px and up) */

@media (min-width: 1500px) {
    .container {
        max-width: 1380px;
    }
}