nav.social-nav .group.group-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

nav.social-nav .group.group-flex a {
    width: initial;
    height: auto;
    margin-left: 10px;
}

nav.social-nav .group.group-flex a img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

/* UPDATES */

/* caption | start  */
.caption {
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    left: 0;
    height: 200px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    padding: 30px 15px;
    pointer-events: none;
    z-index: 2;
    box-shadow: inset 0 150px 50px -30px rgba(0, 0, 0, .75);

    @media(max-width : 768px) {
        font-size: 18px;
    }
}
/* caption | end  */

/*SEARCH | START */
.search-box input{
    text-transform: initial !important;
}
nav.social-nav .search{
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 15px;
    top: 9px;
    z-index: 9;
}
@media( max-width : 992px) {
    nav.social-nav .search{
        display: none;
    }
}

nav.social-nav .search .search-wrap{
    display: flex;
    flex-wrap: nowrap;
}

nav.social-nav .search .search-btn{
    display: block;
    text-align: center;
    background: transparent;
    border:none;
    flex:0 0 30px;
    width: 30px;
    cursor: pointer;
    height: 40px;
}

nav.social-nav .search .search-box{
    padding: 0;
    width: 0;
    transition: .1s;
    opacity: 0;
    height: 40px;
    margin-right: 5px;
}

nav.social-nav .search.active .search-box{
    width: 170px;
    opacity: 1;
    padding: 0 10px;
}

nav.social-nav .group .sponsor{
    width: auto !important;
}

nav.social-nav .group.right {
	justify-content: flex-end !important;
}
.search-box .screen-reader-text{
    display: none;
}
.search-box {
    display: flex;
    justify-content: center;
    padding: 30px;
  }
  .search-box form div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-box form div input[type=text] {
    display: block;
    width: 100%;
    text-transform: uppercase;
    background: #E1E7EC;
    height: 40px;
    padding: 0 15px;
    font-size: 18px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    border-radius: 24px;
    border: none;
    margin: 0 5px 0 0;
    color: #111A22;
  }
  .search-box form div input[type=submit] {
    border: none;
    background: #E1E7EC;
    color: #1C2838;
    border-radius: 24px;
    height: 40px;
    font-size: 18px;
    padding: 0 30px;
    font-family: "Nunito Sans", sans-serif !important;
    font-weight: 700;
    transition: 0.2s;
  }
  .search-box form div input[type=submit]:hover {
    background: #1C2838;
    color: #fff;
  }

.search-results-list {
    background: #E1E7EC;
    display: block;
    padding: 50px;
    color: #1C2838;
  }
  .search-results-list ul li {
    padding: 15px 0;
    line-height: 1.5em;
    border-bottom: solid 1px rgba(132, 116, 97, 0.2);
  }
  .search-results-list ul li:last-child {
    border: none;
  }
  .search-results-list ul li a {
    display: block;
    font-family: "Nunito Sans", sans-serif !important;
    font-size: 18px;
    font-weight: 400;
  }
  .search-results-list ul li a:hover {
    color: #847461;
  }
  .search-results-list ul li p {
    display: block;
    font-size: 18px;
  }
  .search-results-list ul li p small {
    display: block;
    margin-top: 10px;
    font-family: "Nunito Sans", sans-serif !important;
    font-size: 14px;
    font-style: italic;
  }
/* SEARCH | END */