html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0px;
    border: 0;
    outline: 0;
}

body {
    color: var(--black);
    font-family: 'Red Hat Display';
    font-weight: 500;
    font-size: 18px;
    background: var(--white);
    line-height: 1.6;
}

:root {
    --blue: #01b3d1;
    --white: #ffffff;
    --black: #000000;
}

a {
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    color: var(--blue);
    margin-bottom: 20px;
    font-family: 'Michroma';
    text-transform: capitalize;
}
h1 {
    font-size: 60px;
    line-height: 75px;
    font-weight: 400;
}

h2 {
    font-size: 30px;
    line-height: 43px;
    font-weight: 300;
    text-transform: uppercase;
}

h3 {
    font-size: 27px;
    line-height: 40px;
}

h4 {
    font-size: 24px;
    line-height: 40px;
}

h5 {
    font-size: 22px;
    line-height: 23px;
}

h6 {
    font-size: 18px;
    line-height: 30px;
}

p {
    margin-bottom: 30px;
}

.border-btn {
    font-size: 16px;
    display: inline-block;
    color: var(--blue);
    line-height: normal;
    padding: 13px 23.5px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: 1px solid var(--blue);
    background: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

.border-btn:hover {
    background: var(--blue);
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.global-text .border-btn {
    color: var(--white);
}

/*---------------------------
         Header
---------------------------*/
header.header {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    z-index: 9;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: rgb(253 253 253 / 85%);
    border-radius: 10px;
}

header.header.sticky .main-header {
    background: none;
}

header.header.sticky {
    position: fixed;
    background: rgb(253 253 253 / 85%);
    top: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
}

.main-header .main-nav ul li:last-child {
    border-right: 0px solid var(--black) !important;
}

.main-header .main-nav ul li .mega-menu-link {
    border-left: 1px solid var(--black) !important;
    transition: all 0.2s ease-in-out !important;
}

.main-header .main-nav ul .border-btn .mega-menu-link {
    font-size: 16px !important;
    display: inline-block !important;
    color: var(--white) !important;
    padding: 12px 21.5px !important;
    transition: all 0.3sease-in-out !important;
    border-radius: 10px !important;
    border: 1px solid var(--black) !important;
    background: var(--black) !important;
    height: auto !important;
    line-height: normal !important;
}

.main-header .main-nav ul .border-btn .mega-menu-link:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
    transition: all 0.3s ease-in-out !important;
    border-color: var(--blue) !important;
}

.main-header .main-nav ul .phone-link .mega-menu-link {
    color: var(--black) !important;
    border: 0 !important;
}

.main-header .main-nav ul li:first-child .mega-menu-link {
    border: 0 !important;
}

.main-header .main-nav ul .phone-link .mega-menu-link:hover {
    color: var(--blue) !important;
}

.main-header ul.mega-sub-menu .mega-menu-item {
    border-bottom: 1px solid var(--white) !important;
}

.main-header ul.mega-sub-menu .mega-menu-item:last-child {
    border-bottom: none !important;
}

.main-header ul.mega-sub-menu .mega-menu-item a.mega-menu-link {
    border-left: 5px solid transparent !important;
    transition: all 0.3s ease-in-out !important;
}

.main-header ul.mega-sub-menu .mega-menu-item a.mega-menu-link:hover {
    border-color: var(--black) !important;
    transition: all 0.3s ease-in-out !important;
}

/*---------------------------
        Banner Area
---------------------------*/
.banner-area {
    position: relative;
}

.banner-caption {
    max-width: 850px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.banner-text {
    font-size: 38px;
    color: var(--white);
}
.banner-caption .banner-text h1:after {
    content: "";
    position: absolute;
    background: var(--blue);
    height: 3px;
    width: 605px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-text h1 {
    padding-bottom: 20px;
    color: var(--white);
}

.banner-text p {
    margin-bottom: 0;
}

.banner-area img {
    width: 100%;
}

/*---------------------------
         Global Section
---------------------------*/
.global-section {
    background: var(--black);
}
.global-section.reverse .row {
    flex-direction: row-reverse;
}
.global-section .global-text {
    color: var(--white);
}

.global-section .global-text {
    color: var(--white);
    margin-right: auto;
    max-width: 100%;
    padding: 0px 100px;
}

.global-section.faqs .global-text {
    padding-left: 50px;
    padding-right: 100px;
}
.page-id-48 .global-section .global-text {
    padding: 20px 100px 20px 50px;
}
.global-section.faqs .global-text h2 {
    padding-right: 0;
}

.global-section .global-text h2 {
    padding-right: 70px;
}

.global-img img {
    width: 100%;
}

/*---------------------------
        Flip Tils Section
---------------------------*/
.flip-tabs-section {
    padding: 110px 0 130px 0;
    background-size: cover !important;
}

.heading-div {
    text-align: center;
    padding-bottom: 60px;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 600;
}

.heading-div p:last-child {
    margin-bottom: 0;
}

.flip-tabs-section .heading-div h2 {
    color: var(--black);
}

.heading-div h2 {
    margin-bottom: 10px;
}

.flip-tab {
    position: relative;
    overflow: hidden;
}

.flip-tab a img {
    width: 100%;
}

.flip-tab .flip-tab-caption {
    position: absolute;
    padding: 21px 25px 0;
    background: rgb(0 0 0 / 70%);
    bottom: 0;
    display: flex;
    transition: all 0.3s ease-in-out;
    width: 100%;
    flex-direction: column;
    justify-content: end;
    color: var(--white);
}

.flip-tab-description {
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease-in-out;
}

.flip-tab:hover .flip-tab-caption {
    bottom: 0;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.flip-tab .flip-tab-caption h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Red Hat Display';
    font-weight: 600;
}

.global-section .global-text .list-div:last-child {
    margin: 0;
}

/*------------------------------------
        global-section listing
--------------------------------------*/
.list-div {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 22px;
    border: 2px solid var(--blue);
    border-radius: 10px;
    padding: 20px 40px;
}

.list-text {
    padding-left: 30px;
    width: 88%;
}

.list-icon {
    width: 12%;
}

.global-text .list-text p {
    margin-bottom: 0;
}

.list-text h4 {
    color: var(--white);
    margin-bottom: 0;
    font-family: 'Red Hat Display';
    text-transform: uppercase;
    font-weight: 700;
}

/*---------------------------
        Gallery Section
---------------------------*/
.gallery-section {
    padding: 100px 0 120px;
}

.gallery-section .nav {
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    gap: 2.1px;
}

.gallery-section .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--blue);
    background-color: var(--black);
}

.gallery-section .nav-pills .nav-link {
    border-radius: 10px;
    color: var(--blue);
    text-transform: uppercase;
    padding: 6px 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.gallery-section .nav-pills .nav-link:hover {
    background: var(--blue);
    color: var(--white);
}

.gallery-section .border-btn {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
    width: fit-content;
}

.modula-best-grid-gallery .f-button {
    background: var(--blue) !important;
}

/*---------------------------
         Faq Section
---------------------------*/
.faq-text .accordion-button:not(.collapsed)::after {
    background-image: url(/wp-content/uploads/2025/02/down-icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    transform: none;
    width: 17px;
    height: 17px;
}

.faq-text .accordion-button::after {
    background-image: url(/wp-content/uploads/2025/02/up-icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    transform: none;
    width: 17px;
    height: 17px;
}

.accordion-header {
    line-height: normal;
    font-family: 'Red Hat Display';
}

.accordion-body p {
    margin-bottom: 10px;
}

.global-section.faqs .global-text .faq-text .accordion-item {
    border-radius: 0;
    border: 0;
    background: none;
    color: var(--white);
    font-weight: 500;
    border-bottom: 1px solid var(--blue);
}

.global-section.faqs .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.global-section.faqs .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.global-section.faqs .accordion-body {
    padding: 0 60px 0 0;
}

.global-section.faqs .accordion-button {
    padding: 14px 0;
    font-size: 20px;
    color: var(--white);
    background-color: transparent;
    border: 0;
    font-weight: 600;
}

.global-section.faqs .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.global-section.faqs .accordion-button:focus {
    box-shadow: none;
}

.beer-slider img {
    height: 100%;
    object-fit: cover;
}

.beer-slider {
    width: 100%;
}

.global-section.faqs .border-btn {
    margin-top: 40px;
}

div#slider1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.beer-slider {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.beer-slider * {
    box-sizing: border-box;
}

.beer-slider {
    position: relative;
    overflow: hidden;
    color: black;
}

.beer-slider img {
    width: 100%;
    height: 771px;
}

.beer-reveal {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 50%;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s;
}

.beer-range {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    height: 100%;
    margin: 0;
    left: -1px;
    width: calc(100% + 2px);
    cursor: pointer;
    opacity: 0;
}

.beer-range::-webkit-slider-thumb {
    height: 30vh;
}

.beer-handle {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0);
    transition: background 0.3s, box-shadow 0.3s, opacity 0.5s 0.25s;
}

.beer-range:focus~.beer-handle {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.beer-slider[data-beer-label]:after,
.beer-reveal[data-beer-label]:after {
    content: attr(data-beer-label);
    position: absolute;
    top: 1.5rem;
    line-height: 1;
    padding: 16px 0;
    border-radius: 0.125rem;
    background: rgba(255, 255, 255, 0.75);
}

.beer-slider[data-beer-label]:after {
    right: 1.5rem;
}

.beer-reveal[data-beer-label]:after {
    left: 1.5rem;
}

.beer-slider[data-beer-label=""]:after,
.beer-reveal[data-beer-label=""]:after {
    content: none;
}

.beer-ready .beer-reveal,
.beer-ready .beer-handle {
    opacity: 1;
}

.beer-handle:before,
.beer-handle:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    border-top: solid 2px;
    border-left: solid 2px;
    transform-origin: 0 0;
}

.beer-handle:before {
    left: 10px;
    transform: rotate(-45deg);
}

.beer-handle:after {
    right: 0;
    transform: rotate(135deg);
}

.before-after-section {
    background: var(--grey);
    padding: 100px 0;
}

.beer-reveal {
    border-right: 4px solid var(--white);
}

.beer-slider[data-beer-label]:after,
.beer-reveal[data-beer-label]:after {
    top: auto;
    bottom: 0;
    background: transparent;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.beer-reveal[data-beer-label]:after {
    left: 385px !important;
}

.beer-slider[data-beer-label]:after {
    right: 401px !important;
}

.comparison-slider-wrapper .col-md-6:first-child .beer-slider[data-beer-label]:after,
.comparison-slider-wrapper .col-md-6:first-child .beer-reveal[data-beer-label]:after {
    color: var(--blue);
}

.beer-handle {
    width: 40px;
    height: 40px;
    border: 3px solid var(--white);
    margin-left: -3px;
}

.beer-handle:before {
    left: 6px;
}

.beer-handle:after {
    right: -6px;
}

/*---------------------------
         reviews-section 
---------------------------*/
.reviews-section .ti-widget.ti-goog .ti-controls .ti-prev::before,
.reviews-section .ti-widget.ti-goog .ti-controls .ti-prev::after,
.reviews-section .ti-widget.ti-goog .ti-controls .ti-next::before,
.reviews-section .ti-widget.ti-goog .ti-controls .ti-next::after {
    display: none;
}

.reviews-section .ti-widget.ti-goog .ti-controls .ti-prev {
    padding: 0;
    background: url(/wp-content/uploads/2025/02/left-arrow.png);
    width: 22px;
    height: 33px;
}

.reviews-section .ti-widget.ti-goog .ti-controls .ti-next {
    padding: 0;
    background: url(/wp-content/uploads/2025/02/right-arrow.png);
    width: 22px;
    height: 33px;
}

.reviews-section {
    background-size: cover !important;
    padding: 100px 0;
}

.reviews-section .ti-review-header .ti-platform-icon,
.ti-review-header .ti-profile-img {
    display: none;
}

.reviews-section .ti-widget.ti-goog .ti-review-item>.ti-inner {
    display: flex !important;
    flex-direction: column;
    padding: 0 20px !important;
}

.ti-review-header {
    order: 3;
}

.reviews-text {
    text-align: center;
}

.reviews-section .ti-inner .ti-review-content {
    font-size: 20px !important;
    font-weight: 500 !important;
    font-family: 'Red Hat Display' !important;
    line-height: 32px !important;
    height: auto !important;
    max-width: 1140px;
    margin: 0 auto;
}

.reviews-section .ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner>.ti-stars {
    margin-bottom: 50px !important;
    height: auto;
}

.reviews-section .ti-widget.ti-goog .ti-stars .ti-star {
    width: 30px !important;
    height: 30px !important;
}

.reviews-section .ti-widget.ti-goog .ti-profile-details {
    margin-top: 10px !important;
}

.reviews-section .ti-inner .ti-profile-details .ti-name {
    font-size: 21px !important;
    font-weight: bold !important;
    text-transform: capitalize !important;
    margin-bottom: 10px !important;
}

.ti-inner .ti-review-content br:nth-child(2),
.ti-inner .ti-review-content br:nth-child(3) {
    display: none;
}

.reviews-section .ti-widget.ti-goog .ti-reviews-container-wrapper {
    padding: 0 !important;
}

.reviews-section .heading-div {
    padding-bottom: 10px;
}

.reviews-section .heading-div h2 {
    color: var(--black);
}

/*---------------------------
    latest news 
---------------------------*/
.news-section {
    text-align: center;
    padding: 100px 0 120px;
}

.news-title h4::before {
    position: absolute;
    content: "";
    background: var(--blue);
    width: 250px;
    height: 7px;
    top: -24px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.news-title h4 {
    position: relative;
    color: var(--white);
    font-family: 'Red Hat Display';
    font-weight: 600;
    margin: 0;
    text-align: center;
    line-height: 32px;
}

.news-title {
    position: relative;
    background: #000;
    padding: 20px 10px 45px 10px;
    min-height: 165px;
}

.news-tab img {
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    height: 370px;
}

.news-tab:hover img {
    transform: scale(1.1);
}

.news-tab {
    position: relative;
    overflow: hidden;
}

.news-tab a {
    text-decoration: none;
}

.news-tabs {
    margin-bottom: 60px;
}

.border-btn.black {
    border-color: var(--black);
}

.border-btn.black:hover {
    border-color: var(--blue);
}

/*---------------------------
    about-section
---------------------------*/
.about-section {
    padding: 130px 0;
    background-size: cover !important;
}

.about-caption {
    max-width: 1040px;
    margin: 0 auto;
    background: rgb(0 0 0 / 84%);
    padding: 70px 250px;
    text-align: center;
    color: var(--white);
    font-size: 24px;
}

.about-caption h2 {
    margin-bottom: 15px;
}

.about-caption p {
    margin-bottom: 30px;
}

.about-caption .border-btn {
    color: var(--white);
}

/*---------------------------
    map-section
---------------------------*/
.map-section {
    padding: 120px 20px 0;
}

.map-section h4 {
    background: var(--black);
    padding: 15px;
    text-align: center;
    font-family: 'Red Hat Display';
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.map-section ul {
    list-style: none;
    column-count: 4;
    text-align: center;
    font-weight: 700;
    padding-top: 40px;
}
.map-section ul li{
    margin-bottom: 8px;
}
.map-section .col-md-4:last-child ul {
    margin-bottom: 28px;
}

.map-section img {
    width: 100%;
}

.map-div p iframe {
    padding: 0 70px;
}

.location-list {
    padding: 0 30px;
}

/*---------------------------
         Footer
---------------------------*/
.footer {
    border-top: 60px solid var(--black);
}

.footer-tab h5 {
    font-size: 18px;
    padding: 10px 0 0;
    font-weight: 700;
    font-family: 'Red Hat Display';
}

.main-footer .footer-tab .logo {
    max-width: 207px;
    margin-bottom: 15px;
}

.main-footer {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 50px 0;
}

.main-footer .footer-tab p {
    margin-bottom: 0;
}

.footer-tab a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-tab ul {
    column-count: 2;
}

.footer-tab ul li {
    margin-bottom: 5px;
}

.footer-tab a:hover {
    color: var(--blue);
}

.footer-tab ul {
    list-style: none;
    gap: 60px;
}

.footer-tab a {
    color: var(--black);
    text-decoration: none;
}

.main-footer .footer-tab:last-child ul {
    column-count: 1;
}

.footer-tab ul li .border-btn {
    margin-bottom: 14px;
    width: 150px;
    text-align: center;
    padding: 12px 0;
}

.footer-tab ul li .border-btn:hover {
    color: var(--white);
}

.footer-tab {
    font-weight: 700;
    line-height: 28px;
    font-size: 16px;
}

.copyright {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
}

.copyright p {
    margin-bottom: 0;
}

.copyright a {
    color: var(--white);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--blue);
    transition: all 0.3s ease-in-out;
}

.main-footer .footer-tab:first-child ul {
    column-count: 1;
}

/*---------------------------
         Blog Page
---------------------------*/
.blogs-area {
    padding: 100px 0;
}

.blogs-area .sidebar h3,
.blogs-area .blogs-left h3 {
    font-size: 28px;
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 3px solid var(--blue);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
}
.blogs-area .blogs-tab.row {
    cursor: pointer;
}

.blogs-area .blogs-img img {
    transition: all 0.4s ease-in-out;
    height: 330px;
    object-fit: cover;
    width: 100%;
}

.blogs-area .blogs-img::after {
    position: absolute;
    content: "";
    background: var(--blue);
    width: 20px;
    height: 100%;
    right: 0;
    top: 0;
}

.blogs-area .blogs-text {
    min-height: 330px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-right: 60px;
    padding-left: 30px;
    color: var(--black);
    font-size: 15px;
    transition: all 0.4s ease-in-out;
}

.blogs-area .blogs-text h3 {
    padding-bottom: 15px;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 18px;
    transition: all 0.4s ease-in-out;
    color: var(--black);
}

.blogs-area .blogs-text h3::after {
    position: absolute;
    content: "";
    background: var(--blue);
    width: 229px;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: all 0.4s ease-in-out;
}

.blogs-area .blogs-text a {
    text-decoration: none;
    color: var(--black);
    transition: all 0.4s ease-in-out;
}

.blogs-area .blogs-img {
    position: relative;
    overflow: hidden;
}

.blogs-tab {
    box-shadow: 0px 0px 17px -7px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
}

.sidebar-inner a:hover .sidebar-img img,
.blogs-tab:hover .blogs-img img {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}

.blogs-tab:hover .blogs-text {
    background: var(--blue);
    color: var(--white);
}

.blogs-tab:hover .blogs-text a {
    color: var(--white);
}

.blogs-tab:hover .blogs-text h3 {
    color: var(--white);
}

.blogs-tab:hover .blogs-text h3::after {
    background: var(--white);
}

.sidebar {
    padding-left: 50px;
}
.content-area .thankyou-section ul li a,
.content-area .thankyou-section p a {
    color: var(--black);
}
.content-area .thankyou-section ul li a:hover,
.content-area .thankyou-section p a:hover{
    color: var(--blue);
}
.sidebar-img::after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sidebar-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.sidebar-text h4 {
    color: var(--white);
    font-size: 25px;
    text-align: center;
    margin-bottom: 0;
}

.sidebar-inner .sidebar-img img {
    transition: all 0.4s ease-in-out;
    min-height: 200px;
}


.sidebar-img {
    position: relative;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.banner-area.inner .banner-caption h2,
.banner-area.inner .banner-caption h1 {
    color: var(--white);
    margin-bottom: 0;
}

.blog-detail-area h1 {
    font-size: 36px;
    line-height: normal;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.blog-detail-text {
    border-bottom: 14px solid var(--blue);
    color: #000;
}

.blog-detail-text .single-feature {
    margin-bottom: 30px;
}

.blog-detail-text .single-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-area h1::after {
    position: absolute;
    content: "";
    border: 5px solid var(--blue);
    width: 240px;
    left: 0;
    bottom: -5px;
}

.blog-detail-text p a {
    color: var(--blue);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.blog-detail-text p a:hover {
    color: var(--black);
}

.blog-detail-text h2 {
    font-size: 28px;
    font-weight: 400;
	line-height: 38px;
	text-transform: capitalize;
}

.blog-detail-text h3 {
    font-size: 26px;
    font-weight: 400;
	line-height: 36px;
}

.blog-detail-text h4 {
    font-size: 22px;
    font-weight: 400;
	line-height: 32px;
}

.blog-detail-text h5 {
    font-weight: 400;
}

.blog-detail-text h6 {
    font-size: 20px;
    font-weight: 400;
	line-height: 30px;
}

.blog-detail-area ul {
    list-style: none;
}

.blog-detail-area ul li {
    padding-left: 20px;
    margin-bottom: 3px;
    position: relative;
}

.blog-detail-area ul li::after {
    content: "";
    position: absolute;
    background: var(--blue);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    left: 0;
    top: 12px;
}

.blog-detail-area ul {
    list-style: none;
    margin-bottom: 30px;
}

.blog-detail-area ol {
    margin-bottom: 30px;
    padding-left: 30px;
}

.global-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.global-img,
.global-img img {
    height: 100%;
    object-fit: cover;
}

.banner-area figure {
    margin-bottom: 0;
}


.page-pagination .page-numbers {
    background: var(--blue);
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    margin-right: 6px;
    transition: all 0.3s ease-in-out;
}

.page-pagination .page-numbers.current {
    background: var(--black);
}

.navigation .page-pagination {
    padding-top: 30px;
}

.page-pagination .page-numbers:hover {
    background: var(--black);
    transition: all 0.3s ease-in-out;
}

.blog-detail-area .abh_tabs li:after,
.abh_tabs li:before {
    display: none;
}

.blog-detail-area ul.abh_tabs li.abh_active a {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.blog-detail-area ul.abh_tabs li a {
    background: transparent !important;
    color: var(--black) !important;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px !important;
    font-size: 18px !important;
}

.blog-detail-area ul.abh_tabs li a:hover {
    background-color: var(--blue) !important;
    color: var(--white) !important;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px !important;
}

.blog-detail-area ul.abh_tabs {
    padding-bottom: 8px !important;
}

.blog-detail-area .abh_text a {
    color: var(--black);
}

.blog-detail-area .description.note.abh_description {
    font-size: 16px !important;
}

.blog-detail-area .abh_name {
    color: var(--black);
}

.blog-detail-area .abh_description.note ul li::after {
    display: none;
}

.blog-detail-area .abh_description.note ul {
    margin-left: 0 !important;
}

.blog-detail-area .abh_description.note ul li {
    padding-left: 0 !important;
}

.author-area {
    padding: 100px 0;
}

p.author-description:last-child {
    margin-bottom: 0;
}

.author-img {
    text-align: right;
}

/*---------------------------
    service Page
---------------------------*/
.banner-area.inner,
.inner-banner {
    position: relative;
    background-size: cover;
    filter: saturate(0.5);
}

.inner-banner img {
    width: 100%;
}
.banner-area.inner:after,
.inner-banner:after {
    position: absolute;
    content: "";
    background: rgb(0 0 0 / 43%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.banner-area.inner .banner-caption,
.inner-banner-heading {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}
.banner-area.inner .banner-caption h2,
.inner-banner-heading h1 {
    font-size: 48px;
    color: var(--white);
    z-index: 1;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.banner-area.inner .banner-caption h2:after,
.inner-banner-heading h1:after {
    position: absolute;
    content: "";
    background: var(--blue);
    width: 630px;
    height: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}
.banner-area.inner .banner-caption{
    transform: translateY(0px);
}
.banner-area.inner .banner-caption h2{
    line-height: 75px;
    text-transform: capitalize;
}
.banner-area.inner .banner-caption h2:after {
    max-width: 230px;
}
.epoxy-card-area {
    position: relative;
    padding: 150px 0;
}

.epoxy-card-area .heading-div {
    max-width: 1390px;
}

.epoxy-card {
    position: relative;
    text-align: center;
    padding: 50px 20px;
    border: 3px solid var(--blue);
    height: 100%;
    border-radius: 8px;
    line-height: 30px;
}

.epoxy-card h4 {
    color: var(--black);
    margin: 0;
    line-height: 33px;
    font-weight: 700;
    font-family: 'Red Hat Display';
    text-transform: uppercase;
}

.epoxy-card-inner {
    padding: 0 140px;
}

.epoxy-card p {
    margin: 0;
}

.epoxy-card:after {
    position: absolute;
    content: "";
    background: url(https://epoxy.higherimages15.com/wp-content/uploads/2025/04/epoxy-card-after.png);
    width: 42px;
    height: 41px;
    top: -22px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-repeat: no-repeat;
}

.services-heading {
    background: var(--blue);
    text-align: center;
    padding: 50px;
}

.services-heading h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 30px;
    text-transform: uppercase;
}

.epoxy-services .global-section .global-text h2 {
    font-size: 24px;
}

.global-section .global-text ul {
    list-style: none;
    padding-left: 40px;
}

.global-section .global-text ul li:after {
    position: absolute;
    content: "";
    background: url(https://epoxy.higherimages15.com/wp-content/uploads/2025/04/services-li-after.png);
    width: 26px;
    height: 26px;
    left: -37px;
    top: 0;
    bottom: 0;
}

.global-section .global-text ul li {
    position: relative;
    margin-bottom: 10px;
}

.about-caption.services h2 {
    margin-bottom: 20px;
}

.about-caption.services {
    max-width: 1420px;
    padding: 50px;
}

.about-caption.services p {
    margin-bottom: 22px;
}

/* .leftright-section {
    background: var(--black);
} */

/* .leftright-text {
    color: #fff;
    margin-right: auto;
    max-width: 710px;
    padding: 30px 0 30px 70px;
}

.leftright-text ul {
    list-style: none;
}

.leftright-text ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
} */

.leftright-div:nth-child(odd) .row {
    flex-direction: row-reverse !important;
}
/* .leftright-div .global-description .global-text {
    padding-left: 100px;
} */
/* .leftright-div .global-description .global-text {
    padding-right: 100px;
    padding-left: 50px;
} */
/* .leftright-text ul li::before {
    position: absolute;
    content: "";
    background: url(https://epoxy.higherimages15.com/wp-content/uploads/2025/04/services-li-after.png);
    width: 26px;
    height: 26px;
    left: 0px;
    top: 0;
    bottom: 0;
} */

.about-section.inner .about-caption {
    max-width: 1550px;
}

/*---------------------------
Service Detail Page
---------------------------*/


.gallery-section.inner h2 {
    text-transform: capitalize;
}

/*---------------------------
Service Detail Page End
---------------------------*/
/*---------------------------
General Page Layout
---------------------------*/



.full-section .heading-div {
    padding-bottom: 0;
}

.accodion-section {
    padding: 100px 0;
}

.accordion-div {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-div .accordion-item {
    border: none;
}

.accordion-item button.accordion-button {
    background: var(--blue);
    color: #fff;
    margin-bottom: 8px;
    font-size: 20px;
    outline: none;
    border: none;
    box-shadow: none;
}

.accordion-div .accordion-body ul {
    padding-left: 20px;
}
.accordion-div .accordion-body ul li::marker {
    color: var(--blue);
}

.accordion-div .accordion-button::after {
    display: none;
}

.accordion-div .accordion-button::before {
    content: "";
    position: absolute;
    background: url(/wp-content/uploads/2025/04/arrow-img.png) no-repeat;
    background-size: cover;
    width: 18px;
    height: 10px;
    right: 20px;
    top: 42%;
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}

.accordion-div button.accordion-button.collapsed::before {
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
}

.full-section h2 {
    text-transform: capitalize;
}

/*---------------------------
General Page Layout End
---------------------------*/

/*---------------------------
Gallery Page
---------------------------*/


.gallery-div .loadmore-btn {
    position: absolute;
    bottom: -110px;
    width: 100%;
}

.loadmore-btn .load-more.border-btn {
    background: var(--blue);
    color: #fff;
    cursor: pointer;
}

.loadmore-btn .load-more.border-btn:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--blue);
}

.home .loadmore-btn {
    display: none;
}
.page-id-320 .loadmore-btn {
    display: none;
}
/*---------------------------
Gallery Page End
---------------------------*/
/*---------------------------
Contact Us
---------------------------*/
.form-section {
    padding: 100px 0 50px;
}

.form-div h2.gform_title {
    display: none;
}

.form-text h2 strong {
    color: var(--black);
    display: block;
    font-size: 30px;
}

.form-text h2 {
    font-size: 28px;
}

.form-text ul {
    list-style: none;
    font-size: 18px;
}

.form-text ul li a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.form-text ul li a:hover {
    color: var(--blue);
    transition: all 0.3s ease-in-out;
}

.form-div {
    padding: 50px;
    border: 10px solid var(--blue);
    font-family: 'Red Hat Display';
}

.form-div input::placeholder,
.form-div textarea::placeholder {
    font-weight: 800;
    font-size: 18px;
    color: var(--black);
    text-transform: uppercase;
}

.form-div input,
.form-div textarea {
    font-weight: 800;
    font-size: 18px !important;
    color: var(--black);
    outline: none;
}

.form-div span#input_1_1_3_container {
    padding: 0;
}

.form-div input[type="submit"] {
    background: var(--blue);
    color: #fff;
    padding: 12px 40px;
    border: none;
    transition: all 0.3s ease-in-out;
}

.form-div input[type="submit"]:hover {
    background: var(--black);
    transition: all 0.3s ease-in-out;
}

.form-div .gform_wrapper.gravity-theme .gform_validation_errors>h2 .gform-icon {
    left: -40px;
}

/*---------------------------
Contact Us end
---------------------------*/

/*---------------------------
Thank You Page
---------------------------*/


.thankyou-section {
    padding: 100px 0;
    text-align: center;
}

.thankyou-section p:last-child {
    margin-bottom: 0;
}

.page-id-3 .thankyou-section {
    text-align: left;
}

.thankyou-section ul {
    margin-bottom: 30px;
    list-style: none;
}

.thankyou-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.thankyou-section ul li::after {
    content: "";
    position: absolute;
    background: var(--blue);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    left: 0;
    top: 12px;
}

/*---------------------------
Thank You Page End
---------------------------*/

/*---------------------------
Free Estimate page
---------------------------*/

.steps-form-section {
    padding: 100px 0;
}

.steps-div h2.gform_title {
    display: none;
}

.steps-div p.gf_progressbar_title {
    color: #fff !important;
    text-align: center;
    padding: 7px 30px !important;
    display: inline-block;
    background: var(--blue);
    font-size: 20px !important;
    margin-bottom: 30px !important;
}

.steps-div .gf_progressbar.gf_progressbar_blue {
    background: #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 50px !important;
}

.steps-div .gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
    background: var(--blue) !important;
    border-radius: 0 !important;
    height: 20px !important;
}

div#gf_progressbar_wrapper_2 {
    text-align: center;
}

.question-div {
    margin-top: 30px;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 37px;
}

.question-div h4 {
    display: inline-block;
    color: #000;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    vertical-align: middle;
    margin: 0px -50px 0;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 80px;
}

.question-div h4 strong {
    font-size: 130px !important;
    display: block;
    color: var(--blue);
    vertical-align: middle;
    transform: rotate(90deg);
    margin: 0;
    line-height: 84px;
}

.steps-div {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-div .gfield_checkbox,
.gfield_radio {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.steps-div .gfield_checkbox label,
.gfield_radio label {
    background: var(--black);
    color: #fff;
    width: 166px !important;
    max-width: 100% !important;
    height: 100px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 10px;
    text-align: center;
}

.steps-div .gfield-choice-input {
    display: none !important;
}

.steps-div legend.gfield_label.gform-field-label {
    margin-left: 170px !important;
    margin-top: -68px !important;
    text-align: left;
    width: fit-content;
    font-size: 18px !important;
}
.form-message,
.gfield_description {
    font-size: 18px !important;
    font-weight: 700 !important;
}
.form-message{
    margin-top: 10px !important;
}
.form-message p {
    margin-bottom: 10px !important;
}
.steps-div .gfield_checkbox label.active,
.gfield_radio label.active {
    background: var(--blue);
}

.steps-div .gform_next_button,
.gform_previous_button,
.gform_page_footer .gform_button {
    border: 1px solid var(--blue) !important;
    padding: 10px 25px 8px 25px;
    display: block;
    text-align: center;
    color: #000 !important;
    font-size: 18px !important;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: transparent;
    transition: all 0.2s ease-in-out;
    box-shadow: none !important;
}
.steps-div .gform_next_button{
    font-size: 18px !important;
}
.steps-div .gform-page-footer.gform_page_footer.top_label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-div form input,
.selecting-area form select {
    border: 1px solid var(--black);
    outline: none;
}

.steps-div form input::placeholder,
.steps-div form select::placeholder {
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    font-size: 18px;
}

.steps-div form input,
.steps-div form select {
    font-size: 18px !important;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 15px !important;
}

.steps-div fieldset#field_2_15 span {
    margin-bottom: 0 !important;
}

.steps-div .ginput_complex span {
    margin-bottom: 20px !important;
}

.gform_next_button:hover,
.gform_previous_button:hover,
.gform_page_footer .gform_button:hover {
    color: var(--white) !important;
    background: var(--blue) !important;
    transition: all 0.2s ease-in-out;
}

.steps-div .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 10px;
    grid-row-gap: 0;
}

div#input_2_12 span {
    padding-right: 0;
    margin-bottom: 0 !important;
}

div#validation_message_2_12 {
    margin-bottom: 10px;
}

span#input_2_15_6_container select#input_2_15_6 {
    padding: 10px;
    border-radius: 0 !important;
    outline: none;
    font-weight: 700;
    border: 1px solid var(--black);
}

.steps-div .gform-icon--circle-error:before {
    left: -50px;
    position: absolute;
}
td.center {
    text-align: center;
    width: 33.33%;
    margin-bottom: 10px;
}
th, td {
  padding: 8px;
  text-align: left;
}
thead, tbody, tfoot, tr, td, th {
    border-color: inherit;
    border-style: solid;
    border-width: 1px !important;
}
th.center {
    text-align: center !important;
}
h4.center {
    text-align: center;
}
h4.center strong {
    font-size: 18px;
}
table {
    margin-bottom: 30px !important;
}
/*---------------------------
Free Estimate page End
---------------------------*/
.flip-tabs-section.inner .flip-tab img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.flip-tabs-section.inner .flip-tab .flip-tab-caption a.border-btn {
    margin-bottom: 25px;
}
.flip-tabs-section.inner .flip-tab {
    border: 3px solid var(--blue);
    border-radius: 8px;
}
.flip-tab a {
    text-decoration: none !important;
    color: #fff;
}

.flip-tab-description a.border-btn {
    display: none;
}


/*---------------------------
         responsive
---------------------------*/
@media (max-width:1599px) {
    .main-header {
        padding: 10px 16px;
    }

    #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
        padding: 0 11px 0 11px;
        font-size: 16px;
    }

    .global-section.faqs .border-btn {
        margin-top: 30px;
    }

    .global-section .global-text {
        padding: 30px 100px;
    }

    .global-section .global-text h2 {
        padding-right: 30px;
    }

    .news-title h6 {
        padding: 0 90px;
    }

    .flip-tabs-section .row.g-5 {
        --bs-gutter-y: 1.5rem;
        --bs-gutter-x: 1.5rem;
    }
}

@media (max-width:1440px) {
    .blogs-area {
        padding: 80px 0;
    }
    .epoxy-card-inner {
        padding: 0 50px;
    }
    .blog-detail-area h1 {
        font-size: 32px;
    }

    .blog-detail-text h2 {
        font-size: 28px;
    }

    .blog-detail-text h3 {
        font-size: 26px;
    }

    .blog-detail-text h4 {
        font-size: 24px;
    }

    .blog-detail-text h5 {
        font-size: 22px;
    }

    .blog-detail-text h6 {
        font-size: 20px;
    }

    .blogs-area .sidebar h3,
    .blogs-area .blogs-left h3 {
        font-size: 30px;
    }

    .blogs-area .blogs-text h3 {
        font-size: 26px;
    }

    .sidebar {
        padding-left: 0;
    }

    .main-header {
        padding: 10px 12px;
    }

    #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
        padding: 0px 10px 0 10px;
        font-size: 14px;
    }

    .main-header .logo {
        max-width: 200px;
    }

    .banner-caption {
        top: 58%;
        max-width: 750px;
    }

    .banner-text h1 {
        padding-bottom: 18px;
    }

    .banner-text {
        font-size: 32px;
        line-height: 42px;
    }
/* 
    .global-section .global-text {
        padding: 30px;
    } */

    .banner-area.inner .banner-caption h2,
    h1 {
        font-size: 50px;
        line-height: 51px;
    }

    h2 {
        font-size: 24px;
        line-height: 36px;
    }

    h4 {
        font-size: 20px;
        line-height: 26px;
    }

    .flip-tab .flip-tab-caption h4 {
        margin-bottom: 20px;
    }

    .flip-tab .flip-tab-caption {
        padding: 24px 15px 0px;
        font-size: 15px;
        line-height: 22px;
    }

    .flip-tab a img {
        min-height: 300px;
        object-fit: cover;
    }

    .global-text p {
        margin-bottom: 20px;
    }

    .flip-tabs-section {
        padding: 80px 0 100px 0;
    }

    body {
        font-size: 17px;
    }

    .border-btn {
        font-size: 15px;
    }

    .list-div {
        padding: 15px 25px;
    }

    .list-text h3 {
        font-size: 22px;
    }

    .list-text {
        padding-left: 25px;
    }

        .gallery-section {
        padding: 80px 0 110px;
    }

    .heading-div {
        padding-bottom: 50px;
    }

    .gallery-section .nav-pills .nav-link {
        font-size: 16px;
    }

    .gallery-section .border-btn {
        margin-top: 30px;
    }

    .global-section.faqs .accordion-body {
        padding: 0 60px 0 0;
        font-size: 15px;
    }

    .global-section.faqs .accordion-button {
        font-size: 18px;
    }

    .news-title h6 {
        padding: 0 0;
    }

    .news-title h6 {
        font-size: 20px;
        line-height: 28px;
        padding: 0 0;
    }

    .news-section {
        padding: 80px 0;
    }

    .map-section {
        padding: 80px 20px 0;
    }

    .map-section ul {
        font-size: 15px;
    }

    .main-footer {
        column-gap: 20px;
    }

    .footer-tab {
        line-height: 23px;
        font-size: 15px;
    }

    .footer-tab ul {
        gap: 22px;
    }

    .reviews-section .ti-inner .ti-review-content {
        font-size: 18px !important;
        line-height: 28px !important;
    }

    .news-title h4 {
        padding: 0 10px;
        line-height: 26px;
    }

    .news-title {
        padding: 20px 10px 25px 10px;
    }

    .beer-slider img {
        width: 100%;
        height: 600px;
    }

    .main-header .main-nav ul .border-btn .mega-menu-link {
        font-size: 13px !important;
    }
    .about-section.inner .about-caption {
        max-width: 90%;
        padding: 70px 40px;
    }
    .inner-banner-heading h1 {
        font-size: 42px;
        max-width: 90%;
        margin: 0 auto;
    }
    .epoxy-card-area {
        padding: 80px 0;
    }
    .epoxy-card {
        padding: 30px 10px;
    }
    .epoxy-card h4 {
        line-height: 30px;
    }
    .services-heading h3 {
        font-size: 24px;
    }
    .leftright-text {
        padding: 30px 30px 30px 70px;
    }
    

}

@media (max-width:1199px) {
    .blogs-area {
        padding: 60px 0;
    }

    .blog-detail-area h1 {
        font-size: 28px;
    }

    .blog-detail-text h2 {
        font-size: 26px;
        line-height: 40px;
    }

    .blog-detail-text h3 {
        font-size: 22px;
    }

    .blog-detail-text h4 {
        font-size: 24px;
    }

    .blog-detail-text h5 {
        font-size: 22px;
    }

    .blog-detail-text h6 {
        font-size: 18px;
    }

    .blogs-area .sidebar h3,
    .blogs-area .blogs-left h3 {
        font-size: 26px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--black);
        margin-bottom: 26px;
    }

    .blogs-area .blogs-text h3 {
        font-size: 21px;
    }

    .blogs-area .blogs-text {
        min-height: 280px;
        padding-right: 40px;
        padding-left: 20px;
        font-size: 14px;
    }

    .blogs-area .blogs-img img {
        height: 280px;
    }

    .blogs-area .blogs-img::after {
        width: 10px;
    }

    .blogs-area {
        padding: 60px 0;
    }

    .main-header .main-nav ul .border-btn .mega-menu-link {
        font-size: 11px !important;
        padding: 9px 12px !important;
    }

    .main-header .logo {
        max-width: 160px;
    }

    #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
        padding: 0px 7px 0 7px;
        font-size: 13px;
        line-height: 30px;
        height: auto !important;
    }

    .main-header {
        padding: 10px 10px;
    }

    .banner-area.inner .banner-caption h2,
    h1 {
        font-size: 40px;
        line-height: 47px;
    }

    .banner-text {
        font-size: 28px;
        line-height: 38px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 15px;
    }

    h2 {
        font-size: 21px;
        line-height: 33px;
    }

    body {
        font-size: 16px;
    }

    .global-text p {
        margin-bottom: 14px;
    }

    p {
        margin-bottom: 20px;
    }

    .border-btn {
        font-size: 14px;
    }

    .flip-tabs-section {
        padding: 60px 0 60px 0;
    }

    .flip-tabs-section .row.g-5 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }

    h4 {
        font-size: 18px;
        line-height: 23px;
    }

    .global-section .global-text h2 {
        padding-right: 10px;
    }

    .flip-tab .flip-tab-caption {
        padding: 23px 15px 0px;
        font-size: 14px;
        line-height: 22px;
    }

    .list-text h3 {
        font-size: 19px;
    }

    .list-div {
        padding: 15px 15px;
    }

    .list-text {
        padding-left: 15px;
    }

        .gallery-section {
        padding: 60px 0 70px;
    }


    .heading-div {
        padding-bottom: 40px;
    }

    .gallery-section .nav-pills .nav-link {
        font-size: 14px;
        padding: 6px 15px;
    }

    .gallery-section .border-btn {
        margin-top: 20px;
    }

    .global-section.faqs .accordion-body {
        padding: 0 25px 0 0;
        font-size: 14px;
    }

    .beer-slider img {
        width: 100%;
        height: 530px;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .ti-widget.ti-goog .ti-stars .ti-star {
        width: 25px !important;
        height: 24px !important;
    }

    .reviews-section .ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner>.ti-stars {
        margin-bottom: 30px !important;
    }

    .reviews-section .ti-inner .ti-profile-details .ti-name {
        font-size: 19px !important;
    }

    .news-section {
        padding: 60px 0;
    }

    .news-tab img {
        height: 250px;
    }

    .news-title {
        padding: 20px 10px 19px 10px;
    }

    /* .news-title h6 {
        font-size: 18px;
        line-height: 25px;
        padding: 0 0;
    } */
    .news-title h4 {
        padding: 0 10px;
    }

    .news-tabs {
        margin-bottom: 40px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-caption {
        max-width: 80%;
        padding: 50px 0;
        font-size: 20px;
    }

    .about-caption p {
        margin-bottom: 30px;
    }

    .map-section {
        padding: 60px 20px 0;
    }

    .map-section h4 {
        padding: 12px;
        font-size: 16px;
    }

    .map-section ul {
        font-size: 14px;
    }

    .footer-tab {
        line-height: 21px;
        font-size: 14px;
    }

    .footer-tab br {
        display: none;
    }

    .footer-tab ul li {
        margin-bottom: 8px;
    }

    .main-footer {
        padding: 30px 0;
    }

    .footer-tab ul li .border-btn {
        margin-bottom: 10px;
        width: 140px;
        padding: 12px 5px;
    }

    .footer-tab:first-child {
        max-width: 190px;
    }

    .faq-text .accordion-button:not(.collapsed)::after {
        width: 12px;
        height: 12px;
    }

    .faq-text .accordion-button::after {
        width: 12px;
        height: 12px;
    }

    .map-div p iframe {
        padding: 0 30px;
        height: 350px;
    }

    .border-btn {
        padding: 8px 12px;
    }
    .about-section.inner .about-caption {
        max-width: 90%;
        padding: 50px 30px;
    }
    .inner-banner img {
        min-height: 300px;
        object-fit: cover;
    }
    .epoxy-card-area {
        padding: 60px 0;
    }
    .services-heading {
        padding: 30px 0;
    }
    .services-heading h3 {
        font-size: 22px;
    }
    .leftright-text {
        padding: 40px 40px 0px 40px;
        max-width: 100%;
    }
    .full-section {
        padding: 80px 0;
    }
    .steps-form-section {
        padding: 80px 0;
    }
    .thankyou-section {
        padding: 80px 0;
    }
    .form-section {
        padding: 60px 0 30px;
    }
    .form-text h2 {
        font-size: 24px;
        line-height: 40px;
    }
    .form-div {
        padding: 30px;
    }
    .accodion-section {
        padding: 70px 0;
    }
    .epoxy-card-inner {
        padding: 0 60px;
    }
    .author-area {
        padding: 80px 0;
    }
    .global-section .global-text {
        padding: 30px 50px;
    }
   .gallery-div .loadmore-btn {
    bottom: -70px;
}
}



@media (max-width:1024px) {
    #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle+#mega-menu-max_mega_menu_1 {
        padding: 20px 30px;
    }

    .main-header .main-nav ul li .mega-menu-link {
        border-left: 0 !important;
        transition: all 0.2s ease-in-out !important;
        border-bottom: 1px solid var(--white) !important;
    }

    #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
        padding: 2px 12px;
        font-size: 14px;
        line-height: 41px;
    }

    .main-header .main-nav ul li:first-child .mega-menu-link {
        border-bottom: none;
    }

    .main-header .main-nav ul .phone-link .mega-menu-link {
        border-bottom: 1px solid var(--white) !important;
        color: var(--white) !important;
    }

    .main-header .main-nav ul .border-btn .mega-menu-link {
        padding: 2px 12px !important;
        font-size: 14px !important;
        line-height: 41px !important;
        background: transparent !important;
        border: 0 !important;
        display: block !important;
    }

    .main-header .logo {
        max-width: 200px;
    }

    h2 {
        font-size: 20px;
        line-height: 32px;
    }
}

