/*-------------- Fonts -----------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Awesome Serif Variable Font */
@font-face {
    font-family: 'Awesome Serif';
    src: url('../fonts/Awesome Serif VAR-VF.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Awesome Serif Regular */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerif-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Awesome Serif Light */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerif-LightRegular.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Awesome Serif Medium */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerif-MediumRegular.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Awesome Serif SemiBold */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerif-SemiBoldRegular.otf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Awesome Serif Bold */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerif-BoldRegular.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Awesome Serif Italic Regular */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerifItalic-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Awesome Serif Italic Light */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerifItalic-LightReg.otf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Awesome Serif Italic Medium */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerifItalic-MedRegular.otf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Awesome Serif Italic SemiBold */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerifItalic-SmRegular.otf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Awesome Serif Italic Bold */
@font-face {
    font-family: 'Awesome Serif';
    src:
        url('../fonts/AwesomeSerifItalic-BdRegular.otf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/*-------------- Fonts -----------------*/

/*-------------- Start Global Rules -----------------*/
:root {
    --mainColor: #19262F;
    --secondColor: #CBAF75;
    --white: #fff;
    --black: #121212;
    --textColor: #595959;
    --textColor2: #474747;
    --lightBg: #f9f8f8;
    --smallSize: 12px;
    --mdSize: 14px;
    --mdSize2: 16px;
    --mdSize3: 18px;
    --lgSize: 20px;
    --lightFont: 100;
    --light2Font: 300;
    --mdFont: 600;
    --lgFont: 800;
    --paddingY: 60px;
    --paddingX: 100px;
    --awesome: 'Awesome Serif';
    --poppins: "Poppins", sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*,
::before,
::after {
    transition: 0.3s;
}

/*html {*/
/*    max-width: 1440px;*/
/*    margin: 0 auto;*/
/*    background: #000;*/
/*}*/

html {
    scroll-behavior: smooth;
}


:target {
    scroll-margin-top: 20px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: var(--mdSize);
    overflow-x: hidden;
    background-color: #fff;
    color: #19262F;
}

/*@media (min-width: 1200px) {*/
/*  .container {*/
/*    max-width: 1200px;*/
/*  }*/
/*}*/

ul,
ol {
    padding: 0;
    margin: 0;
}

a {
    color: #fff;
    font-family: 'Awesome Serif', serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Awesome Serif', serif;
    font-weight: 400;
}

a,
a:hover {
    text-decoration: none;
}

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

@media (min-width: 1200px) {
    .container {
        max-width: 94% !important;
        width: 94%;
    }
}

/*@media (min-width: 1200px) {*/
/*    .container {*/
/*        max-width: 94% !important;*/
/*        width: 94%;*/
/*        max-width: 1370px !important;*/
/*    }*/
/*}*/
/*-------------- End Global Rules -----------------*/
.row.no-padding.no-margin.myRow::after,
.row.no-padding.no-margin.myRow::before {
    display: none;
}

.row.no-padding.no-margin.myRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

header.siteHeader {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 9;
}

section.hero {
    position: relative;
    height: 100vh;
    background-color: #19262F;
}

@media(min-width: 1200px) {
    section.hero {
        max-height: 750px;
    }
}

section.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #19262F;
    z-index: 0;
}

div#block-carmelo-welcometo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
    width: 100%;
    align-items: center;
    height: 100%;
    padding: 100px;
    color: #F2F4EA;
    font-family: 'Awesome Serif', serif;
    font-weight: 300;
    font-size: 32.2px;
    line-height: 82.8px;
    letter-spacing: 2.26px;
}

div#block-carmelo-welcometo::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: url("../images/xVectore.svg") no-repeat center;
    background-size: contain;
    z-index: 2;
}

div#block-carmelo-welcometo::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -25px;
    width: 230px;
    height: 230px;
    background: url("../images/bigXVector.svg") no-repeat center;
    background-size: contain;
    z-index: 2;
}

section.hero::after {
    content: "";
    position: absolute;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 190px;
    background: url("../images/scrollDown.svg") no-repeat center;
    background-size: contain;
    z-index: 2;
}

div#block-carmelo-welcometo a {
    font-style: Regular;
    font-size: 21.7px;
    line-height: 16.18px;
    letter-spacing: 1.02px;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 15px 18px;
    color: #19262F;
    background: #F2F4EA;
    position: relative;
    display: flex;
    width: max-content;
    align-items: center;
    transition: 0.3s ease;
}

