@charset "UTF-8";
/* ========================================================================= */
/* !RESETS AND DEFAULTS */
/* ========================================================================= */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700,700i&display=swap");
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, img,
ins, kbd, q, samp, var, hr, acronym, dl, dt, dd, ol, ul, li,
pre, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
  border: 0;
  outline: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

em, strong, b, i, a, span, sub, sup, small {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

/*
a:focus {
    outline:0;
}
:focus, :active {
    outline:none; outline:0;
} ::-moz-focus-inner {
    outline:none;
}
*/
article, aside, details, figcaption, figure, footer,
header, hgroup, menu, nav, section {
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border-top: 1px solid #000;
  color: #000;
}

input, select {
  vertical-align: middle;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: 0px;
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 0px;
}

input, button, textarea, select, label, img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input[type=text],
input[type=password],
input[type=url],
input[type=number],
input[type=tel],
input[type=email],
input[type=submit],
button, textarea, select {
  -webkit-appearance: none;
  outline: 1px solid transparent;
}

textarea {
  resize: none;
  overflow: auto;
}

button, a span {
  cursor: pointer;
}

button {
  border: 0;
  text-align: center;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

table {
  table-layout: fixed;
}

a[href^=tel] {
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}

select:-moz-focusring {
  color: transparent;
}

select::-ms-expand {
  display: none;
}

/* != FONT SMOOTHING */
body, input, button, textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* != ms-clear */
input[type=text]::-ms-clear {
  display: none;
}

/* != BACKGROUND POSITION AND BOX SIZING */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
}

/* != .clearfix - CLEAR ELEMENTS */
.clear {
  clear: both;
}

.clearfix {
  display: block;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/* != .wordwrap - CONTINUE LONG URLS/WORDS ON NEXT LINE */
.wordwrap {
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}

/* ========================================================================= */
/* !FONTS (@fontface generated with FontSpring Syntax formatting */
/* ========================================================================= */
@font-face {
  font-family: "Playfair Display";
  src: url("/yir2022/ui/fonts/playfair/playfairdisplay-regular-webfont.woff2") format("woff2"), url("/yir2022/ui/fonts/playfair/playfairdisplay-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/yir2022/ui/fonts/playfair/playfairdisplay-italic-webfont.woff2") format("woff2"), url("/yir2022/ui/fonts/playfair/playfairdisplay-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/yir2022/ui/fonts/playfair/playfairdisplay-bold-webfont.woff2") format("woff2"), url("/yir2022/ui/fonts/playfair/playfairdisplay-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/yir2022/ui/fonts/playfair/playfairdisplay-bolditalic-webfont.woff2") format("woff2"), url("/yir2022/ui/fonts/playfair/playfairdisplay-bolditalic-webfont.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
/* ========================================================================= */
/* !SASS VARIABLES & MIXINS */
/* ========================================================================= */
/*
    // Use Case: $b (second) variable is optional and defaults to 'max-width'

    @include break(1100){
        h1{
            background: red;
        }
    }

    // Output
    @media screen and (max-width: 1100px) {
        h1 { background: red; }
    }

    // Also, if you want to specify the 2nd variable for break type (i.e., min-height)

    @include break(1100, 'min-height'){
        h1 {
            background:red;
        }
    }

    // Output
    @media screen and (min-height: 1100px) {
        h1 { background: red; }
    }
*/
/*
    // inline SVGs
    // usage: background-image: inline-svg('<svg><!-- your svg code --></svg>');
*/
/* ========================================================================= */
/* !STYLES */
/* ========================================================================= */
html, body {
  font: 16px/1.5625 "Open Sans", sans-serif;
  color: #696969;
  overflow-x: hidden;
  -webkit-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
}

html {
  background-color: #232736;
}

body {
  /*max-width:1500px;*/
  background-color: #fff;
  margin: 0 auto;
  padding-top: 0px !important;
}

/* != SELECTION STYLES (Leaving these blank will show no indication of text selection) ===== */
/*
    ::selection         {
        background: #aaa;
        color: #fff;
    }
    ::-moz-selection    {
        background: #aaa;
        color: #fff;
    }
    ::-webkit-selection {
        background: #aaa;
        color: #fff;
    }
*/
/* != DEFAULT WORDPRESS STYLES = USE AS NEEDED = .wp-caption = .wp-caption-dd = .wpGallery = .shutter = .shutterset ==== */
.aligncenter {
  display: block;
  margin: 25px auto;
}

.alignleft {
  float: left;
  margin: 0 25px 25px 0;
}

.alignright {
  float: right;
  margin: 0 0 25px 25px;
}

.alignnone {
  display: inline-block;
}

/* != LAYOUT STYLES ===== */
.content-main ul:not([class*=gf]) > li {
  position: relative;
  padding-left: 10px;
}
.content-main ul:not([class*=gf]) > li:before {
  content: "•";
  position: absolute;
  left: 0;
}

.content-main ol {
  counter-reset: li;
}
.content-main ol > li {
  position: relative;
  padding-left: 20px;
}
.content-main ol > li:before {
  content: counter(li) ". ";
  counter-increment: li;
  position: absolute;
  right: calc(100% - 15px);
}

.wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#header {
  background-color: #33394F;
  background-image: url("/yir2023/ui/images/2023-hero.jpg");
  background-size: cover;
  padding: 80px 0 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#header .wrap {
  z-index: 5;
}
#header .logo {
  display: block;
  margin: 0 auto;
}
#header .yir {
  display: block;
  position: relative;
  z-index: 2;
  margin: 40px auto 0px;
}
@media screen and (max-width: 1080px) {
  #header .yir {
    margin-top: 20px;
    width: 420px;
  }
}
#header .banner-slider, #header .banner-slider .slick-list {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
#header .banner-slider .slick-track, #header .banner-slider .slick-list .slick-track {
  height: 100%;
}
#header .banner-slider .slide, #header .banner-slider .slick-list .slide {
  opacity: 0.2;
  position: relative;
  background-size: cover;
}
#header .banner-slider .slide:after, #header .banner-slider .slick-list .slide:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../svg/stripes-left.svg) no-repeat bottom left, url(../svg/stripes-right.svg) no-repeat bottom right;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  #header .banner-slider .slide:after, #header .banner-slider .slick-list .slide:after {
    background: url(../svg/stripes-left.svg) no-repeat bottom left -150px, url(../svg/stripes-right.svg) no-repeat bottom right -100px;
    background-size: 300px auto;
  }
}
#header .banner-slider.mobile {
  display: none;
}
#header .banner-dots {
  position: absolute;
  bottom: 27px;
  left: 20px;
}
#header .banner-dots.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  #header {
    padding: 13px 0 0;
    min-height: 425px;
    padding-bottom: 28px;
    margin-bottom: 0;
  }
  #header .logo {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  #header .logo img {
    max-width: 100%;
  }
  #header .yir {
    width: 300px;
    margin-top: 60px;
    margin-bottom: 84px;
  }
  #header .banner-text {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  #header .banner-dots {
    bottom: -122px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  #header .banner-slider.desktop, #header .banner-dots.desktop {
    display: none;
  }
  #header .banner-slider.mobile, #header .banner-dots.mobile {
    display: block;
  }
  #header .banner-slider.mobile .slide, #header .banner-dots.mobile .slide {
    background-position: center 25%;
  }
}

