/*=========================================
=           Global Variables              =
=========================================*/ 
:root {
  --primary-color: #0d6efd;
  --text-color: #343a40;
  --main-padding: 15px;
  --white: #fff;
  --blue: #0073C3;
  --light-blue: rgba(0, 160, 215, 0.60);
  --green: #7EC869;
  --header-height: 145px;
  --aqua-green: #03CE9E;
  --text-color: #6B6B6B;
  --link: #7EC869;
}

/*@media (min-width: 1800px) {*/
/*    .main-header,*/
/*    .hero-banner,*/
/*    .content-bottom {*/
/*        margin: 0 auto;*/
/*        max-width: 1728px;*/
/*    }*/
/*}*/

/* apply a natural box layout model to all elements, but allowing components to change */
/* IE 7 Needs a polyfill html5please.com/#box-sizing */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

.burger-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.3em;
  /* hide text */
  color: transparent;
  z-index: 2001;
  float: right;
  cursor: pointer; }

.burger-icon span,
.burger-icon span:before,
.burger-icon span:after {
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #7F7F7F; }

.burger-icon span {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  -webkit-transition: background 0.2s 0.2s;
          transition: background 0.2s 0.2s; }

.burger-icon span:before,
.burger-icon span:after {
  content: '';
  right: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.2s 0.2s;
          transition: transform 0.2s 0.2s; }

.burger-icon span:before {
  top: -6px; }

.burger-icon span:after {
  top: 6px; }

.burger-icon.nav-is-visible span {
  background: rgba(46, 50, 51, 0); }

.burger-icon.nav-is-visible span:before,
.burger-icon.nav-is-visible span:after {
  background: #7F7F7F; }

.burger-icon.nav-is-visible span:before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
      -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
          transform: translateX(4px) translateY(-3px) rotate(45deg); }

.burger-icon.nav-is-visible span:after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
      -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
          transform: translateX(4px) translateY(2px) rotate(-45deg); }

@media only screen and (min-width: 1170px) {
  .burger-icon {
    display: none; } }
    
/*=========================================
=           Background Colours            =
=========================================*/ 
.bg-blue {
    background-color: var(--blue) !important;
}
.bg-light-blue {
    background-color: #66c6e7 !important;
}

/*=========================================
=           Section Designs               =
=========================================*/ 
.section-design-1 {
    /*background: transparent url("./img/section-shape-1.png") no-repeat top center;*/
    position: relative;
}
.section-design-2 {
    /*background: transparent url("./img/section-design-2.png") no-repeat bottom center;*/
    position: relative;
    .container {
        z-index: 999;
        position: relative;
    }
}
.section-design-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/footer-shape-green.png") no-repeat bottom left;
    z-index: 99;
}
.section-design-2::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/footer-shape-blue.png") no-repeat bottom right;
    z-index: 100;
}
/*.section-design-1::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
    
/*    z-index: 1;*/
/*}*/
.section-design-1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/header-shape-green.png") no-repeat top left;
    z-index: 99;
}
.section-design-1::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/header-shape-blue.png") no-repeat top right;
    z-index: 100;
}
.section-design-1-bricks {
    position: relative;
}
.section-design-1-bricks::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent url("./img/brick-wall.png") repeat-x bottom center;
    z-index: 1;
}

.section-title-wrapper {
    padding-bottom: 85px;
}
.blue-rectangle {
    background: var(--blue) url("./img/blue-rectangle.png") no-repeat top left / cover;
}

.section-padding {
    padding-top: 32px;
    padding-bottom: 32px;
}
@media (min-width: 768px) {
    .section-padding {
        padding-top: 50px;
        padding-bottom: 65px;
    }
}
/*=========================================
=           Primary Navigation            =
=========================================*/    
.nav-wrapper {
    height: var(--header-height);
    flex-grow: 1;
    padding-top: 40px;
}
.primary-nav {
    ul { 
        /*list-style: none; */
        /*column-gap: 1.5rem;*/
        /*margin-bottom: 0;*/
    }
    li a {
      /*color: var(--white);*/
      font-weight: 600;
      font-size: 20px;
      text-decoration: none;
      font-style: normal;
      line-height: normal;
      text-transform: uppercase;
    }
}

.section-title {
    display: inline-block;
    border-radius: 16px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    width: auto;
    margin-top: -34px;
    background-color: var(--white);
    padding: 0px 54px;
    padding-top: 0;
    h2 {
        margin: 0;
        color: var(--blue);
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: 100%;
        margin-top: 12px;
    }
}
@media (min-width: 768px) {
    .section-title {
        margin-top: -44px;
        h2 {
            font-size: 32px;
        }
    }
}
.content-bottom {
    position: relative;
    background: transparent url("./img/brick-wall.png") no-repeat bottom center / cover;
    height: 165px;
}
.content-bottom::before {
    /*content: "";*/
    /*position: absolute;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*top: 0;*/
    /*left: 0;*/
    /*background: transparent url(./img/section-shape-1.png) no-repeat top center;*/
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/header-shape-green.png") no-repeat top left;
    z-index: 99;
}
.content-bottom::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/header-shape-blue.png") no-repeat top right;
    z-index: 100;
}
/*=========================================
=            Hero Banner            =
=========================================*/
.hero-banner {
    background-position-x: center;
    .flexslider .slides li div {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        min-height: 250px;
        width: 100%;
        aspect-ratio: 1728 / 659;
    }
}
@media (min-width:1200px) {
    .hero-banner .flexslider .slides li div {
        min-height: 659px;
        width: 100%;
    }
}
.hero-banner-wrapper {
    aspect-ratio: 216 / 49;
    min-height: 196px;
    @media (min-width: 992px) {
        min-height: 392px;
    }
}
.hero-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-banner.static-image {
    /*height: 100%;*/
    /*width: 100%;*/
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    min-height: 196px;
    @media (min-width: 992px) {
        min-height: 392px;
    }
}
/*=========================================
=            Navigation widget            =
=========================================*/
/*=====  End of Navigation widget  ======*/
#back-to-top {
  z-index: 4001;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: 1s;
          transition: 1s;
  text-decoration: none;
  color: #bbb;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: .8em;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3) inset; }
  #back-to-top object {
    display: block;
    width: 80%;
    height: 80%;
    margin: 10%;
    -webkit-transition: 1s;
            transition: 1s;
    pointer-events: none; }

#back-to-top a:hover {
  color: #000; 
}

/*=========================================
=            Widgets                      =
=========================================*/
.widget-row {
    .panel,
    .panel.ofsted {
        background-color: var(--blue);
    }
    .panel.attendance {
        background-color: var(--light-blue);
    }
    .panel.points {
        background-color: var(--green);
    }
}

.quick-links { 
    row-gap: 18px;
    .quick-link {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        border-radius: 23px;
        border: 3px solid var(--white);
        background: var(--blue);
        color: var(--white);
        padding: 24px;
        text-decoration: none;
        text-align: center;
        height: 100%;
        h3 {
            text-decoration: none;
            color: var(--white);
            font-family: Lato;
            font-size: 20px;
            font-style: normal;
            font-weight: 800;
            line-height: normal;
            margin-top: 14px;
        }
        img {
            max-height: 84px;
        }
    }
    .quick-link:hover {
        background: var(--aqua-green);
    }
}

/**
 * Add any CSS here to override any plugins or frameworks css
 *
 * CSS only Bootstrap config should be done in /styles/modules/_bootstrap-vars.scss
 */
/*================================
=            Contents            =
================================*/
/*=====  End of Contents  ======*/
/*=================================
=            §Variables            =
=================================*/
/*=====  End of Variables  ======*/
/*====================================
=            Test classes            =
====================================*/
.outlined,
.outlined * {
  outline: 1px solid red;
  z-index: 10001; }

/*=====  End of Mixins  ======*/
/*==============================
 =            §Layout            =
 ==============================*/
body {
  background: var(--white);
}

.main-header {
  width: 100%;
  height: auto;
  min-height: var(--header-height);
  max-height: 220px; 
  /*background: var(--blue) url("/assets/images/header-shapes.png") no-repeat center center;*/
  background-color: var(--blue);
  position: relative;
  z-index: 9999;
  .container {
    z-index: 200;
  }
}
.main-header::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/header-shape-green.png") no-repeat top left;
    z-index: 99;
}
.main-header::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("/assets/images/header-shape-blue.png") no-repeat top right;
    z-index: 100;
}

.logo {
  position: relative;
  float: left;
  width: 41.66667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 10px 0; }
  @media (min-width: 768px) {
    .logo {
      float: left;
      width: 33.33333%; } }
  @media (min-width: 992px) {
    .logo {
      float: left;
      width: 16.66667%; } }
  @media (min-width: 1200px) {
    .logo {
      margin-bottom: -120px; } }
  .logo img {
    max-width: 100%;
    max-height: 100%; }


.content-area {
    padding-top: 40px;
    padding-bottom: 50px;
    h2 {
        color: var(--blue);
        font-family: Lato;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 34px; /* 121.739% */
        margin-top: 0;
    }
    h3 {
        color: var(--blue);
        font-family: Lato;
        font-size: 23px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px; /* 121.739% */
    }
    p, ul, li {
        color: var(--text-color);
        font-family: Lato;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 23px;
    }
    a {
        color: var(--link);
        font-family: Lato;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 23px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
}

hr {
    color: var(--white);
}

.banner {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  margin-bottom: 40px;
  z-index: 1000;
  border-radius: 5px; }
  @media (min-width: 992px) {
    .banner {
      margin-bottom: 60px;
      border-radius: 20px;
      box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1); } }
  .banner img {
    max-width: 100%;
    height: inherit;
    margin: 0;
    border-radius: 10px;
    padding: 10px; }
    @media (min-width: 992px) {
      .banner img {
        padding: 1.28205128205%;
        border-radius: 30px; } }