@media (max-width:991px) {
    h6 {
        line-height: 22px;
    }

    .blogs-area {
        padding: 40px 0;
    }

    .blog-detail-area h1 {
        font-size: 28px;
    }

    .blog-detail-text h2 {
        font-size: 26px;
    }

    .blog-detail-text h3 {
        font-size: 24px;
    }

    .blog-detail-text h4 {
        font-size: 22px;
    }

    .blog-detail-text h5 {
        font-size: 20px;
    }

    .blog-detail-text h6 {
        font-size: 17px;
    }

    .blogs-area {
        padding: 60px 0;
    }

    .sidebar-text h4 {
        font-size: 20px;
    }

    .blogs-area .sidebar h3,
    .blogs-area .blogs-left h3 {
        font-size: 22px;
        padding-bottom: 8px;
        margin-bottom: 21px;
    }

    .blogs-area .blogs-text {
        min-height: 250px;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 14px;
    }

    .blogs-area .blogs-img img {
        height: 250px;
    }

    .sidebar-inner .sidebar-img img {
        min-height: 130px;
        object-fit: cover;
    }

    .blogs-area .blogs-text h3::after {
        width: 100%;
    }

    .blogs-area .blogs-text h3 {
        font-size: 19px;
    }

    .banner-area.inner .banner-caption h2,
    h1 {
        font-size: 30px;
        line-height: 42px;
    }

    .banner-text {
        font-size: 22px;
        line-height: 29px;
    }

    h2 {
        font-size: 24px;
        line-height: 31px;
    }

    body {
        font-size: 14px;
    }

    .border-btn {
        font-size: 12px;
        padding: 12px 21.5px;
    }

    .flip-tabs-section {
        padding: 50px 0 50px 0;
    }

    .flip-tab .flip-tab-caption h4 {
        margin-bottom: 12px;
    }

    .flip-tab .flip-tab-caption {
        padding: 15px 14px 0px;
        min-height: auto;
        font-size: 13px;
        line-height: 23px;
    }

    h4 {
        font-size: 17px;
        line-height: 23px;
    }

    .global-img {
        padding: 0px 40px 40px 40px;
    }

    .global-section .global-text {
        padding: 40px;
        max-width: 100%;
        margin-right: inherit;
    }

    .list-div:last-child {
        margin-bottom: 0;
    }

    .gallery-section .nav-pills .nav-link {
        font-size: 13px;
        padding: 6px 11px;
    }

    .gallery-section {
        padding: 40px 0 70px;
    }


    .gallery-section .border-btn {
        margin-top: 10px;
    }

    .comparison-slider-wrapper {
        padding: 40px 40px 0 40px;
    }

    .reviews-section .ti-inner .ti-review-content {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .reviews-section .ti-inner .ti-profile-details .ti-name {
        font-size: 18px !important;
    }

    .reviews-section {
        padding: 50px 0;
    }

    .news-section {
        padding: 50px 0;
    }

    .heading-div {
        padding-bottom: 30px;
    }

    .news-tabs .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }

    .news-title h6 {
        font-size: 16px;
        line-height: 22px;
    }

    .news-title {
        padding: 17px 10px 15px 10px;
    }

    .news-title h6::before {
        width: 190px;
        top: -21px;
    }

    .about-caption p {
        margin-bottom: 20px;
    }

    .about-caption {
        padding: 40px 0;
        font-size: 18px;
        max-width: 85%;
    }

    .map-section {
        padding: 50px 15px 0;
    }

    .map-section p {
        margin-bottom: 15px;
    }

    .map-section h4 {
        padding: 10px;
        font-size: 14px;
    }

    .map-section .heading-div h2 {
        font-size: 23px;
    }

    .map-section ul li {
        margin-bottom: 3px;
    }

    .map-section .col-md-4:last-child ul {
        margin-bottom: 6px;
    }

    .map-section .row {
        --bs-gutter-x: 1rem;
    }

    .main-footer {
        flex-wrap: wrap;
        justify-content: left;
    }

    .footer-tab ul {
        gap: 35px;
    }

    .footer-tab:first-child {
        max-width: 230px;
    }

    .footer-tab:first-child {
        max-width: 230px;
        margin-bottom: 30px;
    }

    .footer-tab h5 {
        padding: 0 0 0;
    }

    .news-title h4::before {
        width: 150px;
        top: -21px;
    }

    .news-title h4 {
        padding: 0 10px;
    }

    .map-section ul {
        column-count: 2;
        padding-bottom: 30px;
    }
    .map-div p iframe {
        height: 300px;
    }
    .location-list {
        padding: 0;
    }
    .inner-banner-heading h1 {
        font-size: 36px;
    }
    .inner-banner-heading h1:after {
        width: 550px;
    }
    /* .global-section:nth-child(odd) .row {
        flex-direction: column-reverse;
    }
    body > div.content-area > div:nth-child(1).global-section .row {
        flex-direction: column !important;
    }
    body > div.content-div > div:nth-child(1).global-section .row {
        flex-direction: column;
    } */
    .global-section.faqs {
        padding-bottom: 40px;
    }
    .full-section {
        padding: 60px 0;
    }    
    .steps-form-section {
        padding: 50px 0;
    }
    .question-div h4 strong {
        font-size: 100px !important;
        line-height: 58px;
    }
    .question-div h4 {
        margin: 0px -50px 0;
        line-height: 70px;
    }
    .steps-div legend.gfield_label.gform-field-label {
        margin-left: 120px !important;
        margin-top: -50px !important;
    }
    .steps-div .gf_progressbar.gf_progressbar_blue {
        margin-bottom: 30px !important;
    }
    .thankyou-section {
        padding: 60px 0;
    }
    .form-text {
        margin-bottom: 30px;
    }
    .home > div.content-area > .global-section > .row {
        flex-direction: column-reverse !important;
    }
    .global-section .row {
        flex-direction: column-reverse;
    }
    .global-section.reverse .row {
        flex-direction: column-reverse;
    }
    body > div.content-area > .global-section:nth-child(1) .row {
        flex-direction: column;
    }
    .leftright-div:nth-child(odd) .row {
        flex-direction: column-reverse !important;
    }
    .author-area {
        padding: 60px 0;
    }
        .about-section {
        padding: 60px 0;
    }
}

