/* Custom CSS for CT Liquor Permit Consultant */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Colors */
    --btn-color: #F24C01;
    --bg-color: #c9450a;
    --white: #ffffff;
    --black: #000000;
    --border-color: #d3d3d3;
    --hover-color: #e5e5e5;
    --background-color: #FEF6F2;

    /* Typography */
    --font-noto-sans: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --section-padding: 72px;

    /* Transitions */
    --transition-base: 0.3s ease;
}

/* Base Styles */
body {
    font-family: var(--font-noto-sans);
    font-weight: var(--font-weight-light);
    line-height: 1.6;
    color: var(--black);
    padding-top: 0px;
}

/* Custom Scrollbar
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} */

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 7px 0;
    background-color: var(--btn-color);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    transform: translateY(0);
}

.phone::before {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    color: #c9450a;
}

.phone a {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 500 !important;
    color: #c9450a;
}

li#menu-item-29:hover .sub-menu {
    display: block;
}

li#menu-item-29 {
    position: relative;
}

ul.sub-menu li {
    display: block;
}

ul.sub-menu a {
    margin: 0 !important;
    display: block;
}

ul.sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    width: 230px;
    padding: 0px;
    left: 12px;
}

ul.sub-menu li {
    padding: 11px;
}

ul.sub-menu li a {
    padding: 11px;
    color: #000;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.hidden {
    transform: translateY(-100%);
}

.header .navbar {
    padding: 0;
}

.header .navbar-brand {
    margin: 0;
    padding: 0;
    color: var(--white);
    font-size: 30px;
    font-weight: var(--font-weight-bold);
}

.header .navbar-collapse {
    padding: 0;
}

.header .navbar-nav {
    padding: 0px;
    align-items: center;
}

.header .navbar-nav a {
    padding: 0;
}

.navbar-nav a {
    margin: 0;
    padding: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
}

.header .navbar-nav .nav-item a::after {
    display: none;
}

.phone {
        margin-left: 40px;
    color: #fff;
    padding: 12px 20px;
    border: 1px solid;
    border-radius: 1px;
    background: #ffffff;
}

.phone a {
    margin: 0 0 0 6px !important;
    text-decoration: none;
    color: #c9450a;
}

.btn:active {
    outline: unset;
    border: unset;
}

.header .navbar-nav .nav-item a:hover,
.header .navbar-nav .nav-item a.active {
    color: var(--hover-color);
}

.header .navbar-nav .nav-item a.tel i {
    margin-right: 10px;
    color: var(--white);
}

.header .navbar-nav .nav-item a .fa-chevron-down {
    font-size: 14px;
}

.header .navbar-nav .btn a {
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--bg-color);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: 1px;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.header .navbar-nav .nav-item a.btn:hover {
    background-color: var(--hover-color);
}

.header .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    border-radius: 0;
}

.header .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.header .navbar-nav .nav-item .dropdown-menu li:last-child {
    border-bottom: none;
}

.header .navbar-nav .nav-item .dropdown-menu li a {
    padding: 7px 10px;
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    color: var(--black);
}

ul#menu-primary-menu li {
    margin-left: 42px;
    border: unset !important;
}

ul#menu-primary-menu li:focus {
    outline: none !important;
    border: unset;
}

ul li * {
    outline: none !important;
    border: unset !important;
}

/* Hero Section */
.hero-section {
    margin-top: 0;
}

.hero-section .carousel-item {
    position: relative;
    height: 750px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.72);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-section .carousel-caption {
    position: static;
    text-align: center;
    padding: 0;
}

.hero-section h1 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 58px;
    font-weight: var(--font-weight-bold);
}

.hero-section p {
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
}