.panel-content .panel-body {
  padding-left: 30px;
  padding-right: 30px; }

.no-sidebar .main-container {
  background: -webkit-linear-gradient(left, #fff 0%, #fff 100%);
  background: linear-gradient(to right, #fff 0%, #fff 100%); }

.no-banner .main-container {
  position: relative;
  z-index: 999; }
  @media (min-width: 1199px) {
    .no-banner .main-container {
      border-radius: 20px 0 20px 20px; } }

.pagecontent > ul {
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
  margin-top: 1em;
  margin-bottom: 1em;
  list-style-type: circle;
  padding-left: 2em; }

.pagecontent > ul li {
  padding-bottom: .5em; }

.pagecontent > ul li:last-child {
  padding-bottom: .5em; }

.sidebar {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 992px) {
    .sidebar {
      float: left;
      width: 33.33333%; } }
  @media (min-width: 992px) {
    .sidebar {
      padding-left: 20px; } }

.widecontent {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 40px; }

.col-main {
  float: right !important; }
/*
 Achievement List
*/
.achievement-section {
    z-index: 999999999;
    position: relative;
    margin-top: -24px;
}
.achievement-items {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    img {
        width: 100%;
    }
}

/**
 *
 * Subfooter styles
 *
 */
.subfooter {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
  list-style: none;
  color: var(--blue); 
  
  .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;  
    margin-bottom: 1.5rem;
    h5 {
        color: var(--blue);
        font-family: Poppins;
        font-size: 23px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    p {
        color: var(--blue);
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px; /* 175% */
    }
    img {
        margin-bottom: 40px;
    }
  }
}

.subfooter-pane {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  min-height: 19em; }
  @media (min-width: 768px) {
        .subfooter-pane {
          float: left;
          width: 50%;
        }
    }
  @media (min-width: 1200px) {
    .subfooter-pane {
      float: left;
      width: 25%; } }
  @media (max-width: 768px) {
    .subfooter-pane {
      padding-left: 5px;
      padding-right: 5px;
    }
}

 @media (max-width: 1199px) {
        .subfooter-pane:nth-child(2n+1){
            clear : both;
        }
    }

  .subfooter-pane .featured-image {
    max-width: 100%;
    height: auto;
}

.subfooter-address,
.subfooter-address address {
  -webkit-margin-start: 0;
  -webkit-padding-start: 0 !important;
  margin-left: 0px;
  padding-left: 0; }

.footer {
  width: 100%;
  padding: 20px 0 20px 0;
  min-height: 3em;
  background: var(--blue);
  font-size: 85%;
  color: white; 
}
  @media (min-width: 768px) {
    .footer {
      font-size: 100%; } }

.footer a {
  color: #fff; }
  .footer a:hover {
    color: white;
    color: rgba(255, 255, 255, 0.5); }

.header-search input[type=text],
.footer-directions input[type=text] {
  display: block;
  float: left;
  width: 85%;
  padding: 10px;
  height: 36px;
  color: #333333;
  background: white;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px; 
}
.footer-directions input[type=text] {
    width: 50%;
    border-radius: 10px;
}  

 .header-search input[type=text]:focus,
 .footer-directions input[type=text]:focus {
    background: #e6e6e6; 
 }

.header-search input[type=submit],
.footer-directions input[type=submit] {
  display: block;
  cursor: pointer;
  height: 36px;
  width: 15%;
  border: 0;
  background: #1a736a url("../images/template/search_icon.png") no-repeat center center;
  border-radius: 0 10px 10px 0; }
  .header-search input[type=submit]:hover,
  .footer-directions input[type=submit]:hover {
    background: #219588 url("../images/template/search_icon.png") no-repeat center center; }

/* Privacy Policy */
.privacy-policy-link {
    color: var(--white);
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: 4px;
    text-underline-position: from-font;
    @media (min-width:768px) {
        font-size: 16px;
    }
}

/* Back to Top */
.icon-backtotop {
  display: block;
  background-color: var(--blue);
  color: #564e9a;
  border-radius: 5px;
  width: auto;
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 10000; 
}
/*.icon-backtotop:visited {*/
/*    color: #564e9a !important; */
/*}*/
.icon-backtotop:hover {
  background-color: var(--blue);
  color: #564e9a;
}
@media (min-width: 768px) {
    .icon-backtotop {
        float: right; 
    } 
}

.news-text img {
  border-radius: 10px; }

.news-post {
  margin-bottom: 2em; }
  .news-post:last-child {
    margin-bottom: 0; }

.news-readmore {
  display: inline-block; }

.blog-tags {
  margin-bottom: 3em; }

#nextpage {
  float: right; }

.staff {
  margin-bottom: 20px; }
  .staff h2 {
    display: block; }

.staff-group {
  margin-left: -15px;
  margin-right: -15px; }
  .staff-group:before, .staff-group:after {
    content: " ";
    display: table; }
  .staff-group:after {
    clear: both; }

.staff-member {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  float: left;
  margin: 0;
  padding: 10px;
  min-height: 275px;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .staff-member {
      float: left;
      width: 33.33333%; } }
  @media (min-width: 1200px) {
    .staff-member {
      float: left;
      width: 25%; } }
  @media (min-width: 768px) {
    .staff-member {
      min-height: 325px; } }
  .staff-member:first-child, .staff-member:nth-child(4) {
    margin-left: 0; }
  .staff-member img {
    border-radius: 50%;
    max-width: 100%;
    box-sizing: border-box;
    border: 5px #ccc solid; }
  .staff-member .staff-details {
    display: table;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center; }
  .staff-member h3 {
    display: table-cell;
    vertical-align: middle;
    margin: 1em 0;
    min-height: 2.4em;
    vertical-align: middle; }
  .staff-member .tertiary {
    font-size: pxValuepx;
    font-size: remValuerem;
    font-size: remValuerem;
    line-height: 1.4; }

.activity {
  padding-bottom: 1em;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 1em; }

.blog-list {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 10px;
  border: 0;
  border-radius: 20px;
  background-clip: content-box;
  color: #fff; }
  @media (min-width: 768px) {
    .blog-list {
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 768px) and (min-width: 768px) {
    .blog-list {
      float: left;
      width: 50%; } }
  @media (min-width: 768px) {
      .blog-list:last-child {
        margin: 0 auto; } }
  @media (min-width: 992px) {
    .blog-list {
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 992px) and (min-width: 992px) {
    .blog-list {
      float: left;
      width: 33.33333%; } }
  @media (min-width: 1200px) {
    .blog-list {
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1200px) and (min-width: 1200px) {
    .blog-list {
      float: left;
      width: 25%; } }

.blog-list a {
  font-size: 34px;
  color: #fff;
  line-height: 2.5; }
/* Tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
@media (min-width:576px) {
    table {
        width: 100%;
        overflow-x: auto;
        display: table;
        overflow-x: auto;
        white-space: normal;
    }
}
tbody, td, tfoot, th, thead, tr {
    border-width: 1px;
}
td {
    padding: 0.5rem;
}
table.photogalleryTable tr,
table.photogalleryTable td {
  display: inline-block;
  float: left; }
  table.photogalleryTable tr:last-child,
  table.photogalleryTable td:last-child {
    width: 100%;
    display: block; }

table.photogalleryTable {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  table.photogalleryTable tr {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }

.photogalleryItem {
  padding: 0 10px 10px 0; }

.photo-gallery .pagination {
  float: left;
  clear: left;
  margin-top: 20px; }

.photo-gallery .pagination ~ .photo-gallery-photo,
.photo-gallery .pagination ~ .pagination {
  display: none; }

.photo-gallery .photo-gallery-next {
  clear: none;
  float: right; }

.class-blog-description {
  margin-bottom: 2em; }

ul.topic_sheets {
  list-style-type: none; }

.pagecontent ul {
  list-style-type: none; }

/*=====  End of Layout  ======*/
/*==================================
=            Typography            =
==================================*/
.text-white {
    color: var(--white) !important;
}

body {
    font-family: "Lato", sans-serif;
    color: var(--blue);
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}



html {
  font-size: 100%; }
  @media (max-width: 991px) {
    html {
      font-size: 82.352941176%; } }
  @media (min-width: 768px) and (max-width: 1199px) {
    html {
      font-size: 93.75%; } }

.riversdale-logo {
    position: relative;
    width: 120px;
    margin-right: 20px;
    margin-top: -110px;
    img {
        width: 120px;
        height: auto;
    }
    
    a {
        position: absolute;
        top: 0;
        left: 0;
    }
}
@media (min-width: 768px) {
    .riversdale-logo {
        position: relative;
        width: 159px;
        margin-right: 40px;
        img {
            width: 159px;
            height: auto;
        }
    }
}

p.lead {
    text-align: center;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 121.739% */
}

.pagename {
  margin-top: 1em;
  color: #239d90; }

.box-header {
  position: absolute;
  z-index: 99;
  color: #ffffff;
  font-size: pxValuepx;
  font-size: remValuerem;
  font-size: remValuerem;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: middle;
  border-radius: 10px;
  padding: 0 2em;
  background: #312f81;
  left: 20px;
  top: -30px; }
  @media (min-width: 480px) {
    .box-header {
      left: 0; } }

.map .box-header {
  background: #312f81; }

h1, h2, h3, h4, h5, h6 {
  font-style: normal; }

h1 {
  font-size: 1.8em;
  line-height: 1.33;
  margin-bottom: 0.5em; }

h2 {
  font-size: 1.7em;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-top: 1.5em; }

h3 {
  font-size: 1.3em; }

h4 {
  font-size: 1.1em; }

h5 {
  font-size: 1em; }

h6 {
  font-size: 0.9em; }

@media (min-width: 992px) {
  h1 {
    font-size: 2.618em; }
  h2 {
    font-size: 2.027em; }
  h3 {
    font-size: 1.602em; }
  h4 {
    font-size: 1.424em; }
  h5 {
    font-size: 1.200em; }
  h6 {
    font-size: 1.125em; } }

.content-panel h1, .content-panel h2, .content-panel h3, .content-panel h4 {
  color: #239d90; }

.pagetitle,
.panel-body > h3:first-of-type {
  color: #239d90; }

.news-title,
.news-title a {
  color: #333333; }

.news-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-overflow: ellipsis;
  word-break: break-word; }

.tertiary {
  margin: 0;
  padding: 0;
  line-height: 0; }

span.tertiary,
.news-date {
  font-size: pxValuepx;
  font-size: remValuerem;
  font-size: remValuerem;
  letter-spacing: 1px;
  color: #666464; }

.news-text,
.news-readmore {
  display: inline; }

.figure-alt {
  text-align: center;
  margin: 0 auto;
  float: center; }

.full-width {
  margin-top: 3em; }

.main-content p:first-child {
  font-size: pxValuepx;
  font-size: remValuerem;
  font-size: remValuerem;
  line-height: 25px; }

p.intro {
  text-indent: 0px;
  margin-bottom: 25px;
  line-height: 34px;
  font-size: 24px;
  letter-spacing: 0px; }

.blog-tags ul li {
  display: block;
  float: left;
  font-size: pxValuepx;
  font-size: remValuerem;
  font-size: remValuerem;
  border-radius: 5px;
  padding: 5px;
  background: #239d90;
  line-height: 1.5;
  margin: 2px; }

.blog-tags ul a {
  color: #ffffff; }

.main-content ul.disc li ul, .pagecontent ul.disc li ul {
  list-style-type: circle;
  padding-left: 2em;
  margin: 0; }

.copyright {
  font-weight: bold; }
  @media (min-width: 768px) {
    .copyright {
      display: inline-block; } }

/*=====  End of Typography  ======*/
/*==============================
=            Buscat            =
==============================*/
/* Calendar */
.module-calendar {
  line-height: 10px !important; }

.module-calendar span {
  padding: 5px !important; }

.module-calendar a {
  font-size: 10px !important; }

.module-calendar td ul {
  margin: 2px 3px !important;
  padding-left: 0px !important;
  list-style: none; }

.module-calendar td li {
  margin-top: 5px !important; }

.literature-container:last-child {
  margin-bottom: 0px; }

td.photogalleryItem img {
  max-width: 100%; }

/*
|--------------------------------------------------------------------
| IE MESSAGE
|--------------------------------------------------------------------
*/
.ie-warning {
  background: #C60F13;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .ie-warning {
      margin-bottom: 40px; } }

.ie-warning p {
  color: #fff;
  text-align: center;
  margin-bottom: 0px; }

.ie-warning p a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline; }

/*
|--------------------------------------------------------------------
| IE MESSAGE
|--------------------------------------------------------------------
*/
.announcement-list {
  font-size: 16px; }

div.announcement-list p {
  font-size: 16px; }

.announcement-list h2 {
  font-size: 24px;
  margin: 0 0 3px 0; }

.announcement-list span.date {
  font-size: 16px;
  font-weight: normal; }

.announcement-details span.date {
  display: block;
  font-size: 16px;
  font-weight: normal; }

/*
|--------------------------------------------------------------------
| WEB FORM
|--------------------------------------------------------------------
*/
.contact-form form {
  padding-right: 20px; }
  .contact-form form .form-name,
  .contact-form form .form-contactdetails,
  .contact-form form .form-messagebox {
    padding: 0;
    margin: 1em 0; }
  .contact-form form > input.cat-textbox {
    max-width: 90% !important;
    margin-right: 20px; }

.form-title {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 1200px) {
    .form-title {
      float: left;
      width: 16.66667%; } }

.form-firstname {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 1200px) {
    .form-firstname {
      float: left;
      width: 33.33333%; } }

.form-lastname {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 1200px) {
    .form-lastname {
      float: left;
      width: 50%; } }

.form-number {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 1200px) {
    .form-number {
      float: left;
      width: 50%; } }

.form-email {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 1200px) {
    .form-email {
      float: left;
      width: 50%; } }

.form-message {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 1200px) {
    .form-message {
      float: left;
      width: 50%; } }

.form-submit {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 1200px) {
    .form-submit {
      float: left;
      width: 50%; } }

#lightbox {
  display: none; }

#overlay {
  z-index: 11; }

/*=====  End of Buscat  ======*/
/*===============================
=            Buttons            =
===============================*/
.button {
  display: inline-block;
  padding: 0 1.5em;
  margin: 0;
  border-radius: 5px;
  line-height: 2.5;
  color: white;
  background: #239d90; }
  .button:hover {
    color: rgba(255, 255, 255, 0.6); }

.subfooter .featured-image {
  border-radius: 20px; }

.subfooter .icon-phone a {
  color: white !important; }

.subfooter .button {
    background: var(--blue); 
    text-align: center;
    text-decoration: none;
    width: 100%;
    border-radius: 23px;
    border: 3px solid var(--white);
    color: var(--white);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 1rem;
}
.subfooter .button:hover {
    background: var(--light-blue); 
}

@media (min-width:1200px) {
    .subfooter .button {
        width: 50%;
    }
}

.figure-alt {
  margin: 0 auto; }

@media (min-width: 480px) {
  .figure-alt {
    display: none; } }

.button-container .button.btn.btn-primary {
  margin: 10px 0;
  color: #fff;
  padding-left: 1em;
  padding-right: 1em; }

/*=====  End of Buttons  ======*/
/*===================================
=            Form Inputs            =
===================================*/
.pagecontent form[name^="cat"] input,
.pagecontent form[name^="cat"] label,
.pagecontent form[name^="cat"] input[type="text"],
.pagecontent form[name^="cat"] input[type="textarea"] {
  display: block;
  color: #333;
  padding: 5px 2px 0 2px; }
  .comment-form .pagecontent form[name^="cat"] input, .comment-form
  .pagecontent form[name^="cat"] label, .comment-form
  .pagecontent form[name^="cat"] input[type="text"], .comment-form
  .pagecontent form[name^="cat"] input[type="textarea"] {
    width: 100%; }

.pagecontent form[name^="cat"] input:focus {
  outline: none;
  border-color: #51CBEE; }

/*=====  End of Form Inputs  ======*/
/*==============================
=            Tables            =
==============================*/
table {
  empty-cells: show; }

.responsive-table {
  margin: 1em 0;
  min-width: 300px; }
  .responsive-table tr {
    padding-bottom: 3em; }
    .responsive-table tr:last-child {
      padding-bottom: 0; }
  .responsive-table th {
    display: none; }
  .responsive-table td {
    display: block; }
    .responsive-table td:first-child {
      padding-top: .5em; }
    .responsive-table td:last-child {
      padding-bottom: .5em; }
    .responsive-table td:before {
      content: attr(data-th) ": ";
      font-weight: bold;
      width: 6.5em;
      display: inline-block; }
      @media (min-width: 480px) {
        .responsive-table td:before {
          display: none; } }
  .responsive-table th, .responsive-table td {
    text-align: left; }
    @media (min-width: 480px) {
      .responsive-table th, .responsive-table td {
        display: table-cell;
        padding: .25em .5em; }
        .responsive-table th:first-child, .responsive-table td:first-child {
          padding-left: 0; }
        .responsive-table th:last-child, .responsive-table td:last-child {
          padding-right: 0; } }

.responsive-table {
  color: #333333;
  border-radius: .4em;
  overflow: hidden; }
  .responsive-table tr {
    border-color: #46637f; }
  .responsive-table th, .responsive-table td {
    margin: .5em 1em; }
    @media (min-width: 480px) {
      .responsive-table th, .responsive-table td {
        padding: 1em !important; } }

@media (max-width: 480px) {
  .responsive-table tr {
    border-bottom: 4px solid #eeeeee;
    margin-bottom: 3em; }
    .responsive-table tr:last-child {
      border: 0; }
    .responsive-table tr td:last-child {
      border: 0; }
  .responsive-table td > span {
    display: none; } }

.staff-table {
  margin: 1em 0;
  min-width: 240px;
  max-width: 100%; }
  .staff-table p {
    display: inline-block; }
  .staff-table .table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; }
  .staff-table .table th {
    display: none; }
  .staff-table .table td {
    display: block; }
    .staff-table .table td:first-child {
      padding-top: .5em; }
    .staff-table .table td:last-child {
      padding-bottom: .5em; }
    .staff-table .table td:before {
      content: attr(data-th) ": ";
      font-weight: bold;
      width: 6.5em;
      display: block; }
      @media (min-width: 992px) {
        .staff-table .table td:before {
          display: none; } }
  .staff-table .table th, .staff-table .table td {
    text-align: left; }
    @media (min-width: 992px) {
      .staff-table .table th, .staff-table .table td {
        display: table-cell;
        padding: .25em .5em; }
        .staff-table .table th:first-child, .staff-table .table td:first-child {
          padding-left: 0; }
        .staff-table .table th:last-child, .staff-table .table td:last-child {
          padding-right: 0; } }

/*=====  End of Tables  ======*/
/*==================================
=            §Navigation            =
==================================*/
.nav-container {
  position: relative;
  margin-top: 0;
  margin-bottom: 0; }

/**
 *
 * Mobile Navigation toggle button
 * Toggles visibility of mobile nav
 *
 */
#nav_button {
  position: absolute;
  top: 0;
  right: 0;
  float: right; }

.btn-navtoggle {
  position: relative;
  top: 20px; }
  @media (max-width: 992px) {
    .btn-navtoggle {
      margin-right: 20px; } }

.btn-navtoggle .btn-text {
  position: relative;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  bottom: .1em; }

.nav-container {
  z-index: 999; }

#primarynav,
#mobilenav {
  position: inherit;
  width: 100%;
  z-index: 999;
  background: #fff;
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 4px;
  padding-bottom: .25rem; }

#accordion {
  width: 100%;
  font-family: Georgia, sans-serif;
  color: #fff;
  text-shadow: 1px 2px rgba(0, 0, 0, 0.25); }

#accordion .panel, #accordion .widget {
  width: 100%;
  box-shadow: none; }

#accordion .panel.panel-default, #accordion .widget {
  box-shadow: none;
  border-radius: none; }

#accordion .panel-heading {
  padding: 0;
  min-height: 2em;
  border-bottom-width: 0 !important;
  border-radius: none !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important; }

#accordion .panel-title {
  min-height: 2em;
  padding: 0;
  margin: 0;
  width: 100%;
  padding: 1em 1.2em;
  color: #fff;
  font-weight: 400;
  letter-spacing: .02em;
  border-bottom-width: 0 !important; }

#accordion .panel-title > a {
  position: relative;
  text-decoration: none;
  font-size: 1.2em;
  padding-top: .5em;
  padding-bottom: .5em;
  padding-left: .6em;
  border-bottom-width: 0 !important; }

#accordian .panel-title i {
  color: white;
  outline: 1px solid red; }

#accordion .panel.panel-default .list-group-item, #accordion .widget .list-group-item {
  background: transparent;
  font-size: 16px;
  border-radius: 0;
  color: white; }

#accordion .panel.panel-default a:last-child .list-group-item, #accordion .widget a:last-child .list-group-item {
  border-bottom: 0; }

#accordion a,
#accordion a:-webkit-any-link {
  text-decoration: none;
  color: white !important; }
  #accordion a:hover,
  #accordion a:-webkit-any-link:hover {
    color: #eee;
    color: rgba(255, 255, 255, 0.8); }

