@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --red: #bf3214;
    --yellow: #cab62a;
    --black: #270505;
    --white: #ffffff;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

body {
    font-family: 'bootstrap-icons';
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p {
    font-size: 19px;
}

/***************************** Food Arena start  *****************************/

#food_arena .food_arena-end {
    background: linear-gradient(rgb(203 27 27), rgb(208 177 17)), center center no-repeat;
    background-size: cover;
    padding: 32px;
}

#food_arena h3 {
    color: var(--yellow);
    margin-bottom: 32px;
}

#food_arena p {
    color: var(--white);
}

@media (min-width: 992px) {

    #food_arena .food_arena-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

/***************************** Food Arena End  *****************************/

/***************************** Varenyas Caterers start  *****************************/
#varenyas_catters {
    background: linear-gradient(rgba(255, 255, 172, 0.826), rgb(216 215 197 / 70%)), url(../image/varenyas_building.jpg) center center no-repeat;
    background-size: cover;
}

#varenyas_catters h1 {
    color: var(--red);
    margin-bottom: 20px;
}

.varenyas_catters-color {
    width: 250px;
    height: 150px;
    background: var(--red);
    position: absolute;
    box-shadow: 2px 3px 20px 3px;
    /* right: 111px; */
}

@media(max-width:768px) {
    .varenyas_catters-color {

        width: 230px;
        height: 200px;

    }
}

.varenyas_catters-image {
    padding: 20px;
    position: relative;
}

.varenyas_catters-image img {
    box-shadow: 2px 2px 20px 3px var(--dark);
}

/***************************** Varenyas Caterers End  *****************************/


/* **************************Reservation START************************** */

.reservation-form {
    border: 2px solid var(--red);
    box-shadow: var(--box-shadow);
    border-radius: 16px;
}

.reservation-form h3 {
    color: var(--black);
}

.reservation-form input,
.reservation-form textarea {
    border: 1px solid var(--yellow);
}

/* **************************Reservation END************************** */


/* **************************SECTION HEADING START************************** */

.section-title {
    text-align: center;
    /* padding-bottom: 20px; */
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--red);
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: var(--red);
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 4px;
    background: var(--red);
    bottom: 0;
    left: calc(50% - 20px);
}

/* **************************SECTION HEADING END************************** */


/* **************************CUSTOM BUTTON START************************** */

.custom-btn {
    width: 8.125rem;
    height: 2.5rem;
    color: var(--white);
    border-radius: 5px;
    padding: 0.625em 1.5em;
    font-family: inherit;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    /* // transition: all 3000ms ease; */
    position: relative;
    display: inline-block;
    /* // box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), */
    /* //   7px 7px 20px 0px rgba(0, 0, 0, .1), */
    /* //   4px 4px 5px 0px rgba(0, 0, 0, .1); */
    /* // outline: none; */
    border: none;
}

/* 7 */
.btn-7 {
    background: linear-gradient(0deg, var(--red) 0%, var(--black) 100%);
    line-height: 42px;
    padding: 0;
    border: none;
}

.btn-7 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.btn-7:before,
.btn-7:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: var(--red);
    box-shadow:
        -7px -7px 20px 0px rgba(255, 255, 255, .9),
        -4px -4px 5px 0px rgba(255, 255, 255, .9),
        7px 7px 20px 0px rgba(0, 0, 0, .2),
        4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all 0.3s ease;
}

.btn-7:before {
    height: 0%;
    width: 2px;
}

.btn-7:after {
    width: 0%;
    height: 2px;
}

.btn-7:hover {
    color: var(--red);
    background: transparent;
}

.btn-7:hover:before {
    height: 100%;
}

.btn-7:hover:after {
    width: 100%;
}

.btn-7 span:before,
.btn-7 span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: var(--red);
    box-shadow:
        -7px -7px 20px 0px rgba(255, 255, 255, .9),
        -4px -4px 5px 0px rgba(255, 255, 255, .9),
        7px 7px 20px 0px rgba(0, 0, 0, .2),
        4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all 0.3s ease;
}

