/* 
    Handcoded by JAC - Johnny Alimoot C.
*/
:root {
    --h1TextSize: 3em;
    --h2TextSize: 1.90em;
    --h3TextSize: 1.52em;
    --h4TextSize: 1.14em;
    --h5TextSize: 1em;
    --pTextSize: 1em;
    --smTextSize: 0.85em;

    --shadowColor: #525f8014;
    --bgWhite: #ffffff;
    --bgBlack: #232527;

    --primaryColor: rgb(0, 25, 125);
    --primaryColorOP: rgb(0, 25, 125, 0.3);
    --brandContrastColor: rgb(202, 0, 132);
    --brandContrastColorOP: rgb(202, 0, 132, 0.4);
    --secondaryColor: rgb(0, 142, 202);
    --secondaryColorOP: rgb(0, 142, 202, 0.5);
    --secondaryColorOP2: rgb(0, 142, 202, 0.95);
    --primaryBgBody: #E3EFFA;
    --primaryBgFoot: rgb(0, 142, 202);
    --color-whatsapp: #25D366;

    --textWhite: #ffffff;
    --textBlack: #212121;

    --selectionBg: #5a6282;
    --selectionText: #eaecf4;

    --navHeight: 74px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--primaryBgBody);
}

::-webkit-scrollbar-thumb {
    background-color: var(--selectionBg);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-moz-selection {
    background-color: var(--selectionBg);
    color: var(--selectionText);
}

::selection {
    background-color: var(--selectionBg);
    color: var(--selectionText);
}

html,
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    /* background-color: var(--primaryBgBody); */
    scroll-behavior: smooth;
    scroll-padding-top: -webkit-calc(var(--navHeight) + 30);
    scroll-padding-top: -moz-calc(var(--navHeight) + 30);
    scroll-padding-top: calc(var(--navHeight) + 30);
}

img,
iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

hr {
    opacity: 0.5;
}

li {
    font-size: var(--pTextSize);
}

small {
    font-size: var(--smTextSize);
}

.display-block {
    display: block;
}

.display-inblock {
    display: inline-block;
}

nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -webkit-box-shadow: 0 8px 27px -10px var(--shadowColor);
    -moz-box-shadow: 0 8px 27px -10px var(--shadowColor);
    box-shadow: 0 8px 27px -10px var(--shadowColor);
    background-color: var(--bgWhite);
    height: var(--navHeight);
    z-index: 10;
}

nav::before {
    position: absolute;
    content: "";
    pointer-events: none;
    top: -webkit-calc(-100% + 5px);
    top: -moz-calc(-100% + 5px);
    top: calc(-100% + 5px);
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../svg/wave.svg') bottom / contain;
    background-repeat: repeat-x;
}

nav>div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.navigation-container {
    margin: auto 0 auto auto;
}

.navigation-container>a {
    margin: 0 5px 0 5px;
}

.logo {
    max-height: calc(var(--navHeight) *0.7);
    width: auto;
}

.logo::after {
    content: unset;
}

.btn-back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 0 !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: -webkit-calc(var(--h4TextSize) * 2);
    width: -moz-calc(var(--h4TextSize) * 2);
    width: calc(var(--h4TextSize) * 2);
    height: -webkit-calc(var(--h4TextSize) * 2);
    height: -moz-calc(var(--h4TextSize) * 2);
    height: calc(var(--h4TextSize) * 2);
    font-size: var(--h4TextSize);
    background-color: var(--primaryColor);
    color: var(--textWhite);
    -webkit-box-shadow: 0 8px 20px -10px var(--primaryColor);
    -moz-box-shadow: 0 8px 20px -10px var(--primaryColor);
    box-shadow: 0 8px 20px -10px var(--primaryColor);
    z-index: 5;
}