.numbers-wrapper {
  padding-top: 120px;
  background-image: url("/yir2023/ui/images/credit-activity-bg.jpg");
  background-size: cover;
  background-position: top center;
}

.section-heading-wrap {
  border-top: 1px solid #33394F;
  padding-top: 30px;
  text-align: center;
}
.section-heading-wrap.no-border {
  border-top: none;
}
.section-heading-wrap.two-border {
  border-bottom: 1px solid #33394F;
  padding-top: 10px;
  padding-bottom: 25px;
}
.section-heading-wrap .section-heading {
  padding: 20px 0;
  color: #33394F;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}
@media screen and (max-width: 600px) {
  .section-heading-wrap .section-heading {
    font-size: 22px;
    line-height: 28px;
  }
}

.banner-text {
  padding: 40px 70px;
  background-color: #EFEFED;
  color: #33394F;
  font-weight: 300;
  text-align: center;
  max-width: 775px;
  margin: -30px auto 0;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-box-shadow: inset 0 0 0 8px #EFEFED, inset 0 0 0 9px #fff;
          box-shadow: inset 0 0 0 8px #EFEFED, inset 0 0 0 9px #fff;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 1080px) {
  .banner-text {
    max-width: 980px;
  }
}
@media screen and (max-width: 880px) {
  .banner-text {
    max-width: 780px;
  }
}
.banner-text-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .banner-text {
    display: none;
  }
  .banner-text-mobile {
    font-size: 16px;
    display: block;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin-top: -100px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    max-width: calc(100% - 20px);
    padding-left: 25px;
    padding-right: 25px;
  }
}

.download-pdf {
  position: absolute;
  top: 24px;
  right: 20px;
}
@media screen and (max-width: 1100px) {
  .download-pdf {
    text-align: center;
  }
}
.download-pdf a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1425em;
  font-size: 12px;
  text-transform: uppercase;
}
.download-pdf-mobile {
  top: 270px;
}
@media screen and (max-width: 768px) {
  .download-pdf {
    display: none;
  }
  .download-pdf-mobile {
    display: block;
    margin: 44px auto 0;
    position: relative;
    right: auto;
  }
}

.slick-dots li {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  border: 1.5px solid #fff;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background: #fff;
}
.slick-dots li:not(:last-of-type) {
  margin-right: 15px;
}
.slick-dots li button {
  background: transparent !important;
  opacity: 0;
}

