:root {
  --primary-color: #051f7e;
  --secondary-color: #002365;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

.cursive {
  font-family: "Dancing Script", serif;
}

.container-fluid {
  padding: 0 70px;
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  .container-fluid {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .container-fluid {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.site-btn {
  background: var(--secondary-color);
  padding: 16px 28px;
  display: inline-block;
  color: #fff;
  display: inline-block;
  color: #fff;
  font-size: 17px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .site-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}
.site-btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #011946;
  transition: all 0.3s ease;
  z-index: -1;
}
.site-btn:hover::before {
  width: 100%;
}

#main-content {
  font-size: 18px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #main-content {
    padding: 40px 0;
    font-size: 16px;
  }
}
#main-content h1,
#main-content h2,
#main-content h3,
#main-content h4,
#main-content h5,
#main-content h6 {
  margin: 0 0 15px;
}
#main-content p:not(:last-child) {
  margin-bottom: 15px;
}
#main-content p a {
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 500;
}
#main-content ul:not(.wp-block-social-links) {
  margin-left: 20px;
}
#main-content ul:not(.wp-block-social-links) li {
  list-style: disc;
}
#main-content ul:not(.wp-block-social-links) li:not(:last-child) {
  margin-bottom: 5px;
}

.reveal {
  position: relative;
  overflow: hidden;
}

.single-content {
  background: #fff;
  padding: 40px 40px;
  position: relative;
  z-index: 9;
  margin-top: -80px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 1000;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

p {
  margin: 0;
}

/*============================================================
TOP HEADER STYLES
============================================================*/
.top-header {
  background: #fff;
  font-size: 14px;
}
.top-header .site-btn {
  padding: 14px 24px;
  font-size: 16px;
}
.top-header .social {
  padding-right: 20px;
}
.top-header .social li:not(:last-child) {
  margin-right: 15px;
}
.top-header .social li a {
  font-size: 20px;
}
.top-header .social li a i {
  color: var(--primary-color);
}

.top-header ul li:not(:last-child) {
  margin-right: 30px;
}
.top-header ul li i {
  margin-right: 3px;
  color: var(--secondary-color);
}

/*============================================================
PAGE HEADER STYLES
============================================================*/
.logged-in .page-header {
  top: 32px;
}

.page-header {
  position: sticky;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 999;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.page.home .page-header {
  position: fixed;
  transform: translateY(-100%);
  transition: all 0.4s ease;
}
.page.home .page-header.active {
  transform: translateY(0);
}

.site-logo > a {
  display: block;
  max-width: 180px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .site-logo > a {
    max-width: 160px;
  }
}

.site-navigation.active {
  right: 0;
}
@media screen and (max-width: 767px) {
  .site-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    background: #fff;
    height: 100%;
    width: 100%;
    padding: 80px 30px;
    z-index: 999;
    transition: all 0.3s ease;
  }
}
.site-navigation > ul > li {
  position: relative;
}
.site-navigation > ul > li:not(:last-child) {
  margin-right: 25px;
  border-right: 1px solid #e3dcdc;
  padding-right: 25px;
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  .site-navigation > ul > li:not(:last-child) {
    margin-right: 18px;
    padding-right: 18px;
  }
}
@media screen and (max-width: 767px) {
  .site-navigation > ul > li:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e3dcdc;
  }
}
.site-navigation > ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.site-navigation > ul > li .sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #fff;
  min-width: 230px;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .site-navigation > ul > li .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    background: #f9f6f6;
    padding: 20px;
  }
}
.site-navigation > ul > li .sub-menu li:not(:last-child) {
  margin-bottom: 8px;
}
.site-navigation > ul > li > a {
  display: inline-block;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  .site-navigation > ul > li > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .site-navigation > ul > li > a {
    font-size: 16px;
    padding: 8px 0;
  }
}
.site-navigation > ul > li:hover > a {
  color: var(--primary-color);
}
.site-navigation > ul > li.current-menu-item > a {
  color: var(--primary-color);
}

.check-availability {
  margin-left: 50px;
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  .check-availability {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .check-availability {
    margin-left: 0;
    margin-top: 20px;
  }
}

.navbar-toggle {
  width: 50px;
  padding: 0;
  background: none;
  float: right;
  display: none;
}
@media screen and (max-width: 767px) {
  .navbar-toggle {
    display: block;
  }
}

.navbar-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 44px;
  padding: 10px;
}