.hero-section .btn {
    display: block;
    max-width: 150px;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: var(--btn-color);
    color: var(--white);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: 1px;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.hero-section .btn:hover {
    background-color: var(--bg-color);
}

.hero-section .carousel-indicators {
    z-index: 2;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 2;
}

/* About Section */
.about-us {
    padding: var(--section-padding) 0;
    /* background: var(--background-color); */
}

.main-about {
    background: var(--background-color);
}

.about-us figure {
    position: relative;
    margin: 0 10%;
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
}

.about-us figure figcaption {
    position: absolute;
    top: 48%;
    left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 168px;
    height: 168px;
    background-color: var(--btn-color);
    color: var(--white);
    font-size: 20px;
    font-weight: var(--font-weight-regular);
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-us figure figcaption strong {
    margin-bottom: 5px;
    font-size: 42px;
    font-weight: var(--font-weight-semibold);
}

.about-us h3 {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    color: var(--btn-color);
}

.about-us ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.about-us ul li {
    position: relative;
    width: 48%;
    padding-left: 20px;
    margin-bottom: 8px;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
}

.about-us ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--btn-color);
    ;
}

.about-us p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
}

.about-us .btn {
    margin-top: 20px;
    padding: 10px 25px;
    background-color: var(--btn-color);
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    border-radius: 1px;
}

.about-us .btn:hover {
    background-color: var(--bg-color);
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--background-color);
    text-align: center;
}

.services h2 {
    text-align: center;
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 52px;
    color: var(--black);
}

.services .container:not(:last-child) {
    margin-bottom: 72px;
}

.services .row-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services .col-wrap {
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--btn-color);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.services .col-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services .col-wrap figure {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 312px;
    margin-bottom: 20px;
}

div#pagination-container button {
    background: unset;
    border: 1px solid #fd4c19;
    padding: 5px 16px;
}

div#pagination-container button.disabled {
    background: #fd4c19;
    opacity: 50%;
    color: #fff;
}

div#pagination-container button.active {
    background: #fd4c19;
    color: #fff;
}

.services .col-wrap h4 {
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
}

.services .col-wrap p {
    font-size: 16px;
    padding: 0 20px;
    font-weight: var(--font-weight-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.services .row-wrap .more-btn {
    margin-top: 30px;
    grid-column: 1 / -1;
    text-align: center;
}

.services .row-wrap .more-btn .btn {
    background-color: var(--btn-color);
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    border-radius: 1px;
    padding: 10px 25px;
}

.services .row-wrap .more-btn .btn:hover {
    background-color: var(--bg-color);
}

/* Serve Alcohol  */
.serve-alcohol {
    padding: var(--section-padding) 0;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.serve-alcohol h4 {
    color: var(--white);
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.serve-alcohol p {
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-weight-light);
    line-height: 1.6;
    margin: 0;
    padding: 0 20%;
}

.serve-alcohol .btn {
    background-color: var(--white);
    color: var(--btn-color);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    border-radius: 1px;
    padding: 10px 25px;
    margin-top: 30px;
}

.serve-alcohol .btn:hover {
    background-color: var(--hover-color);

}

/*  Client Logo Section  */
.client-logo {
    padding: var(--section-padding) 0;
    text-align: center;
}

.client-logo h2 {
    color: var(--btn-color);
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 50px;
}

.client-logo .logo-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.client-logo .logo-wrap .item {
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
}

.client-logo .logo-wrap .item figure {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    border-radius: 2px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.14);
    margin-bottom: 20px
}

.client-logo .logo-wrap a {
    text-decoration: none;
    color: var(--black);
}

.client-logo .logo-wrap h6 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 5px;
}

.client-logo .logo-wrap p {
    font-size: 16px;
    font-weight: var(--font-weight-light);
    margin: 0;
}

.client-logo .logo-wrap .more-btn {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.client-logo .logo-wrap .more-btn .btn {
    background-color: var(--btn-color);
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    border-radius: 1px;
    padding: 10px 30px;
}

.client-logo .logo-wrap .more-btn .btn:hover {
    background-color: var(--bg-color);
}

/* Testimonial Section */
.testimonial {
    padding: var(--section-padding) 0;
    background-color: var(--background-color);
}

.testimonial h2 {
    text-align: center;
    color: var(--btn-color);
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 52px;
}

.testimonial-slider {
    padding: 0 15px;
}

.testimonial-item {
    height: unset !important;
    padding: 30px;
    background-color: var(--white);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    color: var(--white);
}

.testimonial-author {
    text-align: left;
    flex-grow: 1;
}

.testimonial-author h5 {
    font-size: 17px;
    font-weight: var(--font-weight-regular);
    color: var(--black);
    line-height: 1;
    margin-bottom: 0;
}

.testimonial-author span {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    color: #666;
}

.google-icon {
    flex-shrink: 0;
}

.google-icon i {
    font-size: 24px;
    color: #4285F4;
}

.testimonial-item .rating {
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.testimonial-item .rating i {
    color: #FFB800;
    font-size: 15px;
    margin-right: 2px;
}

.testimonial-item p {
    font-size: 17px;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 0;
    text-align: left;
}

.testimonial-item a {
    color: var(--btn-color);
    font-weight: var(--font-weight-regular);
    display: block;
}

.testimonial-item a:hover {
    color: var(--bg-color);
}

.testimonial-slider .slick-dots {
    bottom: -50px;
}

.testimonial-slider .slick-dots li {
    margin: 0;
}

.testimonial-slider .slick-dots li.slick-active {
    margin-right: 16px;
}

.testimonial-slider .slick-dots li button {
    padding: 0;
    font-size: 0;
    width: 12px;
    height: 8px;
}

.testimonial-slider .slick-dots li button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 8px;
    background-color: #F24C01;
    opacity: 0.3;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    background-color: var(--btn-color);
    width: 27px;
    opacity: 1;
    transform: scale(1.1);
}

/* Faq Section */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--btn-color);
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 52px;
}