.section-head {
  font: bold 30px/1.33 "Playfair Display", serif;
  color: #33394F;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1556666667em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-head span {
  margin: 0 auto;
}
.section-head sup a {
  color: #336699;
  font-size: 17px;
  vertical-align: 8px;
}
@media screen and (max-width: 450px) {
  .section-head {
    font-size: 22px;
  }
  .section-head span {
    margin: 0 20px;
    width: 100%;
  }
}

.dispositions-container {
  margin-top: 73px;
}

.numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}
.numbers-container {
  padding-top: 72px;
  padding-bottom: 72px;
}
.numbers-container p:not(.slide-text) {
  font-size: 18px;
  max-width: 1080px;
  text-align: center;
  margin: 0 auto;
}
.numbers-container p:not(.slide-text):nth-child(2) {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .numbers-container p:not(.slide-text) {
    font-size: 15px;
  }
}
.numbers-container .desc-mb {
  margin: 0 auto 40px !important;
  text-wrap: balance;
}
.numbers .icon {
  max-width: 260px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (max-width: 768px) {
  .numbers .icon {
    display: none;
  }
}
.numbers .number {
  font: normal 60px/1.33 "Playfair Display", serif;
  color: #33394F;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .numbers .number > div {
    -webkit-transform: translateX(0px) !important;
        -ms-transform: translateX(0px) !important;
            transform: translateX(0px) !important;
  }
}
.numbers .number small {
  font-size: 0.66em;
}
.numbers .number > span {
  display: block;
  font: 600 15px/1.35 "Open Sans", sans-serif;
  color: #336699;
}
.numbers .number > span.adjust {
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  .numbers .number > span.adjust {
    padding-left: 0;
  }
}
.numbers .number > span sup {
  font: 600 14px/1.35 "Open Sans", sans-serif;
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: -0.5em;
  margin-left: -3px;
}
.numbers .number > span sup a {
  font: 600 10px/1.35 "Open Sans", sans-serif;
  color: #336699;
}
.numbers .number b {
  font-weight: normal;
  max-width: 120px;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  font-variant-numeric: lining-nums;
}
.numbers .number hr {
  margin: 10px 0;
  border-top: 2px solid #33394F;
}
.numbers.three .number {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 170px;
          flex: 0 1 170px;
}
.numbers.three .number.wide {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.numbers + .numbers {
  border-top: 1px solid #EFEFED;
  padding-top: 58px;
}
@media screen and (max-width: 900px) {
  .numbers {
    max-width: 300px;
    margin: 44px auto 0;
    display: block;
  }
  .numbers > div {
    width: 100% !important;
    padding-left: 58px;
  }
  .numbers .icon {
    max-width: 60px !important;
    padding-left: 0;
    position: absolute;
    top: auto;
    left: auto;
  }
  .numbers .icon.mobile-scale {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .numbers .number {
    font-size: 50px;
    padding-left: 0;
  }
  .numbers .number small {
    font-size: 30px;
  }
  .numbers .number + .number {
    margin-top: 30px;
  }
}

.offwhite {
  background-color: #F9F9F9;
}

.pb50 {
  padding-bottom: 50px;
}

.new-investments {
  background-color: #33394F;
  background-image: url("/yir2023/ui/images/2023-investments-bg.jpg");
  background-size: cover;
  position: relative;
  padding: 103px 0 144px;
}
.new-investments:before, .new-investments:after {
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.09;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.new-investments .wrap {
  position: relative;
  z-index: 2;
}
.new-investments .section-head {
  color: #fff;
  -webkit-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
}
.new-investments .section-head a {
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .new-investments {
    padding: 38px 0 90px;
  }
}

.investments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 90px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.investments > div {
  background-color: #fff;
  padding: 0 33px 51px;
  width: 31.5789473684%;
  border-radius: 4px;
}
.investments > div p {
  margin-top: -25px;
}
.investments > div p i {
  font-style: italic;
}
.investments .logo {
  padding-top: 160px;
  position: relative;
  display: block;
}
.investments .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 195px;
}
.investments .logo .logo-beeline {
  max-width: 175px;
}
.investments .logo .logo-ieq {
  max-width: 100px;
}
.investments .logo .logo-onboard {
  max-width: 140px;
}
.investments .logo .logo-galway {
  margin-top: -10px;
}
.investments .logo span {
  color: #C1A172;
  position: absolute;
  top: 25%;
  right: 10%;
}
.investments.four > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 22.5px);
          flex: 0 1 calc(25% - 22.5px);
}
@media screen and (max-width: 950px) {
  .investments.four > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 15px);
            flex: 0 1 calc(50% - 15px);
  }
}
@media screen and (max-width: 540px) {
  .investments.four > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.investments p {
  font-size: 13px;
  text-align: center;
  text-wrap: balance;
}
.investments p a {
  color: #C1A172;
}
.investments p a:hover {
  color: #33394F;
}
@media screen and (max-width: 768px) {
  .investments {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 38px;
  }
  .investments > div {
    width: 100%;
  }
}

.highlights-wrap {
  padding: 70px 0;
  background-color: #F9F9F9;
}

.featured-section {
  margin: 70px 0;
}
.featured-section .featured-wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .featured-section .featured-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
.featured-section .featured-wrap .text h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #33394F;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 540px) {
  .featured-section .featured-wrap .text h2 {
    font-size: 24px;
  }
}
.featured-section .featured-wrap .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 48.2456140351%;
          flex: 1 0 48.2456140351%;
}
@media screen and (max-width: 768px) {
  .featured-section .featured-wrap .image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.featured-section .featured-wrap .image img {
  display: block;
  margin: 0;
  width: 100%;
}

.sectors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 90px;
  margin-bottom: 78px;
}
.sectors .sector {
  -ms-flex-preferred-size: 45.6140350877%;
      flex-basis: 45.6140350877%;
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin-bottom: 26px;
}
.sectors .sector:nth-child(2n+2) {
  margin-left: 100px;
}
.sectors .sector .sector-heading {
  width: 100%;
  font: 600 14px/19px "Open Sans", sans-serif;
  letter-spacing: 0.0714285714em;
  text-transform: uppercase;
  padding: 5px;
}
.sectors .sector .logo {
  width: 50%;
  padding-top: 160px;
  display: inline-block;
  position: relative;
}
.sectors .sector .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
      -ms-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  max-width: 175%;
}
@media screen and (max-width: 768px) {
  .sectors .sector {
    width: 100%;
    margin-left: 0 !important;
  }
  .sectors .sector .logo {
    height: 18vw;
  }
}
@media screen and (max-width: 480px) {
  .sectors .sector .logo {
    width: 100%;
  }
}

