 html, body {
        overflow-x: hidden;
    }

    .container-fluid.myfluid {
        /* min-height: 100vh;*/
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .card {
        width: auto;
        min-height: 250px;
        background: rgba( 255, 255, 255, 0.15 );
        box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
        backdrop-filter: blur( 18px );
        -webkit-backdrop-filter: blur( 18px );
        border: 1px solid rgba( 255, 255, 255, 0.18 );
        border-radius: 1rem;
        padding: 1.5rem;
        z-index: 10;
        color: whitesmoke;
    }

    .title {
        /*font-size: 2.2rem*/;
        margin-bottom: 2rem;
        color: #fff;
    }

    .subtitle {
        /*font-size: 1rem;*/
        margin-bottom: 2rem;
    }

  

   

        
    .section-services {
        font-family: "Poppins", sans-serif;
        color: #202020;
        padding-top: 50px;
        padding-bottom: 120px;
    }

        .section-services .header-section {
            margin-bottom: 34px;
        }

            .section-services .header-section .title {
                position: relative;
                padding-bottom: 14px;
                margin-bottom: 25px;
                font-weight: 700;
                font-size: 32px;
            }

                .section-services .header-section .title:before {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 50px;
                    height: 3px;
                    background-color: #181d38;
                    border-radius: 3px;
                }

                .section-services .header-section .title:after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(30px);
                    width: 10px;
                    height: 3px;
                    background-color: #504f93;
                    border-radius: 3px;
                }

            .section-services .header-section .description {
                font-size: 14px;
                color: #282828;
            }

        .section-services .single-service {
            position: relative;
            margin-top: 30px;
            background-color: #06bbcc;
            border-radius: 10px;
            padding: 40px 30px;
            overflow: hidden;
            height: 90%;
        }

            .section-services .single-service .content {
                position: relative;
                z-index: 20;
            }

            .section-services .single-service .circle-before {
                position: absolute;
                top: 0;
                right: 0px;
                transform: translate(40%, -40%);
                width: 150px;
                height: 150px;
                background-color: #181d38;
                border: 6px solid #504f93;
                border-radius: 50%;
                opacity: 0.5;
                z-index: 10;
                transition: all 0.6s;
            }

            .section-services .single-service:hover .circle-before {
                width: 100%;
                height: 100%;
                transform: none;
                border: 0;
                border-radius: 0;
                opacity: 1;
            }

            .section-services .single-service .icon {
                display: inline-block;
                margin-bottom: 26px;
                width: 70px;
                height: 70px;
                background-color: #181d38;
                border-radius: 5px;
                line-height: 70px;
                text-align: center;
                color: #fff;
                font-size: 30px;
                transition: all 0.3s;
            }

            .section-services .single-service:hover .icon {
                background-color: #fff;
                color: #181d38;
            }

            .section-services .single-service .title {
                margin-bottom: 18px;
                font-weight: 700;
                font-size: 23px;
                transition: color 0.3s;
            }

            .section-services .single-service:hover .title {
                color: #fff;
            }

            .section-services .single-service .description {
                margin-bottom: 20px;
                font-size: 14px;
                transition: color 0.3s;
            }

            .section-services .single-service:hover .description {
                color: #fff;
            }

            .section-services .single-service a {
                position: relative;
                font-size: 18px;
                color: #202020;
                text-decoration: none;
                font-weight: 500;
                transition: color 0.3s;
            }

            .section-services .single-service:hover a {
                color: #fff;
            }

            .section-services .single-service a:after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 1px;
                background-color: #181d38;
                transition: background-color 0.3s;
            }

            .section-services .single-service:hover a:after {
                background-color: #fff;
            }


    .ratio > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .card-img, .card-img-top {
        border-top-left-radius: 50px;
        border-bottom-right-radius: 50px;
        border-top-right-radius: 0px;
    }

    .context {
        position: relative;
    }

    .buttonz {
        display: inline-flex;
        height: 40px;
        width: 150px;
        border: 2px solid #000;
        margin: 20px 20px 20px 0px;
        color: #000;
        text-transform: uppercase;
        text-decoration: none;
        font-size: .8em;
        letter-spacing: 1.5px;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 5px;
    }


    #button-7 {
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        #button-7 span {
            position: relative;
            left: 0;
            transition: all .35s ease-Out;
        }

    #dub-arrow {
        width: 100%;
        height: 100%;
        background: #06bbcc;
        left: -200px;
        position: absolute;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .35s ease-Out;
        bottom: 0;
    }

    #button-7 img {
        width: 20px;
        height: auto;
    }

    #button-7:hover #dub-arrow {
        left: 0;
    }

    #button-7:hover span {
        left: 150px;
    }
	 @@media only screen and (max-device-width: 650px) {
                  .card{
                    background: transparent;
                    box-shadow: none;
                    border: none;
                  }
              }