.site-footer {
  background: #191818;
  padding: 80px 0 40px;
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 40px 0 20px;
  }
}
.site-footer__bottom {
  padding: 15px 20px;
  background: #262323;
  margin: 40px 0 0;
  color: #e7e0e0;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom {
    margin-top: 30px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__bottom p {
    margin: 0 0 5px;
    font-size: 14px;
  }
}
.site-footer__bottom p a {
  color: #e7e0e0;
  text-decoration: underline;
}
.site-footer .footer-block span.divider {
  width: 48%;
  height: 1px;
  background: #393636;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .site-footer .footer-block span.divider {
    width: 20%;
  }
}
.site-footer .footer-block h4 {
  margin: 0 0 15px;
}
.site-footer .footer-block ul {
  color: #ddd;
}
@media screen and (max-width: 767px) {
  .site-footer .footer-block ul {
    font-size: 14px;
  }
}
.site-footer .footer-block ul.social li:not(:last-child) {
  margin-right: 10px;
}
.site-footer .footer-block ul.social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #452c2c;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.site-footer .footer-block ul.social li a i {
  margin-right: 0;
  color: #ffffff;
}
.site-footer .footer-block ul.social li:hover a {
  background: var(--secondary-color);
}
.site-footer .footer-block ul li:not(:last-child) {
  margin-bottom: 7px;
}
.site-footer .footer-block ul li a {
  color: #ddd;
  transition: all 0.3s ease;
}
.site-footer .footer-block ul li:hover a {
  color: #ffffff;
}
.site-footer .footer-block ul li i {
  margin-right: 5px;
  color: #fff;
}
.site-footer .footer-block p {
  color: #ddd;
}
.site-footer .footer-block--special {
  padding-right: 70px;
}
@media screen and (max-width: 767px) {
  .site-footer .footer-block--special {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-right: 0;
  }
}

.social {
  margin: 40px 0 0;
}

.section-home-leadspace {
  height: 100dvh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-home-leadspace {
    height: 50vh;
  }
}
.section-home-leadspace::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
}
.section-home-leadspace .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.section-home-leadspace .swiper-slide img {
  height: 100vh;
  object-fit: cover;
}
.section-home-leadspace .content {
  margin: 90px 0 0;
}
.section-home-leadspace .content .divider {
  display: block;
  height: 70px;
  width: 1px;
  background: #ddd;
  margin: 30px auto;
  animation: grow 1s ease-in-out forwards;
}
@media screen and (max-width: 767px) {
  .section-home-leadspace .content .divider {
    height: 30px !important;
  }
}
@keyframes grow {
  0% {
    height: 0;
  }
  100% {
    height: 70px;
  }
}
.section-home-leadspace .content h1 span {
  color: #0096A5;
}
.section-home-leadspace .content p {
  font-size: 18px;
}
.section-home-leadspace.section-contact-leadspace {
  height: 280px;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .section-home-leadspace.section-contact-leadspace {
    height: 160px;
    padding: 30px 0;
  }
}
.section-home-leadspace.section-contact-leadspace::before {
  background: rgba(0, 25, 73, 0.54);
}
.section-home-leadspace.section-contact-leadspace .swiper-slide img {
  height: auto;
}
.section-home-leadspace.section-contact-leadspace .content {
  margin-top: 0;
}
.section-home-leadspace.section-contact-leadspace .content .divider {
  height: 30px;
  animation: grow2 1s ease-in-out forwards;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .section-home-leadspace.section-contact-leadspace .content .divider {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .section-home-leadspace.section-contact-leadspace .content p {
    display: none;
  }
}
@keyframes grow2 {
  0% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}

.swiper-scale-effect .swiper-slide-cover {
  transition-timing-function: linear;
  transition-duration: 20s;
  transform: scale(1);
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1.3);
}

.section-choose-us {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .section-choose-us {
    padding: 40px 0;
  }
}

.section-heading {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: 30px;
  }
}
.section-heading h2 {
  color: var(--primary-color);
}
.section-heading p {
  margin: 10px 0 0;
  font-size: 24px;
  color: #767272;
  font-family: "Dancing Script";
}
@media screen and (max-width: 767px) {
  .section-heading p {
    font-size: 20px;
  }
}

.ship-thumb {
  margin: 0 auto 10px;
  max-width: 50px;
}

