.cus_container{
  width:700px;
  min-height:330px;
  margin:0 auto 40px;
  position:relative;
  padding-bottom:10px;
  overflow:hidden;
}
.cus_container > div {
    display: flex;
    align-items: center;
}
.customer {
    width: 100%;
    text-align: center;
}
.btnLink {
    padding: 8px 24px 8px 20px;
    border: 3px solid white;
    border-radius: 0.3rem;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    text-decoration: none;
    position: relative;
    margin-top: 10px;
    background: transparent;
}
.btnLink:hover {
    color:darkorange;
    border-color: darkorange;
}
.btnLink::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

input[type="radio"] {
position: absolute;
width: 1px; /* Setting this to 0 make it invisible for VoiceOver */
height: 1px; /* Setting this to 0 make it invisible for VoiceOver */
padding: 0;
margin: -1px;
border: 0;
clip: rect(0 0 0 0);
overflow: hidden;
}
label{
  display:block;
  width:24%;
  border: 4px solid white;
  position:absolute;
  bottom:5px;
  cursor: pointer;
  transition: border-color 0.3s linear;
}

label.second{
  left:25.25%;
}
label.third{
  left:50.5%;
}
label.fourth{
  left:75.75%;
}
.quotes{
  position:absolute;
  color:rgba(255,255,255,0.5);
  font-size:5em;
}
.leftq{
  top:-25px;
  left:5px;
}
.rightq{
  bottom:-10px;
  right:5px;
}
.siteImg {
  width: 500px;
  height: auto;
}
.slide{
  position:absolute;
  left:-100%;
  opacity:0;
  transition: all 0.6s ease-in;
}

#first:checked ~ label.first {
  border-width:6px;
  border-color: #0000E1;
}
#second:checked ~ label.second {
  border-width:6px; border-color:purple;
}
#third:checked ~ label.third {
  border:6px solid #ED2D85;
}
#fourth:checked ~ label.fourth {
  border:6px solid #FFD700;
}
.one {
    width: 100%;
    background-color: #0000E1;
}
.two {
    width: 100%;
    background-color: purple;
}
.three {
    width: 100%;
    background-color: #ED2D85;
}
.four {
    width: 100%;
    background-color: #FFD700;
}

#first:checked ~ div.one {
  left:0;
  opacity:1;
}
#second:checked ~ div.two {
  left:0;
  opacity:1;
}
#third:checked ~ div.three {
  left:0;
  opacity:1;
}
#fourth:checked ~ div.four {
  left:0;
  opacity:1;
}

.customer_name {
  font-size: 17px;
  color: white; 
  margin:10px 0 10px;
}
.customer_name > a {
  color: #FFFFFF;
}
@media screen and (max-width: 700px) {
      .cus_container{
        width: 100%;  
        min-height:275px;
      }
      .siteImg {
        width: 60%;
      }
      .customer {
        width: 40%;
      }
}
@media screen and (max-width: 650px) {
      .cus_container{
        min-height:255px;
      }
}
@media screen and (max-width: 600px) {
      .cus_container{
        min-height:245px;
      }
}
@media screen and (max-width: 550px) {
      .cus_container{
        min-height:235px;
      }
}
@media screen and (max-width: 500px) {
      .cus_container{
        width: 100%;
        min-height:420px;
      }
      .cus_container > div {
        display: inline-block;
      }
      .siteImg {
        width: 100%;
      }
      .customer {
        width: 100%;
      }
}
@media screen and (max-width: 450px) {
      .cus_container{
        min-height:390px;
      }
}
@media screen and (max-width: 390px) {
      .cus_container{
        min-height:370px;
      }
}

@media screen and (max-width: 350px) {
      .cus_container{
        min-height:330px;
      }
}
@media screen and (max-width: 300px) {
      .cus_container{
        min-height:305px;
      }
}