#accordion .panel.panel-default:nth-child(1) .panel-heading, #accordion .widget:nth-child(1) .panel-heading,
#accordion .panel.panel-default:nth-child(1) .list-group-item,
#accordion .widget:nth-child(1) .list-group-item {
  background: #239d90; }

#accordion .panel.panel-default:nth-child(2) .panel-heading, #accordion .widget:nth-child(2) .panel-heading,
#accordion .panel.panel-default:nth-child(2) .panel-collapse,
#accordion .widget:nth-child(2) .panel-collapse {
  background: #f39422; }

#accordion .panel.panel-default:nth-child(3) .panel-heading, #accordion .widget:nth-child(3) .panel-heading,
#accordion .panel.panel-default:nth-child(3) .panel-collapse,
#accordion .widget:nth-child(3) .panel-collapse {
  background: #d94b53; }

#accordion .panel.panel-default:nth-child(4) .panel-heading, #accordion .widget:nth-child(4) .panel-heading,
#accordion .panel.panel-default:nth-child(4) .panel-collapse,
#accordion .widget:nth-child(4) .panel-collapse {
  background: #817fb8; }

#accordion .panel.panel-default:nth-child(5) .panel-heading, #accordion .widget:nth-child(5) .panel-heading,
#accordion .panel.panel-default:nth-child(5) .panel-collapse,
#accordion .widget:nth-child(5) .panel-collapse {
  background: #28abe3; }