div#block-carmelo-welcometo a:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url("../images/location.svg") no-repeat center;
    background-size: contain;
    opacity: 0;
    margin-left: -13px;
}

div#block-carmelo-welcometo a:hover {
    gap: 5px;
}

div#block-carmelo-welcometo a:hover:before {
    opacity: 1;
    margin-left: 0;
}

#block-carmelo-welcometo>div:nth-child(2) img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

#block-carmelo-welcometo>div:nth-child(1) img {
    max-height: 119px;
    object-fit: contain;
    text-align: left;
    width: max-content;
}

section.hero .container {
    position: unset;
}

.header_right nav#block-carmelo-mainmenu ul:not(.contextual-links) {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 100%;
    justify-content: end;
}

.header_right nav#block-carmelo-mainmenu ul:not(.contextual-links) a {
    font-weight: 1;
    font-style: Light Regular;
    font-size: 19.19px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #EDEAE0;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.header_right nav#block-carmelo-mainmenu ul:not(.contextual-links) a:hover {
    border-color: #EDEAE0;
}

.header_right nav#block-carmelo-mainmenu ul:not(.contextual-links) a.bookLinkTag {
    line-height: 14.3px;
    letter-spacing: 0.9px;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 12px 17px;
    border: 0.79px solid #F2F4EA
}

.header_right nav#block-carmelo-mainmenu ul:not(.contextual-links) a.bookLinkTag:hover {
    background: #F2F4EA;
    color: #19262F;
}

nav#block-carmelo-sociallinks {
    position: absolute;
    bottom: 25px;
    right: 53px;
    z-index: 2;
}

nav#block-carmelo-sociallinks a {
    font-size: 24px;
}

section.about .container.no-padding {
    max-width: 1109px !important;
    padding: 95px 0;
}

div#block-carmelo-gettoknowus>div {
    width: 100%;
}

div#block-carmelo-gettoknowus {
    display: flex;
    flex-direction: row-reverse;
    gap: 100px;
}

div#block-carmelo-gettoknowus>div:nth-child(2) {
    padding: 15px;
}

div#block-carmelo-gettoknowus>div:nth-child(1) h2 {
    position: relative;
    padding-left: 42px;
    font-weight: 400;
    font-size: 28.44px;
    line-height: 27.73px;
    letter-spacing: 1.2px;
    color: #8D897C;
    margin-bottom: -25px;
}

div#block-carmelo-gettoknowus>div:nth-child(1) h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translatY(-50%);
    width: 25px;
    height: 2px;
    background: #8D897C;
    opacity: 0.9;
}

div#block-carmelo-gettoknowus>div:nth-child(1) h3 {
    font-weight: 400;
    font-style: Regular;
    font-size: 66.44px;
    line-height: 73.7px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #19262F;
    margin-bottom: 79px;
}

div#block-carmelo-gettoknowus>div:nth-child(1) p {
    font-family: var(--poppins);
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 26.9px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #19262F;
}

div#block-carmelo-gettoknowus>div:nth-child(1) p strong {
    font-family: var(--poppins);
    font-weight: 500;
    font-style: Italic;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 26.9px;
    letter-spacing: 0%;
    vertical-align: middle;
}

div#block-carmelo-gettoknowus>div:nth-child(1) {
    max-width: 42%;
}

.gallery {
    padding: 130px 0;
}

.gallery .container {
    max-width: 1232px !important;
}

section.lounge {
    position: relative;
    width: 100%;
    min-height: 472px;
}

section.lounge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/lounge.png") no-repeat center;
    background-size: cover;
    z-index: -1;
}

section.lounge img {
    position: absolute;
    top: 0;
    right: 0;

}

section.lounge .container {
    height: 472px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
}

@media(min-width: 1100px) {
    section.lounge .container {
        padding: 0 50px;
    }
}

