:root {
    --site-dark-color: #9A3D55;
    --site-light-color: #E9DBCE;
    --light: #ffffff; 
    --dark: #333333;
}
body {
    margin: 0;
}
*{
    box-sizing: border-box;
}
h1, h3 {
    font-family: 'FreightBigProSemibold';
    font-weight: 600;
}
h2{
    font-family: 'FreightBigProBold';
    font-weight: bold;
}
p, a{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
a {
    text-decoration: none;
}
.border-radius-50 {
    border-radius: 50px;

}
.overflow-hidden {
    overflow: hidden;
}
/*****-----  Common-css-start-here  -----*****/
.container-fluid {
    width: 100%;
    padding: 0px 20px;
    max-width: 1920px;
    margin: 0 auto;
}
.row {
    margin: 0 -20px;
    display: flex;
    flex-wrap: wrap;
}
.col-12 {
    padding: 0px 20px;
    width: 100%;
    line-height: 0;
}

.d-flex{
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-end {
    justify-content: end;
}
.justify-content-space-between {
    justify-content: space-between;
}
.text-center {
    text-align: center;
}
.w-100 {
    width: 100%;
}
.height-100 {
    height: 100%;
}
.object-fit-cover {
    object-fit: cover;
}
.common-btn {
    padding: 22px 30px;
    background: var(--site-dark-color);
    box-shadow: 4px 4px 20px 0px #E8C7CF;
    border-radius: 70px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    color: var(--light);
    transition: all ease .4s;
}
.common-btn svg path {
    transition: all ease .4s;
}
.common-btn:hover {
    background: var(--light);
    color: var(--site-dark-color);
}
.common-btn:hover svg path {
    stroke: var(--site-dark-color);
}
/*****-----  Common-css-end-here  -----*****/

/*****-----  Header-css-start-here  -----*****/
.logo{
    width: 100%;
    max-width: 180px;  
}
header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px 0;
}
/*****-----  Header-css-end-here  -----*****/

/*****-----  Main-Banner-sec-start-here   -----*****/
.main-banner-sec {
    background: url(../images/Marbella_Main_Banner_img.jpg) no-repeat center;
    background-size: cover;
    padding: 221px 0 132px;
}
.main-banner-sec img{
    width: 100%;
    max-width: 900px;
}
.banner-content h1 {
    font-size: 125px;
    line-height: 119px;
    text-align: left;
    margin: 0;
    color: var(--site-dark-color);
}
.banner-content .common-btn {
    margin-top: 75px;
}
.common-btn svg {
    margin-right: 10px;
}
.left-col-banner {
    position: relative;
    z-index: 0;
}
.left-col-banner::before {
    position: absolute;
    content: "";
    width: 440px;
    height: 440px;
    border-radius: 50%;
    top: 26%;
    transform: translateY(-50%);
    left: 60px;
    z-index: -1;
    background: rgba(232, 199, 207, 1);
    opacity: .3;
}
/*****-----  Main-Banner-sec-end-here   -----*****/

/*****-----  Open-Now-sec-start-here   -----*****/
.open-now-sec {
    background: var(--site-dark-color);
    margin-top: -52px;
    position: relative;
}
.open-now-content {
    width: 100%;
    max-width: 900px;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.open-now-sec .left-col-open-now {
    max-width: 708px;
    padding: 0;
    position: static;
    left: 0;
    top: 0;
    bottom: 0;
}
.open-now-sec .right-col-open-now {
    width: calc(100% - 708px);
    background: url(../images/M-icon-for-bg.png) no-repeat center;
    background-size: cover;
    margin-left: auto;
    padding: 239px 12px 239px 30px;
}
.open-now-content img {
    max-width: 403px;
}
.open-now-content h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.04em;
    margin: 60px 0 60px;
    color: var(--light);
    text-transform: uppercase;
}
.open-now-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--light);
}
/*****-----  Open-Now-sec-end-here   -----*****/

