@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');

.custom-banner{
  padding: 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 27px;
  transition: all 300ms linear;
  position:relative;
  margin-bottom: 15px;
}

.custom-banner:hover{
  opacity: 0.7;
}

.custom-banner__link {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  box-shadow: none !important;
  z-index: 9;
}

.custom-banner strong{
  font-weight: 700;
}

.custom-banner__img{
  max-width: 150px;
  margin-bottom: 15px;
}

.custom-banner__img img{
  display: block;
  box-shadow: none!important;
}

.custom-banner__boxtitle{
  position: relative;
  padding-right: 50px;
}

.custom-banner__title{
  margin: 0px;
  font-size: 25px;
  line-height: 27px;
}

.arrow{
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  bottom: 0px;
}

.arrow__right {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: auto;
  left: auto;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.arrow__right::before {
  content: '';
  width: 100%;
  height: 100%;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #ffffff;
  transition: all .2s ease;
  display: block;
  transform-origin: 100% 0;
}
  
.arrow__right:after {
  content: '';
  float: left;
  position: relative;
  top: -100%;
  width: 100%;
  height: 0%;
  transform: rotate(45deg);
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: #ffffff;
  transform-origin: 100% 0;
  transition: all .2s ease;
}
  
.custom-banner:hover .arrow__right::after {
  transform: rotate(45deg);
  border-color: #ffffff;
  height: 180%;
}
.custom-banner:hover .arrow__right::before {
  border-color: #ffffff;
  transform: scale(.9);
}

.custom-banner:hover .arrow__right{
}
                