
:root {
    --black: #1f2231;
    --white: #f7f5f5;
    --realwhite: #ffffff;
    --bodyback: #f5f5ee;
    --lightgrey: #f7f7f7;
    --darkgrey:#6D7283;

    --greytext: #2f323f;
    --goldtext: #bfa051;
    --gold: #d5bc7c;
    --darkgold: #977d3a;
    --green: #2b8122;
    --darker_green: #022d13;
    --brand_green: #9fa374;
    --dark_brand_green: #74995a;

    --font-family-1: 'Lato', sans-serif;
    --font-family-2: 'Playfair', serif;



    --font-family-serif: 'Cormorant Garamond', serif;
    --font-family-sans-serif: 'Lato', sans-serif;
    --font-family-handwriting: 'Grape Nuts', handwriting;

}





html {
    background: var(--bodyback);
    color: var(--darkgrey);
    font-size: 16px;
    overflow-x:hidden;
    scroll-behavior: smooth;
}


@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5) {
    html {
        font-size: 11px !important;
    }

}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.20) {
    html {
        font-size: 12px !important;
    }
}


body{
    overflow-x:hidden;
    background: var(--bodyback);
    font-family: var(--font-family-sans-serif);
}


a{
    color: inherit;
    text-decoration: none;
}
/*body.no-scroll {
overflow: hidden;
height: 100vh;
}*/


.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


:root :where(.is-layout-flow) > * {
    margin-block-start: 0;
    margin-block-end: 0;
}


.desktop_only{

    @media screen and (min-width:992px) {

    }
    @media screen and (max-width:991px) {
        display: none;
    }

}



.mobile_only{

    @media screen and (min-width:992px) {
 display: none;
    }

}



h1,h2,h3,h4,h5, .seriffont{
    font-family: var(--font-family-serif);
    letter-spacing: 1px;
}

p,li, .sansseriffont{
    font-family: var(--font-family-sans-serif);
}

.handwriting_in_sentance{
    font-family: var(--font-family-handwriting);
    font-size: 165%;
    margin-left:0.25rem;
    letter-spacing: 1px;
}

.underlined{
    margin-left:0.25rem;
    letter-spacing: 1px;  
    text-decoration: underline;
}

/**{
border: 1px solid red;
}*/

body,
figure {
    margin: 0;
}


::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gold);
}
::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 6px;
  border: 2px solid var(--gold);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #f0f0f0;
}


.centered_undergriffin{
    position: absolute;
    top: 1rem;
    left: calc(50% - 5rem);
    height: 12rem;
    width: 10rem;
    background-image: url(../img/grey_griffin_outline.png);
    background-size: 10rem;
    background-repeat: no-repeat;
    opacity: 0.1;
    transition: all .2s ease;
}