#accordion .panel.panel-default:nth-child(6) .panel-heading, #accordion .widget:nth-child(6) .panel-heading,
#accordion .panel.panel-default:nth-child(6) .panel-collapse,
#accordion .widget:nth-child(6) .panel-collapse {
  background: #fece34; }

#accordion .panel.panel-default:nth-child(7) .panel-heading, #accordion .widget:nth-child(7) .panel-heading,
#accordion .panel.panel-default:nth-child(7) .panel-collapse,
#accordion .widget:nth-child(7) .panel-collapse {
  background: #239d90; }

#accordion .panel.panel-default:nth-child(8) .panel-heading, #accordion .widget:nth-child(8) .panel-heading,
#accordion .panel.panel-default:nth-child(8) .panel-collapse,
#accordion .widget:nth-child(8) .panel-collapse {
  background: #f39422; }

#accordion .panel.panel-default:nth-child(9) .panel-heading, #accordion .widget:nth-child(9) .panel-heading,
#accordion .panel.panel-default:nth-child(9) .panel-collapse,
#accordion .widget:nth-child(9) .panel-collapse {
  background: #d94b53; }

.panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-collapse > .list-group .list-group-item {
  border-width: 0; }

.panel-collapse > .list-group {
  margin-bottom: 0; }

.panel-collapse .list-group-item {
  border-radius: 0;
  border: 0; }

.panel-collapse .list-group .list-group {
  margin: 0;
  margin-top: 10px; }

.panel-collapse .list-group-item li.list-group-item {
  margin: 0 -15px;
  border: 1px 0;
  padding-left: 15px; }

.panel-collapse .list-group-item li.list-group-item:last-child {
  padding-bottom: 0; }

.panel-collapse div.list-group div.list-group {
  margin: 0; }

.panel-collapse div.list-group .list-group a.list-group-item {
  border: 0;
  padding-left: 15px; }

#accordion .panel-collapse .list-group .list-group-item {
  border-bottom: 1px solid #fff;
  margin: 0 15px; }

#accordion .panel-collapse .list-group .list-group-item .list-group .list-group-item {
  border-bottom: 0; }

#accordion .glyphicon {
  margin-right: 10px; }

#accordion a {
  color: white;
  -webkit-transition: -webkit-transform .2s;
          transition: transform .2s; }
  #accordion a:hover {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px); }

/*=====  End of Navigation  ======*/
/*==================================
=            Pagination            =
==================================*/
/*=====  End of Pagination  ======*/
/*=======================================
=            Emergency modal            =
=======================================*/
/*
|--------------------------------------------------------------------
| EMERGENCY MESSAGE
|--------------------------------------------------------------------
*/
#basicModal {
  background-color: rgba(255, 0, 0, 0.7);
  z-index: 99999999; }

.modal-dialog {
  z-index: 99999999;
  margin-top: 20px; }
  @media (min-width: 992px) {
    .modal-dialog {
      margin-top: 20vh; } }

.modal-header,
.modal-body,
.modal-footer {
  text-align: center; }

/*=====  End of Emergency modal  ======*/
/*==================================
=            Flexslider            =
==================================*/
/*
 * jQuery FlexSlider v2.4.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal; }

/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none; }

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

.flexslider .slides img {
  width: 100%;
  display: block; }

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .flexslider .slides {
  display: block; }

* html .flexslider .slides {
  height: 1%; }

.no-js .flexslider .slides > li:first-child {
  display: block; }

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
    position: relative;
    zoom: 1;
    
    .flex-control-nav {
        bottom: 32px;
        z-index: 999;
    }
    .flex-direction-nav {
        display: none;
    }
}
@media (min-width:768px) {
    .flexslider {
        .flex-control-nav {
            bottom: 42px;
        }
    }
}
.flexslider .slides {
  zoom: 1; 
}

.flexslider .slides img {
    height: auto; 
    /*min-height: 300px;*/
    aspect-ratio: 57 / 20;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.carousel li {
  margin-right: 5px; }

.flex-direction-nav {
  *height: 0; }

.flex-direction-nav a {
  font-family: "Glyphicons Halflings";
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  top: 45%;
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.flex-direction-nav a:before {
  font-family: "Glyphicons Halflings";
  font-size: 40px;
  display: inline-block;
  content: '\e079';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3); }

.flex-direction-nav a.flex-next:before {
  content: '\e080'; }

.flex-direction-nav .flex-prev {
  left: -2.5641025641%; }

.flex-direction-nav .flex-next {
  right: -2.5641025641%;
  text-align: right; }

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  filter: alpha(opacity=70);
  left: 2.5641025641%; }

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  filter: alpha(opacity=70);
  right: 2.5641025641%; }

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-direction-nav a:before {
  font-family: "Glyphicons Halflings";
  content: '\e079'; }

.flex-direction-nav a.flex-next:before {
  content: '\e080'; }

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  filter: alpha(opacity=80);
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "iconfont";
  font-size: 20px;
  display: inline-block;
  content: '\f004'; }

.flex-pauseplay a:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.flex-pauseplay a .flex-play:before {
  content: '\f003'; }

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -35px;
  text-align: center; }
  @media (min-width: 992px) {
    .flex-control-nav {
      bottom: -45px; } }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 20px; }

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  filter: alpha(opacity=70);
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }

.flex-control-thumbs img:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.flex-control-thumbs .flex-active {
  opacity: 1;
  filter: alpha(opacity=100);
  cursor: default; }

.caption {
  position: absolute;
  width: 97.435897435%;
  padding: 0.8em 0;
  text-align: center;
  color: #fff;
  bottom: 5%;
  margin: 1.28205128205%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  filter: alpha(opacity=0); }

