



    :root {
        --typo-primary-font-family: Montserrat;
        --typo-primary-font-weight: 500;
        --typo-secondary-font-family: Montserrat;
        --typo-secondary-font-weight: 500;
        --typo-text-font-family: Montserrat;
        --typo-text-font-weight: 500;
        --typo-accent-font-family: Montserrat;
        --typo-accent-font-weight: 500;

        --bs-primary: #000000;
        --bs-primary-rgb: 0,0,0;
        --bs-secondary: #7B5F43;
        --bs-secondary-rgb: 123,95,67;
        --bs-success: #705539;
        --bs-success-rgb: 112,85,57;
        --bs-info: #555555;
        --bs-info-rgb: 85,85,85;
        --bs-warning: #ffc107;
        --bs-warning-rgb: 295,193,7;
        --bs-danger: #dc3545;
        --bs-danger-rgb: 220,53,69;
        --bs-light: #EDEDED;
        --bs-light-rgb: 237,237,237;
        --bs-dark: #050505;
        --bs-dark-rgb: 5,5,5;
    }



    
    html {
        scroll-behavior: smooth;
    }
    body{
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        padding: 0px;
        margin: 0px;
        font-weight: normal;
        background-color: #f4f4f4;
    }
    a{
        text-decoration: none;
        text-transform: capitalize;
    }

    * {
        box-sizing: border-box;
    }

    *,*::after,*::before {
        /*box-sizing: border-box;*/
        /*outline: solid 2px lime;*/
    }


    button{
        text-transform: capitalize;
    }

    .clear{
        clear: both;
    }

    .unselect{
        -moz-user-select: none;
        -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
        user-select: none; /* Standard syntax */
        /*-khtml-user-select: none;*/
    }

    #main{
        padding: 0px;
        margin: 0px;
        min-height: 100vh;
    }



    .hideme{
        display: none !important;
        visibility: hidden; !important;
    }


    .disabel {
        opacity: 0.6 !important;
        cursor: not-allowed !important;
    }



    /*******  DESKTOP ******878*/
    @media only screen and (min-width: 980px) {
        .mobile{
            display: none !important;
            visibility: hidden !important;
        }

        .desktop{
            /*display: block;*/
            visibility: visible !important;
        }

    }

    /*******  MOBILE ******888*/
    @media only screen and (max-width: 992px) {

        .mobile{
            /*display: block;*/
            visibility: visible !important;
        }

        .desktop{
            display: none !important;
            visibility: hidden !important;
        }
        #main{
            padding-top: 0px;
        }


    }



    @keyframes fadein-right {
        from {margin-left: 100px;opacity: 0;}
        to {margin-left: 10px;opacity: 1;}
    }

    @keyframes fadein-left {
        from {margin-left: -100px;opacity: 0;}
        to {margin-left: 10px;opacity: 1;}
    }

    .fadein-left{
        margin-left: 0px !important;
        opacity: 0 !important;
    }


    .xbtn{
        border: solid 2px var(--bs-secondary);
        border-radius: 0px;
        padding: 10px 10px 10px 10px;
        color: var(--bs-secondary);
        text-decoration: none;
        text-align: center;
        transition: all .3s linear;
    }
    .xbtn:hover{
        background-color: var(--bs-secondary);
        color: var(--bs-light);
        padding: 10px 10px 10px 10px;
    }
    .xbtn:hover span{
        padding-right: 20px;
        padding-left: 20px;
    }



    #upBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 30px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: rgba(102,102,102,1);
        color: white;
        cursor: pointer;
        padding: 10px 15px 10px 15px;
        border-radius: 3px;
        font-size: 18px;
        transition: all .3s linear;
    }

    #upBtn:hover {
        background-color: rgba(0,0,0,1);
        box-shadow: rgba(100, 100, 111, 0.9) 0px 7px 29px 0px;
        padding: 7px 15px 13px 15px;
    }


    .fotter{

    }

    .cr{
        background-color: #050505;
        color: #f8f9fa;
        font-size: 14px;
        text-align: center;
        padding: 20px;
    }

    
    a, li, .dropdown-item {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    #topmnu  .dropdown-item {
        width: 300px;
    }

    .sticky {
        position: fixed;
        top: 0;
        width: 100%
    }

    .sticky + .content {
        padding-top: 102px;
    }


    .custom-logo{
        width: auto;
        height: 40px !important;
    }



    #mobmnubtn{
        padding: 3px 6px 3px 6px !important;
    }


    #topmnu .nav-link {
        position: relative;
        color: var(--bs-primary);
        font-size: 20px;
        text-transform: capitalize;
        animation: nav-link ease-in;
        animation-timeline: scroll();
        padding: 0px 15px 0px 15px !important;
    }

    #topmnu .mnulnk{
        position: relative;
        color: var(--bs-primary);
        font-size: 20px;
        text-transform: capitalize;
        animation: nav-link ease-in;
        animation-timeline: scroll();
    }

    @keyframes nav-link{
        0% { color: var(--bs-primary); }
        5% { color: var(--bs-primary); }
        100% { color: var(--bs-primary); }
    }

    #topmnu{
        padding-top: 0px;
        padding-bottom: 0px;
        padding-right: 0px;
        padding-left: 20px;
        z-index: 1000;
        background-color: rgba(255,255,255,1);
        color:var(--bs-primary);
        overflow: visible;
        animation: topmnu ease-in;
        animation-timeline: scroll();
    }

    @keyframes topmnu{
        0% { background-color: rgba(255,255,255,1); }
        5% { background-color: rgba(255,255,255,1); }
        100%{ background-color: rgba(255,255,255,1);}
    }