.btn-7 span:before {
    width: 2px;
    height: 0%;
}

.btn-7 span:after {
    height: 2px;
    width: 0%;
}

.btn-7 span:hover:before {
    height: 100%;
}

.btn-7 span:hover:after {
    width: 100%;
}

/* **************************CUSTOM BUTTON END************************** */


/* **************************NAVBAR START************************** */

/* .top-header {
    background: var(--red) !important;
}

.top-header a {
    color: var(--white);
    font-size: 16px;
}

.top-header a:hover {
    color: var(--yellow) !important;
    transition: .5s linear;
} */

.social_icon a i {
    background-color: var(--white);
    padding: 4px;
    border-radius: 8px;
}

.social_icon a i:hover {
    rotate: 45deg;
    transition: .2s linear;
}

.social_icon a:nth-child(1) i {
    color: #1877f2;
}

.social_icon a:nth-child(2) i {
    color: #bc2e90;
}

.social_icon a:nth-child(3) i {
    color: #1ad03f;
}

.social_icon a:nth-child(4) i {
    color: #1d9bf0;
}

.navbar {
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    padding: 5px 25px;
    height: 80px;
}

.navbar-brand img {
    height: 56px;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--red);
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--red);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: var(--black) !important;
    font-weight: 500;
    transition: all 200ms linear;
    font-size: 18px;
}

.nav-link:hover {
    color: var(--yellow) !important;
}

.nav-item.active {
    color: var(--red) !important;
    background-color: rgb(241 207 84 / 56%) !important;
    /* padding: 3px 18px !important; */
    border-radius: 10px;
}

.nav-item.active .nav-link {
    color: var(--red) !important;
}

.nav-link {
    position: relative;
    margin: 5px 16px;
    display: inline-block;
}

.navbar .button-52 {
    border: 2px solid var(--yellow);
    color: var(--white);
    padding: 8px 20px 8px;
    margin-left: 10px;
}

@media screen and (max-width: 840px) {
    .navbar {
        display: block;
    }

    .nav-link {
        color: var(--yellow) !important;
    }

    .navbar-toggler {
        margin-top: 20px;
    }

    .nav-item {
        margin: 10px 40px;
    }

    .navbar-collapse {
        position: absolute;
        background: #270505f0;
        height: 100vh;
        width: 232px;
        left: -240px;
        top: 80px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-bottom: 10px;
        transition: .3s linear;
    }

    .navbar-collapse.show {
        top: 80px;
        left: 0px;
    }

    .nav-item.active {
        background: transparent !important;
    }

    /* .navbar .button-52 {
        width: 34%;
        margin-left: 26px;
    } */
}

@media (min-width: 750px) and (max-width: 860px) {
    /* .navbar .button-52 {
        width: 20%;
        margin-left: 510px;
        margin-top: -56px;
    } */
}

@media (min-width: 100px) and (max-width: 400px) {
    /* .navbar .button-52 {
        width: 30%;
        margin-left: 175px;
        margin-top: -88px;
        font-size: 10px;
    } */

    .navbar-brand img {
        height: 48px;
    }
}

/* **************************NAVBAR END************************** */
.modal-body {
    text-align: center;
}

/* **************************Footer START************************** */

#footer {
    background: var(--red);
}

#footer h5 {
    color: var(--yellow);
}

#footer li {
    list-style: none;
}

#footer li a {
    text-decoration: none;
    color: rgb(231, 231, 231);
}

#footer .adress li {
    margin-bottom: 10px;
}

#footer .adress a:hover {
    color: var(--yellow);
    transition: 0.3s ease-in-out;
}

#footer .adress i {
    color: var(--yellow);
}

#footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgb(231, 231, 231);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

#footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

#footer .btn.btn-link:hover {
    color: var(--yellow);
    letter-spacing: 1px;
    box-shadow: none;
}

#footer .btn-sign {
    background: var(--red);
    color: var(--white);
    margin-left: 5px;
}

#footer input {
    border: 2px solid var(--red);
    color: var(--red);
}

.footer-bottom {
    background: var(--red);
    color: var(--white);
    border-top: 2px solid var(--yellow);
}

