.lp-half-half{
  display: flex;
  align-items: center;
  margin: 40px;
  padding: 0 5%;
}
.lp-half-half.rtl{
  flex-flow: row-reverse;
}
.lp-half-half .text-col,
.lp-half-half .image-col{
  padding: 60px;
  width: 50%;
}
.lp-half-half .image-col{
  padding: 20px;
  width: calc(50% - 40px);
  display: flex;
  justify-content: center;
}
.lp-half-half .image-col .image{
  width: min(80%, 430px);
  height: 0;
  padding-bottom: min(80%, 430px);
  position: relative;
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
  position: relative;
}
.lp-half-half .image-col .image .accent-outer{
  position: absolute;
  top: 5px; bottom: 5px;
  right: 5px; left: 5px;
  border-top: 3px solid #f15d2e;
  border-right: 3px solid #f15d2e;
  border-left: 3px solid #f15d2e;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  will-change: transform;
}
.lp-half-half .image-col .image .accent-middle{
  position: absolute;
  top: 10px; bottom: 10px;
  right: 10px; left: 10px;
  border-top: 3px solid #1b3160;
  border-right: 3px solid #1b3160;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  will-change: transform;
}
.lp-half-half .image-col .image .accent-inner{
  position: absolute;
  top: 15px; bottom: 15px;
  right: 15px; left: 15px;
  border-top: 3px solid transparent;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-bottom: 3px solid #4A7ABF;
  border-radius: 50%;
  will-change: transform;
}
@media (max-width: 1200px){
  .lp-half-half,
  .lp-half-half.rtl{
    flex-flow: column-reverse;
  }
  .lp-half-half .text-col,
  .lp-half-half .image-col{
    padding: 10px 0px;
    width: 100%;
  }
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate-slow {
  -webkit-animation: rotating 25s linear infinite;
  -moz-animation: rotating 25s linear infinite;
  -ms-animation: rotating 25s linear infinite;
  -o-animation: rotating 25s linear infinite;
  animation: rotating 25s linear infinite;
}
.rotate-medium {
  -webkit-animation: rotating 22s linear infinite;
  -moz-animation: rotating 22s linear infinite;
  -ms-animation: rotating 22s linear infinite;
  -o-animation: rotating 22s linear infinite;
  animation: rotating 22s linear infinite;
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  -ms-animation-direction: reverse;
  -o-animation-direction: reverse;
  animation-direction: reverse;
}
.rotate-fast {
  -webkit-animation: rotating 20s linear infinite;
  -moz-animation: rotating 20s linear infinite;
  -ms-animation: rotating 20s linear infinite;
  -o-animation: rotating 20s linear infinite;
  animation: rotating 20s linear infinite;
}