section.lounge .container::after,
section.lounge .container::before {
    display: none;
}

div#block-carmelo-masterbarberinmississauga {
    position: relative;
    z-index: 2;
    padding-top: 55px;
}

div#block-carmelo-masterbarberinmississauga h2 {
    font-family: var(--poppins);
    font-weight: 500;
    font-style: Italic;
    font-size: 15px;
    line-height: 26.9px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #19262F;
    padding: 0 9.5px;
    background-color: #fff;
    margin-bottom: 20px;
    width: max-content;
}

div#block-carmelo-masterbarberinmississauga p {
    font-family: var(--poppins);
    font-weight: 500;
    font-style: Italic;
    font-size: 15px;
    line-height: 26.9px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}

div#block-carmelo-masterbarberinmississauga p a {
    padding-left: 30px;
    background: url("../images/directionWhite.svg") no-repeat center left;
    background-size: auto;
    color: #fff;
    font-family: var(--awesome);
    font-weight: 175;
    font-style: Regular;
    font-size: 24.89px;
    line-height: 18.55px;
    letter-spacing: 1.17px;
    vertical-align: middle;
    text-transform: uppercase;
    margin-top: 28px;
    font-style: normal;
}

div#block-carmelo-masterbarberinmississauga p a:hover {
    color: #CBAF75;
    background-image: url("../images/colordLocation.svg");
}

.gallery .views-row ul:not(.contextual-links) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}

.gallery .views-row ul:not(.contextual-links) a {
    position: relative;
}

.gallery .views-row ul:not(.contextual-links) a::before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 12px;
    width: 13px;
    height: 14px;
    background: url("../images/insta.svg") no-repeat center;
    background-size: auto;
    z-index: 2;
}

.gallery .views-row ul img {
    height: 305px;
    object-fit: cover;
}

.gallery .views-field.views-field-title {
    font-family: 'Awesome Serif';
    font-weight: 350;
    font-style: Medium Tall;
    font-size: 54.44px;
    leading-trim: CAP_HEIGHT;
    line-height: 73.7px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 50px;
    text-align: center;
}


div#block-carmelo-portcreditmississauga>div:nth-child(1) h2 {
    position: relative;
    padding-left: 42px;
    font-weight: 400;
    font-size: 21.44px;
    line-height: 27.73px;
    letter-spacing: 1.2px;
    color: #fff;
    margin-bottom: -25px;
}

div#block-carmelo-portcreditmississauga>div:nth-child(1) h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translatY(-50%);
    width: 25px;
    height: 2px;
    background: #fff;
    opacity: 0.9;
}

div#block-carmelo-portcreditmississauga>div:nth-child(1) h3 {
    font-weight: 400;
    font-style: Regular;
    font-size: 66.44px;
    line-height: 73.7px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 58px;
}

div#block-carmelo-portcreditmississauga>div:nth-child(1) p {
    font-family: var(--poppins);
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 26.9px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}

div#block-carmelo-portcreditmississauga>div:nth-child(1) {
    position: relative;
    z-index: 2;
}

div#views-bootstrap-tab-views-bootstrap-services-block-1 {
    display: flex;
}

.services {
    background-color: #F2F4EA;
    padding: 111px 10px 120px 10px;
}

.services .container {
    position: relative;
}

.services ul.nav.nav-tabs.nav-justified {
    display: grid;
    max-width: 741px;
    gap: 30px;
}

.services li.nav-item {
    display: flex;
    width: 100%;
    position: relative;
}

.services li.nav-item a.nav-link {
    display: flex;
    width: max-content;
    border: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    font-weight: 500;
    font-size: 32.26px;
    line-height: 34.4px;
    color: #19262F;
    padding: 0 !important;
    padding-top: 40px !important;
    padding-bottom: 0 !important;
    position: relative;
}

.services li.nav-item a.nav-link::before {
    content: "01";
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--awesome);
    font-weight: 500;
    font-size: 12.93px;
    line-height: 20.69px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #CBAF75;
}

.services li.nav-item a.nav-link::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 0.8px;
    background: #A7A7A7;
}

.services li.nav-item.active a.nav-link {
    color: #CBAF75;
    width: 100%;
}


