@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
/* VARIABLES */
.font-open {
  font-family: "Open Sans", sans-serif; }

.font-georgia {
  font-family: "Georgia", serif; }

.color-red {
  color: #7F0116; }

.color-green {
  color: #427A26; }

.color-green2 {
  color: #2C8888; }

.color-blue {
  color: #000066; }

.color-teal {
  color: #002166; }

.color-mid-gray {
  color: #3F3F3F; }

.color-light-gray {
  color: #E7E9EC; }

.color-light-gray-2 {
  color: #F7F8F9; }

.bg-color-light-gray-2 {
  background-color: #F7F8F9; }

.color-dark-gray {
  color: #363636; }
  
.color-charcoal {
    color: #333;
}

/** DEFAULT CSS **/
* {
  transition: 0.3s; }
  *:hover {
    transition: 0.3s; }

html {
  scroll-behavior: smooth; }

html, body {
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 14px; /*16px;*/
  color: #363636; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  margin: 0;
  margin-bottom: 18px; }

h1, .h1 {
  font-size: 48px;
  line-height: 65px;
  letter-spacing: -0.5px; }

h2, .h2 {
  font-size: 36px;
  line-height: 49px; }

h3, .h3 {
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 10px;
  font-weight: 600; }

p {
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 30px; }
  p a {
    color: #2C8888;
    text-decoration: underline; }
  p:last-child {
    margin-bottom: 0; }

a {
  color: unset;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

/* LAYOUT CLASSES */
.inner-container {
  max-width: 1470px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box; }

.inner-container-new {
  max-width: 1176px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box; }

.flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: wrap; }
  .flex-container .flex-item {
    flex: 1 0 auto;
    width: 100%;
    box-sizing: border-box; }
    .flex-container .flex-item.column-12 {
      max-width: 100%; }
    .flex-container .flex-item.column-9 {
      max-width: 75%; }
    .flex-container .flex-item.column-8 {
      max-width: 66.66%; }
    .flex-container .flex-item.column-7 {
      max-width: 58.33%; }
    .flex-container .flex-item.column-6 {
      max-width: 50%; }
    .flex-container .flex-item.column-5 {
      max-width: 41.67%; }
    .flex-container .flex-item.column-4 {
      max-width: 33.33%; }
    .flex-container .flex-item.column-3 {
      max-width: 25%; }
    .flex-container .flex-item.column-2 {
      max-width: 16.67%; }
    .flex-container .flex-item.column-1 {
      max-width: 8.33%; }

.bg-cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

/* SECTIONS */
header .upper-header {
  position: relative; }
  header .upper-header .top-row {
    color: #fff;
    text-transform: uppercase;
    background-color: #333;
    font-size: 14px; }
    header .upper-header .top-row a {
      display: inline-block;
      vertical-align: middle;
      padding: 7px 10px; }
      header .upper-header .top-row a:hover {
        text-decoration: none;
        background: #000; }
    header .upper-header .top-row .left-column a {
      font-size: 16px; }
    header .upper-header .top-row .right-column {
      text-align: right; }
      header .upper-header .top-row .right-column a {
        border-right: 1px solid #000; }
        @media (max-width: 599px) {
          header .upper-header .top-row .right-column a span {
            display: none; } }
    header .upper-header .top-row .inner-container {
      padding: 0; }
  header .upper-header .middle-row .nav-list {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    header .upper-header .middle-row .nav-list li {
      display: inline-block;
      margin: 0;
      border-right: 1px solid #eee; }
      header .upper-header .middle-row .nav-list li a {
        display: block;
        padding: 20px;
        text-transform: uppercase; }
        header .upper-header .middle-row .nav-list li a:hover {
          text-decoration: none; }
        @media (max-width: 599px) {
          header .upper-header .middle-row .nav-list li a span {
            display: none; } }
      header .upper-header .middle-row .nav-list li:first-child, header .upper-header .middle-row .nav-list li:last-child {
        border-left: 1px solid #eee; }
      header .upper-header .middle-row .nav-list li.right {
        float: right; }
      header .upper-header .middle-row .nav-list li:hover {
        background-color: #eee; }
  header .upper-header .middle-row .inner-container {
    padding: 0; }
  header .upper-header .bottom-row {
    background-color: #E7E9EC; }
    header .upper-header .bottom-row .nav-list {
      text-align: right;
      list-style-type: none;
      padding: 0;
      margin: 0; }
      header .upper-header .bottom-row .nav-list li {
        display: inline-block;
        margin: 0;
        cursor: pointer; }
        header .upper-header .bottom-row .nav-list li a, header .upper-header .bottom-row .nav-list li span {
          display: inline-block;
          vertical-align: middle;
          padding: 20px;
          font-size: 15.4px;
          font-weight: 600;
          letter-spacing: 0;
          line-height: 21px; }
          header .upper-header .bottom-row .nav-list li a img, header .upper-header .bottom-row .nav-list li span img {
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px;
            max-height: 20px; }
          header .upper-header .bottom-row .nav-list li a:hover, header .upper-header .bottom-row .nav-list li span:hover {
            text-decoration: none; }
        header .upper-header .bottom-row .nav-list li:hover {
          background-color: #fff; }
    header .upper-header .bottom-row .mobile-menu-button {
      display: none; }
    @media (max-width: 1023px) {
      header .upper-header .bottom-row .nav-list {
        display: none; }
      header .upper-header .bottom-row .mobile-menu-button {
        display: block;
        text-align: right; }
        header .upper-header .bottom-row .mobile-menu-button img {
          cursor: pointer;
          margin: auto;
          margin-bottom: -5px; } }
  header .upper-header .hidden-row {
    display: none;
    position: absolute;
    max-width: 100%;
    width: 100%;
    background: #f2f2f2;
    box-sizing: border-box;
    padding: 15px 0; }
    header .upper-header .hidden-row.share {
      padding: 0;
      text-align: right; }
      header .upper-header .hidden-row.share .inner-container a {
        display: inline-block;
        vertical-align: middle; }
        header .upper-header .hidden-row.share .inner-container a img {
          display: block; }
    header .upper-header .hidden-row.mobile-menu {
      padding: 0; }
      header .upper-header .hidden-row.mobile-menu .nav-list {
        text-align: right;
        list-style-type: none;
        padding: 0;
        margin: 0; }
        header .upper-header .hidden-row.mobile-menu .nav-list li {
          display: block; }
          header .upper-header .hidden-row.mobile-menu .nav-list li a, header .upper-header .hidden-row.mobile-menu .nav-list li span {
            display: block;
            width: 100%;
            padding: 10px;
            font-size: 15.4px;
            font-weight: 600;
            letter-spacing: 0;
            line-height: 21px;
            box-sizing: border-box;
            cursor: pointer; }
            header .upper-header .hidden-row.mobile-menu .nav-list li a img, header .upper-header .hidden-row.mobile-menu .nav-list li span img {
              display: inline-block;
              vertical-align: middle;
              margin-right: 5px;
              max-height: 20px; }
            header .upper-header .hidden-row.mobile-menu .nav-list li a:hover, header .upper-header .hidden-row.mobile-menu .nav-list li span:hover {
              text-decoration: none; }
          header .upper-header .hidden-row.mobile-menu .nav-list li:hover {
            background-color: #fff; }

section.main-header {
  color: #fff;
  background-image: url("/staticfiles/Learn/assets/images/TeacherResources/img-menu-header.jpg"); }
  section.main-header .top-row {
    padding: 30px 0; }
    section.main-header .top-row p {
      margin: 0;
      font-size: 12px; }
      section.main-header .top-row p a {
        color: #fff;
        text-decoration: none; }
        section.main-header .top-row p a:hover {
          text-decoration: underline; }
  section.main-header .middle-row h1 {
    margin: 0;
    margin-bottom: 30px; }
  section.main-header .bottom-row .nav-list {
    position: relative;
    list-style-type: none;
    padding: 0;
    margin: 0; }
    section.main-header .bottom-row .nav-list li {
      display: inline-block;
      vertical-align: text-bottom;
      margin: 0;
      margin-right: 4px; }
      section.main-header .bottom-row .nav-list li a {
        display: block;
        padding: 17px;
        border-bottom: 3px solid transparent; }
        section.main-header .bottom-row .nav-list li a span {
          display: inline-block;
          vertical-align: middle;
          font-size: 15.4px;
          font-weight: 600;
          letter-spacing: 0;
          line-height: 21px;
          margin-left: 10px; }
        section.main-header .bottom-row .nav-list li a img {
          display: inline-block;
          vertical-align: middle; }
        section.main-header .bottom-row .nav-list li a.with-icon {
          padding: 10px 17px; }
        section.main-header .bottom-row .nav-list li a.icon-only {
          padding-bottom: 6px; }
          section.main-header .bottom-row .nav-list li a.icon-only span {
            display: none; }
        section.main-header .bottom-row .nav-list li a.active {
          color: #E9C06E;
          text-decoration: none;
          border-bottom: 3px solid #E9C06E; }
          section.main-header .bottom-row .nav-list li a.active img {
            filter: invert(78%) sepia(23%) saturate(871%) hue-rotate(353deg) brightness(350%) contrast(83%); }
        section.main-header .bottom-row .nav-list li a:not(.active):hover {
          color: #E9C06E;
          color: #FFFFFF;
          text-decoration: none;
          border-bottom: 3px solid #E9C06E;
          border-bottom: 3px solid #FFFFFF; }
          section.main-header .bottom-row .nav-list li a:not(.active):hover img {
            filter: invert(78%) sepia(23%) saturate(871%) hue-rotate(353deg) brightness(350%) contrast(83%);
            filter: unset; }
      section.main-header .bottom-row .nav-list li:last-child {
        margin: 0; }
    section.main-header .bottom-row .nav-list .mobile-menu-button {
      display: none; }

@media (max-width: 767px) {
  section.main-header .bottom-row ul.nav-list {
    position: relative; }
    section.main-header .bottom-row ul.nav-list li {
      display: none; }
      section.main-header .bottom-row ul.nav-list li a {
        padding: 16px 10px; }
        section.main-header .bottom-row ul.nav-list li a span {
          font-size: 13px;
          font-style: normal;
          font-weight: 600;
          line-height: normal; }
        section.main-header .bottom-row ul.nav-list li a.icon-only {
          padding-bottom: 10px; }
          section.main-header .bottom-row ul.nav-list li a.icon-only img {
            max-width: 24px; }
          section.main-header .bottom-row ul.nav-list li a.icon-only span {
            display: inline-block; }
      section.main-header .bottom-row ul.nav-list li.active {
        display: block; }
    section.main-header .bottom-row ul.nav-list .mobile-menu-button {
      display: block;
      position: absolute;
      top: 12px;
      right: 0;
      z-index: 9;
      max-width: 100%;
      width: 100%;
      text-align: right;
      cursor: pointer; }
      section.main-header .bottom-row ul.nav-list .mobile-menu-button.active {
        max-width: 25%; }
        section.main-header .bottom-row ul.nav-list .mobile-menu-button.active img {
          transform: rotate(180deg); } }
section.image-text-banner {
  padding: 85px 0; }
  @media (max-width: 767px) {
    section.image-text-banner {
      padding: 50px 0; }
      section.image-text-banner .flex-item.column-6 {
        max-width: 60%; } }
  @media (max-width: 499px) {
    section.image-text-banner .flex-item.column-6 {
      max-width: 75%; } }

section.important-news {
  padding: 30px 0; }
  section.important-news .section-box {
    padding: 24px 32px;
    border: 2px solid #EFEFEF;
    box-sizing: border-box; }
    section.important-news .section-box .section-header {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 19px;
      text-transform: uppercase; }
      section.important-news .section-box .section-header img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px; }
    section.important-news .section-box .news {
      list-style-type: none;
      padding: 0;
      margin: 0; }
      section.important-news .section-box .news .single-news {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #EFEFEF;
        font-size: 14px;
        letter-spacing: 0;
        line-height: 19px; }
        section.important-news .section-box .news .single-news .date {
          color: #2C8888;
          font-size: 14px;
          font-weight: 600;
          letter-spacing: 0;
          line-height: 19px;
          margin-right: 10px; }
        section.important-news .section-box .news .single-news:first-child {
          padding-top: 0; }
        section.important-news .section-box .news .single-news:last-child {
          border-bottom: none;
          padding-bottom: 0; }

section.guided-tour .section-header,
section.other-things-to-do .section-header {
  text-align: center;
  margin-bottom: 40px; }
  section.guided-tour .section-header h2,
  section.other-things-to-do .section-header h2 {
    margin: 0; }
section.guided-tour .single-tour,
section.other-things-to-do .single-tour {
  position: relative;
  padding-bottom: 62px;
  border: 2px solid #EFEFEF;
  margin-bottom: 50px;
  background-color: #fff; }
  section.guided-tour .single-tour .image-container,
  section.other-things-to-do .single-tour .image-container {
    position: relative;
    overflow: hidden;
    max-height: 470px;
    background-color: #fff; }
    section.guided-tour .single-tour .image-container .tour-image,
    section.other-things-to-do .single-tour .image-container .tour-image {
      max-width: 100%;
      width: 100%; }
    section.guided-tour .single-tour .image-container .labels,
    section.other-things-to-do .single-tour .image-container .labels {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      box-sizing: border-box; }
      section.guided-tour .single-tour .image-container .labels .label,
      section.other-things-to-do .single-tour .image-container .labels .label {
        display: inline-block;
        vertical-align: middle;
        padding: 10px 15px;
        color: #fff;
        font-size: 14px;
        letter-spacing: 0;
        line-height: 19px; }
        section.guided-tour .single-tour .image-container .labels .label .icon,
        section.other-things-to-do .single-tour .image-container .labels .label .icon {
          display: inline-block;
          vertical-align: top;
          height: 20px;
          margin-right: 4px;
          width: auto; }
        section.guided-tour .single-tour .image-container .labels .label.type-tour,
        section.other-things-to-do .single-tour .image-container .labels .label.type-tour {
          background-color: rgba(0, 0, 0, 0.6);
          margin-right: 10px; }
        section.guided-tour .single-tour .image-container .labels .label.duration,
        section.other-things-to-do .single-tour .image-container .labels .label.duration {
          background-color: #2C8888; }
  section.guided-tour .single-tour .text-container,
  section.other-things-to-do .single-tour .text-container {
    padding: 18px 26px;
    background-color: #fff; }
    section.guided-tour .single-tour .text-container p,
    section.other-things-to-do .single-tour .text-container p {
      font-size: 16px;
      letter-spacing: 0;
      line-height: 22px; }
    @media (max-width: 767px) {
      section.guided-tour .single-tour .text-container,
      section.other-things-to-do .single-tour .text-container {
        padding: 15px; } }
  section.guided-tour .single-tour .cta,
  section.other-things-to-do .single-tour .cta {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: block;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #9A7F49;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 22px; }
    section.guided-tour .single-tour .cta:hover,
    section.other-things-to-do .single-tour .cta:hover {
      background-color: #8F7135; }
  section.guided-tour .single-tour.column-6,
  section.other-things-to-do .single-tour.column-6 {
    max-width: calc(50% - 15px); }
  section.guided-tour .single-tour:nth-child(odd),
  section.other-things-to-do .single-tour:nth-child(odd) {
    margin-right: 15px; }
  section.guided-tour .single-tour:nth-child(even),
  section.other-things-to-do .single-tour:nth-child(even) {
    margin-left: 15px; }
  @media (max-width: 767px) {
    section.guided-tour .single-tour,
    section.other-things-to-do .single-tour {
      margin-bottom: 30px; }
      section.guided-tour .single-tour.column-6,
      section.other-things-to-do .single-tour.column-6 {
        max-width: calc(100%); }
      section.guided-tour .single-tour:nth-child(odd),
      section.other-things-to-do .single-tour:nth-child(odd) {
        margin-right: 0; }
      section.guided-tour .single-tour:nth-child(even),
      section.other-things-to-do .single-tour:nth-child(even) {
        margin-left: 0; } }
section.guided-tour .section-footer p,
section.other-things-to-do .section-footer p {
  display: block;
  max-width: 750px;
  width: 100%;
  margin: auto;
  padding: 10px 0 60px;
  text-align: center; }

section.other-things-to-do {
  padding: 60px 0 10px;
  background-color: #E7E9EC; }
  section.other-things-to-do .single-tour {
    border: 2px solid transparent; }

section.map {
  padding: 60px 0; }
  section.map .image-map {
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 60px auto; }
    section.map .image-map.mobile {
      display: none; }
  @media (max-width: 767px) {
    section.map .image-map.desktop {
      display: none; }
    section.map .image-map.mobile {
      display: block; } }
  section.map .map-row {
    margin-bottom: 40px; }
    section.map .map-row h3 {
      font-weight: 600;
      margin-bottom: 20px; }
      section.map .map-row h3 img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 12px; }
    section.map .map-row:last-child {
      margin-bottom: 0; }

section.inner-page-header {
  padding: 60px 0; }
  section.inner-page-header .upper-row {
    margin-bottom: 30px; }
    section.inner-page-header .upper-row .tour-name-container .tour-icon {
      display: inline-block;
      vertical-align: bottom;
      margin-right: 30px; }
      @media (max-width: 1024px) {
        section.inner-page-header .upper-row .tour-name-container .tour-icon {
          vertical-align: text-top; } }
    section.inner-page-header .upper-row .tour-name-container .tour-name {
      display: inline-block;
      vertical-align: bottom;
      max-width: calc(100% - 300px);
      width: 100%; }
      section.inner-page-header .upper-row .tour-name-container .tour-name h2 {
        display: block;
        color: #363636;
        font-size: 36px;
        font-weight: 300;
        letter-spacing: 0;
        line-height: 49px;
        margin-bottom: 16px; }
      section.inner-page-header .upper-row .tour-name-container .tour-name .labels .label {
        display: inline-block;
        vertical-align: middle;
        padding: 10px 15px;
        color: #fff;
        font-size: 14px;
        letter-spacing: 0;
        line-height: 19px; }
        section.inner-page-header .upper-row .tour-name-container .tour-name .labels .label .icon {
          display: inline-block;
          vertical-align: top;
          height: 20px;
          margin-right: 4px;
          width: auto; }
        section.inner-page-header .upper-row .tour-name-container .tour-name .labels .label.type-tour {
          color: #363636;
          background-color: #E7E9EC;
          margin-right: 10px; }
        section.inner-page-header .upper-row .tour-name-container .tour-name .labels .label.duration {
          background-color: #2C8888; }
      @media (max-width: 1024px) {
        section.inner-page-header .upper-row .tour-name-container .tour-name {
          vertical-align: text-top; } }
    @media (max-width: 1024px) {
      section.inner-page-header .upper-row .tour-name-container {
        max-width: 100% !important; } }
    section.inner-page-header .upper-row .cta-container a {
      display: inline-block;
      vertical-align: baseline;
      background-color: #9A7F49;
      padding: 12px 24px;
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 27px; }
      section.inner-page-header .upper-row .cta-container a:hover {
        text-decoration: none;
        background-color: #8F7135; }
      section.inner-page-header .upper-row .cta-container a img {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px; }
    @media (max-width: 1024px) {
      section.inner-page-header .upper-row .cta-container {
        padding-top: 30px;
        max-width: 100% !important; } }

section.full-width-image {
  overflow: hidden; }
  section.full-width-image img {
    max-width: 100%;
    width: 100%;
    margin-bottom: -5px; }

section.one-column-text {
  padding: 60px 0; }
  section.one-column-text h3 {
    margin: 40px 0 20px; }
  section.one-column-text ul, section.one-column-text ol {
    padding: 0;
    padding-left: 20px; }
    section.one-column-text ul li, section.one-column-text ol li {
      font-size: 20px;
      letter-spacing: 0;
      line-height: 30px;
      margin-bottom: 20px; }
      section.one-column-text ul li a, section.one-column-text ol li a {
        color: #2C8888;
        text-decoration: underline; }
      section.one-column-text ul li:last-child, section.one-column-text ol li:last-child {
        margin-bottom: 0; }
  section.one-column-text.bg-dark-gray {
    background-color: #6C6F77;
    color: #fff; }
    section.one-column-text.bg-dark-gray a {
      color: #E9C06E; }
  section.one-column-text.bg-light-gray {
    background-color: #DBDBDB; }

section.google-map-and-text {
  padding: 60px 0;
  background-color: #E5E8EF; }
  section.google-map-and-text .text-column {
    padding-right: 40px; }
    section.google-map-and-text .text-column ul, section.google-map-and-text .text-column ol {
      list-style-type: none;
      padding: 0; }
      section.google-map-and-text .text-column ul li, section.google-map-and-text .text-column ol li {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 30px;
        margin-bottom: 20px; }
        section.google-map-and-text .text-column ul li img, section.google-map-and-text .text-column ol li img {
          max-width: 22px;
          width: 100%;
          display: inline-block;
          vertical-align: text-top;
          margin-right: 20px; }
        section.google-map-and-text .text-column ul li span, section.google-map-and-text .text-column ol li span {
          max-width: calc(100% - 42px);
          display: inline-block;
          vertical-align: text-top; }
    @media (max-width: 768px) {
      section.google-map-and-text .text-column {
        padding-right: 0;
        max-width: 100% !important; } }
  @media (max-width: 768px) {
    section.google-map-and-text .map-column {
      padding-top: 20px;
      max-width: 100% !important; }
      section.google-map-and-text .map-column iframe {
        height: 400px !important; } }
  section.google-map-and-text .section-footer {
    padding-top: 60px; }
    section.google-map-and-text .section-footer .column {
      padding-right: 30px; }
      section.google-map-and-text .section-footer .column p {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 30px;
        margin-bottom: 20px; }
        section.google-map-and-text .section-footer .column p .icon {
          max-width: 22px;
          width: 100%;
          display: inline-block;
          vertical-align: text-top;
          margin-right: 20px; }
        section.google-map-and-text .section-footer .column p span {
          max-width: calc(100% - 42px);
          display: inline-block;
          vertical-align: text-top; }
      @media (max-width: 1023px) {
        section.google-map-and-text .section-footer .column {
          max-width: 100% !important;
          padding-right: 0; } }

section.photos-and-videos .photos .photo-column {
  max-width: calc(33.33% - 10px);
  position: relative;
  overflow: hidden;
  height: 380px;
  margin-right: 15px; }
  section.photos-and-videos .photos .photo-column .photo {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat; }
  section.photos-and-videos .photos .photo-column.two-row .photo {
    position: relative;
    height: 183px;
    margin-bottom: 15px;
    background-position: center; }
    section.photos-and-videos .photos .photo-column.two-row .photo:last-child {
      margin-bottom: 0; }
  section.photos-and-videos .photos .photo-column:last-child {
    margin-right: 0; }
  @media (max-width: 768px) {
    section.photos-and-videos .photos .photo-column {
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 15px; }
      section.photos-and-videos .photos .photo-column.two-row {
        height: 775px; }
        section.photos-and-videos .photos .photo-column.two-row .photo {
          height: 380px; } }
section.photos-and-videos .photos-footer,
section.photos-and-videos .video-footer {
  padding: 20px 0 40px;
  text-align: center; }
  section.photos-and-videos .photos-footer a,
  section.photos-and-videos .video-footer a {
    color: #2C8888;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 22px;
    text-decoration: none; }

footer.footer {
  padding: 20px 0 0;
  background-image: url("/staticfiles/Learn/assets/images/TeacherResources/bg-footer.jpg"); }
  footer.footer .footer-links-container .footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    footer.footer .footer-links-container .footer-links li {
      display: block;
      margin-bottom: 10px; }
      footer.footer .footer-links-container .footer-links li a {
        display: block;
        padding: 15px 10px;
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.8);
        text-align: center; }
        footer.footer .footer-links-container .footer-links li a:hover {
          text-decoration: none;
          background-color: #fff; }
      footer.footer .footer-links-container .footer-links li:last-child {
        margin-bottom: 0; }
  footer.footer .footer-logo {
    text-align: center; }
    footer.footer .footer-logo img {
      display: inline-block;
      margin: auto; }
  footer.footer .socials {
    text-align: center; }
    footer.footer .socials .socials-box {
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.55);
      border: 1px black solid; }
      footer.footer .socials .socials-box p a {
        display: inline-block;
        vertical-align: middle; }
        footer.footer .socials .socials-box p a img {
          max-height: 40px; }
      footer.footer .socials .socials-box p.column-header a {
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        color: #b3b3b3; }
        footer.footer .socials .socials-box p.column-header a:hover {
          color: #fff; }
  @media (max-width: 767px) {
    footer.footer .footer-links-container {
      max-width: 100% !important;
      order: 2; }
    footer.footer .footer-logo {
      max-width: 100% !important;
      order: 1; }
    footer.footer .socials {
      max-width: 100% !important;
      order: 3; } }
  footer.footer .bottom-links {
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
    text-align: center; }
    footer.footer .bottom-links a {
      display: inline-block;
      vertical-align: middle;
      padding: 10px;
      color: #b3b3b3;
      text-decoration: none;
      font-family: 'Open Sans', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.4285; }
      footer.footer .bottom-links a:hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: #fff; }
    footer.footer .bottom-links.inner-container-new {
      max-width: 100%;
      width: 100%; }

/** 2024 PAGES **/
section.image-text-banner.blue-section {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 7, 20, 0.6) 0%, rgba(0, 0, 0, 0) 30%), linear-gradient(90deg, #001032 40%, rgba(0, 16, 50, 0) 80%, rgba(0, 16, 50, 0) 100%); }
  section.image-text-banner.blue-section h2 {
    font-family: "Open Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    margin: 0; }
  section.image-text-banner.blue-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: 70%;
    background-position: center right;
    background-repeat: no-repeat; }

@media (max-width: 1099px) {
  section.image-text-banner.blue-section {
    padding: 30px 0 120px;
    background: linear-gradient(180deg, rgba(0, 7, 20, 0.6) 0%, rgba(0, 7, 20, 0.2) 21.46%), linear-gradient(180deg, #001032 48.33%, rgba(0, 16, 50, 0) 74.77%); }
    section.image-text-banner.blue-section .text-content.column-4 {
      max-width: 100%; }
      section.image-text-banner.blue-section .text-content.column-4 h2 {
        /*
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        */ }
    section.image-text-banner.blue-section .bg-image {
      background-size: 100%;
      background-position-y: 20%; }
    section.image-text-banner.blue-section.audience-page {
      padding: 30px 0 30px; } }
@media (max-width: 767px) {
  section.image-text-banner.blue-section .text-content.column-4 h2 {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal; }
  section.image-text-banner.blue-section .bg-image {
    background-position-y: -60%;
    background-position-y: -20%; } }
@media (max-width: 459px) {
  section.image-text-banner.blue-section .bg-image {
    background-position-y: 100%; } }
section.section {
  padding: 60px 0; }
  section.section .header-text {
    margin-bottom: 50px; }
    section.section .header-text .text-content {
      text-align: center; }
      section.section .header-text .text-content h2 {
        font-family: "Open Sans";
        font-size: 34px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0; }
      section.section .header-text .text-content p {
        max-width: 755px;
        max-width: 875px;
        width: 100%;
        font-family: "Open Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        margin: auto;
        margin-top: 20px; }
        section.section .header-text .text-content p a {
          color: #000066; }
          section.section .header-text .text-content p a:hover {
            text-decoration: none; }

@media (max-width: 767px) {
  section.section {
    padding: 30px 0; }
    section.section .header-text {
      margin-bottom: 30px; }
      section.section .header-text .text-content h2 {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; }
      section.section .header-text .text-content p {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 30px; }
        section.section .header-text .text-content p a {
          color: #000066; } }
.boxed-links {
  justify-content: center; }
  .boxed-links .boxed-link {
    border: 1px solid #E7E9EC;
    border-top: none;
    background-color: #fff; }
    .boxed-links .boxed-link .image-container {
      position: relative;
      overflow: hidden;
      display: block;
      max-height: 209px;
      height: 100%;
      text-decoration: none; }
      .boxed-links .boxed-link .image-container img {
        max-width: 100%;
        width: 100%; }
        .boxed-links .boxed-link .image-container img.play-button {
          max-width: unset;
          width: unset;
          transform: unset; }
      .boxed-links .boxed-link .image-container .duration {
        position: absolute;
        bottom: 0;
        right: 0;
        font-family: "Open Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 6px 10px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff; }
      .boxed-links .boxed-link .image-container .play-button {
        position: absolute;
        top: calc(50% - 27px);
        left: calc(50% - 27px); }
      .boxed-links .boxed-link .image-container .gradient-fill {
        position: absolute;
        top: 0;
        max-width: 100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%); }
    .boxed-links .boxed-link .text-container {
      padding: 20px;
      box-sizing: border-box; }
      .boxed-links .boxed-link .text-container .title {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        color: #000066; }
      .boxed-links .boxed-link .text-container .resource-type {
        margin-top: 6px; }
        .boxed-links .boxed-link .text-container .resource-type .icon {
          display: inline-block;
          vertical-align: middle;
          max-width: 16px;
          width: 100%; }
        .boxed-links .boxed-link .text-container .resource-type span {
          font-family: "Open Sans";
          font-size: 12px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
          letter-spacing: 1px;
          text-transform: uppercase;
          margin-left: 6px;
          color: #3F3F3F; }
      .boxed-links .boxed-link .text-container .description {
        margin-top: 6px;
        font-family: "Open Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        /*max-height: 60px;
        overflow: hidden;*/ }
        .boxed-links .boxed-link .text-container .description a {
          color: #000066;
          text-decoration: underline; }
      .boxed-links .boxed-link .text-container .filters {
        margin-top: 8px;
        padding-bottom: 20px;}
        .boxed-links .boxed-link .text-container .filters .filter {
          display: inline-block;
          background-color: #F7F8F9;
          font-family: "Open Sans";
          font-size: 11px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
          letter-spacing: 1px;
          text-transform: uppercase;
          color: #3F3F3F;
          padding: 3px 6px;
          margin-right: 3px;
          margin-top: 6px; }
        .boxed-links .boxed-link .text-container .filters .open-hidden-filters {
          display: block;
          margin: 10px auto;
          position: relative;
          cursor: pointer; }
          .boxed-links .boxed-link .text-container .filters .open-hidden-filters span {
            display: inline-block;
            vertical-align: middle;
            font-family: "Open Sans";
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            color: #000066; }
          .boxed-links .boxed-link .text-container .filters .open-hidden-filters img {
            display: inline-block;
            vertical-align: middle;
            margin-left: 5px; }
          .boxed-links .boxed-link .text-container .filters .open-hidden-filters.active img {
            transform: rotate(180deg); }
        .boxed-links .boxed-link .text-container .filters .hidden-filters {
          display: none; }
    .boxed-links .boxed-link.column-4 {
      max-width: calc(33.33% - 20px);
      width: 100%;
      margin-right: 30px; }
      .boxed-links .boxed-link.column-4:last-child {
        margin-right: 0; }
    .boxed-links .boxed-link.column-6 {
      max-width: calc(50% - 15px);
      width: 100%;
      margin-top: 30px;
      margin-right: 30px; }
      .boxed-links .boxed-link.column-6:nth-child(even) {
        margin-right: 0; }
    .boxed-links .boxed-link.resource-video .image-container img.play-button {
      max-width: unset;
      width: unset;
      transform: unset; }
    .boxed-links .boxed-link.resource-classroom .image-container {
      position: relative;
      background-color: #E7E9EC;
      text-align: center; }
      .boxed-links .boxed-link.resource-classroom .image-container img {
        max-width: 180px;
        width: 100%;
        margin-top: 20px;
        box-shadow: 51.085px 77.509px 26.423px 0px rgba(0, 0, 0, 0), 32.589px 49.324px 23.781px 0px rgba(0, 0, 0, 0.01), 18.496px 28.185px 20.258px 0px rgba(0, 0, 0, 0.05), 7.927px 12.331px 14.973px 0px rgba(0, 0, 0, 0.09), 1.762px 3.523px 7.927px 0px rgba(0, 0, 0, 0.1); }
    .boxed-links .boxed-link.resource-activity .image-container {
      position: relative; }
      .boxed-links .boxed-link.resource-activity .image-container .links-outer {
        max-width: 100%;
        width: 100%;
        padding: 10px 0;
        position: absolute;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex; }
        .boxed-links .boxed-link.resource-activity .image-container .links-outer .link {
          width: fit-content;
          flex: 1 1 auto;
          text-align: center;
          border-right: 1px solid rgba(255, 255, 255, 0.3);
          padding-bottom: 4px; }
          .boxed-links .boxed-link.resource-activity .image-container .links-outer .link img {
            display: inline-block;
            vertical-align: middle;
            max-width: 16px;
            margin-right: 6px; }
          .boxed-links .boxed-link.resource-activity .image-container .links-outer .link span {
            display: inline-block;
            vertical-align: middle;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            color: #fff; }
          .boxed-links .boxed-link.resource-activity .image-container .links-outer .link:last-child {
            border-right: none; }
          .boxed-links .boxed-link.resource-activity .image-container .links-outer .link.column-4 {
            max-width: 33.33%;
            width: 100%;
            border-right: 1px solid #fff;
            padding-bottom: 4px; }
            .boxed-links .boxed-link.resource-activity .image-container .links-outer .link.column-4:last-child {
              border-right: none; }
    .boxed-links .boxed-link:hover .image-container img {
      transform: scale(1.1); }
      .boxed-links .boxed-link:hover .image-container img.play-button {
        transform: unset; }

@media (max-width: 1199px) {
  .boxed-links .boxed-link .image-container {
    max-height: 183px; }
  .boxed-links .boxed-link.column-4 {
    max-width: calc(33.33% - 10px);
    width: 100%;
    margin-right: 15px; }
    .boxed-links .boxed-link.column-4:last-child {
      margin-right: 0; } }
@media (max-width: 1023px) {
  .boxed-links .boxed-link {
    margin-bottom: 15px; }
    .boxed-links .boxed-link .image-container {
      max-height: 200px; }
    .boxed-links .boxed-link.column-4, .boxed-links .boxed-link.column-6 {
      max-width: calc(50% - 8px);
      width: 100%;
      margin-right: 15px; }
      .boxed-links .boxed-link.column-4:last-child, .boxed-links .boxed-link.column-6:last-child {
        margin-right: 0; }
      .boxed-links .boxed-link.column-4:nth-child(even), .boxed-links .boxed-link.column-6:nth-child(even) {
        margin-right: 0; } }
@media (max-width: 767px) {
  .boxed-links .boxed-link {
    margin-bottom: 30px; }
    .boxed-links .boxed-link .image-container {
      max-height: 200px;
      max-height: calc(100% - 137px);
      height: 100%; }
    .boxed-links .boxed-link .text-container {
      padding: 16px;
      margin-top: -5px;
      display: block;
      background: white;
      position: relative;
      z-index: 2; }
      .boxed-links .boxed-link .text-container .title {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal; }
      .boxed-links .boxed-link .text-container .resource-type span {
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: normal; }
      .boxed-links .boxed-link .text-container .description {
        font-size: 12px;
        font-style: normal; }
      .boxed-links .boxed-link .text-container .filters .filter {
        margin-right: 5px; }
    .boxed-links .boxed-link.column-4, .boxed-links .boxed-link.column-6 {
      max-width: 100%;
      width: 100%;
      margin-right: 0; } }
@media (max-width: 462px) {
  .boxed-links .boxed-link {
    margin-bottom: 30px; }
    .boxed-links .boxed-link .image-container {
      max-height: 200px;
      max-height: unset;
      height: unset; }
    .boxed-links .boxed-link .text-container {
      margin-top: -5px; }
    .boxed-links .boxed-link.resource-activity .image-container .links-outer {
      bottom: 5px; }
    .boxed-links .boxed-link.resource-activity .text-container {
      /*margin-top: 0;*/ } }
.main-listings {
  padding: 60px 0;
  padding-top: 40x; }
  .main-listings .filter-box-outer {
    position: relative; }
    .main-listings .filter-box-outer .filter-box-inner {
      position: sticky;
      top: 0; }
      .main-listings .filter-box-outer .filter-box-inner .title-box {
        position: relative;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #E7E9EC; }
        .main-listings .filter-box-outer .filter-box-inner .title-box .title {
          position: relative;
          font-family: "Open Sans";
          font-size: 22px;
          font-style: normal;
          font-weight: 700;
          line-height: normal; }
        .main-listings .filter-box-outer .filter-box-inner .title-box .clear-filters {
          position: absolute;
          top: 7px;
          top: 27px;
          right: 0;
          font-family: "Open Sans";
          font-size: 14px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
          text-decoration-line: underline;
          color: #000066;
          cursor: pointer; }
      .main-listings .filter-box-outer .filter-box-inner .filter-box {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid #E7E9EC; }
        .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-title {
          position: relative;
          cursor: pointer;
          color: #363636; }
          .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-title .title {
            font-family: "Open Sans";
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: normal; }
          .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-title .filter-counter {
            position: absolute;
            top: 0;
            right: 0;
            font-family: "Open Sans";
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            color: #3F3F3F; }
            .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-title .filter-counter span {
              display: inline-block;
              vertical-align: middle; }
            .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-title .filter-counter .open-filters {
              display: inline-block;
              vertical-align: middle;
              cursor: pointer;
              height: 22px;
              width: 22px;
              background-size: cover;
              background-position: center;
              background-repeat: no-repeat;
              background-image: url("/staticfiles/Learn/assets/images/TeacherResources/icon-filters-plus.svg"); }
              .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-title .filter-counter .open-filters.active {
                background-image: url("/staticfiles/Learn/assets/images/TeacherResources/icon-filters-minus.svg"); }
          .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-title.opened {
            color: #002166; }
        .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-fields {
          margin-top: 20px;
          display: none; }
          .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-fields .filter-field {
            margin-bottom: 10px; }
            .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-fields .filter-field input {
              display: inline-block;
              vertical-align: middle;
              margin: 0;
              margin-right: 8px;
              appearance: none;
              border: 1px solid #333;   
              height: 20px;
              width: 20px;
              cursor: pointer; }
              .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-fields .filter-field input:checked {
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-color: #000066;
                background-image: url("/staticfiles/Learn/assets/images/TeacherResources/icon-filters-check.svg"); }
                .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-fields .filter-field input:checked ~ label {
                  font-weight: 600;
                  color: #002166; }
            .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-fields .filter-field label {
              display: inline-block;
              vertical-align: middle;
              font-family: "Open Sans";
              font-size: 14px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
              color: #363636;
              cursor: pointer;
              max-width: calc(100% - 35px);
              width: 100%; }
            .main-listings .filter-box-outer .filter-box-inner .filter-box .filter-fields .filter-field:last-child {
              margin-bottom: 0; }
    .main-listings .filter-box-outer.column-3 {
      max-width: calc(25%);
      width: 100%;
      margin-right: 15px; }
  .main-listings .main-boxed-links {
    padding-top: 20px; }
    .main-listings .main-boxed-links .filters-selected {
      padding: 0 15px;
      margin-bottom: 30px;
      display: none; }
      .main-listings .main-boxed-links .filters-selected .filter {
        display: none;
        vertical-align: middle;
        background-color: #E7E9EC;
        padding: 4px 6px 6px;
        margin-bottom: 5px;
        margin-right: 2px;
        background-color: #f7f8f9;
        padding: 0px 6px 4px 8px; }
        .main-listings .main-boxed-links .filters-selected .filter span {
          display: inline-block;
          vertical-align: middle;
          font-family: "Open Sans";
          font-size: 11px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
          letter-spacing: 1px;
          text-transform: uppercase;
          color: #3F3F3F; }
        .main-listings .main-boxed-links .filters-selected .filter img {
          display: inline-block;
          vertical-align: middle;
          margin-left: 10px;
          cursor: pointer; }
        .main-listings .main-boxed-links .filters-selected .filter.active {
          display: inline-block; }
        .main-listings .main-boxed-links .filters-selected .filter:last-child {
          margin-right: 0; }
    .main-listings .main-boxed-links .boxed-links-outer {
      margin-bottom: 40px; }
      .main-listings .main-boxed-links .boxed-links-outer .title-box h2 {
        display: block;
        max-width: calc(100% - 30px);
        font-family: "Open Sans";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: auto; }
      .main-listings .main-boxed-links .boxed-links-outer .title-box .results-count {
        padding: 0 15px;
        margin-top: 13px;
        font-family: "Open Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #3F3F3F; }
      .main-listings .main-boxed-links .boxed-links-outer .title-box p {
        max-width: calc(100% - 30px);
        margin: auto;
        margin-top: 20px;
        font-family: "Open Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; }
        .main-listings .main-boxed-links .boxed-links-outer .title-box p a {
          color: #000066; }
      .main-listings .main-boxed-links .boxed-links-outer .boxed-links {
        justify-content: stretch; }
        .main-listings .main-boxed-links .boxed-links-outer .boxed-links .boxed-link.column-6 {
          max-width: calc(50% - 30px);
          margin: 0;
          margin-top: 30px;
          margin-left: 15px;
          margin-right: 15px; }
      .main-listings .main-boxed-links .boxed-links-outer:last-child {
        margin-bottom: 0; }
    .main-listings .main-boxed-links.column-9 {
      max-width: calc(75% - 15px);
      width: 100%; }

@media (max-width: 1023px) {
  .main-listings .filter-box-outer {
    padding: 16px;
    border: 1px solid #E7E9EC; }
    .main-listings .filter-box-outer .filter-box-inner .title-box {
      padding-top: 0;
      padding-bottom: 0;
      border-bottom: none; }
      .main-listings .filter-box-outer .filter-box-inner .title-box .title {
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding-left: 34px;
        cursor: pointer; }
        .main-listings .filter-box-outer .filter-box-inner .title-box .title::before {
          content: url("/staticfiles/Learn/assets/images/TeacherResources/icon-mobile-filters-chevron.svg");
          position: absolute;
          top: 0;
          left: 0;
          height: 24px; }
        .main-listings .filter-box-outer .filter-box-inner .title-box .title.open-filter-box::before {
          transform: rotate(180deg); }
      .main-listings .filter-box-outer .filter-box-inner .title-box + .filter-box {
        margin-top: 20px; }
      .main-listings .filter-box-outer .filter-box-inner .title-box .clear-filters {
        top: 2px; }
    .main-listings .filter-box-outer .filter-box-inner .filter-box {
      padding: 16px 0;
      border: 1px solid #E7E9EC;
      border-left: none;
      border-right: none;
      border-bottom: none; }
      .main-listings .filter-box-outer .filter-box-inner .filter-box:last-child {
        padding-bottom: 0;
        border-bottom: none; }
    .main-listings .filter-box-outer.column-3 {
      max-width: 100%;
      width: 100%;
      margin-right: 0; }
    .main-listings .filter-box-outer.active-mobile .filter-box {
      display: block; }
  .main-listings .main-boxed-links {
    padding: 60px 0; }
    .main-listings .main-boxed-links .filters-selected {
      padding: 0; }
    .main-listings .main-boxed-links .boxed-links-outer .title-box h2 {
      margin: 0; }
    .main-listings .main-boxed-links .boxed-links-outer .title-box .results-count {
      padding: 0; }
    .main-listings .main-boxed-links .boxed-links-outer .boxed-links .boxed-link.column-6 {
      max-width: calc(50% - 15px);
      margin-left: 0;
      margin-right: 30px; }
      .main-listings .main-boxed-links .boxed-links-outer .boxed-links .boxed-link.column-6:nth-child(even) {
        margin-right: 0; }
    .main-listings .main-boxed-links.column-9 {
      max-width: 100%;
      width: 100%; } }
@media (max-width: 767px) {
  .main-listings {
    padding: 30px 0; }
    .main-listings .main-boxed-links {
      padding: 30px 0; }
      .main-listings .main-boxed-links .filters-selected {
        padding: 0;
        margin-bottom: 30px; }
      .main-listings .main-boxed-links .boxed-links-outer .title-box h2 {
        margin: 0; }
      .main-listings .main-boxed-links .boxed-links-outer .title-box .results-count {
        padding: 0;
        margin-top: 20px; }
      .main-listings .main-boxed-links .boxed-links-outer .boxed-links .boxed-link.column-6 {
        max-width: calc(100%);
        margin-left: 0;
        margin-right: 0; }
        .main-listings .main-boxed-links .boxed-links-outer .boxed-links .boxed-link.column-6:nth-child(even) {
          margin-right: 0; } }
.scroll-back-top {
  cursor: pointer;
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 10; }

/*# sourceMappingURL=main.css.map */
