/* Global CSS Starts Here*/
@import url('https://fonts.googleapis.com/css2?family=Lato');
@import url('https://fonts.googleapis.com/css2?family=Inter');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    background-color: var(--fourth-color);
}

:root {
    --primary-color: #e20935;
    --secondary-color: #031059;
    --third-color: #E6F2E4;
    --fourth-color: #ffffff;
    --fifth-color: #141414;
    /*fonts*/
    --primary-font: Inter;
    --secondary-font: Lato;
}

.row {
    width: 90%;
    margin: auto;
    padding: 75px 20px;
    background-color: transparent;
}

.column {
    flex: auto;
}

.d-flex {
    display: flex;
}

.flex {
    display: flex;
}

h1,
h2,
h3,
h4 {
    font-family: var(--primary-font);
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

p,
button,
li,
figcaption {
    font-family: var(--secondary-font);
    line-height: 2;
    font-size: 1em;
    margin: 0;
    padding: 0;
    color: var(--fifth-color);
    font-weight: 400;
}

a {
    font-family: var(--secondary-font);
    line-height: 2;
    font-size: 1em;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

h1 {
    font-size: 4.8em;
    font-weight: 700;
    color: var(--fourth-color);
    line-height: 1;
}

h2 {
    font-size: 2.7em;
    color: var(--fifth-color);
    font-weight: 700;
}

h3 {
    font-size: 1.5em;
    color: var(--fifth-color);
    font-weight: 700;
}

h4 {
    font-size: 1.1em;
    color: var(--fifth-color);
    font-weight: 700;
}

li {
    margin-left: 14px;
}

button {
    font-size: 17px;
    font-weight: 700 !important;
    border: 0;
    padding: 10px 20px;
    border-radius: 0;
    text-shadow: none;
    cursor: pointer;
}

.button {
    background: var(--primary-color);
    color: var(--fourth-color);
}

.button:hover {
    background-color: var(--secondary-color);
    color: var(--fourth-color);
}

.button1 {
    background: var(--fourth-color);
    color: var(--primary-color);
}

.button1:hover {
    background-color: var(--secondary-color);
    color: var(--fourth-color);
}

.gap {
    gap: 10px;
}

.gap1 {
    gap: 15px;
}

.gap2 {
    gap: 20px;
}

.gap3 {
    gap: 25px;
}

.grid {
    display: grid;
    gap: 25px;
}

.grid1 {
    grid-template-columns: repeat(2, 1fr);
}

.grid2 {
    grid-template-columns: repeat(3, 1fr);
}

.grid3 {
    grid-template-columns: repeat(4, 1fr);
}

.newfooter {
    background-color: var(--fifth-color);

    .row {
        background-image: url(../images/footbg.png);
        background-position-x: right;
        background-position-y: bottom 100px;
        background-repeat: no-repeat;
        background-size: 200px;
    }

    p,
    a {
        font-size: 15px;
        color: var(--fourth-color);
    }

    a:hover {
        color: var(--fourth-color);
        text-decoration: underline;
    }

    h4 {
        color: var(--fourth-color);
        margin-bottom: 15px;
    }

    hr {
        border-color: var(--primary-color);
        margin-block: 15px;
    }

    img {
        width: 135px;
    }

    .newgrid {
        grid-template-columns: repeat(4, 1fr);
    }

    .d-flex {
        p,
        a {
            line-height: 1.5;
        }
    }
}

#off,
#on {
    display: none;
}