@media (min-width: 1200px) {
  .caption {
    width: 100%;
    margin: 0; } }

.flexslider:hover .caption {
  opacity: 1;
  filter: alpha(opacity=100); }

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    filter: alpha(opacity=100);
    left: 10px; }
  .flex-direction-nav .flex-next {
    opacity: 1;
    filter: alpha(opacity=100);
    right: 10px; } }

.flexslider .slides > li:first-child {
  display: block;
  -webkit-backface-visibility: visible; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; 
    
}

/*=====  End of Flexslider  ======*/
/*===========================================
=            Basic widget styles            =
===========================================*/
.panel-default, .widget {
  border: none;
  border-radius: 20px; }
  .panel-default .panel-heading, .widget .panel-heading {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px; }

.news {
  border-color: rgba(0, 0, 0, 0.1); }
  .news > .panel-heading {
    color: white;
    background-color: #f39422;
    border-color: #ef880d; }
    .news > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: rgba(0, 0, 0, 0.1); }
    .news > .panel-heading .badge {
      color: #f39422;
      background-color: white; }
  .news > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgba(0, 0, 0, 0.1); }

.twitter {
  border-color: rgba(0, 0, 0, 0.1); }
  .twitter > .panel-heading {
    color: white;
    background-color: #55acee;
    border-color: #3ea1ec; }
    .twitter > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: rgba(0, 0, 0, 0.1); }
    .twitter > .panel-heading .badge {
      color: #55acee;
      background-color: white; }
  .twitter > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgba(0, 0, 0, 0.1); }

/*=====  End of Basic module styling  ======*/
/*======================================
=            Welcome Module            =
======================================*/
.welcome {
  margin-bottom: 40px; 
}

.panel-welcome.panel {
  .panel-heading h2 {
    color: var(--green);
    text-align: left;
    font-family: Lato;
    font-size: 42px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
  }
  .panel-body {
      color: var(--blue);
      text-align: left;
      padding-left: 0;
      p,
      strong {
          color: var(--blue);
      }
      h3 {
          padding-bottom: 30px;
      }
  }
}

/*.panel-welcome .panel-heading {*/
/*    color: #239d90;*/
/*    border-top-left-radius: 20px;*/
/*    border-top-right-radius: 20px; */
/*}*/

/*  .panel-welcome .panel-heading,*/
/*  .panel-welcome .panel-body {*/
/*    background: #fff; */
/*  }*/
    
/*  .panel-welcome .panel-footer {*/
/*    border: none;*/
/*    border-bottom-right-radius: 20px;*/
/*    border-bottom-left-radius: 20px;*/
/*    background: transparent;*/
/*    height: 0;*/
/*    padding-bottom: 16%;*/
/*    background: #fff;*/
/*    background-image: url("../images/template/riversdale-welcome-image.png");*/
/*    background-size: cover;*/
/*    background-repeat: none;*/
/*    background-position-y: -1px; */
      
/*  }*/

/*.panel-welcome .btn-primary {*/
/*  background-color: #239d90; */
    
/*}*/

.panel {
    font-family: "Poppins", sans-serif;
    
    .panel-heading {
        color: var(--white);
        line-height: normal;
        text-align: center;
        font-size: 23px;
        font-style: normal;
        font-weight: 600;
        padding-top: 18px;
        padding-bottom: 18px;
        h2 {
            font-size: 42px;
            font-weight: 600;
        }
    }
    .panel-body {
        color: var(--white);
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 23px;
        padding: 30px;
        padding-top: 0;
        text-align: center;
        strong {
            color: var(--white);
            font-size: 23px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px; /* 121.739% */
            padding-bottom: 12px;
            display: inline-block;
        }
        a {
            color: var(--white);
            text-decoration: underline;
        }
    }
}

.riversdale--values-widget {
    padding-top: 32px;
    padding-bottom: 64px;   
}
/*=====  End of Welcome Module  ======*/
/*===================================
=            News Module            =
===================================*/
.news-text img {
  border-radius: 10px; }

.news-post {
  margin-bottom: 2em; }
  .news-post:last-child {
    margin-bottom: 0; }

.news-readmore {
  display: inline-block; }

.news-title {
  margin: 0;
  padding: 0; }

.date {
  display: block;
  background-color: #f39422;
  color: white;
  width: 6em;
  height: 6em;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  font-size: .8em; }
  .date .day {
    font-size: 1.618em; }

.date .button {
  margin-bottom: .5em; }

@media (min-width: 1200px) {
  .catblogoutput .date {
    padding-left: 1em; } }

/*=====  End of News Module  ======*/
/*=========================================
=            Attendance module            =
=========================================*/
.attendance-box {
  color: #f39422;
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
  padding: 0;
  margin: 10px;
  margin-bottom: 40px; }
  @media (min-width: 992px) {
    .attendance-box {
      width: 60%; } }
  .attendance-box .attendance-label {
    font: "Merriweather", Georgia, "Times New Roman", Times, serif;
    font-size: 22px;
    display: block; }
  .attendance-box .attendance-target,
  .attendance-box .attendance-achieved {
    background-color: #f39422;
    display: inline-block;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin: 0 auto;
    max-width: 8em; }
    .attendance-box .attendance-target small,
    .attendance-box .attendance-achieved small {
      font-size: 10px;
      white-space: no-wrap;
      display: block;
      clear: both;
      margin: 0 auto; }
  .attendance-box .figure {
    font-size: 2em;
    color: white;
    line-height: 1;
    margin: 0 auto;
    padding: 0;
    font-weight: bold;
    clear: both; }
  .attendance-box .success {
    margin: 0 auto; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .attendance-box h6 {
      font-size: pxValuepx;
      font-size: remValuerem;
      min-height: 2em; }
    .attendance-box .figure {
      font-size: 2em; } }

@media (max-width: 767px) {
  .attendance-box .row:last-child {
    margin-bottom: 9em; } }

.attendance .name {
  display: block;
  font-size: 1.2em; }

.attendance .attendance-figure {
  position: relative;
  color: white;
  background: #817FB8;
  font-size: 1.25em;
  line-height: 2;
  font-weight: 700;
  padding: .5em 1em;
  border-radius: 10px; }
  @media (min-width: 992px) {
    .attendance .attendance-figure {
      font-size: 1.75em;
      line-height: 2.5; } }

/*=====  End of Attendance module  ======*/
/*===========================================
=            House Points Module            =
===========================================*/
.points .title {
  color: white;
  font-size: 1em; }
  @media (min-width: 1200px) {
    .points .title {
      font-size: 1.15em; } }

.points .total {
  color: var(--white);
  font-size: 1em;
  font-weight: 800;
  
  /* Medium devices (desktops, 992px and up) */
  /* Large devices (large desktops, 1200px and up) */ }
  @media (min-width: 768px) {
    .points .total {
      font-size: 1.25em; } }
  @media (min-width: 992px) {
    .points .total {
      font-size: 1.5em; } }
  @media (min-width: 1200px) {
    .points .total {
      font-size: 1.75em; } }

/*=====  End of House Points Module  ======*/
/*======================================
=            Twitter Module            =
======================================*/
.twitter.panel > .panel-body, .twitter.widget > .panel-body {
  padding: 0 0 .5em; }

/*=====  End of Twitter Module  ======*/
/*=====================================
=            Ofsted Module            =
=====================================*/
.ofsted .widget-link {
  text-align: center;
  margin: 0 auto; }

/*=====  End of Ofsted Module  ======*/
/*=========================================
=            Curriculum Module            =
=========================================*/
.curriculum-template * {
  box-sizing: border-box; }

.sheet_container {
  max-width: 95%;
  margin: 2em auto;
  box-sizing: border-box;
  padding: 2em 4%; }