@media (max-width:767px) {
    .blog-detail-area h1 {
        font-size: 26px;
    }

    .blog-detail-text h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .blog-detail-text h3 {
        font-size: 20px;
    }

    .blog-detail-text h4 {
        font-size: 18px;
    }

    .blog-detail-text h5 {
        font-size: 17px;
    }

    .blog-detail-text h6 {
        font-size: 16px;
    }

    .blogs-area .blogs-img::after {
        width: 100%;
        height: 10px;
        bottom: 0;
        top: inherit;
    }

    .sidebar {
        margin-top: 20px;
    }

    .blogs-area .blogs-img img {
        height: 220px;
    }

    .blogs-area {
        padding: 40px 0 0px 0;
    }

    .blogs-tab {
        margin-bottom: 15px;
    }

    .blogs-area .blogs-text {
        min-height: auto;
        font-size: 14px;
        padding: 20px 15px;
    }

    .banner-area.inner img {
        min-height: 260px;
    }

    .main-header .logo {
        max-width: 180px;
    }

    #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle+#mega-menu-max_mega_menu_1 {
        padding: 10px 15px;
    }

    #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
        font-size: 13px;
        line-height: 40px;
    }

    .main-header .main-nav ul .border-btn .mega-menu-link {
        font-size: 13px !important;
        line-height: 40px !important;
    }

    .banner-caption .banner-text h1:after {
        width: 80%;
    }

    .banner-area img {
        width: 100%;
        min-height: 380px;
        object-fit: cover;
    }

    .banner-area.inner .banner-caption h2,
    h1 {
        font-size: 25px;
        line-height: 31px;
    }

    .banner-text {
        font-size: 19px;
        line-height: 24px;
    }

    .global-img {
        padding: 20px;
    }

    .global-section .global-text {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .flip-tabs-section {
        padding: 40px 0;
    }

    .list-text h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .list-div {
        display: block;
    }

    .list-text {
        padding-left: 0;
    }

    .list-icon {
        width: 100%;
        margin-bottom: 14px;
    }

    .list-icon img {
        max-width: 55px;
    }

        .gallery-section {
        padding: 30px 0 80px;
    }

    .gallery-section .nav-pills .nav-link {
        font-size: 12px;
        padding: 6px 9px;
        text-transform: capitalize;
    }

    .comparison-slider-wrapper {
        padding: 20px 20px 0 20px;
    }

    .beer-slider img {
        width: 100%;
        height: 350px;
    }

    .global-section.faqs .global-text {
        padding-left: 20px;
    }

    .global-section.faqs .accordion-button {
        font-size: 16px;
    }

    .global-section.faqs .accordion-body {
        padding: 0 20px 0 0;
        font-size: 13px;
    }

    .global-section.faqs .border-btn {
        margin-top: 20px;
    }

    .reviews-section {
        padding: 40px 0;
    }

    .reviews-section .ti-widget.ti-goog .ti-stars .ti-star {
        width: 20px !important;
        height: 20px !important;
    }

    .reviews-section .ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner>.ti-stars {
        margin-bottom: 15px !important;
        margin-top: 5px !important;
    }

    .reviews-section .ti-inner .ti-review-content {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .reviews-section .ti-inner .ti-profile-details .ti-name {
        font-size: 16px !important;
    }

    .reviews-section .ti-widget.ti-goog .ti-controls-line {
        display: none !important;
    }

    .news-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 30px 0;
    }

    .about-caption {
        padding: 20px 10px;
        font-size: 16px;
        max-width: 95%;
    }

    .about-caption p {
        margin-bottom: 15px;
    }

    .map-section {
        padding: 40px 15px 0;
    }

    .map-section .heading-div h2 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .heading-div {
        padding-bottom: 20px;
    }

    .footer-tab:first-child {
        max-width: 100%;
        margin-bottom: 0;
    }

    .footer-tab h5 {
        padding: 0 0 0;
        margin-bottom: 8px;
    }

    .footer-tab {
        border-bottom: 1px solid var(--blue);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-tab:last-child {
        border: 0;
        margin: 0;
        padding: 0;
    }

    .footer-tab:last-child ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .main-footer .footer-tab:last-child ul li {
        margin-bottom: 0;
    }

    .footer-tab ul li .border-btn {
        margin-bottom: 0;
    }

    .main-footer {
        display: block;
    }

    .faq-text .accordion-button::after {
        width: 12px;
        height: 12px;
    }

    .faq-text .accordion-button:not(.collapsed)::after {
        width: 12px;
        height: 12px;
    }
    .main-header ul.mega-sub-menu .mega-menu-item a.mega-menu-link {
        font-size: 14px !important;
    }
    header.header.sticky {
        top: 0 !important;
    }
    .inner-banner-heading h1:after {
        width: 300px;
    }
    .about-section.inner .about-caption {
        padding: 50px 10px;
    }
    .inner-banner-heading h1 {
        font-size: 30px;
        line-height: 34px;
        max-width: 100%;
    }
    .epoxy-card-inner {
        padding: 20px;
    }
    .epoxy-card-inner .row .col-lg-3.col-md-6.mb-5:last-child {
        margin-bottom: 0 !important;
    }
    .services-heading h3 {
        font-size: 18px;
        line-height: 30px;
    }
    .leftright-img {
        padding: 20px;
    }
    .leftright-text {
        padding: 20px;
    }
    .full-section {
        padding: 40px 0;
    }
    .page-template-location-page-template .inner-banner-heading h1 {
        font-size: 28px;
    }
    .steps-form-section {
        padding: 30px 0;
    }
    .steps-div form input, .steps-div form select {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    .steps-div form input::placeholder, .steps-div form select::placeholder{
        font-size: 16px !important;
    }
    .thankyou-section {
        padding: 40px 0;
    }
    .thankyou-section h3 {
        font-size: 24px;
        line-height: 30px;
    }
    .thankyou-section h5 {
        font-size: 18px;
        line-height: 28px;
    }
    .thankyou-section ul {
        margin-bottom: 20px;
    }
    .form-text h2 strong {
        font-size: 24px;
    }
    .form-text h2 {
        font-size: 20px;
        line-height: 36px;
    }
    .form-div {
        padding: 20px;
        border-width: 5px;
    }
    .form-div input, .form-div textarea {
        font-size: 16px !important;
    }
    .form-div input::placeholder, .form-div textarea::placeholder{
        font-size: 16px;
    }
    span#input_1_1_3_container {
        margin-bottom: 0;
    }
    .accodion-section {
        padding: 40px 0;
    }
    .blogs-area .sidebar h3, .blogs-area .blogs-left h3 {
        font-size: 20px;
    }
    .blog-detail-area ul li::after {
        top: 9px;
    }
    .author-area {
        padding: 40px 0;
    }
    .author-img {
        text-align: center;
        margin-bottom: 30px;
    }
    .global-section.faqs {
        padding-bottom: 30px;
    }
    .global-section.faqs .global-text {
        padding: 20px;
    }
    .epoxy-card-area {
        padding: 30px 0 10px 0;
    }
    .map-section ul{
        padding-top: 10px;
    }
    .author-img img {
        width: 100%;
    }
    .leftright-div .global-description .global-text {
       padding: 20px;
    }
    .leftright-div .global-description .global-text {
        padding: 20px;
    }
    h4.center strong {
    font-size: 15px;
}
.page-id-48 .global-section .global-text {
    padding: 30px 20px 10px 20px;
}
    .news-title {
        padding: 17px 15px 15px 15px;
        min-height: auto;
    }
    .news-title h4
 {
        padding: 0 10px;
    }
     .flip-tab-description a.border-btn {
        display: inline-block;
        margin-bottom: 10px;
    }
}