.holds_griffin_left{
    position: relative;
    .undergriffin{
        position: absolute;
        top: 1rem;
        left: 3rem;
        height: 15rem;
        width: 15rem;
        background-image: url(../img/grey_griffin_outline.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        opacity: 0.1;
        transition: all .2s ease;
    }

}


.holds_griffin_right{
    position: relative;
    .undergriffin{
        position: absolute;
        top: 1rem;
        right: 3rem;
        height: 15rem;
        width: 15rem;
        background-image: url(../img/grey_griffin_outline.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        opacity: 0.1;
        transition: all .2s ease;
    }

}




.goldgradient{
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}


.greengradient {
    background: linear-gradient(to bottom, var(--dark_brand_green) 0%,var(--brand_green) 100%);
}



:where(.wp-site-blocks) > *{
    margin: 0;
}


.container {
    width: 90vw;
    margin: 0 auto;
    @media screen and (min-width: 2560px){
        max-width: 1440px;
    }
    @media screen and (min-width: 1920px) and (max-width: 2559px){
        max-width: 1440px;
    }
    @media screen and (min-width: 1681px) and (max-width: 1919px){
        max-width: 1440px;
    }
    @media screen and (min-width: 1441px) and (max-width: 1680px){
        max-width: 1440px;
    }
    @media screen and (min-width: 1366px) and (max-width: 1440px){
        max-width: 1024px;
    }
    @media screen and (min-width: 1024px) and (max-width: 1365px){
        max-width: 991px;
    }
}



.section_padding {

    @media screen and (min-width: 2560px){
        padding: 3rem 0;
    }
    @media screen and (min-width: 1920px) and (max-width: 2559px){
        padding: 3rem 0;
    }
    @media screen and (min-width: 1681px) and (max-width: 1919px){
        padding: 3rem 0;
    }
    @media screen and (min-width: 1441px) and (max-width: 1680px){
        padding: 3rem 0;
    }
    @media screen and (min-width: 1366px) and (max-width: 1440px){
        padding: 2rem 0;
    }
    @media screen and (min-width: 1024px) and (max-width: 1365px){
        padding: 2rem 0;
    }
}

.section_padding_large{
    @media screen and (min-width: 2560px){
        padding: 8rem 0;
    }
    @media screen and (min-width: 1920px) and (max-width: 2559px){
        padding: 7rem 0;
    }
    @media screen and (min-width: 1681px) and (max-width: 1919px){
        padding: 6rem 0;
    }
    @media screen and (min-width: 1441px) and (max-width: 1680px){
        padding: 6rem 0;
    }
    @media screen and (min-width: 1366px) and (max-width: 1440px){
        padding: 5rem 0;
    }
    @media screen and (min-width: 1024px) and (max-width: 1365px){
        padding: 3rem 0;
    } 
}


.container .flexholder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column; /* default for smaller screens */
}

@media screen and (min-width: 992px) {
    .container .flexholder {
        flex-direction: row;
    }
}

.luxury_section {
    position: relative;
    margin: 0;

    @media screen and (min-width:992px) {

    }
    @media screen and (max-width:991px) {
        padding: 1.5rem 0;                
    }

}


.posrel{
    position: relative;
}


/********************/
/*** ********** *****/
/********************/

.holds_buttons{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;

    .genbutton{
        padding: 0.75rem 1.5rem;
        background: transparent;
        margin-bottom: 5px;
        text-decoration: none;
        border: 1px solid var(--black);
        color: var(--black);
        font-size: calc(.8rem + 0.1vw);
        margin-right: 0.75rem;
        &.activised{
            background: var(--gold);
            color: #444;
            cursor: pointer;
            border: 1px solid #fff;
        }
        &:hover{
            background: #444;
            color: #fff;
            cursor: pointer;
        }
    }

}

/********************/
/*** typography *****/
/********************/



.has_lit_headings_and_text, .kt-inside-inner-col{


    .fancyright {
     
                  @media screen and (min-width:992px) {
        line-height: 0.5;                
                  }
                  @media screen and (max-width:991px) {
                        line-height: 1.15;
                  }
     
        text-align: left;
    }
    .fancyright span {
        display: inline-block;
        position: relative;  
    }
    .fancyright span:before {
        content: "";
        position: absolute;
        height: 7px;
        border-bottom: 1px solid var(--gold);
        border-top: 1px solid var(--gold);
        top: 7px;
        width: 10rem;
    }
    .fancyright span:before {
        right: 100%;
        margin-right: 15px;
    }



    h1.fancyright, h2.fancyright, h3.fancyright, h4.fancyright, h5.fancyright{
        color: var(--greytext);
    }





    .fancy {
                  @media screen and (min-width:992px) {
        line-height: 0.5;                
                  }
                  @media screen and (max-width:991px) {
                        line-height: 1.15;
                  }
        text-align: center;
    }
    .fancy span {
        display: inline-block;
        position: relative;  
    }
    .fancy span:before,
    .fancy span:after {
        content: "";
        position: absolute;
        height: 7px;
        border-bottom: 1px solid var(--gold);
        border-top: 1px solid var(--gold);
        top: 7px;
        width: 10rem;
    }
    .fancy span:before {
        right: 100%;
        margin-right: 15px;
    }
    .fancy span:after {
        left: 100%;
        margin-left: 15px;
    }


    h1.fancy, h2.fancy, h3.fancy, h4.fancy, h5.fancy{
        color: var(--greytext);
    }


    .underfancy{
        margin: 0 auto;
        max-width: 30rem;
        p{
            text-transform: uppercase;
            font-size: calc(.8rem + 0.1vw);
            letter-spacing: 2px;
            color: var(--darkgold); 
            text-align: center; 
        }
        &.left{
            margin: unset;
            p{
                text-align: left !important; 
            }    
        }
    }






    h1,h2,h3,h4,h5{
        margin: 0.15rem 0;
        line-height: 1.15em;
    }

    .pre_heading{
        text-transform: uppercase;
        font-size: calc(.8rem + 0.1vw);
        letter-spacing: 2px;
        color: var(--darkgold);
        position: relative;

        &.afterline{
            display: inline-block;
            &:after{
                content: '';
                border-top: 2px solid var(--gold);
                width: 3rem;
                position: absolute;
                top: calc(50% - 1px);
                left: calc(100% + 1rem);

            }
        }
    }



    .pre_heading{
        text-transform: uppercase;
        font-size: calc(.8rem + 0.1vw);
        letter-spacing: 2px;
        color: var(--darkgold);
        position: relative;

        &.sidelines{
            display: inline-block;
            &:after{
                content: '';
                border-top: 2px solid var(--gold);
                width: 3rem;
                position: absolute;
                top: calc(50% - 1px);
                left: calc(100% + 1rem);

            }
            &:before{
                content: '';
                border-top: 2px solid var(--gold);
                width: 3rem;
                position: absolute;
                top: calc(50% - 1px);
                right: calc(100% + 1rem);

            }
        }
    }



    h1{          
        @media screen and (min-width:992px) {
            font-size: calc(3rem + 0.1vw);                
        }
        @media screen and (max-width:991px) {
            font-size: calc(1.8rem + 0.1vw);
        }
    }
    h2{          
        @media screen and (min-width:992px) {
            font-size: calc(2.25rem + 0.1vw);                
        }
        @media screen and (max-width:991px) {
            font-size: calc(1.5rem + 0.1vw);
        }
    }
    h3{          
        @media screen and (min-width:992px) {
            font-size: calc(2.15rem + 0.1vw);                
        }
        @media screen and (max-width:991px) {
            font-size: calc(1.4rem + 0.1vw);
        }
    }
    h4{          
        @media screen and (min-width:992px) {
            font-size: calc(1.75rem + 0.1vw);                
        }
        @media screen and (max-width:991px) {
            font-size: calc(1.3rem + 0.1vw);
        }
    }
    h5{          
        @media screen and (min-width:992px) {
            font-size: calc(1.65rem + 0.1vw);                
        }
        @media screen and (max-width:991px) {
            font-size: calc(1.2rem + 0.1vw);
        }
    }
    p{
        color: var(--greytext);
        font-size: calc(1.05rem + 0.1vw);
        font-family: var(--font-family-serif);
        font-weight: 300;
    }

    ul{
        li{
            color: var(--greytext);
            font-size: calc(1.05rem + 0.1vw);
            font-family: var(--font-family-serif);
            line-height: 1.5em;
        }
    }


.contento{

                 @media screen and (min-width:992px) {
                    
                 }
                 @media screen and (max-width:991px) {
                    ul{
                        padding-left: 3rem;
                        li{
                            text-align: left;
                        }
                    }
                 }
    
}



    &.largeheadings{
        h1{          
            @media screen and (min-width:992px) {
                font-size: calc(5rem + 0.1vw);                
            }
            @media screen and (max-width:991px) {
                font-size: calc(1.8rem + 0.1vw);
            }
        }
        h2{          
            @media screen and (min-width:992px) {
                font-size: calc(4rem + 0.1vw);                
            }
            @media screen and (max-width:991px) {
                font-size: calc(1.5rem + 0.1vw);
            }
        }
        h3{          
            @media screen and (min-width:992px) {
                font-size: calc(3.5rem + 0.1vw);                
            }
            @media screen and (max-width:991px) {
                font-size: calc(1.4rem + 0.1vw);
            }
        }
        h4{          
            @media screen and (min-width:992px) {
                font-size: calc(2.75rem + 0.1vw);                
            }
            @media screen and (max-width:991px) {
                font-size: calc(1.3rem + 0.1vw);
            }
        }
        h5{          
            @media screen and (min-width:992px) {
                font-size: calc(2.2rem + 0.1vw);                
            }
            @media screen and (max-width:991px) {
                font-size: calc(1.2rem + 0.1vw);
            }
        }
    }

}

















/********************/
/*** ********** *****/
/********************/

.to-be-introduced-1{
    opacity: 0;
    transition: all .3s ease-in-out;
}
.to-be-introduced-2{
    opacity: 0;
    transition: all .8s ease-in-out;
}
.to-be-introduced-3{
    opacity: 0;
    transition: all 1.2s ease-in-out;
}
.to-be-introduced-4{
    opacity: 0;
    transition: all 1.4s ease-in-out;
}
.to-be-introduced-5{
    opacity: 0;
    transition: all 1.6s ease-in-out;
}
.to-be-introduced-6{
    opacity: 0;
    transition: all 1.8s ease-in-out;
}
.to-be-introduced-7{
    opacity: 0;
    transition: all 1.9s ease-in-out;
}


.luxury_section{
    &.visible{
        .to-be-introduced-1{
            opacity: 1;
            transition: all .3s ease-in-out;
        }
        .to-be-introduced-2{
            opacity: 1;
            transition: all .8s ease-in-out;
        }
        .to-be-introduced-3{
            opacity: 1;
            transition: all 1.2s ease-in-out;
        }
        .to-be-introduced-4{
            opacity: 1;
            transition: all 1.4s ease-in-out;
        }
        .to-be-introduced-5{
            opacity: 1;
            transition: all 1.6s ease-in-out;
        }
        .to-be-introduced-6{
            opacity: 1;
            transition: all 1.8s ease-in-out;
        }
        .to-be-introduced-7{
            opacity: 1;
            transition: all 1.9s ease-in-out;
        }

    }
}


.wp-admin.make_all_visible{
    .to-be-introduced-1{
        opacity: 1 !important;
    }
    .to-be-introduced-2{
        opacity: 1 !important;
    }
    .to-be-introduced-3{
        opacity: 1 !important;
    }
    .to-be-introduced-4{
        opacity: 1 !important;
    }
    .to-be-introduced-5{
        opacity: 1 !important;
    }
    .to-be-introduced-6{
        opacity: 1 !important;
    }
    .to-be-introduced-7{
        opacity: 1 !important;
    }
}


/********************/
/*** Blocks *****/
/********************/



/********************/
/*** ********** *****/
/********************/

.luxury_filter_results{
    .yousearched{
        margin-top: 1.5rem;
        h3{
            margin: 0;
            text-align: center;
            color: var(--darkgold);

            @media screen and (min-width:992px) {
                font-size: calc(2rem + 0.1vw);                
            }
            @media screen and (max-width:991px) {
                font-size: calc(1.8rem + 0.1vw);
            } 
        }

        .searched_hold{
            display: flex;

             @media screen and (min-width:992px) {
                           justify-content: center;
            align-items: center; 
             }
             @media screen and (max-width:991px) {
                 flex-wrap: wrap; 
                 justify-content: space-between;
             }



            div.search_block{
                padding: 0.75rem;
                text-align: center;

             @media screen and (min-width:992px) {
                padding-right: 1.5rem;   
                                width: 20%;             
             }
             @media screen and (max-width:991px) {
                                width: 33%;
             }



                .search_title{
                    font-size: calc(1.25rem + 0.1vw);
                    font-weight: 600;
                    padding-bottom: 0.75rem;
                    font-family: var(--font-family-serif);
                    border-bottom: 1px solid var(--gold);
                }
                .contains_search_tags{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-wrap: wrap;

                    .search_tag{
                        font-size: calc(.65rem + 0.1vw);
                        margin-right: 0.25rem;
                        text-transform: capitalize;

                                     @media screen and (min-width:992px) {
                                                                padding: 0.25rem .75rem;
                                                                                        border: 1px solid var(--black);
                                     }
                                     @media screen and (max-width:991px) {
                                        width: 100%;
                                        margin-bottom: 0.5rem;
                                     }
                        
                    }
                }
            }
        }
    }

}

/********************/
/*** ********** *****/
/********************/

.holds_tour_cards{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    .tour_card{
        background: #fafafa;
        margin-bottom: 1rem;
            position: relative;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        @media screen and (min-width:1024px) {
            width: calc(33.333% - 0.75rem);
        }
        @media screen and (min-width:992px) and (max-width:1023px) {
            width: calc(50% - 0.75rem);
        }

                @media screen and (max-width:991px) {
            width: calc(100% - 3rem);
            margin-left: 1.5rem;
        }
        a{
            display: block;
            transition: all .2s ease;
            &:hover{
                opacity: 0.85;
                transition: all .2s ease;
            }
        }

        .main_img{
            width: 100%;
            max-height: 16rem;
            object-fit: cover;
        }

        .content_zone{
            padding: 1rem;
            position: relative;
            .over_logo_right{
                position: absolute;
                right: 1rem;
                top: -1rem;
                img{
                    max-width: 3rem;
                }
            }
            h4{
                margin: 0;
                margin-bottom: .75rem;
                font-size: calc(1.25rem + 0.1vw);
                max-width: 80%;
            }

            .description{
                p{
                    font-size: calc(.8rem + 0.1vw);
                }
            }
        }


/*hider*/
        .hider{
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            .thunderlay{
                position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: var(--white);
            opacity: 0.8;
            }
            .holds_text{
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            position: relative;
                        flex-direction: column; 
                        padding: 1.5rem;
                            p{
                                font-size: calc(1.5rem + 0.1vw);
                                text-align: center;
                            }
                            a{
                                color: var(--black);
                                font-size: calc(1.4rem + 0.1vw);
                                text-align: center;
                                                    font-family: var(--font-family-serif);
                    border-top: 1px solid var(--gold);
                            }
            }
        }

    }
}



/********************/
/*** ********** *****/
/********************/

.luxury_footer{
    background: #444;
    color: #fff;
    min-height: 10rem;
    padding: 3rem 0 0;
    border-top: .25rem solid var(--darkgrey);


    .container{
        .flexholder{

                         @media screen and (min-width:992px) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;               
                         }
                         @media screen and (max-width:991px) {
                            
                         }
            
        }
    }

    .footer_logoholder{
        img{
            max-width: 10rem;
        }

        @media screen and (min-width:992px) {

        }
        @media screen and (max-width:991px) {
            margin-bottom: 2rem;                
        }

    }

    .holds_footer_sections{

        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        @media screen and (min-width:992px) {
            width: calc(100% - 15rem);  
        }
        @media screen and (max-width:991px) {
            width: 100%;
            flex-wrap: wrap;
        }

    }

    .footer_section{

&:nth-child(1){
            @media screen and (min-width:992px) {
            width: 18%;
        }
}

&:nth-child(1){
            @media screen and (min-width:992px) {
            width: 18%;
        }
}

&:nth-child(3){
            @media screen and (min-width:992px) {
            width: 28%;
        }
}

&:nth-child(4){
            @media screen and (min-width:992px) {
            width: 28%;
        }
}

        @media screen and (max-width:991px) {
            width: 100%;
            text-align: center;
            margin-bottom: 2rem;
        }

        h3{
            font-size: calc(1.5rem + 0.1vw);
            margin: 0;
            margin-bottom: 0.5rem;
        }
        hr{
            max-width: 3rem;

            @media screen and (min-width:992px) {
                margin: 0;
                margin-left: 0;   
            }
            @media screen and (max-width:991px) {
                margin: 0 auto;
            }

            margin-bottom: 0.75rem;
        }
        address, a{
            font-style: normal;
            font-size: calc(.8rem + 0.1vw);
        }
        .holds_icon{
            display: flex;
            align-items: center;
            font-size: calc(.8rem + 0.1vw);

            @media screen and (min-width:992px) {
                justify-content: flex-start;  
            }
            @media screen and (max-width:991px) {
                justify-content: center;                
            }

            p{
                font-size: calc(.8rem + 0.1vw);
            }
            .lucide{

                @media screen and (min-width:992px) {
                    width: 1rem;
                    height: 1rem;                
                }
                @media screen and (max-width:991px) {
                    width: .75rem;
                    height: .75rem;
                }

                margin-right: 0.5rem;
            }
        }

        ul.socials{
            margin-left: 0;
            padding-left: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;

            @media screen and (min-width:992px) {

            }
            @media screen and (max-width:991px) {
                max-width: 200px;
                margin: 0 auto;
                margin-bottom: 2rem;
            }

            li{
                list-style-type: none;
                a{
                    margin-right: 0.25rem;
                }
            }
        }
        a{
            color: var(--white);
            font-size: calc( .8rem + 0.1vw);
            text-decoration: none;
        }

        .toll_free{
            p{
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-weight: 600;


                @media screen and (min-width:992px) {
                    flex-direction: row;
                }
                @media screen and (max-width:991px) {
                    flex-direction: column; 
                }



                img.flaggo{
                    height: 1.2rem;
                    width: 1.2rem;
                    margin-right: 0.5rem;

                    @media screen and (min-width:992px) {

                    }
                    @media screen and (max-width:991px) {
                        margin-bottom: 0.75rem;
                    }

                }
                span.numbro{
                    font-weight: 300;
                    @media screen and (max-width:991px) {
                        margin-top: 0.75rem;
                    }
                }
            }
        }


    }

    h3.blog_title{
        font-size: calc(1.2rem + 0.1vw);
    }

    .blogzone{
        .holds_blogtags{
            display: flex;
            flex-direction: column; 



            .blogtag{
                font-size: calc( .8rem + 0.1vw);
                margin-bottom: 0.5rem;
            }
        }
        .read_more_blogs{
            font-size: calc(.6rem + 0.1vw);
            color: var(--gold);
        }

    }

    .sub_footer{
        border-top: 1px solid #777;
        margin-top: 1.5rem;
        padding: 1.5rem 0;
        background: #333;

        .holds_sections{
            display: flex;
            justify-content: space-between;
            align-items: center;

            @media screen and (min-width:992px) {
                flex-direction: row;
            }
            @media screen and (max-width:991px) {
                flex-direction: column; 
            }


            .holds_pics{
                display: flex;
                justify-content: space-between;
                align-items: center;
                @media screen and (min-width:992px) {
                    flex-direction: row;
                    width: 20%;
                }
                @media screen and (max-width:991px) {
                    width: 100%;
                    max-width: 200px;
                    margin-bottom: 1rem;
                }

                .holds_image{
                    img{
                        width: 100%;
                        max-height: 4rem;

                        @media screen and (min-width:992px) {

                        }
                        @media screen and (max-width:991px) {
                            margin-bottom: 1rem;
                        }

                    }
                }

            }

            .holds_links{
                display: flex;
                justify-content: space-between;
                align-items: center;
                @media screen and (min-width:992px) {
                    flex-direction: row;
                    width: 65%;
                }
                @media screen and (max-width:991px) {
                    flex-direction: column; 
                    width: 100%;
                }
                a{
                    font-size: calc(.7rem + 0.1vw);
                }

            }

        }




    }



    .sub_sub_footer{
        background: #333;
        border-top: 1px solid #444;
        text-align: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        a{
            color: var(--white);
            font-size: calc(.6rem + 0.1vw);
        }
    }

}

