@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&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;
}

/** 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: 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;
}

/*********************** style to render Visit H2 headers white on grey background ***********************/
.VisitHeader h2 {
  color: #ffffff !important;
}

/*********************** end of style to render Visit H2 headers white on grey background ***********************/
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;
}

.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: rgb(242, 242, 242);
  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/Visit/assets/images2/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 {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
section.main-header .bottom-row .nav-list li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
@media (max-width: 499px) {
  section.main-header .bottom-row .nav-list li {
    display: block;
  }
}
section.main-header .bottom-row .nav-list li a {
  display: block;
  font-size: 15.4px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 21px;
  padding: 17px;
  border-bottom: 3px solid transparent;
}
section.main-header .bottom-row .nav-list li a.with-icon {
  padding: 9px 17px;
}
section.main-header .bottom-row .nav-list li a.active, section.main-header .bottom-row .nav-list li a:hover {
  color: #E9C06E;
  text-decoration: none;
  border-bottom: 3px solid #E9C06E;
}
section.main-header .bottom-row .nav-list li a.active img, section.main-header .bottom-row .nav-list li a:hover img {
  filter: invert(78%) sepia(23%) saturate(871%) hue-rotate(353deg) brightness(350%) contrast(83%);
}

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: 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;
  }
}

@media (max-width: 584px) {
  section.inner-page-header .upper-row .tour-name-container .tour-name {
    display: block !important;
    width: 100% !important;
    max-width: 100%;
  }
}
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;
  background-image: url("/staticfiles/Visit/assets/images2/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;
  }
}

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