#masthead .inside-header::before,
#masthead .inside-header::after {
    display: none;
}

.frontpage-hero-section .content-area .text-content p:first-child {
    font-size: 25px;
}

.frontpage-hero-section .content-area .text-content p:first-child::before,
.frontpage-hero-section .content-area .text-content p:first-child::after {
    width: 100px !important;
}

body.scrolled:not(.coconut-mobile-menu-container) #masthead .site-branding,
body:not(:has(section.hero)):not(.coconut-mobile-menu-container) #masthead .site-branding {
    max-width: 180px !important;
}

.tab-layout .gallery-section {
    text-align: center;
}

.tab-layout .tabs {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    row-gap: 20px;
    flex-wrap: wrap;
}

.tab-layout .tabs button {
    padding: 10px 30px;
    margin-right: 10px;
    cursor: pointer;
    background-color: #f0f0f0;
    border: none;
    font-weight: 400;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tab-layout .tabs button.active {
    background: #274E54;
    color: #fff;
}

.tab-layout .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-layout .gallery div {
	display: none;
	margin: 10px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
}

.tab-layout .gallery img {
    width: 100%;
    height: 550px;
    object-fit: contain;
}

.tab-layout section.gallery-section {
    display: flex;
}

.tab-layout section.gallery-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 100px;
    flex-direction: column;
}

.tab-layout h2.heading {
    text-align: center;
}

.tab-layout section.gallery-section {
    margin-top: 50px;
}

.tab-layout .tabs button {
    border: 1px solid #274E54;
    transition: 0.5s all ease-in-out;
}

.tab-layout .tabs button:hover {
    background: #274E54;
    color: #fff;
}

@media (max-width: 991px){
    .frontpage-hero-section .content-area .text-content p:first-child{
        font-size: 12px;
    }
    .frontpage-hero-section .content-area .text-content p:first-child::before, .frontpage-hero-section .content-area .text-content p:first-child::after{
        width: 50px !important;
    }
    .tab-layout .tabs button{
        padding: 10px;
    }
    .tab-layout section.gallery-section{
        margin-top: 30px;
    }
    .tab-layout .gallery img{
        height: auto;
    }
    .tab-layout .tabs{
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
    }
}
.btn-call {
    background: rgb(255, 0, 0);
    border: 2px solid rgb(255, 0, 0);
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(255, 0, 0, 0.5);
    cursor: pointer;
    height: 50px;
    width: 50px;
    text-align: center;
    position: fixed;
    right: 24px;
    bottom: 110px;
    z-index: 99999;
    transition: .3s;
    -webkit-animation: hoverWave linear 1s infinite;
    animation: hoverWave linear 1s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-call i {
    color: #fff;
    font-size: 24px;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 30px;
    right: 24px;
    font-size: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 99999;
}

@keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(255, 0, 0, 0.3), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(255, 0, 0, 0.3), 0 0 0 15px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(255, 0, 0, 0.3), 0 0 0 30px rgba(255, 0, 0, 0), 0 0 0 26.7px rgba(255, 0, 0, 0.07)
    }

    100% {
        box-shadow: 0 8px 10px rgba(255, 0, 0, 0.3), 0 0 0 30px rgba(255, 0, 0, 0), 0 0 0 40px rgba(255, 0, 0, 0)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {
    .btn-call {
        height: 40px;
        width: 40px;
        bottom: 94px;
    }

    .btn-call i {
        font-size: 16px;
    }

    .btn-whatsapp-pulse {
        font-size: 26px;
        bottom: 37px;
        padding: 20px;
    }

    .btn-call__ico {
        font-size: 18px;
    }
}