/* Tab content styling */
#views-bootstrap-tab-views-bootstrap-services-block-1 {
    display: flex;
    align-items: flex-start;
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul {
    flex-shrink: 0;
}

.services .tab-content {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.services .tab-pane {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #EDEAE0;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    max-width: 72%;
}

.services .tab-pane.active {
    visibility: visible;
    opacity: 0;
    transform: translateX(-30px);
}

.services .tab-pane.active.show {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Border styles for top and bottom positioned panes */
.services .tab-pane.position-top {
    border-top: 1px solid #A7A7A7;
}

.services .tab-pane.position-bottom {
    border-bottom: 1px solid #A7A7A7;
}

.services .views-field-title {
    font-family: var(--awesome);
    font-weight: 500;
    font-size: 32.26px;
    line-height: 34.4px;
    color: #19262F;
    margin-bottom: 12px;
}

.services .views-field-fieldset fieldset {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #19262F;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 5px;
    font-family: var(--awesome);
    font-weight: 300;
    font-size: 26.26px;
    line-height: 34.4px;
    margin-bottom: 12px !important;
    color: #19262F;
}

.services .views-field-fieldset fieldset .views-field.views-field-field-price {
    display: flex;
    gap: 5px;
}

.services .views-field-fieldset fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.services .views-field-body {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 15px;
    line-height: 26.9px;
    color: #19262F;
    margin-bottom: 12px;
}


.services .views-field-nothing a {
    display: inline-block;
    padding: 12px 17px;
    border: 1px solid #101010;
    color: #363636;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--awesome);
    font-weight: 1;
    font-style: Light Regular;
    font-size: 19.19px;
    line-height: 14.3px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.services .views-field-nothing a:hover {
    background-color: #F2F4EA;
    color: #19262F;
}

/* .services .views-field-nothing a:hover {
    background-color: #19262F;
    color: #F2F4EA;
} */

/* Number prefixes */
#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(2) a.nav-link::before {
    content: "02";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(3) a.nav-link::before {
    content: "03";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(4) a.nav-link::before {
    content: "04";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(5) a.nav-link::before {
    content: "05";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(6) a.nav-link::before {
    content: "06";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(7) a.nav-link::before {
    content: "07";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(8) a.nav-link::before {
    content: "08";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(9) a.nav-link::before {
    content: "09";
}

#views-bootstrap-tab-views-bootstrap-services-block-1>ul>li:nth-child(10) a.nav-link::before {
    content: "10";
}



footer .container {
    max-width: 100% !important;
    background: #19262F;
    width: 100% !important;
    color: #fff;
}

.row.no-padding.no-margin.topRow {
    max-width: 100% !important;
    background: #19262F;
    padding: 197px 10px 40px 10px;
    width: 100% !important;
    position: relative;
    padding-inline: 100px;
    justify-content: center;
    display: flex;
}

.row.no-padding.no-margin.topRow .col-md-12.footerTop {
    position: unset;
    max-width: 1038px;
    margin: 0 auto;
    margin-bottom: 104px;
}

#block-carmelo-bookyourappointment>div:nth-child(1) {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#block-carmelo-bookyourappointment>div:nth-child(1) p {
    color: #fff;
    font-family: var(--awesome);
    font-weight: 300;
    font-style: Medium Regular;
    font-size: 41px;
    line-height: 48px;
    letter-spacing: 3%;
    text-align: left;
}

#block-carmelo-bookyourappointment>div:nth-child(1) p a {
    color: #333;
    font-family: var(--awesome);
    font-weight: font weight/400;
    font-style: Regular;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.1px;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 42px;
    background-color: #fff;
    border-radius: 200px;
    margin-right: -30px;
    position: relative;
    display: flex;
    width: max-content;
    align-items: center;
    transition: 0.3s ease;
}

#block-carmelo-bookyourappointment>div:nth-child(1) p a::before {
    content: "";
    display: inline-block;
    opacity: 0;
    width: 20px;
    height: 1px;
    color: #333;
}

#block-carmelo-bookyourappointment>div:nth-child(1) p a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #333;
    opacity: 0;
    margin-right: -26px;
}

#block-carmelo-bookyourappointment>div:nth-child(1) p a:hover {
    gap: 5px;
    background-color: #F2F4EA;
}

#block-carmelo-bookyourappointment>div:nth-child(1) p a:hover:before {
    opacity: 1;
    margin-right: 0;
}

footer .container div#block-carmelo-bookyourappointment img {
    position: absolute;
    top: 0;
    right: 0;
    height: 466px;
}

.row.footerbottomRow {
    max-width: 1135px;
    margin: 0 auto;
    margin-bottom: 130px;
}

.row.footerbottomRow .col-md-4 {
    padding-left: 64px;
    border-left: 1px solid #3A4D5A;
}

.row.footerbottomRow .col-md-4.mb-2.footer_info1 {
    border: none;
}

.row.footerbottomRow .col-md-4 h2 {
    font-family: var(--awesome);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
    margin-top: 0;
}

.row.footerbottomRow .col-md-4 ul:not(.contextual-links) {
    display: grid;
    gap: 5px;
}

.row.footerbottomRow .col-md-4 a,
.row.footerbottomRow .col-md-4 p {
    display: block;
    width: 100%;
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.row.footerbottomRow .col-md-4 p strong {
    color: #E1E1E1;
    font-weight: 400;
}

div#block-carmelo-copyright {
    padding-bottom: 40px;
}

div#block-carmelo-copyright a,
div#block-carmelo-copyright {
    text-align: center;
    font-family: var(--poppins);
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    text-align: center;
    vertical-align: middle;
}