.footer-bottom a {
    color: var(--black);
}


/* **************************Footer END************************** */


/* **************************ABOUT START************************** */

#about {
    overflow: hidden;
}

#about .color {
    width: 250px;
    height: 150px;
    background: var(--red);
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#about .image {
    padding: 30px;
    position: relative;
}

#about .image img {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

#about h3 {
    color: var(--black);
}

#about h1 {
    color: var(--red);
}

#about h3 i {
    color: var(--red);
    font-size: 48px;
    text-shadow: 1px 2px 6px var(--black);
}

.about .about-img {
    position: relative;
    transition: 0.5s;
    width: 90%;
}

.about .about-img img {
    max-width: 100%;
    border: 4px solid var(--yellow);
    position: relative;
}

.about .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid var(--red);
    border-top: 5px solid var(--red);
    transition: 0.5s;
}

.about .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid var(--red);
    border-bottom: 5px solid var(--red);
    transition: 0.5s;
}

.about .about-img:hover {
    transform: scale(1.03);
}

.about .about-img:hover::before {
    left: 10px;
    top: 10px;
}

.about .about-img:hover::after {
    right: 10px;
    bottom: 10px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: var(--black);
}

#about-section .content-column h3{
    color: var(--black);
}
#about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

#about-section .image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
    /* margin-left: 50px; */
}

#about-section .image-column .inner-column:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 40px;
    bottom: 100px;
    z-index: -1;
    border: 4px solid var(--yellow);
    box-shadow: var(--box-shadow);
}

#about-section .image-column .inner-column .image {
    position: relative;
}

#about-section .image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 160px;
    height: 160px;
    background: url(img/pattern-2.png) no-repeat;
}

#about-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    height: 360px;
    display: block;
    box-shadow: var(--box-shadow);
}

.btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
    text-decoration: none;
}

.btn-style-three:hover {
    color: var(--white);
    background: var(--red);
    text-decoration: none;
}

.btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid var(--red);
    font-family: 'Arimo', sans-serif;
    text-decoration: none;
    margin-bottom: 32px;
}

/* .sec-title2 {
    color: #fff;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

.sec-title .title {
    position: relative;
    color: var(--red);
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}

.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
} */

/* .button-52 {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 2px solid var(--yellow);
    color: var(--white);
    cursor: pointer;
    position: relative;
    background-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-52:after {
    content: "";
    background-color: var(--red);
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}

.button-52:hover {
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.button-52:hover:after {
    top: 0px;
    left: 0px;
} */


/* **************************ABOUT END************************** */

/* **************************COUNTER START************************** */

/* .counter {
    font-family: 'Open Sans', sans-serif;
    color: #000;
    background: var(--red);
    text-align: center;
    width: 190px !important;
    height: 204px;
    padding: 25px 30px 10px;
    margin: 0 auto;
    border-radius: 30px 0;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.counter:before {
    content: "";
    background: #ffffff;
    border-radius: 15px 0 30px 0;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 27px;
    z-index: -1;
}

.counter .counter-icon {
    font-size: 35px;
    margin: 0 0 10px;
    transform: rotateX(0deg);
    transition: all 0.3s ease 0s;
    color: var(--black);
}

.counter:hover .counter-icon {
    transform: rotateX(360deg);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.counter h3 {
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.counter .counter-value {
    color: #fff;
    background: var(--red);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    line-height: 60px;
    width: 110%;
    height: 50px;
    padding: 0 15px;
    margin: 0 0 0 -20px;
    display: block;
}

@media (max-width:820px) {

    .counter {
        width: 160px !important;
        margin-top: 20px;
        margin-bottom: 20px;
    }
} */

/* **************************COUNTER END************************** */


/* **************************WHY CHOOSE US START************************** */

#home-contact .box {
    border: 2px dotted var(--red);
    box-shadow: var(--box-shadow);
}

#home-contact .box i {
    font-size: 46px;
    color: var(--black);
    margin-bottom: 16px;
}

#home-contact .box h4 {
    color: var(--red);
}