/********************/
/*** end mainfooter *****/
/********************/

.glassmorphback{
    background: rgba(35, 35, 35, 0.41);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.9px);
    -webkit-backdrop-filter: blur(10.9px);
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    transition: all .3s ease-in-out;
}


.glassmorphback.activized{
    opacity: 1;
    transition: all .3s ease-in-out;
}





/********************/
/*** luxury_text_left_feature_a feature a *****/
/********************/

.wp-admin.make_all_visible{
    .luxury_text_left_feature_a.luxury_section{
        .right_fullwidth_image_desktop{
            opacity: 1 !important;
            transform: translateX(1rem);
            transition: all .8s ease-in-out;
        }

        .left_under_detail{
            width: 100% !important;
            transition: all .8s ease-in-out;
        }


        .container{
            .left_side{
                opacity: 1 !important;
                transition: all .8s ease-in-out;
            }
            .right_side{
                img.secondary_image{
                    opacity: 1  !important;
                    transition: all .8s ease-in-out;
                    transform: translateY(1rem);
                }
            }
        }
    }
}


.luxury_text_left_feature_a{
    position: relative;
    overflow: hidden;
    &.has_right_fullwidth_image{

    }

    &.luxury_section{
        .right_fullwidth_image_desktop{
            opacity: 0;
            transform: translateX(1rem);
            transition: all .8s ease-in-out;
        }

        .left_under_detail{
            width: 0%;
            transition: all .8s ease-in-out;
        }


        .container{
            .left_side{
                opacity: 0;
                transition: all .8s ease-in-out;
            }
            .right_side{
                img.secondary_image{
                    opacity: 1;
                    transition: all .8s ease-in-out;
                    transform: translateY(1rem);
                }
            }
        }
    }
    &.luxury_section.visible{
        .right_fullwidth_image_desktop{
            opacity: 1;
            transition: all .4s ease-in-out;
            transform: translateX(0rem);
        }

        .left_under_detail{
            width: 10rem;
            transition: all .8s ease-in-out;
        }

        .container{
            .left_side{
                opacity: 1;
                transition: all .8s ease-in-out;
            }

            .right_side{
                img.secondary_image{
                    opacity: 1;
                    transition: all .8s ease-in-out;
                    transform: translateY(0rem);
                }
            }
        }
    }




    .inner_holder{
        height: 100%;
        @media screen and (min-width:1024px) {
            padding: 3rem 0;
        }
        @media screen and (max-width:1023px) {
            padding: 1.5rem 0;
        }

    }

    .left_under_detail{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 10rem;
        background: var(--gold);
        background: linear-gradient(to right, rgba(213,188,124,1) 0%,rgba(247,245,245,1) 58%);
        z-index: 0;
        opacity: 0.4;
        &.reverse{
            left: unset;
            right: 0;
            background: linear-gradient(to right, rgba(247,245,245,1) 0%,rgba(213,188,124,1) 58%);  
        }
    }


    .undergriffin{
        position: absolute;
        top: 3rem;
        left: -8rem;
        height: 12rem;
        width: 10rem;
        background-image: url(../img/grey_griffin_outline.png);
        background-size: 10rem;
        background-repeat: no-repeat;
        opacity: 0.1;
        transition: all .2s ease;
    }


    .right_fullwidth_image_desktop{
        @media screen and (min-width:992px) {
            width: 50%; 
            margin-left: 50%;   
            position: absolute;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        @media screen and (max-width:991px) {
            display: none;
        }
        img{
            opacity: 0;
            width: 100%;
        }

        &.reverse{
            @media screen and (min-width:992px) {
                margin: 0%;   
            }
        }

    }


    .right_fullwidth_image_mobile{
        @media screen and (min-width:992px) {
            display: none;
        }
        @media screen and (max-width:991px) {
            width: 100%;  
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            max-height: 100vw;
        }
        img{
            opacity: 0;
            width: 100%;
        }
    }



    .flexholder{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        position: relative;
        z-index: 1;


        .left_side{
            position: relative;
            @media screen and (min-width:992px) {
                width: 50%;    
            }
            @media screen and (max-width:991px) {
                width: 100%;  
            }
            .text_holder{
                
                             @media screen and (min-width:992px) {
                padding: 6rem 0;                
                             }
                             @media screen and (max-width:991px) {
                                padding: 1.5rem 0;
                                text-align: center;
                             }
                

                .pre_heading{
                    text-transform: uppercase;
                    font-size: calc(.6rem + 0.1vw);
                    letter-spacing: 2px;
                    color: var(--goldtext);
                }




                h1,h2,h3,h4,h5{   
                    margin: 0;
                    margin-bottom: 0.65rem;
                    margin-top: 0.75rem;   
                                  @media screen and (min-width:992px) {
                                     max-width: 80%; 
                                  }
                                  @media screen and (max-width:991px) {
                       text-align: center;                
                                  }
                      
                    span{
                        color: var(--green);
                    }



                    .handwriting_in_sentance{
                        font-family: var(--font-family-handwriting);
                        font-size: 125%;
                        margin-left:0.25rem;
                        letter-spacing: 1px;
                    }

                }














                .contento{

                    @media screen and (min-width:992px) {
                        max-width: 70%;                
                    }
                    @media screen and (max-width:991px) {
                        max-width: 100%; 
                    }

                }
            }

        }

        .right_side{
            position: relative;
            @media screen and (min-width:992px) {
                width: 50%;    
            }
            @media screen and (max-width:991px) {
                width: 100%;  
            }


            img.main_image{
                width: 100%;
            }

            .secondary_image{
                position: absolute;
                width: 20rem;

                @media screen and (min-width:992px) {
                    left: -10%;             
                    bottom: -1rem;   
                }
                @media screen and (max-width:991px) {
                    right: -10%;    
                    bottom: -3rem; 
                }

                img{
                    width: 100%;
                    height: 100%;
                    position: relative;
                }
                &.sitting_over_edge{
                    bottom: -2rem;
                }
                &.sitting_over_edge:before{
                    content: '';
                    position: absolute;
                    left: -1rem;
                    top: -1rem;
                    height: calc(100% + 2rem);
                    width: calc(100% + 2rem);
                    background: var(--white);
                }


                &.polaroid{
                    border-width: 0.75rem 0.75rem 3rem 0.75rem;
                    border-color: #fff;
                    border-style: solid;
                    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                    transform: rotate(5deg);
                    @media screen and (min-width:992px) {
                        width: 15rem;
                        height: 14rem;   
                    }
                    @media screen and (max-width:991px) {
                        width: 7rem;
                        height: 7rem;


                        display: none;                

                    }

                    img{
                        width: 100%;
                        height: 100%;
                    }
                }
            }


        }




    }

    &.reverse{
        .undergriffin{
            left: 10rem;
        } 

        .flexholder{

            @media screen and (min-width:992px) {
                flex-direction: row-reverse;                
            }
            @media screen and (max-width:991px) {
                flex-direction: column-reverse;
            }

            .left_side{

                @media screen and (min-width:992px) {
                    padding-left: 18%;                
                }
                @media screen and (max-width:991px) {

                }

            } 

            .right_side{
                .secondary_image{
                    left: unset;
                    right: -25%;
                    bottom: -1rem;
                }
            }
        }







    }


}


/********************/
/*** luxury_text_left_feature_a feature a *****/
/********************/



.underpattern--green{
    background: var(--brand_green);
    .undergriffin_pattern{
        background-image: url(../img/grey_griffin_outline.png);

    }

}


.griffin_border{
    top: 0rem;
    left: 0;
    background-size: 3.2rem;
    background-repeat: repeat;
    filter: invert(1) brightness(1.8) opacity(0.2);
    background-image: url(../img/grey_griffin_outline.png);

    &.border-width-10{
        width: 10rem;
    }
}


/********************/
/***
* 
* 
* 

:root {
--black: #000;
--white: #f7f5f5;
--lightgrey: #f7f7f7;
--darkgrey:#6D7283;

--greytext: #2f323f;
--goldtext: #bfa051;
--brand_green: #9fa374;
--gold: #d5bc7c;
--green: #2b8122;


--font-family-1: 'Lato', sans-serif;
--font-family-2: 'Playfair', serif;



--font-family-serif: 'Cormorant Garamond', serif;
--font-family-sans-serif: 'Lato', sans-serif;
--font-family-handwriting: 'Grape Nuts', handwriting;

}




*****/
/********************/





/********************/
/*** ********** *****/
/********************/


.luxury_side_menu{
    position: fixed;
    top: 0;
    left: -100%;
    width: 30%;
    min-width: 300px;
    min-height: 100%;
    z-index: 999;
    background: #041007fa;

    @media screen and (min-width:992px) {
        padding: 8rem 1.5rem;                
    }
    @media screen and (max-width:991px) {
        padding: 5rem 1.5rem;
    }

    transition: all .7s ease-in-out;
    pointer-events: none;
    max-height: 100%;
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #041007fa;
/* Chrome, Edge, Safari */
&::-webkit-scrollbar {
    width: 8px;
}

&::-webkit-scrollbar-track {
    background: #041007fa;
    border-radius: 4px;
}

&::-webkit-scrollbar-thumb {
    background-color: #041007fa;
    border-radius: 4px;
    border: 2px solid #f0f0f0; /* optional padding effect */
}

&.activated{
    left: 0;
    width: 30%;
    transition: all .4s ease-in-out;
    pointer-events: all;
}

.holds_titles_image{
    .flexhold_close_titles{
        display: flex;
        justify-content: space-between;
        align-items: center;

        .logoholdo{
            img{
                max-width: 3rem;
            }
        }
        p.golf_title{
            font-size: calc(1.25rem + 0.1vw);
            font-family: var(--font-family-serif);
            color: var(--white);
        }
        .lucide{
            color: var(--white);
            &:hover{
                cursor: pointer;
            }
        }
    }
}


.flex_menus{
    display: flex;
    justify-content:flex-start;
    align-items: flex-start;

    .holds_menu{
        padding-right: 1.5rem;
        h4{
            color: var(--white);
            font-size: calc(1.15rem + 0.1vw);
        }
    }
}

.under_content{
    border-top: 1px solid var(--gold);
    margin-top: 1.5rem;
    color: var(--white);
    font-family: var(--font-family-serif);

                         @media screen and (max-width:991px) {
            padding-bottom: 10rem;                
                         }
            
    h1,h2,h3,h4,h5,p,li{
        font-family: var(--font-family-serif);
    }
}

.holds_cta{
    margin-top: 1.5rem;
    padding-bottom: 5rem;
    a{
        padding: 0.5rem 1.5rem;
        background: var(--brand_green);
        margin-bottom: 5px;
        text-decoration: none;
        border: 1px solid #fff;
        color: var(--white);
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-family-serif);
        font-size: calc(1.25rem + 0.1vw);
        &:hover{
            background: var(--gold);
        }             
    }
}

.image_holder{
    figure{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        img{
            width: 100%;
            margin: 2rem 0;
            max-height: 15rem;
            opacity: 0;
            pointer-events: none;
        }
    }
}

.holds_menu{
    width: 50%;
    ul{
        margin: 0;
        padding: 0;
        li{
            list-style-type: none;

            a{
                font-size: calc(1.05rem + 0.1vw);
                color: var(--white);
                line-height: 1.5em;
                font-size: calc(1.05rem + 0.1vw);
                font-family: var(--font-family-serif);
                text-decoration: none;
                transform: translateX(0px);
                transition: all .2s ease-in-out;
                display: block;
            }
            &:hover{
                a{
                    color: var(--gold);
                    transform: translateX(4px);
                    transition: all .2s ease-in-out;
                }
            }

        }
    }
}

}