.faq-section .row-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.faq-section .row-wrap .col-wrap {
    width: 100%;
}

.faq-section figure {
    height: 610px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2px;
    margin: 0;
    margin-right: 35px;
}

.faq-section .accordion {
    border: none;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.18);
}

.faq-section .accordion-button {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--black);
    background-color: var(--white);
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--btn-color);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F24C01'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-body {
    padding: 10px 25px;
    font-size: 17px;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.map-section {
    text-align: center;
    height: 380px;
}

.map-section iframe {
    height: 100%;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #000;
    color: var(--white);
}

.footer-top {
    padding: var(--section-padding) 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column h4 {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: var(--font-weight-regular);
    transition: color var(--transition-base);
}

.footer-column ul li a:hover {
    color: var(--hover-color);
}

.footer-column ul li a i {
    margin-right: 8px;
    color: var(--btn-color);
}

.social-links {
    margin-top: 25px;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--btn-color);
    margin-right: 15px;
    font-size: 24px;
    transition: all var(--transition-base);
}

.social-links a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 120px 12px 15px;
    border: none;
    border-radius: 1px;
    font-size: 16px;
    outline: none;
    color: var(--white);
    background-color: rgba(242, 76, 1, 0.15);
}

.newsletter-form input::placeholder {
    color: var(--white);
    opacity: 1;
}

.newsletter-form button {
    position: absolute;
    right: 0;
    padding: 10px 15px;
    background-color: var(--btn-color);
    color: var(--white);
    border: none;
    border-radius: 0px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    background-color: var(--bg-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--white);
}

/********************************************************************* About Page Styles ***************************************************************/
.about-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 310px;
    text-align: center;
    position: relative;
}

