@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap');

:root {
    --color1: #164D8B;
    --color2: #164D8BE3;
    --color3: #FF0000;
    --color4: #ECF0FF;
    --color5: #141414;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.web-btn {
    color: white;
    background-color: var(--color1);
    font-size: 15px;
    padding: 8px 24px;
    transition: all 0.3s 0s linear;
}

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

.web-btn2 {
    color: white;
    background-color: #f7dc79;
    font-size: 15px;
    padding: 8px 24px;
    transition: all 0.3s 0s linear;
    color: #422e59;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.web-btn2:hover {
    background: white;
    color: #422e59;
}

.web-btn2 i {
    font-size: 18px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 18px;
}

.text-upr {
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

b {
    font-weight: 800;
}

.web-clr {
    color: var(--color1);
}

a {
    text-decoration: none;
}

.plr-half {
    padding: 0px 7.5px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-30 {
    padding-right: 30px;
}

.form-control
{
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 0px;
    font-size: 14px;
    padding: 12px 15px;
}