.col-md-4.mb-2.footer_info2 a {
    text-decoration: underline;
}

.col-md-4.mb-2.footer_info1 a {
    max-width: 60%;
}

.row.footerbottomRow .col-md-4 a:hover,
div#block-carmelo-copyright a:hover {
    color: #CBAF75;
}


/* Page Loader Styles */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #19262F;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

#page-loader img {
    max-width: 200px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Animation Classes - Desktop only */
@media (min-width: 769px) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        will-change: opacity, transform;
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }
}


footer li[aria-label="instagram"] a {
    font-size: 24px !important;
    margin-top: 10px;
}

/* Mobile - disable animations */
/* @media (max-width: 768px) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
} */

div#block-carmelo-gettoknowus {
    position: relative;
}

div#block-carmelo-gettoknowus::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 56%;
    width: 45%;
    height: 178px;
    background: #F2F4EA4D;
    z-index: 0;
}

@media(max-width: 900px) {
    div#block-carmelo-gettoknowus::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 134px;
        background: #F2F4EA4D;
        z-index: 0;
    }
}

.page-node-user.page-args-user-login .inner-page-content-main {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*==============================================
   Popup Announcement Styling
==============================================*/

/* 1. Center popup overlay to override any margin/left offsets */
.block-carmelo-priceupdateannouncement-modal.spb_overlay {
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(25, 38, 47, 0.85) !important;
}

.block-carmelo-priceupdateannouncement-modal.spb_overlay:not([style*="display: none"]) {
    display: flex !important;
}

/* 2. Main Wrapper Dimension */
.spb-popup-main-wrapper {
    background-color: #fff !important;
    padding: 0 !important;
    overflow: visible !important;
    border-radius: 0 !important;
    border: none !important;
    pointer-events: auto !important;
    /* Make sure the wrapper itself is clickable internally */
}

/* Base Mobile-First Responsive Setup (Centered) */
.spb-popup-main-wrapper.spb_center {
    width: 90vw !important;
    max-width: 484.43px !important;
    height: auto !important;
    /* Allow height to adapt on small screens */
    min-height: 513px !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 60px 15px 30px !important;
    /* Mobile breathing room, enough top space for the X button */
    z-index: 999999 !important;
}

/* Formatting for iPad Pro and larger screens */
@media (min-width: 1024px) {
    .spb-popup-main-wrapper.spb_center {
        padding: 0 !important;
        height: 513px !important;
        justify-content: center !important;
        margin: 0 auto !important;
        /* Keep it centered on all large screens */
    }
}

/* Inner block */
.spb-popup-main-wrapper #block-carmelo-priceupdateannouncement {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 433.3px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 34.8px !important;
    text-align: center;
    color: #1c2126;
    font-family: 'Awesome Serif', serif;
}