/********************/
/*** ********** *****/
/********************/

.shield_back{
    background-image: url(../img/shield.png);

}


.griffin-lines{
    display: flex;
    margin: 0.25rem auto 0.5rem;
    align-items: center;
    span:nth-child(1), span:nth-child(3){
        width: 5rem;
        background: var(--white);
        height: 2px;
    }


    span.griffin{
        background-image: url(../img/grey_griffin_outline.png);
        background-size: contain;
        filter: brightness(5) contrast(5);
        background-repeat: no-repeat;
        background-position: center;
        opacity: 1;
        width: 2rem;
        height: 2.5rem;
        transform: translateY(-0.15rem);
        margin: 0 1rem;
    }
}


.border_back_shield_top{
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 100%;
    background-color: var(--darkgrey);
    background-image: url(../img/shield.png);

    opacity: 0.1;
    transition: all .2s ease;
                             @media screen and (min-width:992px) {
        height: 2rem;                
            background-size: 2rem;
                     }
                     @media screen and (max-width:991px) {
                      height: 1.5rem;  
                          background-size: 1.5rem;
                     }
}

.border_back_shield_bottom{
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    width: 100%;
    background-color: var(--darkgrey);
    background-image: url(../img/shield.png);

    opacity: 0.1;
    transition: all .2s ease;
                             @media screen and (min-width:992px) {
        height: 2rem;                
            background-size: 2rem;
                     }
                     @media screen and (max-width:991px) {
                      height: 1.5rem;  
                          background-size: 1.5rem;
                     }
}

