@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&family=Oswald:wght@200;300;400;500;600;700&display=swap');

:root {
    --font1: 'Open Sans', sans-serif;
    --font2: 'Oswald', sans-serif;
    --blue: #294a70;
    --yellow: #f4a024;
}
body {
    font-family: var(--font2);
    letter-spacing: 1px;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: unset;
}
button, input {
    box-shadow: unset;
    outline: none;
}




/* header */
.heading-top {
    background-color: var(--blue);
    border-top: 5px solid var(--yellow);
    padding: 5px 0 8px 0;
}
.quick-contact {
    display: flex;
    align-items: center;
}
.quick-contact li:nth-child(2) a {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #fff;
}
.quick-contact li a {
    font-size: 14px;
    color: #Fff;
    font-weight: 400;
    transition: .3s;
}
.quick-contact li a:hover {
    opacity: .7;
}
.quick-contact li a img {
    width: 16px;
    margin-right: 5px;
}
.heading-center {
    padding: 1rem 0;
}

.center-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 100px;
}
.logo span {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #ccc;
    display: block;
    color: var(--blue);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}
.logo span small {
    display: block;
    font-size: 14px;
    color: #afafaf;
    margin-top: 8px;
}
.search-bar {
    max-width: 300px;
    width: 100%;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--blue);
    border-radius: 5px;
    overflow: hidden;
}
.search-bar input {
    flex: 1;
    border: none;
    background: none;
    font-size: 13px;
    height: 40px;
    padding: 0 1rem;
}
.search-bar button {
    border: none;
    background-color: var(--blue);
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    height: 40px;
    letter-spacing: 1px;
    padding: 0 1.5rem;
    transition: .3s;
}
.search-bar:hover {
    border-color: var(--yellow);
}
.search-bar:hover button {
    background-color: var(--yellow);
}
.hamburger {
    display: none;
}
.heading-bottom {
    background-color: var(--blue);
    border-bottom: 5px solid var(--yellow);
}
.navibar {
    display: flex;
    justify-content: center;
    align-items: center;
}
.navibar li a {
    display: block;
    padding: .8rem 1.5rem;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    border-right: 1px solid var(--yellow);
    transition: .3s;
}
.navibar li a:hover {
    background-color: var(--yellow);
}
.navibar li:first-child a {
    border-left: 1px solid var(--yellow);
}
/* end header */

/* category */
.headings {
    text-align: center;
    margin: 3rem;
    color: var(--blue);
}
.headings span {
    color: var(--yellow);
    font-family: var(--font1);
}
.product-box {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: relative;
    z-index: 0;
    transition: .5s;
}
.product-box img {
    transition: .5s;
}
.product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 68%);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--yellow);
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
    transition: .8s;
    opacity: 0;
}
.product-box:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 20px #f4a02494;
}
.product-box:hover img {
    transform: scale(1.08);
}
.product-box:hover .product-overlay {
    opacity: 1;
}
.map-wrapper {
    padding-top: 3rem;
}
.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 350px;
    border: 10px solid #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    border-radius: 5px;
}
.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 100%;
}
.gmap_canvas iframe {
    width: 100%;
    height: 100%;
}
/* end category */

/* footer */
footer {
    background-color: var(--blue);
    padding: 1rem 0;
    border-bottom: 5px solid var(--yellow);
    text-align: center;
    color: #fff;
    margin-top: 3rem;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.poweredby {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.poweredby h6 {
    font-family: var(--font1);
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 10px;
    font-weight: 700;
}
.poweredby a {
    display: block;
}
.poweredby a img {
    height: 30px;
}
.poweredby li:first-child {
    margin-right: 2rem;
    padding-right: 2rem;
    border-right: 1px solid #ffffff38;
}
/* end footer */

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000075;
    top: 0;
    left: 0;
    z-index: 15;
    display: none;
}

/* reponsive */
@media(max-width: 767px) {
    .quick-contact {
        justify-content: center;
    }
    .quick-contact li:nth-child(2) {
        display: none;
    }
    .search-bar {
        display: none;
    }
    .hamburger {
        display: block;
        width: 20px;
    }
    .logo img {
        width: 50px;
    }
    .logo span {
        font-size: 1.2rem;
    }
    .logo span small {
        font-size: 11px;
    }
    .heading-bottom {
        position: fixed;
        width: 200px;
        height: 100%;
        z-index: 20;
        top: 0;
        left: -250px;
        box-shadow: 2px 0 10px rgb(0 0 0 / 10%);
    }
    .heading-bottom:before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 10px;
        left: calc(100% + 10px);
        background-image: url(../images/close.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        pointer-events: none;
    }
    .navibar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }
    .navibar li a {
        border: none !important;
        padding: 10px;
    }
    .navibar li {
        width: 100%;
    }
    .heading-center {
        box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
    }
    .headings {
        margin: 3rem 0;
    }
    .category-wrapper .col-md-4 {
        width: 50%;
    }
    .product-overlay {
        font-size: 12px;
    }
}
/* end responsive */