*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

section.testimonials{
    background-image: url(../images/testimonials/pattern-curve.svg);
    background-repeat: no-repeat;
    background-position: bottom 0px left 0px;
    height:100vh;
    overflow: auto;
}

.testimonial_card{
	background-color:#21333E;
    /*background-image: url(../images/testimonials/pattern-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;*/
    /*background-position: right 0px;*/
    height: 40vh;
    min-width: 100%;
    /*margin: 5vh 5vw 10vh ;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
     font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.5;
	border-radius: 20px;
  
}
.testimony{
    background: url(../images/testimonials/pattern-quotes.svg) no-repeat;
    background-position: top center;
    /*padding: 60px 0px 60px 150px;*/
    /*width:60%;*/
    z-index: 1;
	text-align:center;
  
}
.attestant_profile_image{
	position: relative;
    height: 100%;
    width: 40%;
}
.attestant_profile_image>img.attestant_img{
    position: absolute;
    left:-100px;
    height:100%;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.attestant_profile_image>img.btn_prev{
    position: absolute;
    padding: 20px 25px 20px 20px;
    background-color: #04AFF5;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px; 
    bottom: -29px;
    z-index: 2;    
    
}
.attestant_profile_image>img.btn_prev:hover{
    cursor: pointer;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);;
    z-index: 0;
}
.attestant_profile_image>img.btn_next:hover{
    cursor: pointer;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);;
    
}
    .attestant_profile_image>img.btn_next{
    position: absolute;
    padding: 20px 20px 20px 25px;
    background-color: #04AFF5;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px; 
    bottom: -29px;
    left:52px;
}
.attestant_info{
    font-size: 0.6em;
    margin-top: 30px;
}
.attestant_name{
    font-weight: 700;
}
.attestant_designation{
    color:hsl(240, 18%, 77%);
}
.border-b{
    border:1px solid black;
}
.border-w{
    border:1px solid white;
}

@media(max-width:1000px){
    section.testimonials{
        background-size: contain;
    }
    .testimonial_card{
        flex-direction: column-reverse;
        height: auto !important;
        min-width: 100vw;
        margin: 0px ;
    }
    .testimony{
        background: url(../images/testimonials/pattern-quotes.svg) no-repeat;
        background-position:top 0 center;
        font-size: 20px;
        height: 50%;
        width:100%;
        z-index: 1;
        padding: 30px ;
        text-align: center;

    }
    .attestant_profile_image{
        position: relative;
        width: 100%;
        height: 50%;
       /* padding: 10%;*/
    }
    .attestant_profile_image>img.attestant_img{
        position: absolute;
        left:unset;
        height: 80%;
        width: 80%;
        box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
    }
    .attestant_profile_image>img.btn_prev{
        position: absolute;
        padding: 15px;
        background-color: #04AFF5;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px; 
        bottom: calc(10% - 24px);
        left:calc(50% - 42px)
        }
    .attestant_profile_image>img.btn_next{
        position: absolute;
        padding:15px;
		background-color: #04AFF5;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px; 
        bottom: calc(10% - 24px);
        left:calc(50% )
        
    }
    .attestant_name{
        display: block;
    }
}