.border_back_shield_left{
    position: absolute;
    left: 0rem;
    height: calc(100% - 4rem);
    background-color: var(--darkgrey);
    background-image: url(../img/shield.png);
    opacity: 0.1;
    transition: all .2s ease;
                             @media screen and (min-width:992px) {
        height: 2rem;                
            background-size: 2rem;
                top: 2rem;
                     }
                     @media screen and (max-width:991px) {
                      height: 1.5rem;
                          top: 1.5rem;  
                          background-size: 1.5rem;
                     }
}
}

.border_back_shield_right{
    position: absolute;
    right: 0rem;
    height: calc(100% - 4rem);
    background-color: var(--darkgrey);
    background-image: url(../img/shield.png);
    background-size: 2rem;
    opacity: 0.1;
    transition: all .2s ease;
                             @media screen and (min-width:992px) {
        height: 2rem;                
            background-size: 2rem;
                top: 2rem;
                     }
                     @media screen and (max-width:991px) {
                      height: 1.5rem;
                          top: 1.5rem;  
                          background-size: 1.5rem;
                     }
}

/********************/
/*** ********** *****/
/********************/

.luxury_tour_content{
    background: #fff;
    .flexholder{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        .left_side{
            
                         @media screen and (min-width:992px) {
            width: 60%;                
                         }
                         @media screen and (max-width:991px) {
                       width: 100%;     
                         }
            

            .contento{
                
                             @media screen and (min-width:992px) {
                max-width: 80%;                
                             }
                             @media screen and (max-width:991px) {
                               max-width: 100%; 
                             }
                
                p{
                    margin-bottom: 1rem;
                }

                h1{          
                    @media screen and (min-width:992px) {
                        font-size: calc(2rem + 0.1vw);                
                    }
                    @media screen and (max-width:991px) {
                        font-size: calc(1.8rem + 0.1vw);
                    }
                }
                h2{          
                    @media screen and (min-width:992px) {
                        font-size: calc(1.75rem + 0.1vw);                
                    }
                    @media screen and (max-width:991px) {
                        font-size: calc(1.5rem + 0.1vw);
                    }
                }
                h3{          
                    @media screen and (min-width:992px) {
                        font-size: calc(1.5rem + 0.1vw);                
                    }
                    @media screen and (max-width:991px) {
                        font-size: calc(1.4rem + 0.1vw);
                    }
                }
                h4{          
                    @media screen and (min-width:992px) {
                        font-size: calc(1.35rem + 0.1vw);                
                    }
                    @media screen and (max-width:991px) {
                        font-size: calc(1.2rem + 0.1vw);
                    }
                }
                h5{          
                    @media screen and (min-width:992px) {
                        font-size: calc(1.3rem + 0.1vw);                
                    }
                    @media screen and (max-width:991px) {
                        font-size: calc(1.15rem + 0.1vw);
                    }
                }
                p{
                    color: var(--greytext);
                    font-size: calc(1.05rem + 0.1vw);
                    font-family: var(--font-family-serif);
                }

                blockquote{
                    border-top: 1px solid var(--gold);
                    border-bottom: 1px solid var(--gold);
                    margin-left: 2rem;
                    max-width: 80%;
                }

            }
        }
        .right_side{
            width: 40%;
            position: relative;

            .undergriffin{
                position: absolute;
                bottom: 1rem;
                right: -5rem;
                height: 100%;
                width: 15rem;
                background-image: url(../img/grey_griffin_outline.png);
                background-size: 15rem;
                background-repeat: no-repeat;
                background-position: bottom;
                opacity: 0.1;
                transition: all .2s ease;
            }

            figure{
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                height: 100%;
                max-height: 400px;
                width: 100%;
                position: relative;
                top: 0;
                left: 0;
                img{
                    opacity: 0;
                    position: absolute;
                    max-height: 30rem;
                }
            }


            figure.secondary_image{
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                height: 100%;
                max-height: 400px;
                width: 100%;
                position: relative;
                margin-top: 10px;
                border-top: 2px solid var(--gold);
                bottom: 0;
                right: 0;
                img{
                    opacity: 0;
                    position: absolute;
                    max-height: 30rem;
                } 
            }
        }
    }
}