.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .choose-us-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose-us-grid .choose-grid-column {
  text-align: center;
  padding: 40px 40px;
}
@media screen and (max-width: 767px) {
  .choose-us-grid .choose-grid-column {
    padding: 20px 20px;
  }
}
.choose-us-grid .choose-grid-column:nth-of-type(odd) {
  background: #e7e7e7;
}
.choose-us-grid .choose-grid-column:nth-of-type(3n) {
  border-right: 0;
}
.choose-us-grid .choose-grid-column h3 {
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 24px;
}
.choose-us-grid .choose-grid-column p {
  color: #6e6565;
}
.choose-us-grid .choose-grid-column figure {
  max-width: 100px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .choose-us-grid .choose-grid-column figure {
    max-width: 70px;
  }
}

.section-rooms {
  background: #141414 url("https://www.boothbaylodging.com/wp-content/uploads/2023/08/IMG_9921-2-scaled.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-rooms {
    padding: 40px 0;
  }
}
.section-rooms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212121;
  opacity: 0.9;
}
.section-rooms .section-heading p {
  color: #d8d1d1;
  margin-top: 0;
}

.card-room {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card-room {
    margin-bottom: 20px;
  }
}
.card-room > a {
  position: relative;
}
.card-room__thumbnail img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .card-room__thumbnail img {
    height: 240px;
  }
}
.card-room__info {
  position: absolute;
  width: 100%;
  z-index: 9;
  display: block;
  padding: 30px 30px 40px 40px;
  color: #fff;
  left: 0;
  bottom: 0;
  backface-visibility: hidden;
  transform: translate(0, 0);
  transition: all 0.4sease;
  background: transparent;
  background: linear-gradient(to bottom, transparent, #000);
}
@media screen and (max-width: 767px) {
  .card-room__info {
    padding: 20px 30px 30px 30px;
  }
}

.section-introduction {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .section-introduction {
    padding: 40px 0;
  }
}
.section-introduction figure img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .section-introduction figure img {
    height: 250px;
  }
}
.section-introduction .intro-content {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .section-introduction .intro-content {
    margin-top: 30px;
    padding-left: 0;
  }
}
.section-introduction .intro-content h2 {
  margin: 0 0 30px;
  position: relative;
  padding-bottom: 30px;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .section-introduction .intro-content h2 {
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
}
.section-introduction .intro-content h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 90px;
  height: 4px;
  background: var(--secondary-color);
}
.section-introduction .intro-content p {
  font-size: 18px;
  color: #3d3a3a;
}
@media screen and (max-width: 767px) {
  .section-introduction .intro-content p {
    font-size: 16px;
  }
}

.section-explore {
  padding: 100px 0;
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .section-explore {
    padding: 40px 0;
  }
}
.section-explore .explore-column figure img {
  height: 580px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .section-explore .explore-column figure img {
    height: 300px;
  }
}
.section-explore .explore-column__info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 21%, rgba(0, 0, 0, 0.89) 80.01%, #000);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 60px;
}
@media screen and (max-width: 767px) {
  .section-explore .explore-column__info {
    padding: 20px 30px;
  }
}
.section-explore .explore-column__info .inner {
  width: 80%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-explore .explore-column__info .inner {
    width: 100%;
  }
}
.section-explore .explore-column__info .inner h3 {
  margin: 0 0 15px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .section-explore .explore-column__info .inner h3 {
    font-size: 24px;
  }
}
.section-explore .explore-column__info .inner p {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .section-explore .explore-column__info .inner p {
    display: none;
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 24px;
  }
}

.section-testimonials {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section-testimonials {
    padding: 40px 0;
  }
}
.section-testimonials .card-testimonials {
  background: #e7e7e7;
  padding: 35px 30px;
}
.section-testimonials .card-testimonials h4 {
  margin: 20px 0 0;
  color: var(--primary-color);
  font-size: 22px;
}
.section-testimonials .swiper-wrapper {
  transition-timing-function: linear !important;
}
.section-testimonials .swiper-slide {
  height: auto;
}
.section-testimonials .swiper-slide .card-testimonials {
  height: 100%;
}

span.reviews-star {
  color: #cabc3c;
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
}

.testimonial-block {
  background: var(--secondary-color);
  padding: 0 35px 35px;
  border-radius: 10px;
  color: #fff;
}

