:root {
    --white-color: #ffffff;
    /* --primary-color: #0071f8; */
    /* --primary-color: #254695; */
    --primary-color: #fdaa28;
    --secondary-color: #0d6efd;
    --highlight-color:#e31e25;
    --section-bg-color: #f0f8ff;
    --text-color: #2a2a2a;
    --h1-font-size: 62px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 32px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
}

.main-banner {
    background-image: url("../assets/image/Header_Banner_2.png");
    border-radius: 0px 0px 0 0;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 225px 0px;
}


.main-banner .caption h6 {
    font-size: var(--h6-font-size);
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.main-banner .caption h2 {
    font-size: 48px;
    color:var(--white-color);
    margin-top: 20px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 40px;
}

.main-banner .caption p {
    color: var(--white-color);
    margin-bottom: 70px;
}

/* Scroll */
.background-header {
    background-color: var(--primary-color) !important;
    border-radius: 0px 0px 0 0;
    height: 80px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.background-header .main-nav .logo {
    margin-top: 18px;
}

.background-header .logo img {
    max-width: 110px;
}

.background-header .main-nav ul.nav {
    margin-top: 20px;
}

.background-header .main-nav .nav li a.active {
    color: #000;
    background-color: rgba(255, 255, 255, 1);
    font-weight: 500;
}

/* Our Portfolio */
.our-portfolio {
    padding-top: 60px;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.section-heading h2 {
    font-size: 30px;
    text-transform: capitalize;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.25px;
    position: relative;
    z-index: 2;
    line-height: 44px;
}

.our-portfolio .section-heading h2 {
    text-align: center;
    margin: 0px 90px 0px 90px;
    margin-bottom: 120px;
    position: relative;
    z-index: 1;
}

.section-heading h2 em {
    font-style: normal;
    color: var(--primary-color);
}

.section-heading h2 span {
    color: var(--highlight-color);
}

.our-portfolio .item {
    position: relative;
}

.our-portfolio .hidden-content {
    background: rgb(255, 77, 30);
    background: linear-gradient(105deg, rgba(255, 77, 30, 1) 0%, rgba(255, 44, 109, 1) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    opacity: 0;
    top: 0;
    visibility: hidden;
    position: absolute;
    z-index: 2;
    transition: all 0.5s;
}

.our-portfolio .hidden-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
}

.our-portfolio .hidden-content p {
    color: var(--white-color);
}

.our-portfolio .hidden-content:after {
    width: 20px;
    height: 20px;
    position: absolute;
    background: rgb(255, 77, 30);
    content: "";
    left: 50%;
    bottom: -8px;
    margin-left: -5px;
    transform: rotate(45deg);
    background: linear-gradient(105deg, rgba(255, 52, 69, 1) 0%, rgba(255, 51, 78, 1) 100%);
    z-index: -1;
}

.our-portfolio .showed-content {
    top: 0px;
    position: relative;
    z-index: 3;
    background-color: var(--white-color);
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.our-portfolio .showed-content i {
    font-size: 50px;
}

.our-portfolio .item:hover .hidden-content {
    top: -100px;
    opacity: 1;
    visibility: visible;
}

.our-portfolio .item:hover .showed-content {
    top: 90px;
}

/* Footer */
.footer p {
    color: var(--p-color);
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
}

.footer p {
    margin: 0 0 10px;
}

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 120px 0;
    padding-bottom: 80px;
}

footer h2 {
    font-size: 20px;
}

.footer-info,
footer .social-icon {
    margin-top: 20px;
}

footer .section-title {
    padding-bottom: 10px;
}

.section-title h2 {
    margin: 0;
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
}

footer address p {
    margin-bottom: 0;
}

footer a,
footer p {
    color:var(--highlight-color);
}

.footer-open-hour {
    background: var(--highlight-color);
    background: url(https://templatemo.com/templates/templatemo_515_eatery/images/footer-open-hour-bg.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-top: 0;
    padding: 40px 0 40px 80px;
    overflow: hidden;
    position: relative;
    z-index: 22;
    right: 20px;
    bottom: 20px;
}

.footer-open-hour::after {
    background: rgba(29, 29, 29, 0.85);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2222;
}

.footer-open-hour h2 {
    color: var(--white-color);
}

.footer-open-hour p {
    color: #d9d9d9;
}

.footer-open-hour strong {
    color: #f9f9f9;
}

.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
}

.social-icon li {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
}

.social-icon li a {
    border-radius: 100px;
    color: #0071f8;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.social-icon li a:hover {
    background: #0071f8;
    color: #ffffff;
}

/* Map */
.map-iframe {
    display: block;
    filter: grayscale(100);
}

.google-map .section-heading h2 {
    text-align: center;
    margin: 60px 90px 0px 90px;
    margin-bottom: 90px;
    position: relative;
    z-index: 1;
}

/* Product */
.our_product .section-heading h2 {
    text-align: center;
    margin: 0px 90px 0px 90px;
    margin-bottom: 90px;
    position: relative;
    z-index: 1;
}

.our_product.section-padding {
    padding-bottom: 60px;
}

.our_product .speakers-thumb {
    position: relative;
}

.our_product .speakers-thumb-small {
    margin-top: 32px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.our_product .speakers-image {
    width: 100%;
}

.our_product .speakers-info {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 20px;
    padding: 10px 15px;
}

.our_product .speakers-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    width: 5px;
    height: 100%;
    transition: all 1s;
}

.our_product .speakers-title,
.our_product .speakers-text {
    position: relative;
}

.our_product .speakers-text {
    font-size: 12px;
    text-transform: uppercase;
}

.our_product .social-icon {
    margin: 0;
    padding: 0;
}

.our_product .speakers-thumb .social-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 15px;
}

.our_product .speakers-thumb .social-icon {
    opacity: 0;
    transition: opacity all 1s;
}

.our_product ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

.our_product .social-icon li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.our_product .social-icon-link {
    background: var(--white-color);
    border-radius: 100px;
    font-size: var(--p-font-size);
    color: var(--dark-color);
    display: inline-block;
    vertical-align: top;
    margin: 2px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.our_product .speakers-thumb:hover .speakers-info::before {
    background: var(--primary-color);
    width: 100%;
    padding: 15px;
}

.our_product .speakers-thumb:hover .speakers-title,
.our_product .speakers-thumb:hover .speakers-text {
    color: var(--white-color);
}

.our_product .speakers-thumb:hover .social-icon {
    opacity: 1;
    transition-delay: 1s;
}