/*****-----   Moving-content-sec-start-here   -----*****/
.moving-content-sec {
    padding: 30px 0 70px;
}
.moving-content-sec h3 {
    font-size: 180px;
    font-weight: 600;
    line-height: 226.62px;
    margin: 0;
    color: var(--site-light-color);
}
.content-left-to-right h3 {
    text-shadow: 2px 0 var(--site-light-color), -2px 0 var(--site-light-color), 0 2px var(--site-light-color), 0 -2px var(--site-light-color), 1px 1px var(--site-light-color), -1px -1px var(--site-light-color), 1px -1px var(--site-light-color), -1px 1px var(--site-light-color);
    color: var(--light);
}
.content-right-to-left, .content-left-to-right {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}
.content-right-to-left .inner-moving-content {
    animation: text-marquee-left 120s linear infinite;
    margin-right: 10px;
}
@keyframes text-marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.content-left-to-right .inner-moving-content {
    animation: text-marquee-right 150s linear infinite;
    margin-right: 10px;
}
@keyframes text-marquee-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
/*****-----   Moving-content-sec-end-here   -----*****/

/*****-----  Store-Hours-sec-start-here   -----*****/
.store-hours-sec {
    padding: 0 35px;
}
.store-hours-sec .side-col-store-hrs {
    max-width: 580px;
}
.store-hours-sec .center-col-store-hrs {
    width: calc(100% - 1160px);
    padding-top: 220px;
}
.store-hours-sec .last-col-store-hrs{
    padding-top: 100px;
}
.center-col-store-hrs h3 {
    font-size: 80px;
    font-weight: 600;
    line-height: 100.72px;
    text-align: center;
    margin: 0 0 60px;
}
.center-col-store-hrs p {
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    margin: 0;
}
.store-hrs-info {
    column-count: 2;
}
.content-store-hrs {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
/*****-----  Store-Hours-sec-end-here  -----*****/

/*****-----   Marbella-Shoes-sec-end-here   -----*****/
.marbella-shoes-sec {
    background: #F5E6EA;
    margin-top: 120px;
    margin-bottom: -52px;
    position: relative;
}
.marbella-shoes-sec .left-col-marbella-shoes{
    width: calc(100% - 750px);
    padding-top: 100px;
    padding-bottom: 120px;
}
.marbella-shoes-sec .right-col-marbella-shoes {
    max-width: 750px;
    padding: 0;
    position: static;
    right: 0;
    top: 0;
    bottom: 0;
}
.marbella-shoes-content {
    width: 100%;
    max-width: 742px;
}
.marbella-shoes-content h3 {
    font-size: 65px;
    line-height: 75px;
    margin: 0 0 40px;
}
.marbella-shoes-content h3 span{
    color: var(--site-dark-color);
}
.marbella-shoes-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin: 0 0 30px;
}
.circle-shape-bg {
    padding-left: 169px;
    position: relative;
    z-index: 0;
}
.circle-shape-bg::before {
    position: absolute;
    content: "";
    background: #f0dce1;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: -1;
}
/*****-----   Marbella-Shoes-sec-end-here   -----*****/

/*****-----   Footer-sec-start-here   -----*****/
footer {
    background: var(--site-dark-color);
    padding: 130px 0px 80px;
}
footer p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin: 60px 0 0;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p a {
    color: #fff;
    transition: all ease .4s;
}
footer p span {
    display: inline-flex;
    align-items: center;
}
footer p span:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(255,255,255,.6);
}
span.location-info {
    opacity: .6;
}
footer p span a {
    display: flex;
    align-items: center;
    opacity: .6;
}
footer p span img {
    margin-right: 10px;
}
footer p a:hover {
    /* color: var(--dark); */
    opacity: 1;
}
/*****-----   Footer-sec-end-here   -----*****/

