/*# 01) Banner Section #*/
.c-section--1 {
  background-color: #c7eef7;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
}


/* cta box blue */
.custom-cta-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.cta-big-button-wrapper {
  background-color: #022C7B;
  padding: 2rem 3rem;
}

.cta-big-button-wrapper:hover .cta-big-button img {
  transform: translateX(10px) rotate(90deg);
}


/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
  .c-section--1 {
    min-height: 150vh;
  }
  
  .c-section--1 .container #trigger-sticky {
    padding-top: 4rem;
  }
}