.div-blockquote {
  background: #e6e6e6;
  padding: 30px 30px;
  border-radius: 10px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: normal;
  font-weight: 600;
}

.section-contact {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section-contact {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-contact figure {
    margin: 30px 0 0;
  }
}
.section-contact figure img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .section-contact figure img {
    height: auto;
  }
}
.section-contact .content {
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .section-contact .content {
    padding-right: 0;
  }
}
.section-contact .content h3 {
  margin: 0 0 30px;
  font-size: 32px;
  color: var(--primary-color);
}
.section-contact .content p:not(:last-child) {
  margin-bottom: 15px;
}
.section-contact .content p a {
  text-decoration: underline;
  color: var(--primary-color);
}
.section-contact .content .divider {
  border-top: 1px solid #e4dcdc;
  margin: 30px 0 0;
  padding: 20px 0 0;
}
.section-contact .content .block:not(:last-child) {
  margin: 0 0 20px;
}
.section-contact .content .block h4 {
  margin: 0 0 5px;
  font-size: 22px;
}

.section-form-submission {
  background: #f6f6f6;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .section-form-submission {
    padding: 40px 0;
  }
}
.section-form-submission h2 {
  font-size: 34px;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .section-form-submission h2 {
    font-size: 28px;
  }
}
.section-form-submission form {
  margin: 40px 0 0;
}
.section-form-submission form .form-group {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section-form-submission form .form-group {
    margin-bottom: 20px;
  }
}
.section-form-submission form label {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .section-form-submission form label {
    font-size: 16px;
  }
}
.section-form-submission form textarea.form-control {
  height: 280px;
  resize: none;
}
@media screen and (max-width: 767px) {
  .section-form-submission form textarea.form-control {
    height: 200px;
  }
}
.section-form-submission form .form-control {
  height: 50px;
  border-radius: 0px;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .section-form-submission form .form-control {
    height: 45px;
  }
}
.section-form-submission form .form-control:focus {
  box-shadow: none;
}
.section-form-submission form .site-btn {
  padding: 14px 34px;
}

button {
  border: none;
}

iframe {
  display: block;
}

.content-inner {
  margin-left: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 4px #ddd;
  border-top: 5px solid var(--primary-color);
}
@media screen and (max-width: 767px) {
  .content-inner {
    margin: 30px 0 0;
  }
}
.content-inner .block:not(:last-child) {
  margin-bottom: 25px;
}
.content-inner .block-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.content-inner .block-list ul li {
  margin-bottom: 0 !important;
}
.content-inner h4 {
  margin: 0 0 15px;
  font-weight: 800;
  font-size: 22px;
}
.content-inner ul {
  margin-left: 20px;
}
.content-inner ul li {
  list-style: disc;
}
.content-inner ul li:not(:last-child) {
  margin-bottom: 5px;
}

.section-layout-3by3grid {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .section-layout-3by3grid {
    padding: 40px 0;
  }
}
.section-layout-3by3grid .content-room {
  margin-bottom: 50px;
}
.section-layout-3by3grid .content-room h2 {
  margin: 0 0 20px;
}
.section-layout-3by3grid .content-room p {
  margin: 0 0 10px;
}
.section-layout-3by3grid figure img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .section-layout-3by3grid figure img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.section-layout-3by3grid .grid-column__details {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .section-layout-3by3grid .grid-column__details {
    padding-left: 0;
  }
}
.section-layout-3by3grid .grid-column__details h3 {
  margin: 0 0 15px;
}
.section-layout-3by3grid .grid-column__details p {
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .section-layout-3by3grid .grid-column__details p {
    margin-bottom: 20px;
  }
}
.section-layout-3by3grid .row-room:not(:last-child) {
  margin-bottom: 40px;
}
.section-layout-3by3grid .row-room:nth-of-type(even) {
  flex-direction: row-reverse;
}
.section-layout-3by3grid .row-room:nth-of-type(even) .grid-column__details {
  padding-left: 0;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .section-layout-3by3grid .row-room figure {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content-inner .block-list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-featured-thumbnails {
  padding: 0 0 80px;
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .section-featured-thumbnails {
    padding: 40px 0;
  }
}
.section-featured-thumbnails .featured-logo-grid .logo-grid-col figure {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 5px;
  padding: 20px 20px;
}
.section-featured-thumbnails .swiper-pagination {
  position: static;
  margin: 30px 0 0;
}

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