#home-contact .box a,
#home-contact .box p {
    color: var(--black);
    font-size: 19px;
}

/* **************************WHY CHOOSE US END************************** */

/* **************************MENU START************************** */

.menu_img {
    height: 150px;
    width: 100%;
    border-radius: 0px 70px 70px 0px;
}

.text_color {
    color: var(--red);
}

.menu_card {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.menu .menu-img {
    width: 70px;
    border-radius: 50%;
    float: left;
    border: 5px solid var(--yellow);
}

.menu .menu-content {
    margin-left: 85px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.menu .menu-content::after {
    position: absolute;
    left: 20px;
    right: 0;
    top: -4px;
    z-index: 1;
    color: #bab3a6;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
    padding-right: 10px;
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: var(--black);
    transition: 0.3s;
}

.menu .menu-content a:hover {
    color: var(--red);
}

.menu .menu-content span {
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
    color: var(--red);
}

.menu .menu-ingredients {
    margin-left: 85px;
    font-style: italic;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #aaaaaa;
}

.f_right {
    float: right;
}

.menu_card_text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.menu_card_text h3 {
    margin-bottom: 16px;
    text-align: center;
}

/* **************************MENU END************************** */

/* **************************News Letter START************************** */
#news-letter {
    background: linear-gradient(rgb(126 0 0 / 92%), rgb(255 216 14 / 89%)), url(/image/varenyas_building.jpg);
    background-attachment: fixed;
    background-size: cover;
}

#news-letter h1 {
    color: var(--white);
    margin-bottom: 32px;
}

.btn-news-letter {
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    font-size: 18px;
}

.btn-news-letter:hover {
    background: var(--yellow);
}

/* **************************News Letter END************************** */


/* **************************TESTIMONIALS START************************** */

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: var(--black);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: var(--red);
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .fa-quote-left,
.testimonials .testimonial-item .fa-quote-right {
    color: var(--yellow) !important;
    font-size: 26px;
}

.testimonials .testimonial-item .fa-quote-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .fa-quote-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: var(--red);
    color: var(--white);
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    height: 250px;
}

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(167, 43, 43, 0.348);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--red);
}

/* **************************TESTIMONIALS END************************** */


/* **************************GALLERY START************************** */

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #454035;
    border-bottom: 3px solid #454035;
    margin-bottom: 20px;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/* **************************GALLERY END************************** */


/* **************************CONTACT START************************** */

.contact .info {
    width: 100%;
}

.contact .info i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--yellow) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #807f7d;
    text-decoration: none;
}

.contact .info a {
    font-size: 14px;
    color: #807f7d;
    text-decoration: none;
    margin-left: 16px;
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
    margin-top: 30px;
}

.contact .form-control {
    border: 1px solid var(--red);
    resize: none;
}


/* **************************CONTACT END************************** */


/* **************************SERVICES START************************** */
#services {
    overflow-x: hidden;
}

.services-box {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    margin-bottom: 25px;
    border: 1px solid var(--yellow);
}

#facility {
    overflow-x: hidden;
}

/* **************************SERVICES END************************** */
/* **************************FAQ START************************** */

.wrapper {
    background-color: rgb(241 207 84 / 56%);
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /* box-shadow: 0 15px 25px rgba(0, 0, 50, 0.2); */
}

.toggle,
.content {
    font-family: "Poppins", sans-serif;
}

.toggle {
    width: 100%;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    color: #111130;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 0;
    text-align: start;
}

.content {
    position: relative;
    font-size: 14px;
    /* text-align: justify; */
    line-height: 30px;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.faq_font {
    font-size: 16px;
}

@media (max-width:576px) {
    .service_img {
        /* height: 250px; */
        width: 100%;
    }

}


/* slider img */
.img_web_slider {
    height: 600px !important;
    width: 100% !important;
}

@media (max-width:576px) {
    .img_mobile_slider {
        height: 360px !important;
        width: 100% !important;
    }
}

@media (max-width:447px) {
    .img_mobile_slider {
        height: 232px !important;
        width: 100% !important;
    }
}