.btn-back-to-top>i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-back-to-top:hover,
.btn-back-to-top:focus {
    color: var(--textWhite);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.bg-primary {
    background-color: var(--primaryColor) !important;
    color: var(--textWhite) !important;
}

.bg-secondary {
    background-color: var(--secondaryColor) !important;
    color: var(--textWhite);
}

.bg-contrast {
    background-color: var(--brandContrastColor);
}

.bg-primary-foot {
    background-color: var(--primaryBgFoot) !important;
    color: var(--textWhite) !important;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
}

.bg-whatsapp {
    background-color: var(--color-whatsapp) !important;
}

main::before {
    /* content: "";
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(-50%, var(--primaryBgBody)), color-stop(50%, var(--bgWhite)));
    background-image: -webkit-linear-gradient(bottom, var(--primaryBgBody) -50%, var(--bgWhite) 50%);
    background-image: -moz-linear-gradient(bottom, var(--primaryBgBody) -50%, var(--bgWhite) 50%);
    background-image: -o-linear-gradient(bottom, var(--primaryBgBody) -50%, var(--bgWhite) 50%);
    background-image: linear-gradient(0deg, var(--primaryBgBody) -50%, var(--bgWhite) 50%);
    z-index: 0; */
}

section {
    position: relative;
    background-color: var(--bgWhite);
    color: var(--textBlack);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 50px 5px;
    border-top: 3px solid var(--primaryBgBody);
    margin-top: 100px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 27px var(--shadowColor);
    -moz-box-shadow: 0 0 27px var(--shadowColor);
    box-shadow: 0 0 27px var(--shadowColor);
}

.section-title {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--bgWhite);
    color: var(--primaryColor);
    border-top: 5px solid var(--primaryBgBody);
    -webkit-border-radius: var(--h2TextSize);
    -moz-border-radius: var(--h2TextSize);
    border-radius: var(--h2TextSize);
    padding: 5px 50px;
    margin: 0;
    text-align: center;
    -webkit-box-shadow: 0 0 27px var(--shadowColor);
    -moz-box-shadow: 0 0 27px var(--shadowColor);
    box-shadow: 0 0 27px var(--shadowColor);
    white-space: nowrap;
}

section.bg-primary-foot {
    background-image: url('../svg/blob.svg');
    background-position: center;
    -moz-background-size: cover 100%;
    -o-background-size: cover 100%;
    background-size: cover 100%;
    background-repeat: no-repeat;
}

.hero-banner,
.sub-hero-banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: -webkit-calc(100vh - var(--navHeight));
    height: -moz-calc(100vh - var(--navHeight));
    height: calc(100vh - var(--navHeight));
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    border: unset;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
    margin: unset;
    z-index: 10;
}

.sub-hero-banner {
    height: 60vh;
}

.hero-banner video {
    bottom: 0;
    background-image: url(../art/home.jpg);
    background-size: cover;
}

/* .modal-dialog{
    margin: 0.5rem auto;
} */

.vh-100 {
    height: 100dvh!important;
}

.hero-banner .videoContainer {}

.hero-banner .videoContainer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    opacity: 0.6;
    -webkit-filter: brightness(30%);
    filter: brightness(30%);
    background-position: center;
}

.hero-title {
    position: relative;
    width: 50%;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
}

.hero-socials {
    position: absolute;
    /* height: 80%; */
    bottom: 0;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-socials>h4 {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    text-transform: uppercase;
}

.hero-buttons a {
    width: 300px;
    max-width: 100%;
}


.sticky-img,
.sticky-img-dual {
    position: -webkit-sticky;
    position: sticky;
    top: 84px;
    height: 250px;
}

.sticky-img-dual {
    width: 50%;
}

.sticky-img,
.sticky-img-dual>img {
    -webkit-filter: drop-shadow(0 2px 5px var(--shadowColor));
    filter: drop-shadow(0 2px 5px var(--shadowColor));
}

.sticky-img-dual>img:first-child {
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
    transform: translateX(10%);
}

.sticky-img-dual>img:last-child {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(90%, 40%);
    -moz-transform: translate(90%, 40%);
    -ms-transform: translate(90%, 40%);
    -o-transform: translate(90%, 40%);
    transform: translate(90%, 40%);
}

.sticky-img-dual-spacer {
    width: 100%;
    height: 150px;
}

.sticky-img-dual>.blob {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
    -o-transform: translateY(10%);
    transform: translateY(10%);
    width: 470px;
    height: 340px;
    z-index: -1;
}

.cursor-pointer{
    cursor: pointer;
}

.whatsapp-call{
    z-index: 10;
}


/* MODAL */

.popup-modal-content{
    background-size: cover;
    max-width: 800px;
    aspect-ratio: 1;
}

#closeModalIcon{
    right: 10px;
    top: 10px;
}

