
/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root {
    --primary-red:#d13438;
    --grey-color:#4d4d4d;

    --border-color: hsl(220, 68%, 97%);
    --body-color: hsl(220, 100%, 99%);

    --primary-shadow: 0 2px 8px hsla(220, 68%, 12%, .1);
}

body, html {
    font-family: "Montserrat", serif;
    
}

.large-device-only {
    display: block;
}

.small-device-only {
    display: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: none !important;
    outline: none !important;
}

.main-btn {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 16px 24px !important;
    /* border-radius: 15px; */
    /* border: 2px solid transparent; */
    outline: none;
    line-height: 20px;
    display: inline-flex;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(180deg, #FF7A00 0%, #C30000 100%);
    color:#fff;
    gap: 5px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.main-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.2;
    transition: left .7s ease-in-out;
}

.main-btn:hover::before {
    left: 100%;
}
.main-btn:hover {
    color: #fff !important;
}


.main_heading {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    color: #000;
}
section{
    padding: 70px 0;
}


/* Custom Css end */


nav.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color:#fff;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: var(--primary-shadow);
}

nav.header-scrolled .nav-links li a {
    color: #000;
}

nav.header-scrolled .main-btn{
    color: #fff !important;
}
nav.header-scrolled .nav-links li a:hover{
    color: var(--primary-red);
}

header.active {
    visibility: visible;
    transform: translateX(300px);
}




nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding: 6px 0;
    height: auto;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .wrapper {
    position: relative;

    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo {
    width: 120px;
}

/* .wrapper .logo img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
} */

.wrapper .nav-links {
    display: inline-flex;
    margin-bottom: 0;
    align-items: center;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    padding: 9px 20px;
    text-transform: uppercase;
    transition: all .4s;
    font-size: 14px;
}
.nav-links li a:hover{
    color:#fff;
}
header .main-btn{
    align-items: center;
}

.wrapper .btn {
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.cancel-btn {
    position: absolute;
    right: 5px;
    top: 12px;
}


@media screen and (max-width:970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        background-color: #fff;
        display: block;
        top: 0;
        left: -100%;
        line-height: 50px;
        overflow-y: auto;
        padding: 50px 10px;
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
        transition: all .3s ease-in;
        z-index: 99999;
        text-align: center;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    .nav-links::-webkit-scrollbar {
        width: 0px;
    }

    .nav-links li {
        margin: 5px;
    }

    .nav-links li a {
        /* padding: 0 20px; */
        display: block;
        font-size: 16px;
        color: #000;
    }
    .nav-links .main-btn{
        color: #fff !important;
        width: fit-content;
        margin: 20px auto;
    }

    
    nav.header-scrolled .btn.menu-btn{
        color: var(--primary-red) !important;
    }
    .cancel-btn{
        color: var(--primary-red) !important;
    }

}

.wrapper input {
    display: none;
}



.page_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .7), rgba(0, 0, 0, 0.3)), url(../img/banner-bg.jpg);

    background-size: cover;
    background-position: center;
    height: 300px;
    /* margin-top: 100px; */
    display:flex ;
    align-items: center;
    justify-content: center;
}
.page_banner h2{
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    padding-top: 100px;
}