.sheet_subcontainer {
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

.sheet_box {
  display: inline-block;
  width: 30%;
  margin-bottom: 2em;
  box-sizing: border-box;
  border: 3px solid rgba(0, 0, 0, 0.6);
  overflow: hidden;
  background: #fff; }

.sheet_box_header {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px; }

.sheet_box_content {
  padding: 5px;
  min-height: 200px;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.sheet_box_title {
  color: rgba(0, 0, 0, 0.6);
  background: #fff; }

.sheet_box_topic {
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.6);
  height: 219px;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around; }
  .sheet_box_topic a {
    color: #fff;
    text-align: center; }
  .sheet_box_topic .sheet_header {
    display: table-cell;
    vertical-align: middle; }

.sheet_header {
  font-size: 42px;
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 25px;
  border: 0; }
  @media (min-width: 992px) {
    .sheet_header {
      margin-top: 1em; } }

.sheet_subheader {
  font-size: 28px;
  display: block;
  text-align: center;
  line-height: 38px; }

@media (max-width: 1199px) {
  .sheet_container {
    margin: 1em auto;
    padding: 1em 3%; }
  .sheet_subcontainer {
    -webkit-flex-flow: column wrap;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap; }
  .sheet_box {
    width: 100%;
    margin-bottom: 1em; }
  .sheet_box_title {
    -webkit-box-ordinal-group: -1;
    -webkit-order: -2;
        -ms-flex-order: -2;
            order: -2; }
  .sheet_box_topic {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .sheet_header {
    font-size: 28px;
    margin: 15px 0; }
  .sheet_subheader {
    font-size: 22px; } }

.curriculum-template .back-link {
  clear: both;
  padding-left: 20px;
  margin-bottom: 40px;
  line-height: 2em;
  color: #111; }

/*=====  End of Curriculum Module  ======*/
/*======================================
            Contact Module            =
=====================================*/
.map-address input[type="text"] {
  display: block;
  float: left;
  width: 85%;
  padding: 10px;
  height: 36px;
  color: #333333;
  background: white;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px; }
  .map-address input[type="text"]:focus {
    background: #e6e6e6; }

.map-address input[type="submit"] {
  display: block;
  cursor: pointer;
  height: 36px;
  width: 15%;
  border: 0;
  background: #1a736a url("../images/template/search_icon.png") no-repeat center center;
  border-radius: 0 10px 10px 0; }
  .map-address input[type="submit"]:hover {
    background: #219588 url("../images/template/search_icon.png") no-repeat center center; }

.address_box {
  border-bottom: 1px solid #dedede;
  background: #ebebeb;
  padding: 15px;
  font-size: 0.875em; }
  .address_box:before, .address_box:after {
    content: " ";
    display: table; }
  .address_box:after {
    clear: both; }
  .address_box h3, .address_box strong {
    font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
    color: #222222; }
  .address_box div {
    width: 100%;
    margin: 0; }
  @media (min-width: 768px) {
    .address_box div {
      float: left; }
      .address_box div.address_box-address {
        width: 50%;
        margin-right: 5%; }
      .address_box div.address_box-contact {
        width: 45%; } }
  .address_box a {
    color: #333333; }

.map-address input[type=text] {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  font-size: 14px;
  font-weight: #777777;
  color: #333333;
  width: 80%;
  border: 0px;
  background: #ffffff;
  height: 61px;
  box-sizing: border-box;
  padding: 15px;
  border-bottom-left-radius: 20px;
  border-bottom: 1px solid #dedede;
  float: left; }
  @media (min-width: 768px) {
    .map-address input[type=text] {
      width: 90%; } }
  .map-address input[type=text]:focus {
    background: #f2f2f2; }

.map-address input[type=submit] {
  width: 20%;
  display: block;
  height: 61px;
  background: #312f81 url("./img/search_icon.png") no-repeat center center;
  border: 0px;
  border-radius: 0 0 10px 0; }
  @media (min-width: 768px) {
    .map-address input[type=submit] {
      width: 10%; } }
  .map-address input[type=submit]:hover {
    cursor: pointer;
    background: #23215c url("./img/search_icon.png") no-repeat center center; }

/*=====  End of Contact Module  ======*/
/*====================================
=            Flex modules            =
====================================*/
.flex-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.flex-grid.window-grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .flex-grid.window-grid .flex-grid-item {
    -webkit-box-flex: 40%;
    -webkit-flex: 40%;
        -ms-flex: 40%;
            flex: 40%;
    text-align: center; }

.points .flex-grid.window-grid [class*="item"] {
  padding: .5em;
  max-width: 50%; 
    
}
  @media (min-width: 1200px) {
    .points .flex-grid.window-grid [class*="item"] {
      font-size: 1.1em; } }

.widget-row .panel.panel-default, 
.widget-row .widget {
    height: 100%;
}

/*=====  End of Flex modules  ======*/
/*==============================
=            Trumps            =
==============================*/
.panel-overflow + .col-md-8 :not(.panel-welcome) .panel-body {
  min-height: 420px; }

/*=====  End of Trumps  ======*/
/**
 *
 * Amends by Dom
 * 28 July 2016
 * Change search input and attendance box appearance
 *
 */
.site-search-input input[type=text] {
  border-radius: none;
  border-bottom-left-radius: 10px; }

.site-search-input input[type=submit] {
  border-radius: 0 5px 10px 0; }

.attendance-box .figure {
  color: #FFF;
  background-color: #817fb8;
  padding: 8px;
  padding: 0.5rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  display: block; }

.goog-te-menu-frame {
max-width:100% !important;
}
.goog-te-menu-frame {
    max-width:90% !important;
    max-width: 90vw;
    overflow-x: scroll;
    z-index: 1000;
}

.scroll-wrapper {
	-webkit-overflow-scrolling: touch;
  	overflow-y: scroll;
	max-width: 90vw;
}

/*
*************** ADDED STYLES **************/
.green-text {color: #239d90;}
.calendarContainer {width:100%;}
.error {color: #eb1515;}
.pageNav ul li {display: inline;}
.pageNav ul li.control {margin: 0 3px;}
.pageNav ul li a.active {text-decoration: underline;color: #000;}

/*==============================
=       Light Gallery         =
==============================*/

/*clearfix*/
.group {
 *zoom: 1;
}
.group:before, .group:after {
	display: table;
	content: "";
	line-height: 0;
}
.group:after {
	clear: both;
}
/*/clearfix*/
/** /font-icons if you are not using font icons you can just remove this part/**/
@font-face {
	font-family: 'Slide-icons';
	src: url('../fonts/Slide-icons.eot');
}
@font-face {
	font-family: 'Slide-icons';
	src: url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAWcAAsAAAAACSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAm4AAAQxqzjSYEZGVE0AAAN4AAAAGgAAABxmWaSOR0RFRgAAA5QAAAAdAAAAIAAzAARPUy8yAAADtAAAAEsAAABgL/bcQGNtYXAAAAQAAAAAPQAAAVLgL/LNaGVhZAAABEAAAAAuAAAANv3vdhloaGVhAAAEcAAAAB4AAAAkBBD/5GhtdHgAAASQAAAAEgAAABIFOwBxbWF4cAAABKQAAAAGAAAABgAGUABuYW1lAAAErAAAAOEAAAGw7pftcnBvc3QAAAWQAAAADAAAACAAAwAAeJx9VE1oE1EQnpfsJutmSWNMQoUoWxB/qmIKnkKJWKvXQlOwhx5E7SEo9WCEHNKAJqVbn8RLzvEgKEUPCgoiIi3YHkWw2mO9CBb8O1SzurXjvLfrJiqEhXkzwzffm/nee8tAUYAxZuQvFs5PHi6cuzR1GVgAGORsM2D3Be1ehRtBbii7ddiZjyPnvmOE+QW7YRfVNNzpSQPE0vBwexqMtNIbh7Dg0KAHUrAL9sARyF6ZKpzKZDK0nMwMHHeXIXc54S7DHU109gPAZpnF5th1xiEkiANgsFpgNDATPB3ldlHZbNiNcBTZ/JNRZBPFZ0nE6mw/GT6MUC6tiPCgihA6Vkb8sXCNI35bGxRuTcYa4vqZIWlUP1sVoCx3Yyqd1gTNIUH4RhJ6rILAxw9yN/bwghVSt56rLoCyFY6gmy8kwENJwjYrlItPVauOuDWyhqDEzlKFIuvIIrAHfTJbr2uSWpgFOVvFHVDQc5dftK751P3CeyuNp8Uf/DL3tal5rFKLuiX2MxGdL00azJHKOWLcrZF3MmtZWhThNRWwx62XSYTF/d8Rc6sR2iFyNYS4MWNSzaeJA+RWfkqjCYBO5tV71bIkjTssUVe5bykrhrXqWqnZ1m9a6rfk61emfu+Px8iIA8zf/SrDNr4s8csd+Gbzn+mXOtWK3rPHkqbeGkuZuvNIGudo9wRdvDkald0Yj9HFy89vtvsgjw7/Pxm9Kf+SEfGj86HU/frlVn6RwgP7CLVRTZDCFZt6j99edcWGSPmz5h4BLO5d73bIzVL7OdTkc8j6O5MIdiPBkzcNnZ7zDvF/2OYkWvSFI78BSE0QpgAAeJxjYGBgZACCk535hiD6XIbUOhgNAD+3BfAAAHicY2BkYGDgA2IJBhBgYmAEQlYgZgHzGAAEgQA4AAAAeJxjYGZiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbAyM8CBAILJEJDmmsLg8EDqAwPjg/8PGPQYHzAoNDAwMMIVKAAhIwATaAw5AHicY2BgYGaAYBkGRgYQ8AHyGMF8FgYDIM0BhEwgiQeyHxj+/wezpCAs+RcCjFBdYMDIxoDMHZEAAP1aCcoAAAB4nGNgZGBgAGLNvbqy8fw2Xxm4mRhA4FyG1DoE/f8BEwPjAyCXgwEsDQAB0gmnAAB4nGNgZGBgfPD/AYMeEwMDwz8GIAkUQQHMAG3nA/YAAAIAAAAAAAAAAgAAUQClACAAlgAAAABQAAAGAAB4nI2PMW7CQBBFn8FGIkQpo5RbIFHZsjciEhyAMg0SFwALrYS8kuEMOQLH4BgcgGPkAKnz7UxBkYKVVvPmz5/ZWeCZMwndSZjwZjwgozQeMuPLOJXnapyJv41HTJIXOZN0LOW17+p4wBNT4yGffBin8lyMM/HNeCT+Yc2BwI6aXHFLpOEI60PY1XnYxkbJnW7Kqs9PfWzZq9vhKfQPx1L3/6l/Nc9c6kLXy1/xrnGxOa1iu6+dL0q3dHevK/PzfJH7spLxkW03qrZSQ191eqHbi03dHkNsXFWUD835BcvqQqwAAAB4nGNgZsALAAB9AAQ=) format('woff'), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWZZpI4AAAboAAAAHEdERUYANQAGAAAGyAAAACBPUy8yL9TcHwAAAVgAAABWY21hcOAx89QAAAHMAAABUmdhc3D//wADAAAGwAAAAAhnbHlmlq1ZxgAAAzQAAAGAaGVhZP3vdhkAAADcAAAANmhoZWEEEP/mAAABFAAAACRobXR4BeoAcQAAAbAAAAAabG9jYQEyAOAAAAMgAAAAEm1heHAAUwAnAAABOAAAACBuYW1l7pftcgAABLQAAAGwcG9zdCBfgkMAAAZkAAAAWgABAAAAAQAAZVgBDF8PPPUACwIAAAAAAM5oGq4AAAAAzmgargAA/+ACAAHgAAAACAACAAAAAAAAAAEAAAHg/+AALgIAAAD+AAIAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAIACQACQAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA4BrwAAHg/+AALgHgACCAAAABAAAAAAAAAgAAAAAAAAAAqgAAAAAAAAIAAFEAqgAgAJYAAAAAAAMAAAADAAAAHAABAAAAAABMAAMAAQAAABwABAAwAAAACAAIAAIAAAAA4B3wAP//AAAAAOAa8AD//wAAH+oQAwABAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAEIAZACeAMAAAAABAAD/4AIAAeAAAgAAEQEhAgD+AAHg/gAAAAAAAQBRADYBrwGKAB0AAAE2NC8BJg8BJyYPAQYUHwEHBh8BFj8BFxY/ATYvAQGqBAQXCwx8fAwLFwQEfX0LCxcLDHx8DAsXCwt9AVwFDQUXCwt9fQsLFwUNBXx8DAsXCwt9fQsLFwsMfAABAKoABQGeAbYAEQAAEyYPAQYfAQcGHwEWMj8BNjQn1AwLEwsLrKwLCxMFDQXBCAgBtgsLEwsMrKwMCxMFBcEJGAkAAAkAIAAAAeABwAADAAcACwAPABMAFwAbAB8AIwAAEzMVIyUzFSMnMxUjBzMVIyUzFSMnMxUjBzMVIyUzFSMnMxUjIICAAUCAgKCAgKCAgAFAgICggICggIABQICAoICAAcCAgICAgCCAgICAgCCAgICAgAAAAQCWAAoBjwG2ABEAAAE2LwEmDwEGFB8BFj8BNjQvAQGKCwsTDAvBCQnBCwsUBAStAYwMCxMLC8EJGAnBCwsTBQ0FrAAAAAwAlgABAAAAAAABAAsAGAABAAAAAAACAAUAMAABAAAAAAADACcAhgABAAAAAAAEAAsAxgABAAAAAAAFAAsA6gABAAAAAAAGAAsBDgADAAEECQABABYAAAADAAEECQACAAoAJAADAAEECQADAE4ANgADAAEECQAEABYArgADAAEECQAFABYA0gADAAEECQAGABYA9gBTAGwAaQBkAGUALQBpAGMAbwBuAHMAAFNsaWRlLWljb25zAABpAGMAbwBuAHMAAGljb25zAABGAG8AbgB0AEYAbwByAGcAZQAgADIALgAwACAAOgAgAFMAbABpAGQAZQAtAGkAYwBvAG4AcwAgADoAIAAyADUALQA5AC0AMgAwADEAMwAARm9udEZvcmdlIDIuMCA6IFNsaWRlLWljb25zIDogMjUtOS0yMDEzAABTAGwAaQBkAGUALQBpAGMAbwBuAHMAAFNsaWRlLWljb25zAABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABTAGwAaQBkAGUALQBpAGMAbwBuAHMAAFNsaWRlLWljb25zAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAABAAIBAgEDAQQBBQEGB3VuaUYwMDAHdW5pRTAxQQd1bmlFMDFCB3VuaUUwMUMHdW5pRTAxRAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAHAAEABAAAAAIAAAAAAAEAAAAAyYlvMQAAAADOaBquAAAAAM5oGq4=) format('truetype');
	font-weight: normal;
	font-style: normal;
}
[data-icon]:before {
	font-family: 'Slide-icons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/** / End of font-icons /**/



.light-gallery {
	overflow: hidden!important;
}
#lg-gallery img {
	border: none!important;
}
#lg-outer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999!important;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	opacity: 1;
	-webkit-transition: opacity 0.35s ease;
	-moz-transition: opacity 0.35s ease;
	-o-transition: opacity 0.35s ease;
	-ms-transition: opacity 0.35s ease;
	transition: opacity 0.35s ease;
	background: #fff;
}
#lg-outer .lg-slide{
	position: relative;
}
/*lightGallery starting effects*/
#lg-gallery.opacity {
	opacity: 1;
	transition: opacity 1s ease 0s;
	-moz-transition: opacity 1s ease 0s;
	-webkit-transition: opacity 1s ease 0s;
	-o-transition: opacity 1s ease 0s;
	-ms-transition: opacity 1s ease 0s;
}
#lg-gallery.opacity .thumb-cont {
	opacity: 1;
}
#lg-gallery.fade-m {
	opacity: 0;
	transition: opacity 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s;
	-webkit-transition: opacity 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s;
	-ms-transition: opacity 0.5s ease 0s;
}
/*lightGallery starting effects*/


/*lightGallery core*/
#lg-gallery {
	height: 100%;
	opacity: 0;
	width: 100%;
	position: relative;
	transition: opacity 1s ease 0s;
	-moz-transition: opacity 1s ease 0s;
	-webkit-transition: opacity 1s ease 0s;
	-o-transition: opacity 1s ease 0s;
	-ms-transition: opacity 1s ease 0s;
}
/**/
#lg-slider {
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	position: absolute;
	white-space: nowrap;
}
/**/
#lg-slider .lg-slide {
	background: url(../images/loading.gif) no-repeat scroll center center transparent;
	display: inline-block;
	height: 100%;
	text-align: center;
	width: 100%;
}
#lg-slider .lg-slide.complete {
	background-image: none;
}
#lg-gallery.show-after-load .lg-slide > * {
	opacity: 0;
}
#lg-gallery.show-after-load .lg-slide.complete > * {
	opacity: 1;
}
#lg-slider.slide .lg-slide, #lg-slider.use-left .lg-slide {
	position: absolute;
	opacity: 0.4;
}
#lg-slider.fade-m .lg-slide {
	position: absolute;
	left: 0;
	opacity: 0;
}
#lg-slider.animate .lg-slide {
	position: absolute;
	left: 0;
}
#lg-slider.fade-m .current {
	opacity: 1;
	z-index: 9;
}
#lg-slider .lg-slide:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}
#lg-gallery.opacity .lg-slide .object {
	transform: scale3d(1, 1, 1);
	-moz-transform: scale3d(1, 1, 1);
	-ms-transform: scale3d(1, 1, 1);
	-webkit-transform: scale3d(1, 1, 1);
	-o-transform: scale3d(1, 1, 1);
}
.lg-slide .object{
	transform: scale3d(0.5, 0.5, 0.5);
	-moz-transform: scale3d(0.5, 0.5, 0.5);
	-ms-transform: scale3d(0.5, 0.5, 0.5);
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	-o-transform: scale3d(0.5, 0.5, 0.5);
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
	-ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
}
#lg-gallery.fade-m .lg-slide .object {
	transform: scale3d(0.5, 0.5, 0.5);
	-moz-transform: scale3d(0.5, 0.5, 0.5);
	-ms-transform: scale3d(0.5, 0.5, 0.5);
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	-o-transform: scale3d(0.5, 0.5, 0.5);
}
#lg-slider.fade-m.on .current {
	opacity: 1;
	transition: opacity 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s;
	-webkit-transition: opacity 0.5s ease 0s;
	-o-transition: opacity 0.5s ease 0s;
	-ms-transition: opacity 0.5s ease 0s;
}
#lg-slider.fade-m .lg-slide {
	transition: opacity 0.4s ease 0s;
	-moz-transition: opacity 0.4s ease 0s;
	-webkit-transition: opacity 0.4s ease 0s;
	-o-transition: opacity 0.4s ease 0s;
	-ms-transition: opacity 0.4s ease 0s;
}
#lg-slider.slide .lg-slide {
	transform: translate3d(100%, 0px, 0px);
	-moz-transform: translate3d(100%, 0px, 0px);
	-ms-transform: translate3d(100%, 0px, 0px);
	-webkit-transform: translate3d(100%, 0px, 0px);
	-o-transform: translate3d(100%, 0px, 0px);
}
#lg-slider.slide.on .lg-slide {
	opacity: 0;
}
#lg-slider.slide .lg-slide.current {
	opacity: 1 !important;
	transform: translate3d(0px, 0px, 0px) !important;
	-moz-transform: translate3d(0px, 0px, 0px) !important;
	-ms-transform: translate3d(0px, 0px, 0px) !important;
	-webkit-transform: translate3d(0px, 0px, 0px) !important;
	-o-transform: translate3d(0px, 0px, 0px) !important;
}
#lg-slider.slide .lg-slide.prev-slide {
	opacity: 0;
	transform: translate3d(-100%, 0px, 0px);
	-moz-transform: translate3d(-100%, 0px, 0px);
	-ms-transform: translate3d(-100%, 0px, 0px);
	-webkit-transform: translate3d(-100%, 0px, 0px);
	-o-transform: translate3d(-100%, 0px, 0px);
}
#lg-slider.slide .lg-slide.next-slide {
	opacity: 0;
	transform: translate3d(100%, 0px, 0px);
	-moz-transform: translate3d(100%, 0px, 0px);
	-ms-transform: translate3d(100%, 0px, 0px);
	-webkit-transform: translate3d(100%, 0px, 0px);
	-o-transform: translate3d(100%, 0px, 0px);
}
#lg-slider.use-left .lg-slide {
	left: 100%;
}
#lg-slider.use-left.on .lg-slide {
	opacity: 0;
}
#lg-slider.use-left .lg-slide.current {
	opacity: 1 !important;
	left: 0% !important;
}
#lg-slider.use-left .lg-slide.prev-slide {
	opacity: 0;
	left: -100%;
}
#lg-slider.use-left .lg-slide.next-slide {
	opacity: 0;
	left: 100%;
}
#lg-slider.slide.on .lg-slide, #lg-slider.slide.on .current, #lg-slider.slide.on .prev-slide, #lg-slider.slide.on .next-slide {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}
#lg-slider.speed .lg-slide, #lg-slider.speed .current, #lg-slider.speed .prev-slide, #lg-slider.speed .next-slide {
	transition-duration: inherit !important;
	-moz-transition-duration: inherit !important;
	-webkit-transition-duration: inherit !important;
	-o-transition-duration: inherit !important;
	-ms-transition-duration: inherit !important;
}
#lg-slider.timing .lg-slide, #lg-slider.timing .current, #lg-slider.timing .prev-slide, #lg-slider.timing .next-slide {
	transition-timing-function: inherit !important;
	-moz-transition-timing-function: inherit !important;
	-webkit-transition-timing-function: inherit !important;
	-o-transition-timing-function: inherit !important;
	-ms-transition-timing-function: inherit !important;
}
#lg-slider .lg-slide img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	cursor: -moz-grabbing;
	cursor: grab;
	cursor: -webkit-grab;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