.highlights .slide, .highlights .container, .highlight-single .slide, .highlight-single .container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.highlights .slide img, .highlights .container img, .highlight-single .slide img, .highlight-single .container img {
  width: 25%;
}
.highlights .slide .text, .highlights .container .text, .highlight-single .slide .text, .highlight-single .container .text {
  padding-bottom: 10px;
}
.highlights .slide .text h3, .highlights .container .text h3, .highlight-single .slide .text h3, .highlight-single .container .text h3 {
  font: bold 30px "Playfair Display", serif;
}
.highlights .slide .text h3, .highlights .slide .text h3 a, .highlights .container .text h3, .highlights .container .text h3 a, .highlight-single .slide .text h3, .highlight-single .slide .text h3 a, .highlight-single .container .text h3, .highlight-single .container .text h3 a {
  color: #33394F;
}
.highlights .slide .text p, .highlights .container .text p, .highlight-single .slide .text p, .highlight-single .container .text p {
  margin: 23px 20px 0;
}
.highlights .slide .text p #margin-adjust, .highlights .container .text p #margin-adjust, .highlight-single .slide .text p #margin-adjust, .highlight-single .container .text p #margin-adjust {
  margin-left: -2px;
}
.highlights .slide .text p sup a, .highlights .container .text p sup a, .highlight-single .slide .text p sup a, .highlight-single .container .text p sup a {
  color: currentColor;
}
.highlights .slide .text p a, .highlights .container .text p a, .highlight-single .slide .text p a, .highlight-single .container .text p a {
  color: #C1A172;
}
.highlights .slide .text p a:hover, .highlights .container .text p a:hover, .highlight-single .slide .text p a:hover, .highlight-single .container .text p a:hover {
  color: #33394F;
}
.highlights .slide .text p + a, .highlights .container .text p + a, .highlight-single .slide .text p + a, .highlight-single .container .text p + a {
  margin-top: 20px;
}
.highlights .slide .no-img, .highlights .container .no-img, .highlight-single .slide .no-img, .highlight-single .container .no-img {
  width: 100%;
  text-align: center;
}
.highlights .slide .has-img, .highlights .container .has-img, .highlight-single .slide .has-img, .highlight-single .container .has-img {
  width: 48.2456140351%;
}
@media screen and (max-width: 768px) {
  .highlights .slide, .highlights .container, .highlight-single .slide, .highlight-single .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .highlights .slide img, .highlights .container img, .highlight-single .slide img, .highlight-single .container img {
    width: 100%;
    margin-bottom: 30px;
  }
  .highlights .slide .text, .highlights .container .text, .highlight-single .slide .text, .highlight-single .container .text {
    width: 100%;
  }
  .highlights .slide .text h3, .highlights .container .text h3, .highlight-single .slide .text h3, .highlight-single .container .text h3 {
    font-size: 24px;
  }
  .highlights .slide .text p, .highlights .container .text p, .highlight-single .slide .text p, .highlight-single .container .text p {
    font-size: 14px;
  }
}