.about-section::before {
    background: var(--black);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.about-section .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section h1 {
    color: var(--white);
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    z-index: 1;
}

/****************************************************************** application section style ************************************************/

.app_section {
    /* background: var(--background-color); */
    padding: var(--section-padding) 0;
}

.app_section h3 {
    text-align: center;
    color: #F24C01;
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 40px;
}

.app_section .app_boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.app_section .app_boxes .app_box {
    width: calc(100% / 3 - 27px);
    background-color: var(--white);
    border-bottom: 1px solid #F24C01;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.app_section .app_boxes .app_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app_section .app_boxes .app_box figure {
    height: 345px;
    width: 100%;
}

.app_section .app_boxes .app_box figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.app_section .app_boxes .app_box .app_ctnt {
    padding: 20px;
}

.app_section .app_boxes .app_box .app_ctnt h5 {
    text-align: center;
    color: var(--black);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
}

.app_section .app_boxes .app_box .app_ctnt p {
    text-align: center;
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
}

.app_section .more-btn {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

.app_section .more-btn .btn {
    background-color: var(--btn-color);
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    border-radius: 1px;
    padding: 10px 25px;
}

.app_section .more-btn .btn:hover {
    background-color: var(--bg-color);
}

/************************************************************** Thc sectin style ***************************************************************/

.thc_section {
    padding: var(--section-padding) 0;
}

.thc_section h3 {
    text-align: center;
    color: #F24C01;
    font-size: 40px;
    font-weight: var(--font-weight-bold);
}

.thc_section .img_ctnt {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-top: 40px;
}

.thc_section .img_ctnt figure,
.thc_section .img_ctnt .ctnt {
    width: 50%;
}

.thc_section .img_ctnt figure {
    width: 50%;
    height: 500px;
}

.thc_section .img_ctnt figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thc_section .img_ctnt .ctnt h5 {
    color: var(--black);
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
}

.thc_section .img_ctnt .ctnt ul {
    margin: 0;
    padding: 0;
}

.thc_section .img_ctnt .ctnt ul li {
    position: relative;
    color: var(--black);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    padding-left: 25px;
    list-style-type: none;
    margin-bottom: 10px;
}

.thc_section .img_ctnt .ctnt ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 8px;
    width: 16px;
    height: 15px;
    background-image: url("../images/tick.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

/************************************************************** Key sectin style ***************************************************************/

.key_section {
    padding: var(--section-padding) 0;
    background: var(--background-color);
}

.key_section .key_inner {
    max-width: 873px;
    margin: auto;
}

.key_section .key_inner .key_table {
    margin: 40px 0 30px;
}

.key_section .key_inner .key_table table,
.key_section .key_inner .key_table table th,
.key_section .key_inner .key_table table td {
    border: 1px solid #dddddd;
    background-color: var(--white);
}

.key_section .key_inner .key_table table th {
    text-align: center;
    padding: 10px;
    font-size: 22px;
    color: var(--black);
    font-weight: var(--font-weight-semibold);
}

.key_section .key_inner .key_table table td {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    color: var(--black);
    font-weight: var(--font-weight-regular);
}

.key_section .key_inner .key_table table td:first-child {
    min-width: 200px;
}

.key_section h3 {
    text-align: center;
    color: #F24C01;
    font-size: 40px;
    font-weight: var(--font-weight-bold);
}

.key_section ul {
    margin: 0;
    padding: 0;
}

.key_section ul li {
    position: relative;
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    padding-left: 25px;
    list-style-type: none;
    margin-bottom: 10px;
}

.key_section ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 8px;
    width: 16px;
    height: 15px;
    background-image: url("../images/tick.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

/********************************************************************** contact page style ********************************************************/
.contact_us .form_support {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact_us .contact_form h3 {
    color: #F24C01;
    font-size: 40px;
    font-weight: var(--font-weight-bold);
}

.contact_us .contact_form p {
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
}

.contact_us .contact_form {
    max-width: 650px;
}

.contact_us .contact_form form {
    margin-top: 20px;
}

.contact_us .contact_form form .form-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.contact_us .contact_form form input {
    height: 50px;
    border: 1px solid #dddddd;
    padding: 20px;
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    width: 50%;
}

.contact_us .contact_form form input::placeholder {
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    opacity: 0.7;
}

/* .contact_us .contact_form form .form-group select{
    height: 50px;
    border: 1px solid #dddddd;
    padding: 20px;
} */

.contact_us .custom-select {
    position: relative;
    display: inline-block;
    width: 50%;
}

.contact_us .custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 18px;
    color: var(--black);
    opacity: 0.7;
    border: 1px solid #dddddd;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    height: 50px;
}

/* Dropdown arrow */
.contact_us .custom-select::after {
    /* content: "▾"; */
    content: "";
    /* font-size: 14px; */
    color: #f36f21;
    /* orange arrow */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    background-image: url("../images/drop-arrow.svg");
    width: 11px;
    height: 6px;
    background-repeat: no-repeat;
    background-size: contain;
}

.contact_us button.btn {
    background-color: var(--btn-color);
    color: var(--white);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    border-radius: 1px;
    padding: 10px 25px;
    display: block;
    margin-top: 20px;
}

.contact_us button.btn:hover {
    background-color: var(--bg-color);
}

/* Focus and hover states */
/* .contact_us .custom-select select:hover,
.contact_us .custom-select select:focus {
  border-color: #f36f21;
} */


.contact_us .contact_form form textarea {
    height: 100px;
    border: 1px solid #dddddd;
    padding: 20px;
    width: 100%;
}

.contact_us .contact_form form textarea::placeholder {
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    opacity: 0.7;
}

.contact_us .contact_support {
    max-width: 600px;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.contact_us .contact_support::before {
    content: "";
    position: absolute;
    background: #E99F7D;
    width: 82%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}

.contact_us .contact_support ul {
    min-height: 450px;
    display: flex;
    align-items: start;
    justify-content: center;
    background-color: var(--white);
    flex-direction: column;
    gap: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    margin-right: 40px;
    position: relative;
}

.contact_us .contact_support ul::before {
    content: "";
    position: absolute;
    width: 89px;
    height: 76px;
    background-image: url("../images/triangle.svg");
    background-size: contain;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
}

.contact_us .contact_support ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact_us .contact_support ul li figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    background-color: #F5CCB9;
}

.contact_us .contact_support ul li h6 {
    color: var(--black);
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 5px;
}

.contact_us .contact_support ul li a {
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
}

/********************************************************************* permit page style ***********************************************************************************/

.off_premises {
    /* padding: var(--section-padding) 0; */
    background: var(--background-color);
}

.off_premises .permits_boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.off_premises .permits_boxes .permit_box {
    width: calc(100% / 4 - 19px);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.off_premises .permits_boxes .permit_box figure,
.off_premises .permits_boxes .permit_box figure img {
    width: 100%;
    height: 100%;
}

.permit_section p {
    color: var(--black);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
}

/******************************************************************************** 404 page style ***********************************************************/

.error_404{
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.error_404 .error_ctnt{
	display: flex;
	align-items: center;
	justify-content: center;
		flex-direction: column;
	gap: 20px;
}

.error_404 .error_ctnt h1{
	font-size: 80px;
	font-weight: 700;
	margin-bottom: unset;
		text-align: center;
}

.error_404 .error_ctnt h4{
	margin-bottom: unset;
	text-align: center;
}

.error_404 .error_ctnt p{
	text-align: center;
}

.error_404 .error_ctnt a{
	font-size: 18px;
	font-weight: 500;
	padding: 10px 25px;
	color: #ffffff;
	background: #f24c01;
  border: 1px solid #f24c01; 
	transition: 0.4s ease;
	border-radius: 4px;
	text-decoration: none;
}

.error_404 .error_ctnt a:hover{
	    background: #c9450a;
    color: #ffffff;
}

/********************************************************************************* responsive css *******************************************************************/

@media(min-width:1199px) {
    .permit_section .container {
        max-width: 1120px;
    }
}

@media(max-width:1399px) {
    .header .navbar-brand {
        font-size: 26px;
    }

    .header {
        min-height: 88px;
    }

    .footer-top .footer-column:nth-child(3) {
        min-width: 290px;
    }
}

@media(max-width:1024px){
    .hero-section .carousel-item {
    padding: 0 50px;
}

.carousel-caption p br{
    display: none;
}
}

@media (max-width: 991px) {
    .hero-section .carousel-item {
        height: 486px;
    }

    button.navbar-toggler {
        border: unset;
        padding: 0;
        font-size: 34px;
    }

    .testimonial {
        padding-bottom: 60px !important;
        padding-top: 49px !important;
        margin-top: 33px;
    }

    ul#menu-primary-menu li {
        display: block;
        width: 100%;
        padding: 14px 0;
        text-align: left;
    }

    ul#menu-primary-menu li a {
        margin: 0;
    }

    .phone {
        margin-left: 0;
        position: absolute;
        top: 20px;
        width: fit-content;
        right: 100px;
    }

    .client-logo .logo-wrap .item figure {
        height: 189px;
    }

    .client-logo h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .client-logo .logo-wrap h6 {
        font-size: 22px;
    }

    .testimonial h2 {
        margin-bottom: 34px;
        font-size: 32px;
    }

    .hero-section h1 {
        font-size: 45px;
    }

    .about-us figure {
        margin: 0;
    }

    .container {
        max-width: 97%;
    }

    .services .row-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .services h2 {
        margin-bottom: 42px;
    }

    .client-logo .logo-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-section figure {
        margin-right: 0;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    :root {

        /* Spacing */
        --section-padding: 30px;
    }

    .col-md-6 {
        width: 100%;
    }

    .about-us figure {
        height: 900px;
    }

    .ctnt {
        margin-top: 15px;
    }

    .thc_section .img_ctnt {
        flex-wrap: wrap;
        gap: 10px;
    }

    .thc_section .img_ctnt figure {
        width: 100%;
        height: 528px;
        margin: 0;
    }

    .thc_section .img_ctnt figure,
    .thc_section .img_ctnt .ctnt {
        width: 100%;
    }

    .ctnt {
        order: 1;
    }

    .thc_section h3 {
        font-size: 32px;
    }

    .app_section h3 {
        font-size: 32px;
        margin-bottom: 27px;
    }

    .app_section .app_boxes .app_box figure {
        height: 169px;
    }

    .app_section .app_boxes .app_box .app_ctnt {
        padding: 6px;
    }

    .app_section .app_boxes .app_box .app_ctnt p {
        margin: 0;
    }

    .app_section {
        margin: 32px 0;
    }

    .contact_us .form_support {
        flex-wrap: wrap;
    }

    .contact_us .contact_form {
        max-width: 100%;
        width: 100%;
        margin: 32px 0;
    }

    .contact_us .contact_support {
        width: 100%;
        max-width: 100%;
    }

    .contact_us .contact_support ul::before {
        width: 129px;
        height: 116px;
        background-repeat: no-repeat;
    }

    .contact_us .contact_form h3 {
        font-size: 32px;
    }

    .about-us h3 {
        font-size: 32px;
    }

    .key_section h3 {
        font-size: 32px;
    }

    .serve-alcohol h4 {
        font-size: 32px;
    }

    .about-us figure figcaption {
        top: unset;
        left: unset;
        right: 11px;
        bottom: -9%;
        font-size: 20px;
        width: 171px;
        height: 171px;
    }

    .services h2 {
        font-size: 32px;
    }

    section.client-logo {
        margin-top: 25px;
    }

    section.faq-section {
        margin: 25px 0;
    }

    .faq-section h2 {
        font-size: 32px;
    }

    .navbar-toggler:focus {
        box-shadow: unset;
    }

    .navbar-toggler-icon {
        background-image: url('../images/tog.svg');
    }

    .serve-alcohol p {
        padding: 0;
    }

    ul#menu-primary-menu li {
        margin-left: 0;
    }

    ul.sub-menu li {
        padding: 12px !important;
    }
    
    .header.hidden {
    transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .services .row-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact_us .contact_support ul::before {
        width: 96px;
        height: 96px;
    }

    .about-us figure {
        height: 741px;
    }

    .testimonial-item {
        margin: 0 5px;
    }

    .about-us p {
        margin-bottom: 13px;
    }

    .about-section {
        height: 200px;
    }

    .about-section h1 {
        font-size: 34px;
    }

    .thc_section .img_ctnt {
        margin-top: 21px;
        gap: 0;
    }

    .app_section h3 {
        font-size: 30px;
    }

    .app_section .app_boxes .app_box {
        width: calc(100% / 2 - 27px);
    }

    .thc_section h3 {
        font-size: 30px;
    }

    .key_section h3 {
        font-size: 30px;
    }

    .footer-top {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .hero-section .carousel-item {
        height: 470px;
    }

    .hero-section h1 {
        font-size: 30px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .about-us h3 {
        font-size: 30px;
        margin-top: 16px;
        margin-bottom: 9px;
    }

    .client-logo .logo-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    section.testimonial {
        margin: 38px 0;
    }

    .faq-section .row-wrap {
        flex-wrap: wrap;
    }

    .faq-section h2 {
        margin-bottom: 33px;
    }

    .client-logo {
        margin: 8px 0;
    }

    .services h2 {
        margin-bottom: 42px;
        font-size: 30px;
    }

    .serve-alcohol h4 {
        font-size: 30px;
        margin-bottom: 13px;
    }

    .serve-alcohol .btn {
        margin-top: 21px;
    }

    .about-section h1 {
        font-size: 28px;
    }

    .serve-alcohol p {
        padding: 0 0%;
    }

    .client-logo h2 {
        font-size: 30px;
    }

    .testimonial h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .faq-section h2 {
        font-size: 30px;
    }

    .services .col-wrap figure {
        height: 257px;
    }

    .error_404 .error_ctnt h1 {
        font-size: 50px;
    }

    .error_404 {
        min-height: 400px;
    }
    
    .hero-section button.carousel-control-prev, .hero-section button.carousel-control-next{
	display:none;
    }
    
        .hero-section .carousel-item {
    padding: 0;
}


}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .footer-top {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-us figure figcaption {
        top: unset;
        left: unset;
        right: 0;
        bottom: -15%;
        font-size: 19px;
        width: 146px;
        height: 146px;
    }

    .about-us figure figcaption strong {
        font-size: 34px;
    }

    a.navbar-brand img {
        width: 64px !important;
    }

    .header {
        min-height: unset;
    }

    button.navbar-toggler {
        font-size: 27px;
    }

    .hero-section .carousel-item {
        height: 378px;
    }

    .about-us figure {
        height: 486px;
    }

    .about-us ul li {
        width: 100%;
    }

    .services .row-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .ctnt p {
        margin-bottom: 9px;
        font-size: 16px;
    }

    .about-us h3 {
        margin-bottom: 9px;
        font-size: 25px;
    }

    .about-us .btn {
        font-size: 16px;
    }

    .hero-section h1 {
        margin-bottom: 12px;
    }

    .services h2 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .services h2 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .serve-alcohol h4 {
        font-size: 25px;
        margin-bottom: 9px;
    }

    .serve-alcohol .btn {
        font-size: 16px;
        margin-top: 15px;
    }

    .client-logo h2 {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .client-logo .logo-wrap .item figure {
        height: 133px;
        margin-bottom: 12px;
    }

    .client-logo .logo-wrap h6 {
        font-size: 18px;
    }

    .client-logo .logo-wrap {
        gap: 17px;
    }

    .client-logo .logo-wrap .more-btn .btn {
        font-size: 16px;
    }

    section.testimonial {
        margin: 10px 0;
    }

    .testimonial h2 {
        font-size: 25px;
        margin-bottom: 24px;
    }

    .testimonial-item p {
        color: #000000;
        font-size: 16px;
        font-weight: var(--font-weight-light)300;
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }

    .testimonial-slider .slick-dots {
        bottom: -36px;
    }

    .faq-section h2 {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .faq-section figure {
        height: 338px;
    }

    .faq-section .accordion-body {
        font-size: 15px;
    }

    .key_table {
        overflow: auto;
    }

    .about-section h1 {
        font-size: 28px;
    }

    .about-section {
        height: 146px;
    }

    .thc_section h3 {
        font-size: 25px;
    }

    .thc_section .img_ctnt figure {
        height: 100%;
    }

    .thc_section .img_ctnt {
        gap: 0;
    }

    .key_section h3 {
        font-size: 25px;
    }

    .key_section .key_inner .key_table {
        margin: 23px 0 21px;
    }

    .key_section .key_inner .key_table table th {
        font-size: 16px;
    }

    .key_section .key_inner .key_table table td:first-child {
        min-width: 117px;
    }

    .key_section .key_inner .key_table table td {
        font-size: 15px;
    }

    .key_section ul li {
        font-size: 16px;
    }

    .thc_section .img_ctnt .ctnt h5 {
        font-size: 20px;
    }

    .client-logo {
        margin: 0px 0;
    }

    .serve-alcohol p {
        color: var(--white);
        font-size: 18px;
        font-weight: var(--font-weight-light) 300;
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }

    .permit_section p {
        font-size: 16px;
    }

    .off_premises .permits_boxes .permit_box {
        width: calc(100% / 2 - 19px);
    }

    .app_section h3 {
        font-size: 25px;
    }

    .app_section .app_boxes .app_box {
        width: calc(100% / 1 - 0px);
    }

    .app_section .app_boxes .app_box .app_ctnt p {
        font-size: 16px;
    }

    .app_section {
        margin: 12px 0;
    }

    .serve-alcohol p {
        color: var(--white);
        font-size: 18px;
        font-weight: var(--font-weight-light) 300;
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }

    .app_section .more-btn .btn {
        font-size: 16px;
    }

    .contact_us .contact_form h3 {
        font-size: 25px;
    }

    .contact_us .contact_form p {
        margin: 11px 0 0 0;
        font-size: 16px;
    }

    .contact_us .contact_form form {
        margin-top: 12px;
    }

    .contact_us button.btn {
        font-size: 16px;
        margin-top: 14px;
    }

    .contact_us .contact_support {
        min-height: 521px;
    }

    .contact_us .contact_support ul::before {
        width: 59px;
        height: 59px;
    }

    .contact_us .contact_support ul {
        min-height: 351px;
        margin-right: 19px;
    }

    .contact_us .contact_form {
        margin: 26px 0;
    }

    .contact_us .contact_support ul li figure {
        width: 23%;
        height: 43px;
        margin: 0;
    }

    .contact_medium img {
        width: 24px;
    }

    .contact_us .contact_support ul li h6 {
        font-size: 18px;
    }

    .contact_us .contact_support ul li a {
        font-size: 16px;
        font-size: 16px;
        word-break: break-all;
    }

    section.client-logo {
        margin-top: 0;
    }

    .app_section .app_boxes .app_box figure {
        height: 208px;
    }

    .footer-column p {
        font-size: 15px;
    }

    .serve-alcohol p {
        padding: 0;
    }

    .client-logo .logo-wrap h6 {
        font-size: 15px;
    }

    .client-logo .logo-wrap p {
        font-size: 15px;
    }
    
    .contact_us .contact_form form .form-group {
    flex-direction: column;
    }

    .contact_us .contact_form form input, .contact_us .custom-select {
    width: 100%;
    }
    
    .contact_us .contact_form form textarea {
    padding: 10px 20px;
    }
    
    .contact_us .contact_support ul::before {
    width: 96px;
    height: 96px;
    z-index: -2;
}

.contact_us .contact_support ul li {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: column;
}

.contact_us .contact_support ul li figure {
    width: 50px;
    height: 43px;
}

.phone {
    top: 10px;
    right: 80px;
    padding: 12px 15px;
}

.phone a {
    font-size: 14px;
}
}