#lg-gallery .thumb-cont .thumb-inner {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	-ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
 @-webkit-keyframes rightEnd {
 0% {
left: 0;
}
 50% {
left: -30px;
}
 100% {
left: 0;
}
}
@keyframes rightEnd {
 0% {
left: 0;
}
 50% {
left: -30px;
}
 100% {
left: 0;
}
}
@-webkit-keyframes leftEnd {
 0% {
left: 0;
}
 50% {
left: 30px;
}
 100% {
left: 0;
}
}
@keyframes leftEnd {
 0% {
left: 0;
}
 50% {
left: 30px;
}
 100% {
left: 0;
}
}
.lg-slide .object.right-end {
	-webkit-animation: rightEnd 0.3s;
	animation: rightEnd 0.3s;
	position: relative;
}
.lg-slide .object.left-end {
	-webkit-animation: leftEnd 0.3s;
	animation: leftEnd 0.3s;
	position: relative;
}
/*lightGallery core*/


/*action*/
#lg-action {
	bottom: 20px;
	position: fixed;
	left: 50%;
	margin-left: -30px;
	z-index: 9;
	-webkit-backface-visibility: hidden;
}
#lg-action.has-thumb {
	margin-left: -46px;
}

#lg-action a {
	margin: 0 3px 0 0 !important;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	position: relative;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
	display: inline-block !important;
	display: inline-block;
	vertical-align: middle;
 *display: inline;
 *zoom: 1;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.65);
	font-size: 16px;
	width: 28px;
	height: 28px;
	font-family: 'Slide-icons';
	color: #FFF;
	cursor: pointer;
	line-height: 28px;
}
#lg-action a.disabled {
	opacity: 0.6;
	filter: alpha(opacity=60);
	cursor: default;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.65) !important;
}
#lg-action a:hover, #lg-action a:focus {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}
#lg-action a#lg-prev:before, #lg-action a#lg-next:after {
	left: 5px;
	bottom: 0px;
	position: absolute;
}
#lg-action a#lg-prev:before {
	content: "\e01d";
}
#lg-action a#lg-next:after {
	content: "\e01b";
}
#lg-action a.cl-thumb:after {
	font-family: 'Slide-icons';
	content: "\e01c";
	left: 6px;
	bottom: 0px;
	font-size: 16px;
	position: absolute;
}
/*action*/