.highlight-dots {
  margin: 30px 0 44px;
  text-align: center;
}
.highlight-dots .slick-dots {
  line-height: 0;
}
.highlight-dots .slick-dots li {
  border-color: #C1A172;
}
.highlight-dots .slick-dots li.slick-active {
  background-color: #C1A172;
}

.highlight-single {
  margin-top: 70px;
}
.highlight-single .container .text {
  width: calc(75% - 40px);
}
@media screen and (max-width: 520px) {
  .highlight-single .container .text {
    width: 100%;
    margin-top: 30px;
  }
}
.highlight-single .container .images {
  width: 25%;
  font-size: 0;
  line-height: 0;
}
@media screen and (max-width: 520px) {
  .highlight-single .container .images {
    width: 100%;
  }
}
.highlight-single .container .images img {
  width: 100%;
  display: block;
  margin-bottom: 0;
}
.highlight-single .container .images img + img {
  margin-top: 10px;
}

.activity {
  padding-top: 30px;
  padding-bottom: 120px;
}
.activity .highlight-single {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 65px;
}

#remembering {
  margin: 170px auto 80px;
}
#remembering .listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px 0 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#remembering .listing .col-img {
  width: 263px;
}
@media screen and (max-width: 600px) {
  #remembering .listing .col-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
#remembering .listing .col-text {
  width: calc(100% - 293px);
}
@media screen and (max-width: 600px) {
  #remembering .listing .col-text {
    width: 100%;
  }
}
#remembering .listing .col-text h4 {
  font-family: "Playfair Display";
  font-size: 28px;
  letter-spacing: 0;
  line-height: 37px;
  color: #33394F;
  font-weight: 600;
  margin-bottom: 20px;
}
#remembering .listing .col-text h4 span {
  font-weight: 400;
}
#remembering .listing .col-text p {
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 29px;
  color: #33394F;
  text-align: justify;
}

.btn {
  border: 1px solid #C1A172;
  padding: 13px 17px;
  font: bold 14px/19px "Playfair Display", serif;
  color: #C1A172;
  text-transform: uppercase;
  letter-spacing: 0.1664285714em;
  text-align: center;
  display: inline-block;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn:hover {
  color: #fff;
  background-color: #C1A172;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 11px 17px;
    font-size: 12px;
  }
}

.credit-overview {
  padding-top: 50px;
  background-image: url("/yir2023/ui/images/credit-activity-bg.jpg");
  background-size: contain;
  background-position: top center;
}
.credit-overview .overview-head {
  margin: 50px 0 0;
}
.credit-overview .activity {
  padding-bottom: 0;
  padding-top: 0;
}
.credit-overview .wrap .section-heading-wrap {
  border: none;
  padding: 0;
}
.credit-overview .wrap .section-heading-wrap .section-heading {
  padding: 0;
}
.credit-overview .wrap .numbers-container {
  padding-top: 0px;
  padding-bottom: 0px;
}
.credit-overview .wrap .numbers-container .desc-mb {
  margin-top: 30px !important;
}

