body {
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: futura-pt, sans-serif;
	text-transform: uppercase;
	font-weight: 500;
}
p {
	font-family: oxygen, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 2;
}
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    h5 {
        font-size: 15px;
    }
    h6 {
        font-size: 15px;
    }
}

/* Changing button color */
.menu-button {
	background-color: #083F69;	
}

.menu-button a, .menu-button a:hover, .menu-button a:active {
	color: #F8F7F0 !important;
}

.menu-button:hover {
	background-color: #F3EFCF;
}

.menu-button:hover a {
	color: #083F69 !important;
}


.newwhite-button {
	background-color: #FFFFFF;	
}

.newwhite-button a, .newwhite-button a:hover, .newwhite-button a:active {
	color: #083F69 !important;
}

.newwhite-button:hover {
	background-color: #083F69;
}

.newwhite-button:hover a {
	color: #F8F7F0 !important;
}

@media (max-width: 768px) {
    .pp-offcanvas-toggle-wrap {
        display: block;
    }

    .fl-menu-mobile-toggle {
        display: none;
    }
	
.pp-offcanvas-toggle-wrap {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}
}
.pp-offcanvas-toggle {
    background-color: #fdb260;
    color: white; /* Adjust text color for contrast */
    border: none; /* Remove default border if present */
    padding: 10px 20px;
    border-radius: 25px; /* Round the edges slightly */
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    transform: scale(1); /* Default size */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth hover effect */
}

.pp-offcanvas-toggle:hover {
    transform: scale(1.1); /* Slightly enlarges the button on hover */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Enhances shadow on hover */
}