/* The Close Button */
.spb-popup-main-wrapper .spb-controls {
    position: static !important;
    pointer-events: none !important;
}

.spb-popup-main-wrapper .spb_close,
.spb-popup-main-wrapper .block-carmelo-priceupdateannouncement-modal-close {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    width: 40px !important;
    /* Slightly larger click target */
    height: 40px !important;
    color: #1c2126 !important;
    font-size: 35px !important;
    font-weight: 300 !important;
    opacity: 0.8 !important;
    transition: 0.3s ease;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    pointer-events: all !important;
    /* MUST be all/auto to receive clicks */
    z-index: 2147483647 !important;
    /* Maximum possible z-index */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (min-width: 1024px) {

    .spb-popup-main-wrapper .spb_close,
    .spb-popup-main-wrapper .block-carmelo-priceupdateannouncement-modal-close {
        top: 15.47px !important;
        left: 25.72px !important;
        width: 30px !important;
        height: 30px !important;
    }
}

.spb-popup-main-wrapper .spb_close:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

/* Hide the default block title */
#block-carmelo-priceupdateannouncement h2#carmelo-priceupdateannouncement-title,
#block-carmelo-priceupdateannouncement h2.block-title {
    display: none !important;
}

/* Ignore intermediate Drupal divs for flex calculations */
#block-carmelo-priceupdateannouncement>div,
#block-carmelo-priceupdateannouncement>div>div,
#block-carmelo-priceupdateannouncement>div>div>div {
    display: contents !important;
}

/* Popup Content Wrapper */
#block-carmelo-priceupdateannouncement .content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15.4px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Popup Typography - Main Heading */
#block-carmelo-priceupdateannouncement h2:not(.block-title) {
    font-family: 'Awesome Serif', serif !important;
    font-size: 30px !important;
    /* Slightly smaller for mobile safety */
    font-weight: 400 !important;
    color: #1c2126 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.05em !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8.3px !important;
    padding: 0 !important;
}

@media (min-width: 1024px) {
    #block-carmelo-priceupdateannouncement h2:not(.block-title) {
        font-size: 35.17px !important;
        line-height: 25.62px !important;
    }
}

/* The Highlighted Date "April 1" */
#block-carmelo-priceupdateannouncement h2 .date-highlight {
    background-color: #19262f !important;
    color: #fff !important;
    font-size: 26px !important;
    line-height: 1.2 !important;
    height: auto !important;
    padding: 8px 12px !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    margin: 0 !important;
}

@media (min-width: 1024px) {
    #block-carmelo-priceupdateannouncement h2 .date-highlight {
        font-size: 30.51px !important;
        line-height: 22.22px !important;
        height: 41.3px !important;
        width: 101.2px !important;
        padding: 0 !important;
    }
}

/* Popup Body Text */
#block-carmelo-priceupdateannouncement p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: #1c2126 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 433.3px !important;
    padding: 0 10px !important;
    text-align: center !important;
}

@media (min-width: 1024px) {
    #block-carmelo-priceupdateannouncement p {
        font-size: 16.97px !important;
        line-height: 24.88px !important;
        padding: 0 !important;
    }
}

/* Ensure <br> tags behave correctly or text naturally wraps into two lines */
#block-carmelo-priceupdateannouncement p br {
    display: none !important;
}

/* Popup Barber Image */
#block-carmelo-priceupdateannouncement img,
#block-carmelo-priceupdateannouncement .media {
    width: 100% !important;
    max-width: 433.3px !important;
    height: auto !important;
    /* Mobile adaptive height */
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
}

@media (min-width: 1024px) {

    #block-carmelo-priceupdateannouncement img,
    #block-carmelo-priceupdateannouncement .media {
        height: 271.4px !important;
        /* Exact figma size on desktop */
    }
}

/* Ensure figure doesn't add margin */
#block-carmelo-priceupdateannouncement figure {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Overlay Background */
#spb-overlay,
.block-carmelo-priceupdateannouncement-modal.spb_overlay {
    background-color: rgba(25, 38, 47, 0.85) !important;
}