/*==================== BANNER MEDIA QUERRY =========================*/
@media(min-width: 2560px) {
    .mobile {
        display: none;
    }
}

@media(min-width: 1440px) {
    .mobile {
        display: none;
    }
}

@media(min-width: 1024px) {
    .mobile {
        display: none;
    }
}

@media(min-width: 768px) {
    .mobile {
        display: none;
    }
}

@media(max-width: 576px) {
    .desktop {
        display: none
    }
}

@media (max-width: 425px) {
    .desktop {
        display: none
    }
}

@media (max-width: 375px) {
    .desktop {
        display: none
    }
}

@media (max-width: 320px) {
    .desktop {
        display: none
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
    /*font-family: 'Domine', serif;*/
}

/*---------------*/




/*=========*/
.blink {
    -webkit-animation: 2s linear infinite condemned_blink_effect;
    /* for Safari 4.0 - 8.0 */
    animation: 2s linear infinite condemned_blink_effect;
}

/* for Safari 4.0 - 8.0 */
@-webkit-keyframes condemned_blink_effect {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

@keyframes condemned_blink_effect {
    0% {
        visibility: hidden;
        color: #304935;
    }

    50% {
        visibility: hidden;
        color: red;
    }

    100% {
        visibility: visible;
        color: #304935;
    }
}

.bg-light {
    background-color: #ffffff !important;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: rgb(239 127 27);
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 0px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgb(0, 0, 0);
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    background: #304935;
    opacity: 0;
}

.team .team-social a:hover {
    color: #343148;
    background: #F7CAC9;
}


.team .team-item:hover .team-social {
    background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 25px 15px 10px 15px;
    text-align: center;
    background: #ffffff;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 600;
}

.team .team-text p {
    margin: 0;
}

.zoom {
    transition: transform .2s;
}

.zoom:hover {
    -ms-transform: scale(1.4);
    /* IE 9 */
    -webkit-transform: scale(1.4);
    /* Safari 3-8 */
    transform: scale(1.1);
}

.food {
    position: relative;
    width: 100%;
    padding: 16px 0 0 px 0;
    padding-top: 20px;
    padding-bottom: 20px;
    /*background: rgb(184 198 249);*/
    background: url(../images/img/bnr-aloha.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.food .food-item {
    position: relative;
    width: 100%;
    margin-bottom: 37px;
    padding: 21px;
    text-align: center;
    background: radial-gradient(#ffffff, #0000006e);
    border-radius: 15px;
    box-shadow: 0 0 13px rgb(48 73 53);
    transition: .3s;
    border: 1px solid #ffffff;
}

.food .food-item:hover {
    box-shadow: none;
    background: #ef7f1b38;
    color: black;
    border: 1px solid #ef7f1b;
}

.food .food-item i {
    /* position: relative;*/
    display: inline-block;
    color: #fbaf32;
    font-size: 60px;
    /* line-height: 60px;*/
    margin-bottom: 20px;
    transition: .3s;
}

.food .food-item:hover i {
    color: #719a0a;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgb(255 212 212);
}

.food .food-item i::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -20px;
    left: -15px;
    /*border: 3px dotted #fbaf32;
    border-right: transparent;
    border-bottom: transparent;
    border-radius: 100px;*/
    transition: .3s;
}

.food .food-item:hover i::after {
    border: 1px dotted #719a0a;
    border-right: transparent;
    border-bottom: transparent;
}

.food .food-item h2 {
    font-size: 30px;
    font-weight: 700;
}

.food .food-item a {
    position: relative;
    font-size: 16px;
}

.food .food-item a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 25px);
    background: #fbaf32;
    transition: .3s;
}

.food .food-item a:hover::after {
    width: 100%;
    left: 0;
    background: #719a0a;
}

/*******************************/
/******* Testimonial CSS *******/
/*******************************/

.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .container {
    padding: 0;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img {
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img {
    margin: 0 auto;
    width: 120px;
    padding: 13px;
    border-radius: 100px;
    border: 1px solid rgb(75 0 255);
    background: #b8c6f9;
    transition: .5s;
}

.testimonial .testimonial-text {

    position: relative;
    margin-top: -70px;
    padding: 75px 25px 25px 25px;
    text-align: center;
    background: #ff000040;
    border: 1px solid rgb(255 255 255);

}

.testimonial .testimonial-item p {
    font-size: 16px;
    color: #666666;
}

.testimonial .testimonial-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial .testimonial-text h4 {
    color: #666666;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial .owl-item.center img {
    border-color: transparent;
}

.testimonial .owl-item.center .testimonial-text {
    background: rgb(0 0 0 / 90%);
}

.testimonial .owl-item.center .testimonial-text h3 {
    color: #F7CAC9;
}

.testimonial .owl-item.center .testimonial-text p,
.testimonial .owl-item.center .testimonial-text h4 {
    color: #ffffff;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(184 198 249);
}

.testimonial .owl-dot.active {
    background: #304935;
}

.top-strip {
    width: 100%;
    height: auto;
    padding: 7px 0;
    background: #dc0c10;
    color: #ffffff;
    text-align: center;
}

.desktop-logo {
    width: 100%;
    height: auto;
    padding: 10px 0;
    background: #efefef;
    text-align: center;
}

/*.navbar-brand span{
	display:none;
}*/
.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    color: #ffffff;
}

.banner-bottom {
    width: 100%;
    height: auto;
    padding: 80px 0;

}

.banner-bottom p {
    text-align: justify;
    margin-top: 20px;
}

.service {
    width: 100%: height:auto;
    background: url("../images/service-backgd.webp") no-repeat center/cover fixed;
}

.overlay {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgb(255 255 255 / 0%);
}

.services {
    width: 100%;
    background: #ffffff00;
    height: auto;
    border-radius: 5px;
    text-align: center;
}

.services h2 {
    margin-top: 20px;
}

.service-type:hover {
    -ms-transform: scale(1.4);
    /* IE 9 */
    -webkit-transform: scale(1.4);
    /* Safari 3-8 */
    transform: scale(1.1);
}

.service-type {
    width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 5px;
    padding: 6px;
    transition: transform .2s;
    border: 2px solid #dc0c10;
    background: rgb(0 0 0 / 11%);
}

.service-type i {
    font-size: 60px;
    margin-top: 20px;
}

.service-type p {
    margin-top: 20px;
    /*font-weight: bold;
	font-size: 22px;*/
}

.faq {
    margin-top: 40px;
    margin-bottom: 40px;
}

/*.testimonial{
	width:100%;
	height:auto;
	background: #e0e0e0;
	padding: 80px 0;
	text-align: center;
	color:#000;
}
.testimonial img{
	width:150px;
	height: 150px;
	border-radius: 50%;
	margin:15px auto;
	padding: 10px;
	border:1px dashed #000;
}
.testimonial p{
	padding: 0 180px;
	margin-top: 30px;
}*/
.footer {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: rgb(0 0 0);
    color: #fff;
}

.footer ul li {
    list-style: none;
}

.footer ul li a {
    color: #fff;
}

.copyrights {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: #dc0c10;
    color: #fff;
    text-align: center;
}



.pages {
    width: 100%: height:auto;
    padding: 40px 0;
    background: #ffffff;
}

.map iframe {
    height: 200px;
}

/*#contact{
	background: url("../images/contactus.jpg") no-repeat center/cover fixed;
}*/
.contactus {
    padding: 30px;
    border-radius: 5px;
    color: black;
    border: 2px solid #dc0c10;
    background: rgb(0 0 0 / 11%);
}

.hr-color {
    border-color: #304935;
}

#contact h4 {
    margin-top: 15px;
}

#contact input {
    width: 100%;
    height: 50px;
    padding: 15px 10px;
    margin-top: 20px;
}

#contact textarea {
    width: 100%;
    height: 63px;
    padding: 15px 10px;
    margin-top: 17px;
}