.luxury_blogpost_sidebar{
    a{
        color: inherit;
    }
}

/********************/
/*** header/menu *****/
/********************/


.luxury_header{
    background: linear-gradient(to bottom, rgb(0 0 0) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all .2s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

             @media screen and (min-width:992px) {
                
             }
             @media screen and (max-width:991px) {
padding: 1rem 0;                
             }

    .container.headercontainer{

        @media screen and (min-width: 2560px){
            max-width: 1440px;
        }
        @media screen and (min-width: 1920px) and (max-width: 2559px){
            max-width: 1440px;
        }
        @media screen and (min-width: 1681px) and (max-width: 1919px){
            max-width: 1440px;
        }
        @media screen and (min-width: 1441px) and (max-width: 1680px){
            max-width: 1380px;
        }
        @media screen and (min-width: 1366px) and (max-width: 1440px){
        max-width: 1290px;
        }
        
    }

    &.mainmenushown{
        background: var(--white);
        transition: all .2s ease;
        border-bottom: 1px solid var(--gold);
        .holds_menu_areas{

            .holdsmenus{

                .menutoggleblock{
                    color: var(--black);
                    &:hover{
                        background: var(--gold);
                        color: #fff;
                        cursor: pointer;
                                    .bars{
                                    span{
                                    background: var(--white);
                                    transition: all .2s ease;
                                    }
                                    span:nth-child(1){
                                    top: 50%;
                                    transform: rotate(45deg);
                                    }
                                    span:nth-child(2){
                                    top: 50%;
                                    transform: rotate(-45deg);
                                    }
                                    span:nth-child(3){
                                    display: none;
                                    }

                                    }
                        .texto{
                            color: var(--black);
                        }

                    }
                    &.menu_butt_active{
                                                background: var(--gold);
                        color: #fff;
                        cursor: pointer;
                                    .bars{
                                    span{
                                    background: var(--white);
                                    transition: all .2s ease;
                                    }
                                    span:nth-child(1){
                                    top: 50%;
                                    transform: rotate(45deg);
                                    }
                                    span:nth-child(2){
                                    top: 50%;
                                    transform: rotate(-45deg);
                                    }
                                    span:nth-child(3){
                                    display: none;
                                    }

                                    }
                        .texto{
                            color: var(--black);
                        }
                    }

                                    .bars{
                                    span{
                                    background: var(--white);
                                    transition: all .2s ease;
                                    }
                                    span:nth-child(1){
                                    top: 50%;
                                    transform: rotate(45deg);
                                    }
                                    span:nth-child(2){
                                    top: 50%;
                                    transform: rotate(-45deg);
                                    }
                                    span:nth-child(3){
                                    display: none;
                                    }

                                    }
                }


                div{
                    ul{
                        li{
                            a{
                                color: var(--black) !important;
                            }
                        }
                    }
                }
            }
        }
    }

    .holds_menu_areas{
        display: flex;
        justify-content: space-between;
        align-items: center;

        .holdsmenus{
            div{
                width: 100%;
                ul{
                    margin: 0;
                    display: flex;
                    padding: 0;
                    li{
                        list-style-type: none;
                        a{
                            color: var(--white);
                            text-decoration: none;
                            padding: 0.5rem;
                            display: block;
                            font-family: var(--font-family-serif);
                                    @media screen and (min-width: 2560px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1920px) and (max-width: 2559px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1681px) and (max-width: 1919px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1441px) and (max-width: 1680px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1366px) and (max-width: 1440px){
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width: 1024px) and (max-width: 1365px){
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width:992px) and (max-width: 1023px) {
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width:768px) and (max-width: 991px) {
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width:441px) and (max-width:767px) {
                                        font-size: 1rem;
                                    }
                                    @media screen and (min-width:351px) and (max-width:440px) {
                                        font-size: 1rem;
                                    }
                                    @media screen and (max-width:350px) {
                                        font-size: 1rem;
                                    }
                            position: relative;
                            filter: brightness(.8);
                            z-index: 4;
                            &:before{
                                content: '';
                                position: absolute;
                                transition: .35s ease-in-out;
                                border-bottom: 1px solid #e5e5e5;
                                width: 0;
                                top: 100%;
                                left: 0;
                            }
                            &:hover{
                                cursor: pointer;
                                filter: brightness(1);
                                &:before{
                                    transition: .35s ease-in-out;
                                    border-bottom: 1px solid #e5e5e5;
                                    width: 100%;
                                }

                            }
                        }
                    }
                }
            }
        }

        .menutoggleblock{
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            padding: 0.75rem;
            padding-top: calc(0.5rem - 4px);
            padding-bottom: calc(0.5rem - 4px);
            margin-right: 2rem;
            border: 1px solid var(--gold);
            &:hover{
                background: var(--gold);
                color: #fff;
                cursor: pointer;
            .bars{
                    span{
                    background: var(--white);
                    transition: all .2s ease;
                    }

            }
                .texto{
                    color: var(--black);
                }

            }
            /*resting state*/
                    .bars{
                    width: 1.75rem;
                    height: 1.75rem;
                    position: relative;
                    margin-right: 0.5rem;
                    span{
                    display: block;
                    width: 100%;
                    height: 2px;
                    background: var(--gold);
                    position: absolute;
                    transition: all .2s ease;
                    }
                    span:nth-child(1){
                    top: calc(20% - 1px);
                    }

             @media screen and (min-width:992px) {
                    span:nth-child(2){
                    top: calc(50% - 1px);
                    }                
             }
             @media screen and (max-width:991px) {
                                    span:nth-child(2){
                    top: calc(50% - 1px);
                    }
             }

                    span:nth-child(3){
                    top: calc(80% - 1px);
                    }

                    }
            .texto{
                display: block;
                font-family: var(--font-family-serif);
                                    @media screen and (min-width: 2560px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1920px) and (max-width: 2559px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1681px) and (max-width: 1919px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1441px) and (max-width: 1680px){
                                        font-size: 1.2rem;
                                    }
                                    @media screen and (min-width: 1366px) and (max-width: 1440px){
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width: 1024px) and (max-width: 1365px){
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width:992px) and (max-width: 1023px) {
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width:768px) and (max-width: 991px) {
                                    font-size: 1rem;
                                    }
                                    @media screen and (min-width:441px) and (max-width:767px) {
                                        font-size: 1rem;
                                    }
                                    @media screen and (min-width:351px) and (max-width:440px) {
                                        font-size: 1rem;
                                    }
                                    @media screen and (max-width:350px) {
                                        font-size: 1rem;
                                    }
            }
        }

        .left_side{
                    @media screen and (min-width: 2560px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1920px) and (max-width: 2559px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1681px) and (max-width: 1919px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1441px) and (max-width: 1680px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1366px) and (max-width: 1440px){
                    width: 33.333%;
                    }
                    @media screen and (min-width: 1024px) and (max-width: 1365px){
                    width: 40%;
                    }
                    @media screen and (min-width:992px) and (max-width: 1023px) {
                    width: 40%;
                    }
                    @media screen and (min-width:768px) and (max-width: 991px) {
                    width: 40%;
                    }
                    @media screen and (min-width:441px) and (max-width:767px) {
                        width: 40%;

                    }
                    @media screen and (min-width:351px) and (max-width:440px) {
                        width: 40%;

                    }
                    @media screen and (max-width:350px) {
                        width: 40%;

                    }
            display: flex;
            align-items: flex-start;
            position: relative;

                         @media screen and (min-width:992px) {
                                justify-content: center;
                         }
                         @media screen and (max-width:991px) {
                            justify-content: flex-start;
                         }
            

            @media screen and (min-width:1024px) {

            &:before{
                content: '';
                position: absolute;
                border-bottom: 1px solid var(--gold);
                top: calc(100% + 17px);
                width: 100%;
                left: 0;
            }

                div{
                    ul{
                        align-items: flex-start;
                        li{
                            margin-right: 0.5rem;
                        }

                    }
                }
            }




        }
        .logo_side{
        @media screen and (min-width: 2560px){
                        width: 20%;
        }
        @media screen and (min-width: 1920px) and (max-width: 2559px){
                        width: 20%;
        }
        @media screen and (min-width: 1681px) and (max-width: 1919px){
                        width: 20%;
        }
        @media screen and (min-width: 1441px) and (max-width: 1680px){
                        width: 20%;
        }
        @media screen and (min-width: 1366px) and (max-width: 1440px){
                    width: 20%;
        }
        @media screen and (min-width: 1024px) and (max-width: 1365px){
                    width: 10%;
        }
        @media screen and (min-width:992px) and (max-width: 1023px) {
                    width: 10%;
        }
        @media screen and (min-width:768px) and (max-width: 991px) {
                    width: 10%;
        }
        @media screen and (min-width:441px) and (max-width:767px) {
                        width: 10%;
        }
        @media screen and (min-width:351px) and (max-width:440px) {
                        width: 10%;
        }
        @media screen and (max-width:350px) {
                        width: 10%;
        }
            display: flex;
            align-items: center;
            justify-content: center;
            img{
                width: 100%;
                max-width: 10rem;
                transition: all .2s ease;
            }
        }
        .right_side{
                    @media screen and (min-width: 2560px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1920px) and (max-width: 2559px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1681px) and (max-width: 1919px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1441px) and (max-width: 1680px){
                        width: 33.333%;
                    }
                    @media screen and (min-width: 1366px) and (max-width: 1440px){
                    width: 33.333%;
                    }
                    @media screen and (min-width: 1024px) and (max-width: 1365px){
                    width: 40%;
                    }
                    @media screen and (min-width:992px) and (max-width: 1023px) {
                    width: 40%;
                    }
                    @media screen and (min-width:768px) and (max-width: 991px) {
                    width: 40%;
                    }
                    @media screen and (min-width:441px) and (max-width:767px) {
                        width: 40%;
                    }
                    @media screen and (min-width:351px) and (max-width:440px) {
                        width: 40%;
                    }
                    @media screen and (max-width:350px) {
                        width: 40%;
                    }
            display: flex;
            align-items: flex-end;
                         @media screen and (min-width:1024px) {
                                justify-content: center;
                         }
                         @media screen and (max-width:1023px) {
                            justify-content: flex-end;
                            ul{
                              justify-content: flex-end;  
                            }
                         }

position: relative;


            @media screen and (min-width:1024px) {

                            &:before{
                content: '';
                position: absolute;
                border-bottom: 1px solid var(--gold);
                top: calc(100% + 17px);
                width: 100%;
                right: 0;
            }
                div{
                    ul{
                        justify-content: flex-end;
                        li{
                            margin-left: 0.5rem;
                        }

                    }
                }

            }


        }



    }


    &.menu-scrolled{
        background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%,rgba(0,0,0,0.02) 100%);
        transition: all .2s ease;
        .logo_side{
            img{
                max-width: 6rem;
                transition: all .2s ease;
                margin: 0.5rem 0;
            }
        }
    }


    &.mainmenushown.menu-scrolled{
        background: var(--white);
        transition: all .2s ease;
        border-bottom: 1px solid var(--gold);
        .holds_menu_areas{
            .holdsmenus{



                .menutoggleblock{
                    color: var(--black);
                    &:hover{
                        background: var(--gold);
                        color: #fff;
                        cursor: pointer;
                        .bars{
                            svg{
                                fill: var(--black);
                            }
                        }
                        .texto{
                            color: var(--black);
                        }

                    }
                    .bars{
                        svg{
                            fill: var(--black);
                        }
                    }
                }



                div{
                    ul{
                        li{
                            a{
                                color: var(--black) !important;
                            }
                        }
                    }
                }
            }
        }
    }



}