.partnership {
  padding: 70px 0;
  margin-top: 70px;
  background-color: #F5F5F5;
}
.partnership .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1112px) {
  .partnership .wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
.partnership .wrap .heading-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .partnership .wrap .heading-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.partnership .wrap .heading-container h2 {
  font: bold 30px/1.33 "Playfair Display", serif;
  text-transform: uppercase;
  color: #33394F;
  letter-spacing: 0.1556666667em;
  line-height: 1.25em;
}
@media screen and (max-width: 768px) {
  .partnership .wrap .heading-container h2 {
    text-wrap: balance;
  }
}
.partnership .wrap .text-content p {
  font-size: 15px;
}

.private-eq {
  margin: 100px 0 0;
}
.private-eq .numbers-container {
  padding-top: 0;
}

.numbers-container .numbers {
  gap: 0;
}
.numbers-container .numbers .number {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
  padding: 0 40px;
  border-collapse: collapse;
}
.numbers-container .numbers .number:not(:last-child) {
  border-right: 1px solid #C1A172;
}
@media screen and (max-width: 900px) {
  .numbers-container .numbers .number:not(:last-child) {
    border-right: none;
  }
}
.numbers-container p sup {
  font: 600 14px/1.35 "Open Sans", sans-serif;
  display: inline-block;
  vertical-align: super;
  color: #696969;
}
.numbers-container p sup a {
  font: 600 10px/1.35 "Open Sans", sans-serif;
  color: #696969;
}
.numbers-container p sup a:hover {
  color: #C1A172;
}

.credit-strategies {
  margin: 0 0 0;
}
.credit-strategies .numbers-container {
  padding-bottom: 0;
}
.credit-strategies .credit-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.credit-strategies .credit-columns .credit-col-wrap {
  width: calc(33.3333333333% - 20px);
  background: #EFEFED;
  padding: 8px;
}
@media screen and (max-width: 980px) {
  .credit-strategies .credit-columns .credit-col-wrap {
    width: 100%;
    margin-top: 20px;
  }
  .credit-strategies .credit-columns .credit-col-wrap:first-child {
    margin-top: 0px;
  }
}
.credit-strategies .credit-columns .credit-col-wrap:last-of-type {
  width: 100%;
}
.credit-strategies .credit-columns .credit-col-wrap:last-of-type .credit-col .credit-col-content hr {
  width: 70%;
  max-width: 450px;
}
.credit-strategies .credit-columns .credit-col-wrap .credit-col {
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  padding: 20px 15px;
}
.credit-strategies .credit-columns .credit-col-wrap .credit-col h4 {
  color: #33394F;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.32px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  height: 70px;
}
.credit-strategies .credit-columns .credit-col-wrap .credit-col .credit-col-content {
  line-height: 0px;
  font-size: 0;
}
.credit-strategies .credit-columns .credit-col-wrap .credit-col .credit-col-content p {
  color: #333A4F;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  margin-top: 15px;
}
.credit-strategies .credit-columns .credit-col-wrap .credit-col .credit-col-content p strong {
  font-weight: 600;
}
.credit-strategies .credit-columns .credit-col-wrap .credit-col .credit-col-content p:first-child {
  margin-top: 0;
}
.credit-strategies .credit-columns .credit-col-wrap .credit-col .credit-col-content hr {
  margin: 15px auto;
  width: 140px;
  height: 1px;
  background: #949494;
}
.credit-strategies .centered-text {
  text-align: center;
}
.credit-strategies .centered-text small {
  color: #33394F;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  display: inline-block;
  padding: 20px 0 0;
}
.credit-strategies .centered-text small a {
  font-weight: 700;
  color: #33394F;
}
.credit-strategies .centered-text small a:hover {
  color: #C1A172;
}
.credit-strategies .centered-text sup {
  font: 600 14px/1.35 "Open Sans", sans-serif;
  display: inline-block;
  vertical-align: super;
  color: #696969;
}
.credit-strategies .centered-text sup a {
  font: 600 10px/1.35 "Open Sans", sans-serif;
  color: #696969;
}
.credit-strategies .centered-text sup a:hover {
  color: #C1A172;
}

.centered-text p:nth-of-type(2) {
  margin-top: 20px;
}
.centered-text sup {
  font: 600 14px/1.35 "Open Sans", sans-serif;
  display: inline-block;
  vertical-align: super;
  color: #696969;
}
.centered-text sup a {
  font: 600 10px/1.35 "Open Sans", sans-serif;
  color: #696969;
}
.centered-text sup a:hover {
  color: #C1A172;
}

.endnotes-container {
  margin: 40px 0 80px;
}
.endnotes-container .section-heading {
  font-size: 26px;
  text-transform: none;
  letter-spacing: normal;
  padding-bottom: 0;
}
.endnotes-container .notes-wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .endnotes-container .notes-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.endnotes-container .notes-wrap > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  color: #818181;
  letter-spacing: 0;
}
.endnotes-container .notes-wrap ol li {
  margin-left: 1em;
  list-style-type: counter;
}
.endnotes-container .notes-wrap li, .endnotes-container .notes-wrap p {
  line-height: 1.5;
  margin-bottom: 1em;
}
.endnotes-container .notes-wrap li strong, .endnotes-container .notes-wrap p strong {
  font-weight: bold;
  text-transform: uppercase;
}