/*
    .navbar-brand{
        margin: 20px 20px 20px 40px;
        background-image: url("assets/images/logo.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 200px;
        height: 100px;
        animation: navbar-brand ease-in;
        animation-timeline: scroll();
    }

    @keyframes navbar-brand{
        0% { background-image: url("assets/images/logo.png"); }
        5% { background-image: url("assets/images/logo.png"); }
        100%{ background-image: url("assets/images/logo.png"); }
    }
*/

    #topmnu .nav-link:hover {
        color: var(--bs-primary) !important;
    }


    #navbarNavDropdown{
        display: flex;
        justify-content: end;
    }


    .navbar-nav{
        /*background-color: rgba(0,0,0,0.4);
        border-radius: 50px;*/
        padding: 10px 20px 10px 20px;
    }


    #topmnu .isactive{
        border-bottom: solid 4px var(--bs-primary) ;
    }

.custom-logo-link{
    margin: 20px;
}

    .topreserv{
        width: 300px;
        background-color: #555555;
    }

    .xsocial{
        list-style: none;
        padding: 0px;
        margin: 0px;
    }
    .xsocial li{
        display: inline;
    }
    .xsocial .sbtn , .xsocial  .sbtn:active , .xsocial  .sbtn:visited{
        color: #fff;
        display: inline-block !important;
        width: 30px;
        height: 30px;
        /*border: solid 2px #dfb44e;*/
        line-height: 30px;
        text-align: center;
        margin-left: 3px;
        border-radius: 25px;
        padding-left: 6px;
        font-size: 22px;
    }
    .xsocial i{
        color: #fff !important;
    }
    .xsocial  .sbtn:hover{
        color: #fff;
        /*border: solid 2px #ffffff;*/
    }
    .xsocialtxt{
        border-left: solid 1px black;
        padding: 0px 20px 0px 20px;
        margin: 0px 0px 0px 0px;
    }


    @media (max-width: 992px) {
        .mobtop{
            width: 100%;
        }
        .navbar-brand{
            width: 110px;
            height: 70px;
        }
        .custom-logo{
            width: auto;
            height: 40px;
        }
        .navbar-collapse {
            position: fixed;
            top: 65px;
            left: -75%;
            padding-left: 15px;
            padding-right: 15px;
            padding-bottom: 15px;
            width: 250px;
            height: 100%;
            background-color: rgba(255,255,255,1) !important;
            text-align: center;
            padding-top: 30px;
        }

        .navbar-collapse li{
            border-bottom: solid 1px #40484f;
        }


        .navbar-collapse.collapsing {
            left: -75%;
            transition: left 100ms ease-in-out;
        }

        .navbar-collapse.show {
            left: 0;
            transition: left 300ms ease-in-out;
        }

        .navbar-toggler.collapsed  ~.navbar-collapse {
            transition: left 500ms ease-in-out;
        }


        .navbar-toggler:focus,
        .navbar-toggler:active,
        .navbar-toggler-icon:focus {
            outline: none;
            box-shadow: none;
        }
        .navbar-toggler-icon{
            background-image: none;
            color: var(--bs-primary) !important;
        }
        .mobbtnicon{
            color: var(--bs-primary) !important;
            font-size:30px;
        }
        #topmnu .nav-link {
            color: var(--bs-primary) !important;
        }

        .navbar-nav {
            margin: 0px;
        }
        .navbar-collapse{
            padding: 0px;
            padding-top: 50px;
        }

        #topmnu li {
            border-color: lightgray !important;
            padding: 10px 1px 10px 1px;
        }

        #navbarNavDropdown{
            display: block;
            padding-right: 0px;
        }
        .navbar-toggler{
            border: none;
        }

        .navbar-nav{
            background-color: rgba(0,0,0,0.0);
            padding: 0px;
            border-radius: unset;
        }

        .mobtop{
            background-color: rgba(255,255,255,1);
        }

        .xsocial{
            border-bottom:none;
            padding: 20px 0px 20px 0px;
        }
        .xsocialtxt{
            border-left: none;
        }

        .xsocial li{
            border: none;
        }

    }



    

    #page{
        padding-bottom: 200px;
        background-color: #f4f4f4;
        min-height: 100vh;
    }
    .pagetit{
        width: 100%;
        height: 200px;
        /*background-color: rgba(0,0,20,0.2);
        background-blend-mode: overlay;*/
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        background-color: rgba(0,0,0,0.4);
        background-blend-mode: overlay;
        padding: 0px;
    }
    .pagetit h1{
        color: whitesmoke;
        margin: 0px;
        padding: 20px;
    }




    

    .morbtn{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 200px;
        height: 50px;
        background-color: transparent;
        border: solid 2px var(--bs-secondary);
        padding: 10px 30px 10px 30px;
        font-size: 1.50rem;
        line-height: 1.50rem;
        font-weight: normal;
        color: var(--bs-secondary);
        text-transform: capitalize;
        text-decoration: none;
        transition: all 0.30s;
    }
    .morbtn:hover{
        background-color: var(--bs-secondary);
        color: white;
        transition: all 0.30s;
    }
    .morbtn:hover  .xi{
        background-color: black;
        opacity: 1;
        transform: translateY(-50%) translateX(50%) ;
        transition: all 0.60s;
    }
    .morbtn i{
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(50%) ;
        background-color: var(--bs-secondary);
        color: white;
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.30s;
    }
    .morbtn .xi{
        position: absolute;
        opacity: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(-50%) ;
        background-color: var(--bs-secondary);
        color: white;
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.60s;
    }




    .morbtnli{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 200px;
        height: 50px;
        background-color: transparent;
        border: solid 2px whitesmoke;
        padding: 10px 30px 10px 30px;
        font-size: 1.50rem;
        line-height: 1.50rem;
        font-weight: normal;
        color: whitesmoke;
        text-transform: capitalize;
        text-decoration: none;
        transition: all 0.30s;
    }
    .morbtnli:hover{
        background-color: whitesmoke;
        color: var(--bs-secondary);
        transition: all 0.30s;
    }
    .morbtnli:hover  .xi{
        background-color: black;
        opacity: 1;
        transform: translateY(-50%) translateX(50%) ;
        transition: all 0.60s;
    }
    .morbtnli i{
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(50%) ;
        background-color: whitesmoke;
        color: var(--bs-secondary);
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.30s;
    }
    .morbtnli .xi{
        position: absolute;
        opacity: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(-50%) ;
        background-color: var(--bs-secondary);
        color: white;
        padding: 7px 10px 7px 10px;
        margin-left: 30px;
        border-radius: 50%;
        font-size: 0.9rem;
        line-height: 0.9rem;
        font-weight: bolder !important;
        transition: all 0.60s;
    }


    



    #hero{
        overflow: hidden;
    }

    #hero .herocont{
        background-image: url("https://halomedgroup.com/xassets/images/slider-bg2.png");
        background-repeat: no-repeat;
        background-position: left center;
        background-size: cover;
        width: 100%;
        height: 600px;
    }

    #hero .herodoctor{
        height: 600px;
    }


    #image-container {
        width: 500px;
        height: 600px;
        overflow: hidden;
        position: relative;
    }

    #image-container img {
        /*width: 100%;*/
        max-height: 400px;
        object-fit: contain;
        position: absolute;
        bottom: 0;
        right: 0;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
    }

    #image-container img.show {
        opacity: 1;
        transform: scale(1.1);
    }



    /*******  MOBILE *******/
    @media only screen and (max-width: 888px) {

        #hero .herocont{
            background-position: -600px center;
            height: 800px;
        }
        #image-container {
            height: 800px;
        }
    }


    #demoform{
        background-color: white;
    }