@media (min-width: 992px){
    .left-col-banner{
        width: 45%; 
        padding-left: 169px;
    }
    .right-col-banner{
        width: 55%;
    }
}
@media (min-width: 1920px){
    .left-col-banner {
        padding-left: 169px;
    }
}
@media (max-width: 1600px){
    .left-col-banner::before {
        left: 12px;
    }

  
    .left-col-banner{
        padding-left: 20px;
    }    
    .main-banner-sec img {
        max-width: 700px;
    }
    .open-now-content {
        padding-left: 20px;
    }

    .open-now-sec .right-col-open-now {
        padding: 100px 12px 100px 30px;
    }
    .open-now-sec .left-col-open-now, .marbella-shoes-sec .right-col-marbella-shoes {
        max-width: 500px;
    }
    .open-now-sec .right-col-open-now, .marbella-shoes-sec .left-col-marbella-shoes {
        width: calc(100% - 500px);
    }
    .store-hours-sec {
        padding: 0;
    }
    .store-hours-sec .side-col-store-hrs {
        max-width: 420px;
    }
    .store-hours-sec .center-col-store-hrs {
        width: calc(100% - 840px);
    }
    .center-col-store-hrs h3 {
        font-size: 70px;
        line-height: 75.72px;
        margin: 0 0 40px;
    }
    .circle-shape-bg {
        padding-left: 50px;
    }
    .marbella-shoes-content h3 {
        font-size: 70px;
        line-height: 72px;
    }
    .marbella-shoes-sec .left-col-marbella-shoes {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .center-col-store-hrs p {
        font-size: 16px;
    }
}

@media(max-width:1199px){
    .main-banner-sec img {
        max-width: 450px;
    }
    .banner-content h1 {
        font-size: 100px;
        line-height: 90px;
    }
    .banner-content .common-btn {
        margin-top: 45px;
    }
    .logo {
        max-width: 130px;
    }
    .main-banner-sec {
        padding: 180px 0 132px;
    }
    .open-now-content p {
        font-size: 20px;
        line-height: 30px;
    }
    .open-now-sec .left-col-open-now, .marbella-shoes-sec .right-col-marbella-shoes {
        max-width: 400px;
    }
    .open-now-sec .right-col-open-now, .marbella-shoes-sec .left-col-marbella-shoes {
        width: calc(100% - 400px);
    }
    .marbella-shoes-content h3 {
        font-size: 60px;
        line-height: 63px;
        margin: 0 0 20px;
    }
    .marbella-shoes-content p {
        margin: 0 0 20px;
    }
    .circle-shape-bg {
        padding-left: 20px;
    }
    .moving-content-sec h3 {
        font-size: 100px;
        line-height: 135px;
    }
    .store-hours-sec .side-col-store-hrs {
        max-width: 320px;
    }
    .store-hours-sec .center-col-store-hrs {
        width: calc(100% - 640px);
        padding-top: 50px;
    }
    .store-hours-sec .last-col-store-hrs {
        padding-top: 30px;
    }
}

@media(max-width: 991px){
    .col-12 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .banner-content {
        padding-bottom: 40px;
    }
    .open-now-sec .left-col-open-now {
        position: unset;
    }
    .open-now-sec .left-col-open-now img, .store-hours-sec img, .marbella-shoes-sec .right-col-marbella-shoes img {
        max-width: 400px;
    }
    .open-now-content {
        padding-left: 0;
    }
    .open-now-content p, .marbella-shoes-content p {
        font-size: 14px;
        line-height: 24px;
    }
    .open-now-sec .col-12 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .open-now-sec .right-col-open-now {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .open-now-sec {
        padding-top: 20px;
    }
    .store-hours-sec .center-col-store-hrs {
        padding-top: 20px;
    }
    .content-store-hrs {
        margin: 0 auto 0 0;
    }
    .center-col-store-hrs h3 {
        text-align: left;
    }
    .marbella-shoes-sec .right-col-marbella-shoes {
        position: unset;
        padding: 0 20px 20px;
    }
    .open-now-content h2 {
        line-height: 60px;
    }
    .moving-content-sec h3 {
        font-size: 60px;
        line-height: 85px;
    }
}

@media(max-width: 767px){
    footer p {
        flex-direction: column;
    }
    footer p span:not(:last-child) {
        border: 0;
        padding: 0;
        margin: 0 0 20px;
    }
}
@media(max-width: 575px){
    .circle-shape-bg::before, .left-col-banner::before {
        width: 300px;
        height: 300px;
    }
    .banner-content h1 {
        font-size: 65px;
        line-height: 61px;
    }
    .common-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
    .open-now-content h2 {
        font-size: 50px;
        line-height: 40px;
        margin: 30px 0;
    }
    .center-col-store-hrs h3 {
        margin: 0 0 10px;
        font-size: 50px;
        line-height: 80px;
    }
    .center-col-store-hrs p {
        font-size: 14px;
        line-height: 32px;
    }
    .marbella-shoes-sec {
        margin-top: 70px;
    }
    .marbella-shoes-content h3 {
        font-size: 32px;
        line-height: 40px;
    }
    .moving-content-sec h3 {
        font-size: 40px;
        line-height: 65px;
    }
    .moving-content-sec {
        padding: 30px 0 40px;
    }


    footer{padding: 90px 0px 40px;}
    footer p{
        line-height: 25px;
    }
    .location-info {
        max-width: 267px;
        align-items: start;
    }
    .location-info svg {
        margin-top: 5px;
    }
}