:root {
    --black: #202020;

    --gray: #4e4e4e;

    --red: #9b0302;

    --blue: #0C4496;

    --light-gray: #FAFAFA;

    --roboto-regular: "Roboto-regular";

    --roboto-bold: "Roboto-bold";

    --fritz-regular: "Fritz-regular";

    --fritz-bold: "Fritz-bold";
}

/* font */

@font-face {
    font-family: Roboto-regular;

    src: url(../../assets/fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto-bold;

    src: url(../../assets/fonts/Roboto-Bold.ttf);
}

@font-face {
    font-family: Fritz-regular;

    src: url(../../assets/fonts/FrizQuadrataStd.otf);
}

@font-face {
    font-family: Fritz-bold;

    src: url(../../assets/fonts/FrizQuadrataStd-Bold.otf);
}


section>* {
    max-width: 1920px;

    margin: auto;
}


.wrapper {
    max-width: 1576px;

    margin: auto;
}

section {
    padding: 100px 30px;
}

.px-sec {
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
}

/* heading with clamp */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-family: var(--fritz-regular);
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--black);
}

h1,
.h1 {
    font-size: 64px;
    line-height: 74px;
}

h2,
.h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 40px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 34px;
}

h5,
.h5 {
    font-size: 20px;
    line-height: 30px;
}

p,
ul li, ol li {
    font-family: var(--roboto-regular);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;
    color: var(--gray);
}

a {
    transition: 0.5s ease all;

    -webkit-transition: 0.5s ease all;

    -moz-transition: 0.5s ease all;

    -ms-transition: 0.5s ease all;

    -o-transition: 0.5s ease all;

    color: var(--black);

    font-family: var(--roboto-regular);

    font-size: 18px;

    font-style: normal;

    font-weight: 500;

    line-height: normal;
}

a path {
    transition: 0.5s ease all;
}

a {
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}

/* background color */

.bg-black {
    background-color: var(--black);
}

.bg-gray {
    background-color: var(--gray);
}

.bg-red {
    background-color: var(--red);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

/* text color */

.text-black {
    color: var(--black) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-red {
    color: var(--red);
}

/* clamp contents */

.post_title {
    display: -webkit-box;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    -webkit-line-clamp: 1;
}

.post_text {
    display: -webkit-box;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    -webkit-line-clamp: 3;
}

/* shine button css */

.normal-button {
    position: relative;
    display: inline-block;

    overflow: hidden;
    font-family: var(--roboto-regular);
    font-weight: 500;

    font-size: 18px;

    border-radius: 320px;

    border: 0;

    color: #fff;

    /* box-shadow:-2px 2px 2px #ccc; */

    background-color: #9b0302;

    transition: 0.5s ease-in-out;

    padding: 10px 20px;
}

/*        sheen effect      */

/*This is the base animation*/

.sheen:after {
    content: "";

    position: absolute;

    top: 0;

    left: -20px;

    width: 10px;

    height: 100%;

    background: linear-gradient(to bottom,
            rgba(229, 172, 142, 0.1),
            rgba(255, 255, 255, 0.2) 50%,
            rgba(229, 172, 142, 0.1));

    transform: translateX(0) skewX(-15deg);
    transition: transform 1s ease;
    pointer-events: none;
}

/*This activates the sheen once the button has been hovered*/

.sheen:hover::after,
.normal-button:focus::after {
    transform: translateX(calc(5000% + 40px)) skewX(-15deg);
}

.sheen:hover {
    background: #ef0200;

    box-shadow: 0px 4px 20px 0px rgba(255, 2, 0, 0.7);

}

/* For Form Submit button */
form .submit-wrapper {
    padding: 0;
    width: 100%;
}

form input[type="submit"] {
    background: transparent;
    border: 0;
    color: var(--bs-white);
    padding: 10px 20px;
    width: 100%;
}
/* For Form Submit button */


@media (max-width: 1199px) {

    section,
    .p-sec {
        padding: 70px 30px;
    }

    .px-sec {
        padding: 0 30px;
    }

    .pt-sec {
        padding-top: 70px;
    }

    h1,
    .h1 {
        font-size: 50px;

        line-height: 50px;
    }

    h2,
    .h2 {
        font-size: 40px;

        line-height: 40px;
    }

    h3,
    .h3 {
        font-size: 28px;

        line-height: 35px;
    }

    h4,
    .h4 {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {

    section,
    .p-sec {
        padding: 50px 20px;
    }

    .px-sec {
        padding: 0 20px;
    }

    .pt-sec {
        padding-top: 50px;
    }

    h1,
    .h1 {
        font-size: 40px;

        line-height: 40px;
    }

    h2,
    .h2 {
        font-size: 30px;

        line-height: 35px;
    }

    h3,
    .h3 {
        font-size: 25px;

        line-height: 30px;
    }
}