#contact button {
    width: 100%;
    height: 50px;
    padding: 10px 10px;
    margin-top: 15px;
}

.career-form {
    width: 80%;
    height: auto;
    margin: 0 auto;

    padding: 15px;
    border-radius: 5px;
    border: 2px solid #dc0c10;
    background: rgb(0 0 0 / 11%);

}

.career-form h3 {
    text-align: center;
    margin: 10px 0;
}

.career-form label {
    margin-bottom: 0;
    margin-top: 10px;
}

/*#career{
	background: url("../images/career.jpg") no-repeat center/cover fixed;
}*/
#service {
    text-align: justify;
}

#service span {
    font-weight: bold;
    margin-bottom: 15px !important;
}

#about {
    text-align: justify;
}

.gallery-picture {
    width: 100%;
    height: auto;
    text-align: center;
}

.gallery-picture img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border: 2px solid #00000040;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 13px 1px #00000042;
}

/*#gallery{
	background: url("../images/gallerybg.jpg") no-repeat center/cover fixed;
}
#gallery h2{
	color:#fff;
}*/




/*-------------------------------- FAQS----------------------- */

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #304935;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #000000;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #304935;
    font-weight: 600;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: #304935;
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 12em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

/* ------------------------------------ FAQS --------------------------------- */

@media(max-width:1920px) {
    nav .navbar-brand {
        width: 13%;
    }
}









@media(max-width: 768px) {
    .desktop-logo {
        display: none;
    }

    .navbar-brand span {
        display: block;
    }

    .testimonial p {
        padding: 0 100px;
    }
}

