/* Raleway font family */
@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Raleway:ital,wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    scroll-behavior: smooth;
}

:root{
    --primary-color: #8EC038;
    --primary-color2: #576d31;
    --secondary-color: #DA2424;
    --text-color: #292D35;
    --background-color: #d0e1cb;
    --white-color:#fff;
    --black-color:#000;

    --sacramento-font: "sacramento", serif;
    --kaushan-font: "Kaushan Script", serif;

    --transition:0.3s;
    --transition2:0.6s;
}


label {
    font-weight: normal;
}

iframe {
    width: 100%;
}

/* Global style */
body {
    overflow-x: hidden;
}

h1 {
    font-size: 75px;
    font-weight: 800;
    line-height: 85px;
    font-family: "Raleway", sans-serif;
}

h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 51px;
    font-family: "Raleway", sans-serif;
}

h3 {
    font-size: 25px;
    font-weight: 800;
    line-height: 31px;
    font-family: "Raleway", sans-serif;
}

h4 {
    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
    font-family: "Raleway", sans-serif;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    font-family: "Raleway", sans-serif;
}

h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Raleway", sans-serif;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Raleway", sans-serif;
}

button {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 16px 38px 16px 38px;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
}

a {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #c9c3c3;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.flex{
    display: flex;
    align-items: center;
}

.heading{
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 5rem;
}

/* ==================== Header starts========================== */

/* General styles for desktop and larger screens */
.header-index {
    background-image: url('../images/corporate-background-2.jpg');
    background-position: center center;
    background-size: cover;
}

header {
    padding: 0 10px;
    box-sizing: content-box;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 10px;
    color: #d3c3c3;
}

.container-nav {
    gap: 70px;
}

.navbar-logo {
    margin-right: 20px;
}

.main-menu {
    list-style-type: none;
    display: flex;
    justify-content: center;
    z-index: 999;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    color: white;
    padding: 15px;
    text-decoration: none;
    text-align: center;
}

/* Dropdown Menu Styles */
.dropdown:hover .dropdown-menu {
    display: block;
    z-index: 999;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #444;
    top: 100%;
    left: 0;
    min-width: 200px;
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown-menu > li > a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-menu > li > a:hover {
    background-color: #666;
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background-color: #555;
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
}

.submenu > li > a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.submenu > li > a:hover {
    background-color: #777;
}

.nav-right {
    gap: 45px;
}

.nav-right p {
    color: #d3c9c1;
}

.nav-right span {
    color: #f57c48;
}

/* ==============Media queries for header==============  */
/* Mobile Styles */
@media (min-width: 300px) and (max-width: 480px){
    .navbar {
        /* flex-direction: column;
        align-items: flex-start; */
        display: block;
        width: 100%;
        /* padding: 10px; */
    }

    .navbar-logo img{
        width: 55%;
        height: auto;
        padding-bottom: 0px;
        padding-left: 0;
        margin-left: -35px;
    }

    .container-nav {
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-menu {
        /* flex-direction: column; */
        display: block;
        /* align-items: center; */
        width: 100%;
        /* margin-top: 5px; */
    }

    .main-menu > li > a {
        font-size: 12px;
        padding: 5px 5px;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    /* Dropdowns should be full width */
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .dropdown-menu li a{
        width: 100%;
        /* text-align: center; */
    }

    
    /* Mobile specific nav-right styling */
    .nav-right {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .nav-right p,
    .nav-right span {
        font-size: 14px;
    }
}

    /* Tablebets and iPads responsiveness */
    @media (min-width: 481px) and (max-width: 768px){
        .navbar{
            width: 100%;
        }
        .container-nav{
            width: 100%;
            /* display: flex;
            flex-direction: column; */
            display: block;
        }
        .navbar-logo{
            width: 25%;
            height: auto;
        }
        .navbar-logo img{
            width: 100%;
        }
        .main-menu{
            width: 40%;
            display: flex;
            flex-direction: row;
        }
        .main-menu>li>a{
            font-size: 15px;
            width: 100%;
            text-align: center;
            padding: auto;
        }
        .nav-right{
            width: 30%;
            display: block;
            /* padding-left: 5px; */
            flex-direction: row;
            font-size: 15px;
        }
    }
    
 /* ==============Media queries for header==============  */

        

/* footer sectiona */
.footer-index .container{
    background-image: url('../images/corporate-background-2.jpg');
    background-position: center center;
    background-size: cover;
    box-sizing: content-box;
    z-index: 99;
    /* overflow: hidden; */
}

.footer-navbar{
    display: flex;
    position: relative;
}

.footer-navbar .footer-left{
    padding: 4rem;
    padding-left: 0;
}

.footer-navbar .footer-left img{
    width: 50%;
}

.footer-navbar .footer-mid{
    padding: 2rem;
    padding-left: 5rem;
}

.footer-navbar .footer-mid h4{
    color: #fff;
    text-decoration: underline;
}

.footer-navbar .footer-mid li{
    color: #fff;
    list-style-type: none;
    gap: 1rem;
}

.footer-navbar .footer-mid a{
    color: #fff;
    gap: 3rem;
}

.footer-navbar .footer-right{
    padding: 2rem;
    padding-left: 5rem;
}

.footer-navbar .footer-right h4{
    color: #fff;
    text-decoration: underline;
}

.footer-navbar .footer-right li{
    color: #fff;
    list-style-type: none;
    gap: 1rem;
}

.footer-navbar .footer-right a{
    color: #fff;
    gap: 2rem;
}

 /* ==============Media queries for footer==============  */

@media (min-width:320px) and (max-width:480px){
    .footer-navbar{
        width: 100%;
        display: block;
        gap: 5px;
        padding: 0;
        margin: 0;
    }
    .footer-navbar-logo{
        width: 60%;
        height: auto;
        margin: 0;
        padding: 0;
        padding-left: 50px;
    }
    .footer-navbar-logo img{
        width: 40%;
    }
}

@media (min-width:481px) and (max-width:768px){
    .footer-navbar{
        width: 100%;
        /* display: flex;
        flex-direction: column; */
        display: block;
    }
    .footer-navbar-logo{
        width: 25%;
        height: auto;
        padding-left: 50px;
    }
    .footer-navbar-logo img{
        width: 30%;
    }
    .footer-mid{
        width: 50%;
        display: flex;
        flex-direction: column;
    }
    .footer-right{
        width: 100%;
        display: block;
    }
}



















 



