#footer {
  margin-top: 91px;
  border-top: 1px solid #EFEFED;
  padding-top: 61px;
  padding-bottom: 55px;
  background-image: url("/yir2023/ui/images/2023-background-flipped.jpeg");
  background-size: cover;
  background-position: bottom center;
}
#footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#footer .footer-left img {
  margin-bottom: 25px;
  display: block;
  max-width: 340px;
}
#footer .footer-left p {
  max-width: 470px;
  color: #33394F;
  font-size: 14px;
}
#footer .links {
  font-size: 14px;
  margin: 10px 0 24px;
}
#footer .links a {
  color: #C1A172;
  display: block;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#footer .links a:hover {
  color: #33394F;
}
#footer .legal {
  font-size: 14px;
  text-transform: uppercase;
  margin: 25px 0 7px;
}
#footer .legal a {
  color: #33394F;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#footer .legal a:hover {
  color: #C1A172;
}
#footer .copyright {
  font-size: 12px;
  color: #33394F;
}
#footer .copyright a {
  color: #33394F;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#footer .copyright a:hover {
  color: #C1A172;
}
#footer .copyright .jackrabbit {
  display: block;
}
#footer .footer-right .column {
  width: 31.7715959004%;
}
#footer .footer-right .column h6 {
  font-weight: 600;
  color: #33394F;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #C1A172;
  margin-bottom: 15px;
}
#footer .footer-right .column li {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 16px;
}
#footer .footer-right .column li a {
  color: #33394F;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#footer .footer-right .column li a:hover {
  color: #C1A172;
}
#footer .footer-right .column.twocol {
  width: 64.2752562225%;
}
#footer .footer-right .column.twocol ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
#footer .footer-right .column.twocol ul li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
#footer .disclaimers {
  font-size: 10px;
  color: #AFAFAF;
  width: 100%;
  margin-top: 60px;
}
#footer .disclaimers p + p {
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  #footer {
    background-image: none;
  }
  #footer .footer-left {
    width: 100%;
    float: none;
  }
  #footer .footer-left img {
    width: 231px;
  }
  #footer .footer-left.mobile-elephant {
    background-image: url(../svg/elephant-mobile.svg);
    background-position: bottom right;
    padding-right: 75px;
  }
  #footer .footer-right {
    float: none;
    width: 100%;
    margin: 34px 0 0;
    display: block;
  }
  #footer .footer-right .column {
    width: 100% !important;
  }
  #footer .footer-right .column h6 {
    margin: 0;
    padding: 9px 0;
    position: relative;
    cursor: pointer;
  }
  #footer .footer-right .column h6:after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2216%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E%3Ctext font-family%3D%22OpenSans-Semibold%2C Open Sans%22 font-size%3D%2216%22 font-weight%3D%22500%22 fill%3D%22%2333394F%22 transform%3D%22translate%28-284 -6181%29%22%3E%3Ctspan x%3D%2220%22 y%3D%226193%22%3ESECTORS%3C%2Ftspan%3E%3C%2Ftext%3E%3Cpath d%3D%22M7 1a1 1 0 112 0v6h6a1 1 0 010 2H9v6a1 1 0 01-2 0V9H1a1 1 0 110-2h6V1z%22 fill%3D%22%23C1A172%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    position: absolute;
    right: 0;
    top: calc(50% - 8px);
    -webkit-transition: 0.15s;
    transition: 0.15s;
  }
  #footer .footer-right .column h6.toggled:after {
    -webkit-transform: rotate(315deg);
        -ms-transform: rotate(315deg);
            transform: rotate(315deg);
  }
  #footer .footer-right .column h6.toggled + ul {
    display: block;
  }
  #footer .footer-right .column ul {
    -webkit-column-count: 1 !important;
       -moz-column-count: 1 !important;
            column-count: 1 !important;
    display: none;
    padding-top: 16px;
  }
  #footer .footer-right .column ul li {
    margin-bottom: 8px;
  }
  #footer .links {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 5px;
  }
  #footer .links a {
    color: #33394F;
    display: inline-block;
  }
  #footer .links a + a:before {
    content: "/ ";
  }
  #footer .disclaimers {
    margin-top: 40px;
  }
}

/* != PLACEHOLDER ATTRIBUTE STYLES = input or textarea - placeholder="whatever" ===== */
/*
    ::-webkit-input-placeholder {
        color: #aaa;
    }
    ::-moz-placeholder {
        color: #aaa;
    }
*/
input[type=submit], button {
  display: inline-block;
  cursor: pointer;
}
/* != Select menus with a .select-menu container or gform-select-menu applied in gravity forms ===== */
.select-menu,
.gform-select-menu div {
  position: relative;
  width: 260px;
  border: 1px solid #f00;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  margin: 0 10px 0 0;
}
.select-menu:before, .select-menu:after,
.gform-select-menu div:before,
.gform-select-menu div:after {
  content: "";
  position: absolute;
  right: 14px;
  top: calc(50% - 8px);
  z-index: 1;
  pointer-events: none;
  width: 16px;
  height: 16px;
  /* bg image */
}
.select-menu:hover,
.gform-select-menu div:hover {
  border-color: #00f;
}
.select-menu:hover:before,
.gform-select-menu div:hover:before { /* bg image */ }
.select-menu:hover:after,
.gform-select-menu div:hover:after { /* bg image */ }
.select-menu select,
.gform-select-menu div select {
  padding: 0 10px 0 20px;
  cursor: pointer;
  color: #0f0;
  background-color: #fff;
  width: 120%;
  height: 40px;
  line-height: 40px;
  border: 0;
  border-radius: 0;
  text-indent: 0.01px;
  text-overflow: "";
  position: relative;
  z-index: 1;
}

.validation_error {
  padding: 15px;
  color: #fff;
  background: #c00;
  margin: 20px 0;
}
.validation_message {
  text-transform: uppercase;
  font-size: 12px;
  color: #c00;
  font-weight: 600;
}

.gform_validation_container {
  position: absolute;
  top: -9999px;
  left: -9999px;
  pointer-events: none;
  opacity: 0;
}

