* {
  box-sizing: border-radius;
  font-family: 'Rubik', sans-serif;
}
.container {
  /*border: 1px solid black;*/
  width: 70%;
  /*position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  margin: auto;*/
  width: 100%;
 
  flex-wrap: wrap;
  place-items: center;
/*  background-color: #128CFC;*/
}

.items {
  width: 300px;
  background: #8AD13F;
  color: white;
  box-shadow: 0 3px 6px rgba(black,0.16), 0 3px 6px rgba(black,0.23);
  border-top: 10px solid #0B5AA2;
}

.items-head p{
  padding: 5px 20px;
  margin: 10px;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.items-head hr {
  width: 20%;
  margin: 0px 30px;
  border: 1px solid #0B5AA2;
}

.items-body {
  padding: 10px;
  margin: 10px;
  display: grid;
  grid-gap: 10px;
}

.items-body-content {
  padding: 10px;
  padding-right: 0px;
  display: grid;
  grid-template-columns: 10fr 1fr;
  // background-color: lightblue;
  font-size: 13px;
  grid-gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  color: white; text-shadow: 0px 1px 3px green;
  
}

.items-body-content:hover {
  border-radius: 15px;
  border: 1px solid #fff;

}

.items-body-content i {
  align-self: center;
  font-size: 15px;
  color: #0B5AA2;
  font-weight: bold;
  animation: icon 1.5s infinite forwards;
}

@keyframes icon {
  0%,100%{
    transform: translate(0px);
  }
  50% {
    transform: translate(3px);
  }
}

.rgt{
    width: 60%;
    float: right;
}
.lft{
    width: 40%;
    float: left;
}
 .hr{
    background: green;
    height: 3px;
    width: 50px;
    margin-left: 0px;
 }
 .soutitre{
    margin-top: 60px;
 }

@media all and (max-width: 700px)
{
    .container{
        width: 100%;
    }

    .rgt{
        width: 100%;
        display: inline-block;
    }

     .lft{
        width: 100%;
        display: inline-block;
    }

    .items{
        width: 100%;
    }
}
