    /* -- Slideout Sidebar -- */

    .slider-form input {
        width: 100%;
        height: 40px;
        padding-left: 3px;
        border: none;
        color: #fff;
        font-size: 13px;
        margin-bottom: 20px;
        background-color: transparent;
        border: 1px solid #fff;
    }

    .slider-form textarea {
        width: 100%;
        font-size: 13px;
        padding-left: 3px;
        height: 70px;
        resize: none;
        color: #fff;
        border: none;
        margin-top: 0;
        border: 1px solid #fff;
        margin-bottom: 10px;
        background-color: transparent;
    }

    .slider-form input::placeholder {
        color: #fff !important;
    }

    .slider-form textarea::placeholder {
        color: #fff !important;
    }

    .slider-form button {
        width: 100%;
        height: 35px;
        color: #000;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: 1px solid #525fe1;
        background-color: #525fe1;
    }

    .slider-form h4 {
        padding-bottom: 20px !important;
        font-size: 36px;
        color: #525fe1;
    }

    .slider-form p,
    h6 {
        /* color: #fff; */
    }

    .slideout-sidebar {
        position: fixed;
        top: 100px;
        left: -100%;
        z-index: 1001;
        width: 30%;
        height: auto;
        margin-left: 10px;
        padding: 20px;
        box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
        border: 2px solid #525fe1;
        background-color: #001417;
        transition: all 300ms ease-in-out 0s;
        border-radius: 20px;
        z-index: 99999;
    }

    /* -- Menu Icon -- */

    #menu-toggle {
        display: none;
    }

    .menu-icon {
        position: fixed;
        top: 346px;
        /* left: 0; */
        right: -65px;
        display: block;
        font-size: 18px;
        z-index: 9;
        transition: all 300ms ease-in-out;
        background: #525fe1;
        color: #fff;
        padding: 8px;
        transform: rotate(90deg);
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        font-weight: 700;
        cursor: pointer;
    }

    .menu-icon1 {
        position: absolute;
        top: 5px;
        right: 13px;
    }

    .menu-icon1 a {
        color: #fff !important;
        font-weight: 700 !important;
    }

    /*-- The Magic --*/

    #menu-toggle:checked~.slideout-sidebar {
        left: 0px;
    }

    /* #menu-toggle:checked+.menu-icon {
left: 30%;
} */
    /* -- Media Queries -- */

    @media (max-width: 767px) {
        .menu-icon {
            /* left: 20px */
        }

        #menu-toggle:checked~.slideout-sidebar {
            width: 100%;
            margin: 0;
        }

        #menu-toggle:checked+.menu-icon {
            left: 0%;
            top: 10%;
            z-index: 99999;
            transform: rotate(0deg) !important;
            color: #fafafa;
        }

        @media screen and (max-width: 736px) and (orientation: landscape) {
            .slideout-sidebar {
                padding: 10px;
            }
        }
    }

    .ser ul li a {
        color: #000 !important;
    }

    .ser ul li a:hover {
        color: #525fe1 !important;
    }

    /* Modal */

    .box {
        position: absolute;
        padding: 20px;
        top: 0;
        left: 50%;
        margin-top: 250px;
        transform: translate(-50%, -50%);
        color: #fff;
        border: 2px solid #525fe1;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .menu-icon a {
        color: #fff !important;
        font-weight: 700;
    }

    .box input {
        width: 100%;
        border: 1px solid #525fe1;
        margin-top: 20px;
        height: 40px;
        border-radius: 4px;
        background-color: #3e3e3e;
        padding-left: 5px;
        color: #ffffff;
    }

    .box input::placeholder {
        color: #fff;
    }

    .box button {
        width: 100%;
        height: 40px;
        background-color: #525fe1;
        color: #ffffff;
        border: 1px solid #525fe1;
        border-radius: 4px;
        margin-top: 15px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .pulse-button {
        display: block;
        font-weight: light;
        font-family: 'Trebuchet MS', sans-serif;
        text-transform: uppercase;
        text-align: center;
        color: white;
        border: none;
        background: #525fe1;
        line-height: 30px;
        cursor: pointer;
        padding: 10px;
        box-shadow: 0 0 0 0 #525fe1;
    }

    @-webkit-keyframes pulse {
        0% {
            @include transform(scale(.9));
        }

        70% {
            @include transform(scale(1));
            box-shadow: 0 0 0 50px #525fe1;
        }

        100% {
            @include transform(scale(.9));
            box-shadow: 0 0 0 0 #525fe1;
        }
    }

    .video-icon {
        width: 250px;
        height: 70px;
        z-index: 3;
        text-align: center;
        font-size: 20px;
        position: fixed;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
        background-color: #525fe1;
        color: #fff;
    }

    .video-icon::after,
    .video-icon::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        left: 0;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        border: 1px solid #525fe1;
    }

    .video-icon::before {
        -webkit-animation: ripple 2s linear infinite;
        animation: ripple 2s linear infinite;
    }

    .video-icon::after {
        -webkit-animation: ripple 2s linear 1s infinite;
        animation: ripple 2s linear 1s infinite;
    }

    .video-icon:hover {
        background-color: #525fe1;
    }

    @-webkit-keyframes ripple {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        75% {
            -webkit-transform: scale(1.75);
            transform: scale(1.75);
            opacity: 1;
        }

        100% {
            -webkit-transform: scale(2);
            transform: scale(2);
            opacity: 0;
        }
    }

    @keyframes ripple {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        75% {
            -webkit-transform: scale(1.75);
            transform: scale(1.75);
            opacity: 1;
        }

        100% {
            -webkit-transform: scale(2);
            transform: scale(2);
            opacity: 0;
        }
    }


     /* Modal */
     .box {
        position: absolute;
        padding: 20px;
        top: 0;
        left: 50%;
        margin-top: 250px;
        transform: translate(-50%, -50%);
        color: #fff;
        border: 2px solid #F7A30A;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .box input {
        width: 100%;
        border: 1px solid #525fe1;
        margin-top: 20px;
        height: 40px;
        border-radius: 4px;
        background-color: #3E3E3E;
        padding-left: 5px;
        color: #FFFFFF;
    }

    .box input::placeholder {
        color: #fff;
    }

    .box button {
        width: 100%;
        height: 40px;
        background-color: #525fe1;
        color: #000;
        border: 1px solid #fff;
        border-radius: 4px;
        margin-top: 15px;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 600;
    }

    /*floating strips css start */
    .floating_wrap {
        position: fixed;
        right: 0px;
        top: 162px;
        z-index: 1000;
    }

    .floating_wrap .btns_wrap {
        position: fixed;
        right: 0px;
    }

    .floating_wrap .btns_wrap a:hover {
        text-decoration: none !important;
        right: 0px;
    }

    .floating_wrap .btns_wrap .call_wrap {
        width: 275px;
        position: absolute;
        right: -225px;
        background: #fff;
        top: 60px;
        border-radius: 50px 0px 0px 50px;
        overflow: hidden;
        box-shadow: 0px 0px 40px #00000026 !important;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .floating_wrap .btns_wrap .call_wrap span {
        color: #525fe1;
        font-size: 19px;
        vertical-align: middle;
        background: #fff;
        padding: 15px 20px 15px 15px;
    }

    .floating_wrap .btns_wrap .chat_wrap {
        display: block;
        position: absolute;
        right: -225px;
        width: 275px;
        background: #fff;
        top: 0;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0px 0px 40px #00000026 !important;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        border-radius: 50px 0px 0px 50px;
    }

    .floating_wrap .btns_wrap .chat_wrap span.icoo,
    .floating_wrap .btns_wrap .call_wrap span.icoo {
        color: #525fe1;
        background: #fff;
        font-size: 20px;
        line-height: 1;
        padding: 14px 20px;
        border-right: 1px solid #DED9D9;
        vertical-align: middle;
        display: inline-block;
        border-radius: 50px 0px 0px 50px;
    }

    .floating_wrap .btns_wrap .chat_wrap span {
        color: #525fe1;
        font-size: 17px;
        vertical-align: middle;
        background: #fff;
        padding: 15px 30px 15px 15px;
    }

    /*floating strips css end */


    
.thankyou {
    text-align: center;
  }
  
  .thankyou h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px 0;
  }
  
  
  
  
  .thankyou p {
    font-size: 15px;
    font-weight: 400;
    color: #5c638c;
    padding-bottom: 20px;
  }
  
  .thankyou p span {
    font-weight: 700 !important;
    color: #ed3822;
  }
  
  
  