.u-section-2 .u-sheet-1 {min-height: 767px}
.u-section-2 .u-text-1 {margin: 50px auto 0}
.u-section-2 .u-text-2 {margin: 20px auto 0}
.u-section-2 .u-layout-wrap {margin: 23px auto 0 0}
.u-section-2 .u-layout-cell {min-height: 547px}
.u-section-2 .u-container-layout {padding: 30px}
.u-section-2 .u-image {width: 240px; height: 240px; background-position: 50% 50%; background-size: contain; margin: 0 auto;}
.u-section-2 .u-image.u-image-circle {background-color: white;}
.u-section-2 .u-text-name {text-transform: uppercase; font-size: 1.5rem; margin: 20px auto 0}
.u-section-2 .u-text-position {font-weight: 700; margin: 12px auto 0;color: #c61800;}
.u-section-2 .u-text-intro {font-style: italic; margin: 23px 0 0; color: black;}
.u-section-2 .u-social-icons {white-space: nowrap; height: 27px; min-height: 16px; width: 136px; min-width: 94px; margin: 20px auto -11px; color: #c61800;}
.u-section-2 .u-icon {height: 100%}
.u-section-2 .u-text-12 {margin: 30px auto 60px} 
@media (max-width: 1199px){ 
    .u-section-2 .u-sheet-1 {min-height: 671px}
    .u-section-2 .u-layout-wrap {margin-right: initial; margin-left: initial}
    .u-section-2 .u-layout-cell {min-height: 451px}
}
@media (max-width: 991px){ 
    .u-section-2 .u-sheet-1 {min-height: 320px}
    .u-section-2 .u-layout-cell {min-height: 100px}
    .u-section-2 .u-image {width: 180px; height: 180px}
}
@media (max-width: 767px){ 
    .u-section-2 .u-sheet-1 {min-height: 420px}
    .u-section-2 .u-container-layout {padding-left: 10px; padding-right: 10px}
}

.social-icons {
    text-align: center;
    margin: 16px auto;
}
.social-icons a {
    color: #c61800;
    font-size: 24px;
    margin: 0 6px;
}

.country-flag span {
    font-weight: bold;
}


/************************
 * 3D Flipping animaiton
************************/
/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  transition: transform 0.8s;
/*   transition-delay: 300ms; */
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
/*.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}*/

/* Position the front and back side */
.flip-box-front, .flip-box-back {
  position: absolute;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-box-front {
}

/* Style the back side */
.flip-box-back {
  transform: rotateY(180deg);
}

/************************
 * Pluse animaiton
************************/
@keyframes bounceOutRight2D {
  20% {
    opacity: 0.8;
    -webkit-transform: translate(-20px, 0);
    transform: translate(-20px, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(150px, 0);
    transform: translate(150px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate(2000px, 0);
    transform: translate(2000px, 0);
  }
}

.bounceOutRight2D {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-name: bounceOutRight2D;
    animation-name: bounceOutRight2D;
}

@keyframes bounceOutLeft2D {
  20% {
    opacity: 0.8;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }

  50% {
    opacity: 0;
    -webkit-transform: translate(-150px, 0);
    transform: translate(-150px, 0);
  }
  
  to {
    opacity: 0;
    -webkit-transform: translate(-2000px, 0);
    transform: translate(-2000px, 0);
  }
}

.bounceOutLeft2D {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-name: bounceOutLeft2D;
    animation-name: bounceOutLeft2D;
}

@keyframes pulseleft {
/*  0% { left: -30px; }
  20% { left: -45px;  }
  33% { left: -30px;  }
  53% { left: -45px;  }
  66% { left: -30px;  }
  86% { left: -45px;  }
  100% { left: -30px;  }*/
    0% { left: -30px; }
    30% { left: -45px;  }
    50% { left: -40px;  }
    80% { left: -50px;  }
    90% { left: -40px;  }
    100% { left: -30px;  }
}

@keyframes pulseright {
/*  0% { right: -30px; }
  20% { right: -45px;  }
  33% { right: -30px;  }
  53% { right: -45px;  }
  66% { right: -30px;  }
  86% { right: -45px;  }
  100% { right: -30px;  }*/
    0% { right: -30px; }
    30% { right: -45px;  }
    50% { right: -40px;  }
    80% { right: -50px;  }
    90% { right: -40px;  }
    100% { right: -30px;  }
}


.flip-box-back .pulse-after,
.flip-box-back .pulse-before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 75px;
    height: 240px;
    display: inline-block;
    position: fixed;
    top: 0;
}

.flip-box-back .pulse-after {
    background-image: url(imgs/lc-red.png);
    left: -30px;
    /*animation: 1s linear 0s pulseleft 3;*/
}
.flip-box-back .pulse-before {
    background-image: url(imgs/rc-red.png);
    right: -30px;
/*     animation: 1s linear 0s pulseright 3; */
}

.pulse-left-animated {
    animation: 1s linear 0s pulseleft 3;
}

.pulse-right-animated{
    animation: 1s linear 0s pulseright 3;
}


@media (max-width: 991px){ 
    .flip-box-back .pulse-after,
    .flip-box-back .pulse-before {width: 50px; height: 180px}
}
