﻿
.btn_container {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 15px;
    /* left: 20px;*/
    background-color: transparent;
}

.btn_container span {
        position: absolute;
        width: 50px;
        height: 5px;
        border-radius: 2px;
        background-color: #fff;
    }

.btn_container span:nth-child(2) {
            top: 8px;
            left: 0px;
            width: 40px;
            transition: 300ms cubic-bezier(0.69, -0.59, 0.46, 1.94);
        }

.btn_container span:nth-child(3) {
            top: 16px;
            left: 0px;
            width: 30px;
            transition: 400ms cubic-bezier(0.69, -0.59, 0.46, 1.94);
        }

 .btn_container:hover {
        cursor: pointer;
    }

.btn_container:hover span:nth-child(2),
.btn_container:hover span:nth-child(3) {
            width: 50px;
        }

.menu_container {
    position: sticky;
    z-index: 1002;
}

    

    .menu_container .over_lay {
        position: fixed;
        width: 0%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        top: 0;
        right: 0;
        bottom: 0;
        /* z-index: 2;*/
        opacity: 1;
        /*transition: 600ms cubic-bezier(0.69, -0.59, 0.46, 1.94);*/
        transition: all 0.5s ease-out;
    }

    .menu_container .list_items_container {
        position: fixed;
        max-width: 500px;
        height: 100%;
        right: -500px;
        top: 0px;
        background-color: #ffffff;
        /*transition: 500ms cubic-bezier(0.69, -0.59, 0.46, 1.94);*/
        transition: all 0.7s ease-out;
        /*all var(--transition-duration) cubic-bezier(.9,.03,0,.96) .4s*/
    }

        .menu_container .list_items_container p {
            width: 100%;
            background: #fff;
            margin: 0px;
            padding: 15px 0px;
            /*margin-bottom: 30px;*/
            text-align: center;
            font-weight: lighter;
        }

            .menu_container .list_items_container p:hover {
                cursor: pointer;
                text-decoration:none !important;
                /*box-shadow: 0px 1px 4px #000;*/
            }

        .menu_container .list_items_container .list_box a {
            display: inline-block;
            width: 100%;
            text-align: center;
            text-decoration: none;
            padding: 10px 0px;
            color: rgba(0, 0, 0, 0.7);
            /* transition: 600ms cubic-bezier(0.69, -0.59, 0.46, 1.94);*/
            transition: all 0.5s ease-out;
        }

            .menu_container .list_items_container .list_box a:hover {
                border-left: 10px solid rgba(0, 0, 0, 0.7);
            }

/*
 Side menu style*/
.header {
    padding: 15px;
    text-align: left;
}

    .header button {
        background: none;
        border: none;
        font-size: 20px;
    }

        .header button:hover {
            color: gray;
        }

.title {
    color: #CE113C;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 5px;
    text-align: center;
    margin-top: 35px;
}

.subtitle {
    color: gray;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0px !important;
    cursor: text;
}

.service-container {
    max-width: 600px;
    margin: 0 auto;
}

.service-box {
  /*  padding: 15px;*/
    text-align: center;
}

    .service-box img {
        width: 60px;
        height: 60px;
        opacity: 0.6;
    }

    .service-box p {
        margin-top: 10px;
        font-size: 16px;
        font-weight:500;
        color: black;
    }
        .service-box p:hover {
            cursor:pointer;
            color:#CE113C;
        }

        .floating-chat {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #b22222;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            cursor: pointer;
            box-shadow: 0px 2px 5px gray;
        }

    .floating-chat:hover {
        background: #a02020;
    }

.image-box:hover {
   /* padding: 5px;
    transition: opacity 0.5s ease-in-out;*/
}

/*Floating Menu*/

.btn-wrap {
    position: fixed;
    left: 85%;
    bottom: 14%;
    z-index: 99999;
}

.btn-circle {
    position: relative;
    z-index: 2;
    display: block;
    width: 56px;
    height: 56px;
    background-color: rgb(206, 18, 60);
    border-radius: 50%;
    transition: transform 0.25s;
}

    .btn-circle .fa {
        color: #fff;
        font-size: 25px;
        text-align: center;
        padding-top: 10px;
        transform: rotate(0deg);
    }
/* .btn-circle:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 20px;
        height: 4px;
        background: #fff;
        transform: translate(-50%, -50%);
        border-radius:10%;
    }

    .btn-circle:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 20px;
        height: 4px;
        background: #fff;
        transform: translate(-50%, -50%);
        transition: all 0.05s;
        border-radius: 10%;
    }*/
.menu-list li {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    transition: top 0.5s cubic-bezier(0.2, 0.05, 0.35, 1.4);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px 1px;
}

    .menu-list li a {
        display: block;
        width: 100%;
        height: 100%;
        font-size: 20px;
        color: #000;
        background-color: rgb(224, 224, 224);
        transition: background 0.35s;
    }

    .menu-list li:hover {
        box-shadow: 3px 5px 8px #8e8f90;
    }

        .menu-list li:hover a {
            /*background: rgba(66, 82, 119, 0.7);*/
        }

.btn-wrap.active .btn-circle {
    transform: rotate(45deg);
}

    .btn-wrap.active .btn-circle:after {
        width: 30px;
        height: 4px;
    }

.btn-wrap.active .menu-list li:nth-child(1) {
    top: -175px;
}

.btn-wrap.active .menu-list li:nth-child(2) {
    top: -127px;
}

.btn-wrap.active .menu-list li:nth-child(3) {
    top: -78px;
}
.btn-wrap.active .menu-list li:nth-child(4) {
    top: -27px;
}

