/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* Global Css */
:root {
    --theme-color1: #D6F5FF;
    --theme-color2: #00769A;
    --theme-color3: #00455C;
    --theme-color4: #B7BA15;
    --text-color1: #53646E;
    --body-color: #484848;
}

html,
body {
    overflow-x: hidden;
    color: var(--body-color);
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

.heading {
    color: var(--bs-black);
    font-family: 'Pacifico', cursive;
    filter: drop-shadow(0 1.5px 1.5px rgba(0,0,0,.25));
    line-height: normal;
}

.btn-custom {
    min-height: 42px;
    color: #FFF;
    display: inline-flex;
    --webkit-display: inline-flex;
    align-items: center;
    --webkit-align-items: center;
    justify-content: center;
    --webkit-justify-content: center;
    padding: 10px 1.5rem;
    line-height: normal;
    border-radius: 30px;
    background-color: var(--theme-color2);
    box-shadow: 0px 10px 30px 0px rgba(0, 118, 154, 0.40);
    transition: all .3s;
}

.btn-custom:hover,
.btn-custom:active {
    color: #FFF !important;
    background-color: var(--theme-color3) !important;
    border-color: var(--theme-color3) !important;
}

/* Start: Homepage CSS */

/* Header CSS */
nav.navbar-custom-bg {
    background-color: var(--theme-color1) !important;
}

nav .nav-link {
    color: var(--text-color1);
    text-transform: capitalize;
}

nav .header_logo {
    max-width: 117px;
}

nav form .btn {
    box-shadow: 0px 6px 20px 3px rgba(0, 118, 154, 0.25);
}

nav .offcanvas-title {
    color: var(--theme-color3);
}

/* Hero Banner Section */
.hero-banner {
    background-color: var(--theme-color1);
}

.hero-banner:before,
.hero-banner:after {
    content: '';
    position: absolute;
    border: 30px solid var(--theme-color2);
    border-radius: 50%;
    opacity: 0.30;
}

.hero-banner:before {
    left: -57px;
    bottom: -40px;
    width: 115px;
    height: 115px;
}

.hero-banner:after {
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.hero-banner .styled-text {
    /* color: var(--theme-color2); */
    font-family: 'Pacifico', cursive;
    filter: drop-shadow(0 1.5px 1.5px rgba(0,0,0,.25));
    /* background: linear-gradient(to right, var(--theme-color2) 0%, var(--theme-color4) 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
    line-height: normal;
}

.hero-banner .caption h1 {
    color: var(--theme-color3);
    font-size: 40px;
    font-weight: 900;
    line-height: normal;
}

.hero-banner .caption h1 span {
    color: var(--theme-color4);
}

.hero-banner .caption .btn-custom {
    font-size: 18px;
    min-height: 55px;
}

.hero-banner img {
    width: 468px;
    filter: drop-shadow(0.35rem 0.35rem 0.5rem rgba(0, 0, 0, 0.4));
}

/* Hero Text Section */
.hero-text h4 {
    letter-spacing: 2.2px;
}

/* IWT Section */
.iwt-section.food-1:after {
    content: '';
    position: absolute;
    top: 0;
    right: -45px;
    width: 100px;
    height: 100px;
    border: 30px solid var(--theme-color4);
    border-radius: 50%;
    opacity: 0.30;
}

.iwt-section.food-2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -57px;
    width: 115px;
    height: 115px;
    border: 30px solid var(--theme-color4);
    border-radius: 50%;
    opacity: 0.30;
}

/* .iwt-section img {
    width: 380px;
} */

/* Overlay Content Section */
.banner-overlay-content {
    background: url(../images/meal-banner2.jpg) no-repeat center;
    background-size: cover;
    background-position: initial;
}

.banner-overlay-content .content-wrapper p {
    font-size: calc(1rem + 2px);
    letter-spacing: 1.25px;
}

.banner-overlay-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 0;
}

/* Footer Css */
footer {
    background-color: var(--theme-color3);
}

footer h6 {
    letter-spacing: 2px;
}

footer .social-wrapper i {
    display: inline-block;
    transition: ease-in-out .3s;
}

footer .social-wrapper a:hover i {
    color: var(--theme-color4);
    transform: rotate(360deg);
}

.copyright-bg {
    background-color: rgba(0, 0, 0, 0.2)
}

/* End: Homepage CSS */