        html,
        body {
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        .logo_container {
            display: flex;
            justify-content: center;
            align-items: baseline;
        }

        .logo_flex_column {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .testimonial-section .logo_wrap {
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            justify-content: center;
            align-items: baseline;
            padding-bottom: 60px;
            padding-left: 2.5%;
            padding-right: 2.5%;
            position: relative;
        }

        .testimonial-section .logo_wrap .logo {
            -webkit-box-flex: 0;
            -ms-flex-positive: 0;
            border-radius: 17px;
            flex-grow: 0;
            line-height: 0;
            margin-top: 0.8vw;
            overflow: hidden;
            padding: 0;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 5px;
        }

        .testimonial-section .logo_wrap .logo img {
            background-color: #2B3F4F;
            border-radius: 17px;
            max-width: 70%;
            height: auto;
            overflow: hidden;
            width: 100%;
            transition: background-color 0.3s ease-in-out;
        }

        .testimonial-section .logo_wrap .logo2 {
            margin-bottom: -20px;
            padding-top: 20px;
        }

        .testimonial-section .logo_wrap .logo img:hover {
            background-color: whitesmoke;
        }

        .testimonial-section .logo_wrap .logo .hover-image {
            display: none;
            filter: contrast(0.5);
        }

        .testimonial-section .logo_wrap .logo:hover .default-image {
            display: none;
        }

        .testimonial-section .logo_wrap .logo:hover .hover-image {
            display: block;
        }