.lux_mainmenu{
    position: fixed;

    @media screen and (min-width:992px) {
        width: 70%;                
    }
    @media screen and (max-width:991px) {
        width: 90%; 
    }

    background: var(--white);
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0; 
    transform: translateX(-2rem);
    pointer-events: none;
    transition: all .2s ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    .inner_main_menu{
        padding: 5%;
        height: calc(92.5%);

        @media screen and (min-width:992px) {
            max-height: 500px;

        }
        @media screen and (max-width:991px) {
            max-height: 80vh;

        }

        width: 100%;


        transform: translateX(-2rem);
        transition: all .2s ease-in-out;

        .flexholder{
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;


            @media screen and (min-width:992px) {
                flex-direction: row;
            }
            @media screen and (max-width:991px) {
                flex-direction: column; 
            }



            .menu_side{

                @media screen and (min-width:992px) {
                    width: 60%;                
                }
                @media screen and (max-width:991px) {
                    width: 100%; 
                }

    .undergriffin{
        position: absolute;
        top: 1rem;
        left: 3rem;
        height: 15rem;
        width: 15rem;
        background-image: url(../img/grey_griffin_outline.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        opacity: 0.1;
        transition: all .2s ease;
    }



                    .menu-overmenu-container{
                        ul:nth-child(1){
                    overflow-y: scroll;
                    max-height: 30rem;     
                        }
                    }



                ul{

                    @media screen and (min-width:992px) { 
                        max-width: 80%;    
                    }
                    @media screen and (max-width:991px) {
                        margin-left: 0;
                        padding-left: 0;
                    }

                    li{
                        list-style-type: none;
                        
                        padding: 3px;
                        a{

                            @media screen and (min-width:992px) {
                                font-size: calc(1.8rem + 0.1vw);  
                                                            line-height: 1.75rem;              
                            }
                            @media screen and (max-width:991px) {
                                font-size: calc(1rem + 0.1vw);
                                                            line-height: 1.25rem;
                            }

                            font-family: var(--font-family-serif);
                            border-bottom: 1px solid #e9e9d4;
                            display: block;
                            padding: 14px 11px;
                            position: relative;

                        &:hover{
                            background: #e9e9d4;
                            cursor: pointer;
                        }

                        }


                        .sub-menu{
                            li{
                                padding-left:  1rem;
a{
                                @media screen and (min-width:992px) {
                                font-size: calc(1.2rem + 0.1vw);  
                                                            line-height: 1.75rem;              
                            }
                            @media screen and (max-width:991px) {
                                font-size: calc(1rem + 0.1vw);
                                line-height: 1.25rem;
                            }
}
                            }
                        }

                    }
                }

.sub-menu {
  display: none;
}

.submenu-open > .sub-menu {
  display: block;
}

.menu-item-has-children > a::after {
  content: "↓";
    margin-left: 1rem;
    font-size: 1rem;
    transition: transform 0.2s ease;
    position: absolute;
    top: .95rem;
}

.menu-item-has-children.submenu-open > a::after {
  transform: rotate(180deg);
}

            }






            .right_image{
                @media screen and (min-width:992px) {
                    width: 40%;                
                }
                @media screen and (max-width:991px) {
                    width: 100%; 
                    max-height: 20vh;
                }
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                position: relative;
                border: 1rem solid var(--white);
                position: relative;
                &:before{
                    content: '';
                    left: -1rem;
                    top: -1rem;
                    position: absolute;
                    height: calc(100% + 2rem);
                    width: calc(100% + 2rem);
                    border: 1px solid var(--gold);
                }
                img{
                    opacity: 0;
                    position: absolute;
                    width: 100%;
                }
                .thunderlay{
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background: #000;
                    opacity: 0.6;
                }

                .over_titles{
                    position: absolute;
                    bottom: 1rem;
                    left: 1rem;
                    color: var(--white);
                    p.overtitle_big{

                        @media screen and (min-width:992px) {
                            font-size: calc(1.35rem + 0.1vw);                
                        }
                        @media screen and (max-width:991px) {
                            font-size: calc(1rem + 0.1vw);
                        }

                        max-width: 90%;
                        font-family: var(--font-family-serif);
                        display: block;
                        margin: 0;
                        margin-bottom: 0.5rem;
                    }
                    p.overtitle_small{

                        @media screen and (min-width:992px) {
                            font-size: calc(1.05rem + 0.1vw);                
                        }
                        @media screen and (max-width:991px) {
                            font-size: calc(1rem + 0.1vw);  
                        }

                        max-width: 90%;
                        font-family: var(--font-family-serif);
                        display: block;
                        margin: 0;
                        margin-bottom: 1rem;
                    }
                    hr{
                        color: var(--white);
                        margin-left: 0;
                        max-width: 3rem;
                    }
                    a{
                        color: var(--white);

                        @media screen and (min-width:992px) {
                            font-size: calc(1rem + 0.1vw);    
                        }
                        @media screen and (max-width:991px) {
                            font-size: calc(0.8rem + 0.1vw);
                        }

                        font-family: var(--font-family-serif);
                        display: block;
                        margin: 0;
                        margin-top: 1.5rem;
                    }
                }
            }
        }


    }

    &.visible{
        opacity: 1; 
        transform: translateX(0);
        pointer-events: all;
        transition: all .4s ease-in-out;

        .inner_main_menu{
            transform: translateX(0rem);
            transition: all .4s ease-in-out;
        }

    }


}



.luxury_content_side{
    p{
        line-height: 1.6rem;
    }

.wp-block-heading{
    margin: 1.5rem 0;
}

    .wp-block-image{
        margin: 3rem 0;
    }
}

.luxury_blogpost_sidebar{
        background: #9e9e9e17;
    padding: 1rem;
.wp-block-kadence-posts .loop-entry .post-thumbnail.kadence-thumbnail-ratio-5-4 {
    padding-bottom: 135%;
}

}