@media(max-width: 576px) {
    nav .navbar-brand {
        width: 20%;
    }

    .services h2 {
        font-size: 22px;
    }

    .service-type p {
        font-size: 17px;
    }

    .banner-bottom {
        padding: 30px 0;
    }

    .banner-bottom h2 {
        font-size: 22px;
        font-weight: bold;
        text-align: center;
    }

    .adj-btn {
        text-align: center;
    }

    .testimonial {
        padding: 30px 0;
    }

    .testimonial h2 {
        font-size: 22px;
        font-weight: bold;
    }

    .testimonial p {
        padding: 0 30px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer h3 {
        text-align: center;
        margin-top: 15px;
        font-size: 23px;
    }

    .pages {
        padding: 30px 0;
    }

    .pages h2 {
        font-size: 21px;
        text-align: center;
        font-weight: bold;
    }

    .career-form {
        width: 100%;
    }

    .career-form h3 {
        font-size: 20px;
        font-weight: bold;
    }

    .career-btn {
        display: block;
        width: 100%;
        margin-top: 25px;
    }

    #contact h4 {
        text-align: center;
        font-size: 21px;
    }
}

.navbar-light .navbar-toggler {
    color: rgb(255 255 255);
    border-color: rgb(255 255 255);
}

@media(max-width: 375px) {
    .navbar-light .navbar-brand {
        width: 25%;
    }

    .navbar-brand span {
        font-size: 17px;
        font-weight: bold;
    }

    .testimonial p {
        padding: 0 10px;
    }

    .footer h3 {
        font-size: 21px;
    }
}

@media(max-width: 320px) {
    .navbar-brand span {
        font-size: 14px;
    }

    .banner-bottom h2 {
        font-size: 18px;
    }
}

@media (max-width: 2560px) {
    .uiuiu {
        position: absolute;
        margin-top: -896px;
        margin-left: 151px;
        width: 72%;
        z-index: -1;
    }

    .ppp {
        margin-bottom: 210px;
    }

    .ui {
        position: absolute;
        margin-top: -571px;
        margin-left: 737px;
    }

    .ui h1 {
        margin-bottom: 25px;
    }

    .ui h4 {
        margin-bottom: 25px;
    }

    .ui p {
        font-size: 24px;
    }
}

@media (max-width: 1920px) {
    .uiuiu {
        position: absolute;
        margin-top: -872px;
        margin-left: -70px;
        width: 92%;
        z-index: -1;
    }

    .ppp {
        margin-bottom: 190px;
    }

    .ui {
        position: absolute;
        margin-top: -584px;
        margin-left: 421px;
    }

    .ui p {
        font-size: 24px;
    }
  
}

@media (max-width: 1440px) {
    .uiuiu {
        position: absolute;
        margin-top: -814px;
        margin-left: -70px;
        width: 106%;
        z-index: -1;
    }

    .ppp {
        margin-bottom: 190px;
    }

    .ui {
        position: absolute;
        margin-top: -570px;
        margin-left: 188px;
    }

    .ui h1 {
        font-size: 38px;
    }

    .ui p {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .uiuiu {
        position: absolute;
        margin-top: -851px;
        margin-left: -467px;
        width: 159%;
        z-index: -1;
    }

    .ppp {
        margin-bottom: 190px;
    }

    .ui {
        position: absolute;
        margin-top: -633px;
        margin-left: 67px;
    }

    .ui h1 {
        font-size: 28px;


    }

    .ui h4 {
        font-size: 20px;
    }

    .ui p {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .uiuiu {
        display: none;
    }

    .ppp {
        margin-bottom: 50px;
    }

    .ui {
        position: absolute;
        margin-top: -707px;
        margin-left: 40px;
    }

    .ui h1 {
        font-size: 20px;


    }

    .ui h4 {
        font-size: 16px;
    }

    .ui p {
        font-size: 14px;
    }
}

@media (max-width: 563px) {
    .uiuiu {
        display: none;
    }

    .ppp {
        margin-bottom: 50px;
    }

    .ui {
        position: absolute;
        margin-top: -1090px;
        margin-left: 37px;
    }

    .ui h1 {
        font-size: 24px;


    }

    .ui h4 {
        font-size: 19px;
    }

    .ui p {
        font-size: 15px;
        padding-right: 190px;

    }
   
}
@media (max-width: 563px) {
    .uiuiu {
        display: none;
    }

    .ppp {
        margin-bottom: 50px;
    }

    .ui {
        position: absolute;
        margin-top: -1045px;
        margin-left: 37px;
    }

    .ui h1 {
        font-size: 20px;


    }

    .ui h4 {
        font-size: 17px;
    }

    .ui p {
        font-size: 15px;
        padding-right: 190px;

    }
   
}
@media (max-width: 375px) {
    .uiuiu {
        display: none;
    }

    .ppp {
        margin-bottom: 50px;
    }

    .ui {
        position: absolute;
        margin-top: -1058px;
        margin-left: 37px;
    }

    .ui h1 {
        font-size: 20px;


    }

    .ui h4 {
        font-size: 15px;
    }

    .ui p {
        font-size: 15px;
        padding-right: 95px;

    }
   
}