/* PRODUCTS */

.card-product {
    position: relative;
    height: 400px;
    flex-grow: 1;
    max-width: 320px;
    min-width: 320px;
    margin: auto;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 11px 20px var(--shadowColor);
    -moz-box-shadow: 0 11px 20px var(--shadowColor);
    box-shadow: 0 11px 20px var(--shadowColor);
    overflow: hidden;
}

.card-product>img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    -moz-transition: transform 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.card-product>.title,
.card-product>.info {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--primaryBgFoot);
    color: var(--bgWhite);
    /* -webkit-border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    border-radius: 15px 15px 0 0; */
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    -moz-transition: transform 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}

.card-product>.info {
    background-color: var(--secondaryColorOP2);
}

.card-product>.title {
    padding: 5px 0 5px 15px;
    margin: 0;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.card-product:hover .title {
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.5s;
}

.card-product .more-info-btn {
    cursor: pointer;
}

.card-product>.info {
    height: 100%;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    overflow: auto;
    padding: 15px;
}

.card-product.expanded>img {
    -webkit-transform: translateY(-25%) scale(1.1);
    -moz-transform: translateY(-25%) scale(1.1);
    -ms-transform: translateY(-25%) scale(1.1);
    -o-transform: translateY(-25%) scale(1.1);
    transform: translateY(-25%) scale(1.1);
}

.card-product.expanded>.title {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    height: 0;
}

.card-product.expanded>.info {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}


/* END PRODUCTS */



/* PLANT */


#plant .embed-responsive {
    max-width: 900px;
}

/* END PLANT */



/* CONTACT */

#contact span.flex-1 {
    flex-grow: 0.25 !important;
}

.form-embed iframe {
    margin-bottom: -100px !important;
}


/* END CONTACT */



.hovered {
    transition: all 0.75s ease;
}

.hovered:hover {
    -webkit-box-shadow: 0 0 27px var(--shadowColor);
    -moz-box-shadow: 0 0 27px var(--shadowColor);
    box-shadow: 0 0 27px var(--shadowColor);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}


.object-fit-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

footer {
    position: relative;
    background-color: #242753;
}

footer .contact-container {
    max-width: fit-content;
}

footer .social .bi {
    color: var(--brandContrastColor);
}

footer .middle-sep {
    border-left: solid 14px var(--brandContrastColor);
    height: 40px;
}