/*counter*/
#lg-counter {
	bottom: 52px;
	text-align: center;
	width: 100%;
	position: absolute;
	z-index: 9;
	color: #FFFFFF;
}
/*lightGallery Thumb*/
#lg-gallery .thumb-cont {
	position: absolute;
	bottom: 0;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #000000;
	-webkit-transition: max-height 0.4s ease-in-out;
	-moz-transition: max-height 0.4s ease-in-out;
	-o-transition: max-height 0.4s ease-in-out;
	-ms-transition: max-height 0.4s ease-in-out;
	transition: max-height 0.4s ease-in-out;
	z-index: 9;
	max-height: 0;
	opacity: 0;
}
#lg-gallery.open .thumb-cont {
	max-height: 350px;
}
#lg-gallery .thumb-cont .thumb-inner {
	margin-left: -12px;
	padding: 12px;
	max-height: 290px;
	overflow-y: auto;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
#lg-gallery .thumb-cont .thumb-info {
	background-color: #333;
	padding: 7px 20px;
}
#lg-gallery .thumb-cont .thumb-info .count {
	color: #ffffff;
	font-weight: bold;
	font-size: 12px;
}
#lg-gallery .thumb-cont .thumb-info .close {
	color: #FFFFFF;
	display: block;
	float: right !important;
	width: 28px;
	position: relative;
	height: 28px;
	border-radius: 2px;
	margin-top: -4px;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.65);
	-webkit-transition: background-color 0.3s ease 0s;
	-moz-transition: background-color 0.3s ease 0s;
	-o-transition: background-color 0.3s ease 0s;
	-ms-transition: background-color 0.3s ease 0s;
	transition: background-color 0.3s ease 0s;
	z-index: 1090;
	cursor: pointer;
}
#lg-gallery .thumb-cont .thumb-info .close i:after {
	left: 6px;
	position: absolute;
	top: 4px;
}
#lg-gallery .thumb-cont .thumb-info .close i:after, #lg-close:after {
	content: "\e01a";
	font-family: 'Slide-icons';
	font-style: normal;
	font-size: 16px;
}
#lg-gallery .thumb-cont .thumb-info .close:hover {
	text-decoration: none;
	background-color: #000;
	background-color: rgba(0, 0, 0, 1);
}
#lg-gallery .thumb-cont .thumb {
	display: inline-block !important;
	vertical-align: middle;
	text-align: center;
 *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
	margin-bottom: 4px;
	height: 50px;
	width: 50px;
	opacity: 0.6;
	filter: alpha(opacity=60);
	overflow: hidden;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transition: border-color linear .2s, opacity linear .2s;
	-moz-transition: border-color linear .2s, opacity linear .2s;
	-o-transition: border-color linear .2s, opacity linear .2s;
	-ms-transition: border-color linear .2s, opacity linear .2s;
	transition: border-color linear .2s, opacity linear .2s;
}
@media (min-width: 800px) {
#lg-gallery .thumb-cont .thumb {
	width: 94px;
	height: 94px;
}
}
#lg-gallery .thumb-cont .thumb > img {
	height: auto;
	max-width: 100%;
}
#lg-gallery .thumb-cont .thumb.active, #lg-gallery .thumb-cont .thumb:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	border-color: #ffffff;
}
/*lightGallery Thumb*/

/*lightGallery Video*/
#lg-slider .video-cont {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
#lg-slider .video-cont {
	background: none;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
#lg-slider .video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}
#lg-slider .video .object {
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
	left: 0;
}


/*lightGallery Close*/
#lg-close {
	color: #FFFFFF;
	height: 28px;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 28px;
	z-index: 1090;
	cursor: pointer;
	background-color: #000;
	border-radius: 2px;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.65);
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	-ms-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	-webkit-backface-visibility: hidden;
}
#lg-close:after {
	position: absolute;
	right: 6px;
	top: 0px;
}
#lg-close:hover {
	text-decoration: none;
	background-color: #000;
}
.custom-html {
	background: none repeat scroll 0 0 black;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
	color: #fff;
	font-family: Arial, sans-serif;
	height: 70px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9;
}
.custom-html p {
	font-size: 14px;
}
.custom-html > h4 {
	font-family: Arial, sans-serif;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 15px;
}

/****** ADDITIONAL STYLES ******/
    	.gallery{
			list-style: none outside none;
		    padding-left: 0;
		    text-align: center;
		}
		.gallery li {
			display:inline-block;
			height: 200px;
			width: 200px;
			padding: 14px 0 0 0;
			margin: 7px;
		}
		.gallery li a {
			height: 200px;
			width: 200px;
			opacity: 1.0;
		}
		.gallery li a:hover {opacity: 0.7;}
		.gallery li a img {
			max-width: 200px;
		}
		#lg-close.close {line-height: 28px;}


#accordion-desktop .panel-collapse .list-group .list-group-item {
    border-bottom: 1px solid #fff;
    margin: 0 15px;
    text-align: left;
}

.galleryNav.pageNav > ul {
    padding-left: 0;
}
/*=========================================
=               Search Bar                =
=========================================*/
#search-holder {
    display: none;
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: 0;
    z-index: 300;
}
@media (min-width:1200px) {
    #search-holder {
        display: block;
    }
}
#search-holder .btn-primary {
    height: 100%;
    background: green;
    border-radius: 0px;
}

#topSearch .input-group-text {
    background: #fff url('./img/search-icon.svg') no-repeat center center;
    background-size: 20px;
    border-right: none;
    padding-left: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
#topSearch #searchField {
    border-left: none;
    border-radius: 0px;
    padding-top: 3px;
    padding-bottom: 3px;
}
#topSearch #searchField::placeholder {
    text-transform: uppercase;
    color: var(--blue);
}
/*=========================================
=           Search Results                =
=========================================*/
.simplesearch-results {
    font-size: 24px !important;
}
.simplesearch-paging {
    margin-bottom: 16px;
}
.simplesearch-results-list h3 a {
    color: var(--blue);
    font-size: 23px;
}

tbody, td, tfoot, th, thead, tr {
    border-color: #fff;
}