@media screen and (max-width: 949px) {
  .main-nav .logo {
    margin-top: 14px;
  }
}

.hamburger-flip:checked + .hamburger .line-1 {
  left: 2px;
}

.main-nav #menu-main-menu > li > ul.sub-menu {
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
}

.main-nav .subnav-container li a, .main-nav #menu-main-menu li .sub-menu li a {
  line-height: 1;
  margin-bottom: 12px;
}

.main-nav * {
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
}

/* LINES */
.lines-container {
  display: block;
  position: relative;
}

.lines {
  position: absolute;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  margin-top: -180px;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .lines {
    top: 100px;
    margin-top: -38px;
    -webkit-transform: scale(0.5) rotate(45deg);
        -ms-transform: scale(0.5) rotate(45deg);
            transform: scale(0.5) rotate(45deg);
  }
}
@media screen and (max-width: 484px) {
  .lines {
    margin-top: 50px;
    -webkit-transform: scale(0.375) rotate(45deg);
        -ms-transform: scale(0.375) rotate(45deg);
            transform: scale(0.375) rotate(45deg);
  }
}
.lines ~ .lines {
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
  right: 0px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  /*@include break (468) {
      display: none;
  }*/
}
@media screen and (max-width: 1080px) {
  .lines ~ .lines {
    top: 100px;
    -webkit-transform: scale(0.5) rotate(-45deg);
        -ms-transform: scale(0.5) rotate(-45deg);
            transform: scale(0.5) rotate(-45deg);
  }
}
@media screen and (max-width: 484px) {
  .lines ~ .lines {
    -webkit-transform: scale(0.375) rotate(-45deg);
        -ms-transform: scale(0.375) rotate(-45deg);
            transform: scale(0.375) rotate(-45deg);
  }
}
.lines div {
  margin: 30px 0px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  /*animation: move 5s linear infinite alternate-reverse;*/
  /*animation: move 5s linear 0s infinite;*/
  height: 0px;
  width: 1000px;
  border: 20px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.1);
  position: relative;
  /* PSEUDO ELEMENTS */
  /*&:before {
           top: -40px;
           left: -540px;
       }
       &:after {
           top: -40px;
           right: -540px;
       }
       &:before,
       &:after {
           display: block;
  content: '';
  position: absolute;
  width: 500px;
  height: 0px;
           border: 20px solid transparent;
           border-bottom-color: rgba(255, 255, 255, 0.1);
       }*/
  /* SOMEONE RANDOM NTH-CHILD SELECTORS*/
  /* == == ELEMENT DIFFERENCES == == */
  /* == == PSEUDO ELEMENT TRANSLATIONS == ==
  &:nth-child(1):before, &:nth-child(6):before {
      left: -680px;
  }
  &:nth-child(3):before {
      left: -620px;
  }
  &:nth-child(2):before, &:nth-child(4):before {
      left: -700px;
  }
  &:nth-child(5):before, &:nth-child(7):before {
      left: -650px;
  }
  &:nth-child(1):after, &:nth-child(6):after {
      right: -750px;
  }
  &:nth-child(3):after {
      right: -650px;
  }
  &:nth-child(2):after, &:nth-child(4):after {
      right: -750px;
  }
  &:nth-child(5):after, &:nth-child(7):after {
      right: -650px;
  }*/
}
.lines div:nth-child(1) {
  -webkit-animation: move 11s ease-in-out 0s infinite;
          animation: move 11s ease-in-out 0s infinite;
}
.lines div:nth-child(2) {
  animation: move 7s ease-in-out 0s reverse infinite;
}
.lines div:nth-child(3) {
  -webkit-animation: move-half 16s linear 0s infinite;
          animation: move-half 16s linear 0s infinite;
}
.lines div:nth-child(4) {
  animation: move 10s ease-in-out 0s reverse infinite;
}
.lines div:nth-child(5) {
  animation: move 6s linear 0s reverse infinite;
}
.lines div:nth-child(6) {
  -webkit-animation: move 5s ease-in-out 0s infinite;
          animation: move 5s ease-in-out 0s infinite;
}
.lines div:nth-child(7) {
  animation: move 9s ease-in-out 0s reverse infinite;
}

@-webkit-keyframes move {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes move {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes move-half {
  0% {
    left: 1%;
  }
  49% {
    opacity: 1;
    left: 100%;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  51% {
    opacity: 0;
    left: -100%;
  }
  52% {
    left: -100%;
    opacity: 1;
  }
  100% {
    left: 0%;
  }
}
@keyframes move-half {
  0% {
    left: 1%;
  }
  49% {
    opacity: 1;
    left: 100%;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  51% {
    opacity: 0;
    left: -100%;
  }
  52% {
    left: -100%;
    opacity: 1;
  }
  100% {
    left: 0%;
  }
}
/*# sourceMappingURL=style.css.map */