footer a {
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

form input,
form textarea {
    background-color: var(--secondaryColorOP);
    border-radius: 15px;
    padding: 15px;
    width: 100%;
}

form input::placeholder,
form textarea::placeholder {
    color: var(--textWhite)
}

.border-round,
.map-embed>iframe {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.map-embed>iframe {
    width: 100%;
    height: 100%;
    border: none;
    -webkit-box-shadow: 0 2px 10px -5px var(--shadowColor);
    -moz-box-shadow: 0 2px 10px -5px var(--shadowColor);
    box-shadow: 0 2px 10px -5px var(--shadowColor);
}

/* Buttons and links */
.tab-mob-menu {
    display: none;
}

a {
    position: relative;
    text-decoration: none;
    color: var(--textBlack);
    font-size: var(--pTextSize);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

a:not(.text-decoration-none)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primaryColor);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -moz-transition: transform 0.4s, -moz-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s, -moz-transform 0.4s, -o-transform 0.4s;
}

a.fc-white::after {
    background-color: var(--bgWhite);
}

:focus {
    outline: 3px solid transparent;
}



.text-decoration-none:hover *,
.text-decoration-none:focus * {
    border: none;
}


.hero-banner .bi {
    color: var(--bs-white);
}

input,
textarea,
button {
    padding: 8px;
    font-size: var(--pTextSize);
    border: none;
}

[class*="btn-"] {
    padding: 8px 20px;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: background 0.2s, color 0.2s, -webkit-box-shadow 0.2s, -webkit-filter 0.2s, -webkit-transform 0.2s;
    transition: background 0.2s, color 0.2s, -webkit-box-shadow 0.2s, -webkit-filter 0.2s, -webkit-transform 0.2s;
    -o-transition: box-shadow 0.2s, background 0.2s, color 0.2s, filter 0.2s, -o-transform 0.2s;
    -moz-transition: box-shadow 0.2s, background 0.2s, color 0.2s, filter 0.2s, transform 0.2s, -moz-box-shadow 0.2s, -moz-transform 0.2s;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, filter 0.2s, transform 0.2s;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, filter 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -moz-box-shadow 0.2s, -webkit-filter 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}

[class*="btn-"]::after {
    content: unset;
}

.btn-bg1 {
    background-color: var(--primaryColor);
    color: var(--textWhite);
}

.btn-bg2 {
    background-color: var(--bgWhite);
    color: var(--textBlack);
}

.btn-bg3 {
    background-color: var(--brandContrastColor);
    color: var(--textWhite);
}


a:hover:after,
a:focus::after {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.contrast-hover:hover,
.contrast-hover:focus {
    color: var(--brandContrastColor);
}

.btn-bg1:hover,
.btn-bg1:focus,
.icon-link:hover,
a.fc-white {
    color: var(--textWhite);
}

.btn-bg1:hover,
.btn-bg1:focus {
    -webkit-box-shadow: 0 8px 15px -10px var(--primaryColor);
    -moz-box-shadow: 0 8px 15px -10px var(--primaryColor);
    box-shadow: 0 8px 15px -10px var(--primaryColor);
}

.btn-bg2:hover,
.btn-bg2:focus {
    -webkit-box-shadow: 0 8px 15px -10px var(--bgWhite);
    -moz-box-shadow: 0 8px 15px -10px var(--bgWhite);
    box-shadow: 0 8px 15px -10px var(--bgWhite);
}

[class*="btn-"]:hover,
.icon-link:hover>i {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

a:hover{
    color: inherit!important;
}

/* Active */
.btn-bg1:active {
    -webkit-filter: contrast(75%) brightness(150%);
    filter: contrast(75%) brightness(150%);
}

.btn-bg2:active {
    -webkit-filter: contrast(150%) brightness(75%);
    filter: contrast(150%) brightness(75%);
}

.fade {
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgWhite);
    pointer-events: none;
    opacity: 0;
    z-index: 50;
    -webkit-animation: fade 1s ease-out;
    -moz-animation: fade 1s ease-out;
    -o-animation: fade 1s ease-out;
    animation: fade 1s ease-out; */
}

.bg-pos-center {
    background-position: center;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}



.accordion-button:not(.collapsed) {
    background-color: var(--primaryBgBody);
}

.acc-img {
    transition: all 1s ease;
}

.text-bg-brand-blue {
    background-color: var(--secondaryColorOP);
}

.banner-transparency {
    width: 50%;
    /* max-width: 600px; */
    position: absolute;
    height: 100%;
}

.banner-transparency::before {
    content: "";
    z-index: 1;
    position: absolute;
    width: 100%;
    /* max-width: 600px; */
    height: 100%;
    background-color: var(--secondaryColorOP);
}

.banner-transparency::after {
    content: "";
    width: 50%;
    z-index: 1;
    position: absolute;
    /* max-width: 300px; */
    height: 100%;
    background-color: var(--primaryColorOP);
}


/* SLIDER */

.brand-slider {
    height: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 95%;
}

.brand-slider::before,
.brand-slider::after {
    background: linear-gradient(to right, rgba(var(--bs-white-rgb)) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 20%;
    z-index: 1;
}

.brand-slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.brand-slider::before {
    left: 0;
    top: 0;
}

.brand-slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 24);
}

.brand-slider:hover .slide-track {
    animation-play-state: paused;
}

.brand-slider .slide {
    width: 250px;
}

.brand-slider .slide img {
    width: 200px;
}

.whatsapp-fixed-icon {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 80px;
    right: 15px;
    min-width: 60px;
    height: 60px;
    padding: 15px;
    padding-bottom: 12px;
    border-radius: 30px;
    transition: all 0.25s ease-out;
}

.whatsapp-fixed-icon i {
    transform: translate(0, 0.2rem);
}

.whatsapp-fixed-icon:hover {
    /* display: block !important; */
    transform: translate(-20px, 0);
}


/* LG View */
@media only screen and (max-width: 992px) {

    footer .middle-sep {
        border: none;
    }

    #accordion-img-bg {
        min-height: 300px;
        min-width: 50%;
        border-top-right-radius: var(--bs-border-radius-xxl) !important;
        border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
    }

    #services .shadow {
        box-shadow: none !important;
    }

    .navigation-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        background-color: var(--bgWhite);
        -webkit-box-shadow: 0 8px 27px -10px var(--shadowColor);
        -moz-box-shadow: 0 8px 27px -10px var(--shadowColor);
        box-shadow: 0 8px 27px -10px var(--shadowColor);
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: height 1s;
        -o-transition: height 1s;
        -moz-transition: height 1s;
        transition: height 1s;
    }

    .navigation-container>a {
        margin: 5px 0 5px 0;
    }

    .tab-mob-menu {
        position: relative;
        margin: auto 20px auto auto;
        font-family: 'bootstrap-icons';
        visibility: hidden;
        display: block;
        font-size: var(--h3TextSize);
    }

    .tab-mob-menu::after {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        content: "\F479";
        visibility: visible;
    }

    .tab-mob-menu:checked::after {
        content: "\F659";
    }

    .tab-mob-menu:checked~.navigation-container {
        border-top: 1px solid var(--shadowColor);
        height: 280px;
    }

    .sticky-img-dual>.blob {
        display: none;
    }

    .map-embed>iframe {
        height: 300px;
    }

    #services .rounded-start-top-lgonly-5 {
        border-top-left-radius: var(--bs-border-radius-xxl) !important;
    }

    #services .rounded-start-bottom-lgonly-5 {
        border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
    }

    #services .rounded-start-bottom-lgonly-5[aria-expanded="true"] {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

}


/* Tablet View */
@media only screen and (max-width: 767px) {
    .hero-socials {
        bottom: auto;
        top: 30px;
        left: 50%;
        transform: translate(-50%, 0);
        width: fit-content;
    }

    .mw-md-40 {
        max-width: 40% !important;
    }

    section h2 {
        font-size: calc(1rem + .9vw) !important
    }

    .section-title {
        padding: 5px 20px;
    }

}

/* Mobile View */
@media only screen and (max-width: 575px) {

    .hero-banner video{
        min-width: 0;
        min-height: 0;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-title {
        width: 80%;
    }

    .sticky-img-dual {
        width: 100%;
        height: auto;
    }

    .sticky-img-dual>img {
        height: 250px;
    }

    .sticky-img-dual>img:first-child {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .sticky-img-dual>img:last-child {
        position: unset;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        margin-top: 1rem;
    }

    .sticky-img-dual-spacer {
        display: none;
    }
}

@media only screen and (max-height: 500px) {

    .hero-banner,
    .sub-hero-banner {
        height: auto;
    }
}