:root {
  --black: #110102;
  --white-70: #ffffffb3;
  --white: white;
  --red: #f20000;
  --dark-red: #99050c;
  --trasparent: #fff0;
  --maroon: #270205;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--black);
  color: var(--white-70);
  font-family: Saira, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6rem;
}

h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.5rem;
}

h2 {
  width: 100%;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2rem;
}

h3 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 3rem;
}

h4 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.6rem;
}

h5 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
}

h6 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4rem;
}

p {
  width: 100%;
  margin-bottom: 10px;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  text-decoration: underline;
}

label {
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

strong {
  color: var(--white);
  font-weight: 700;
}

blockquote {
  border-left: 5px solid var(--red);
  background-color: var(--black);
  color: var(--white);
  text-align: left;
  margin-bottom: 10px;
  padding: 20px 40px;
  font-size: 18px;
  line-height: 22px;
}

.nav-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6rem;
  display: flex;
  position: static;
}

.container {
  width: 100%;
  max-width: 1680px;
  height: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: static;
}

.container.hero {
  position: relative;
}

.container.password {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  display: flex;
}

.brand-image {
  order: -1;
  max-height: 60px;
  padding-right: 14px;
}

.navbar {
  background-color: #ddd0;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.brand {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
  inset: 0% auto 0% 0%;
}

.brand.w--current {
  position: static;
}

.brand.footer {
  display: block;
  position: static;
}

.menu-button {
  position: static;
}

.header-wrap {
  justify-content: space-between;
  align-items: center;
  height: auto;
  position: static;
}

.nav-link {
  background-color: var(--trasparent);
  color: var(--white);
  text-align: center;
  border-radius: 12px;
  padding: 0;
  font-size: 1rem;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--red);
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--red);
}

.button {
  border: 1px solid var(--red);
  background-color: var(--red);
  background-image: linear-gradient(90deg, var(--red), var(--dark-red));
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  padding: 14px 42px;
  font-size: 1rem;
  font-weight: 600;
  transition: color .2s, background-color .2s;
}

.button:hover {
  background-color: var(--trasparent);
  color: var(--white);
  background-image: none;
  text-decoration: none;
}

.button.w--current:hover {
  text-decoration: none;
}

.button.outline {
  border-color: var(--white);
  background-color: var(--trasparent);
  background-image: none;
}

.button.outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.button.white {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  background-image: none;
  margin-top: 0;
  padding-left: 16px;
  padding-right: 16px;
}

.button.white:hover {
  background-color: var(--trasparent);
  color: var(--white);
}

.button.white.tablet {
  display: none;
}

.button.white.desktop {
  font-size: .8rem;
}

.button._404 {
  margin-top: 40px;
}

.nav-button-wrap {
  order: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
  inset: 0% 0% 0% auto;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section.home-hero {
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: 35vw;
  padding-top: 41px;
  padding-bottom: 41px;
  display: flex;
}

.section.footer {
  background-color: #00000069;
  padding-top: 40px;
  padding-bottom: 0;
}

.section.hero-contact {
  padding-top: 0;
  padding-bottom: 0;
}

.section.no-top-padding, .section.no-padd {
  padding-top: 0;
}

.section.hero {
  justify-content: flex-start;
  align-items: center;
  height: 30vw;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.section.home-salcombe {
  background-image: url('../images/About-salcombe-1920-700-01.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 30vw;
  display: flex;
}

.section.min-bottom-padding {
  padding-bottom: 20px;
}

.up-title {
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 500;
}

.up-title.align-lright {
  text-align: right;
}

.hero-content {
  max-width: 825px;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.9rem;
}

.button-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 20px;
}

.hero-wrap {
  background-image: linear-gradient(90deg, #000000cf 15%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/Home-2026-1920-800-01.jpg');
  object-position: 50% 50%;
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  height: auto;
  overflow: hidden;
}

.hero-wrap.contacth {
  background-image: linear-gradient(90deg, #000000cf 15%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/Contact-1920-800-01.jpg');
}

.hero-wrap.about {
  background-image: linear-gradient(90deg, #000000cf 15%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/The-school-1920-800-01.jpg');
}

.hero-wrap.about-salcombe {
  background-image: linear-gradient(90deg, #000000cf 16%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/About-salcombe-1920-700-02.jpg');
}

.hero-wrap.gallery {
  background-image: linear-gradient(90deg, #000000cf 15%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/Gallery-1920-800-02.jpg');
  background-position: 0 0, 0 0, 50% 0;
}

.hero-wrap.courses-2 {
  background-image: linear-gradient(90deg, #1c1c1cb8, #000000cf 17%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/Courses-1920-800-03.jpg');
  background-image: linear-gradient(90deg, #000000cf 16%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/Courses-1920-800-03.jpg');
}

.hero-wrap.black-and-white {
  background-image: linear-gradient(90deg, #000000cf 15%, var(--trasparent)), linear-gradient(to bottom, transparent, transparent), url('../images/Home-2026-1920-800-02.jpg');
}

.facility-card {
  border: 1px solid var(--trasparent);
  height: 400px;
  color: var(--white);
  cursor: pointer;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  text-decoration: none;
  display: flex;
  position: relative;
}

.facility-card:hover {
  text-decoration: none;
}

.red-line {
  z-index: 5;
  background-color: var(--red);
  width: 70px;
  height: 3px;
  position: relative;
}

.facility-content {
  background-image: linear-gradient(0deg, var(--maroon), var(--trasparent));
  flex-flow: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 30px;
  display: flex;
  position: relative;
}

.facility-image {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.facilities-2-column-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.facilities-2-column-grid.no-top-padding {
  margin-top: 0;
}

.title-center {
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.align-center {
  text-align: center;
}

.align-center.second-booking-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
}

.slide-left-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.slide-right-block {
  flex: 1;
  overflow: hidden;
}

.slider {
  background-color: var(--trasparent);
  border-radius: 10px;
  height: 460px;
  overflow: hidden;
}

.slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}

.slide-nav {
  justify-content: center;
  align-items: center;
  font-size: 12px;
  display: none;
}

.slide-left-move-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.slider-arrow-icon {
  color: var(--red);
  font-family: Material Icons, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 4rem;
  transition: opacity .7s cubic-bezier(.23, 1, .32, 1);
}

.slider-arrow-icon:hover {
  opacity: .5;
  color: var(--dark-red);
}

.slide-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  border-radius: 10px;
  height: 100%;
  padding: 20px 72px;
  display: flex;
}

.slider-arrow {
  justify-content: center;
  align-items: center;
  width: 60px;
  display: flex;
}

.testimonial-title {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.3rem;
}

.testimonial-title.about {
  font-size: 1.4rem;
  line-height: 1.9rem;
}

.testimonial-name {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3rem;
}

.testimonial-name.about {
  color: var(--red);
  text-align: left;
  font-size: 1.1rem;
}

.testimonial-text {
  margin-bottom: 20px;
  font-size: 1rem;
}

.cta-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  place-items: stretch stretch;
}

.cta-image {
  object-fit: cover;
  width: 50%;
  height: auto;
}

.cta-left-column {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.cta-image-shadow {
  background-image: linear-gradient(0deg, var(--black), var(--trasparent));
  width: 100%;
  height: 30%;
  position: absolute;
  inset: auto 0% 0%;
}

.cta-right-column {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-field {
  background-color: #ffffff40;
  border: 1px solid #ffffff4d;
  height: 50px;
}

.password-form-block {
  flex-flow: column;
  display: flex;
}

.footer-menu-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-menu-link {
  color: var(--white);
  text-decoration: none;
}

.footer-menu-link:hover {
  color: var(--red);
  text-decoration: none;
}

.social-media {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.social-icon {
  height: 20px;
}

.social-icon.whatsapp {
  height: 32px;
}

.social-icon-bg {
  background-color: #ffffff40;
  border-radius: 50px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}

.social-icon-bg:hover {
  background-color: var(--red);
}

.divider {
  background-color: #fff;
  width: 100%;
  height: 1px;
}

.divider.about {
  background-color: #ffffff40;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-text-bottom {
  text-align: center;
  font-size: .9rem;
}

.footer-text-bottom.left-align {
  text-align: left;
}

.footer-text-bottom.right-align {
  text-align: right;
}

.about-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  place-items: center stretch;
  margin-top: 40px;
}

.about-grid._3-team {
  grid-template-columns: 1fr 1fr 1fr;
}

.about-image.team-2 {
  filter: grayscale();
  margin-bottom: 20px;
}

.about-content {
  width: 100%;
}

.testimonial-icon {
  width: 26px;
  height: auto;
}

.icon-shape {
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.about-testimonial {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.facility-description {
  z-index: 5;
  margin-top: 20px;
  position: relative;
}

.footer-grid {
  border-bottom: 1px solid #ffffff26;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  padding-bottom: 30px;
}

.body {
  font-family: Lato, sans-serif;
}

.hover-overlay {
  z-index: 0;
  background-image: linear-gradient(180deg, var(--trasparent), #f2000082);
  position: absolute;
  inset: 0%;
}

.facility-title {
  z-index: 5;
  line-height: 1.9rem;
  position: relative;
}

.utility-page-wrap {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.utility-page-content {
  background-color: var(--maroon);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding: 40px;
  display: flex;
}

.text-block {
  font-size: 1.3rem;
}

.padding-top-0px {
  margin-top: 0;
}

.contact-form-wrap {
  align-items: stretch;
  width: 100%;
  max-width: 600px;
}

.rya-hero-image {
  width: 120px;
  margin-bottom: 15px;
}

.contacts-content-wrapper {
  padding: 40px;
}

.contacts-content-wrapper.no-padding-left {
  padding-left: 0;
}

.in-section-title {
  margin-top: 0;
}

.contacts-wrapp {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  flex-flow: column wrap;
  margin-top: 30px;
  display: flex;
}

.contacts-detail-footer {
  display: flex;
}

.contacts-icon-contact-us {
  color: #ff3d00;
  width: 25px;
  height: 25px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
}

.contacts-icon-contact-us.map {
  margin-top: -2px;
}

.phone-link {
  color: #fff;
  font-weight: 400;
}

.phone-link:hover {
  color: var(--red);
}

.map-link {
  color: var(--red);
  font-weight: 400;
}

.map-link:hover {
  color: #ff3d00;
}

.code-embed {
  margin-bottom: -10px;
}

.footer-copyright-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  padding-top: 19px;
  padding-bottom: 19px;
  display: grid;
}

.button-center-div {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.button-center-div.phones-only {
  justify-content: flex-start;
  align-items: center;
}

.main-section {
  text-align: center;
  padding: 50px 40px;
  position: relative;
}

.main-section.no-top {
  padding-top: 0;
}

.main-container {
  max-width: 1200px;
}

.mainheaderh2centerservices-2 {
  float: none;
  perspective-origin: 50%;
  width: 48%;
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  background-color: #0000;
  margin: 0 auto 20px 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 29px;
  font-weight: 400;
  line-height: 35px;
  text-decoration: none;
  display: block;
}

.main-privacy-text {
  float: none;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  display: block;
}

.main-privacy-title {
  color: var(--white);
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.bold-text-pp {
  color: #000;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.about-title-holder {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 11px;
  display: flex;
}

.about-boat-grid-holder {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.boat-image {
  width: 100%;
}

.boat-text-div {
  background-color: var(--white);
  padding: 41px;
}

.boat-title {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 2rem;
}

.boat-small-title {
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2rem;
}

.boat-text {
  color: #000000b3;
}

.home-salcombe-container-div {
  background-image: linear-gradient(#00000080, #00000080);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.project-grid-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-image-gallery {
  object-fit: cover;
  width: 100%;
  height: 20vw;
}

.course-icon-holder-div {
  width: 100%;
  margin-top: 17px;
  margin-bottom: 17px;
  display: flex;
}

.course-icon-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-right: 30px;
  display: flex;
}

.course-icons {
  width: 70px;
}

.course-icon-text {
  text-align: center;
  font-size: .8rem;
  line-height: 1.2rem;
}

.the-school-title {
  width: 60%;
}

.div-ribs-for-kids-grid {
  grid-column-gap: 29px;
  grid-row-gap: 29px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-small {
  font-size: .9rem;
}

.spacer {
  width: 100%;
  height: 10px;
}

.spacer._30 {
  height: 30px;
}

@media screen and (min-width: 1440px) {
  .contacts-wrapp {
    grid-column-gap: 50px;
  }

  .main-container {
    max-width: 1680px;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: var(--black);
    flex-flow: column;
    width: 100%;
    padding: 20px;
    display: flex;
  }

  .icon {
    background-color: var(--dark-red);
    color: var(--white);
    padding: 15px;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .icon:hover {
    background-color: var(--black);
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.password {
    height: 50vh;
  }

  .navbar {
    z-index: 100;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
  }

  .brand {
    position: relative;
  }

  .brand.footer {
    text-align: center;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: var(--trasparent);
  }

  .header-wrap {
    justify-content: space-between;
    align-items: stretch;
  }

  .nav-link {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .button.white.tablet {
    display: block;
  }

  .button.white.desktop {
    display: none;
  }

  .nav-button-wrap {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    margin-top: 10px;
    position: relative;
  }

  .section.home-hero {
    height: auto;
    transform: translate(0);
  }

  .section.hero-contact, .section.hero {
    transform: translate(0);
  }

  .section.home-salcombe {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-wrap {
    overflow: visible;
  }

  .facilities-2-column-grid {
    grid-template-columns: 1fr;
  }

  .social-media {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid.chris, .about-grid._3-team {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer-grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }

  .contacts-content-wrapper {
    width: 100%;
  }

  .main-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mainheaderh2centerservices-2 {
    width: 452px;
  }

  .heading {
    font-size: 2.7rem;
    line-height: 3.2rem;
  }

  .about-boat-grid-holder {
    place-items: start center;
  }

  .boat-text-div {
    padding-left: 22px;
    padding-right: 22px;
  }

  .project-grid-div {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .project-image-gallery {
    height: 24vw;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 2rem;
    line-height: 2.6rem;
  }

  h4 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .brand.w--current {
    padding-left: 0;
  }

  .section.hero {
    height: auto;
    min-height: 30vw;
  }

  .section.home-salcombe {
    padding-left: 23px;
    padding-right: 23px;
  }

  .up-title.align-lright.alighn-left-mobile {
    text-align: left;
  }

  .hero-text {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }

  .hero-wrap {
    background-image: linear-gradient(90deg, #000000cf 15%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/049485_6dc62c00ba4241ef994b1774f2529c5e~mv2.jpg');
    background-position: 0 0, 0 0, 36%;
  }

  .slide-left-block {
    flex: 0 auto;
  }

  .slide-right-block {
    border-radius: 0;
  }

  .slider {
    border-radius: 0;
    height: 520px;
  }

  .slide-image, .slider-mask, .slide {
    border-radius: 0;
  }

  .slider-arrow-icon {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }

  .slide-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
  }

  .slide-wrap.second {
    border-radius: 0;
    padding: 0;
  }

  .slider-arrow {
    width: 40px;
    display: none;
  }

  .testimonial-title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-text-bottom.left-align, .footer-text-bottom.right-align {
    text-align: center;
  }

  .about-grid._3-team {
    grid-template-columns: 1fr 1fr;
  }

  .utility-page-wrap {
    padding: 20px;
  }

  .utility-page-content {
    margin-left: 0;
    margin-right: 0;
  }

  .contacts-content-wrapper {
    padding: 30px;
  }

  .contacts-content-wrapper.no-padding-left {
    padding-right: 0;
  }

  .contacts-wrapp {
    justify-content: center;
  }

  .footer-copyright-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .main-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .mainheaderh2centerservices-2 {
    width: 85%;
    padding-left: 0;
    font-size: 31px;
  }

  .main-privacy-text {
    padding-left: 0;
  }

  .main-privacy-title {
    margin-bottom: 30px;
    padding-left: 0;
    font-size: 18px;
  }

  .heading {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .about-title-holder {
    flex-flow: column;
  }

  .about-boat-grid-holder {
    grid-template-columns: 1fr;
  }

  .project-grid-div {
    grid-template-columns: 1fr 1fr;
  }

  .project-image-gallery {
    height: 30vw;
  }

  .the-school-title {
    width: 100%;
  }

  .div-ribs-for-kids-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.7rem;
    line-height: 3.2rem;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  h3 {
    font-size: 1.9rem;
    line-height: 2.4rem;
  }

  h4 {
    line-height: 1.8rem;
  }

  h5 {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }

  .icon {
    padding: 10px;
  }

  .brand-image {
    height: 35px;
  }

  .brand {
    justify-content: flex-start;
    padding-left: 0;
  }

  .button {
    text-align: center;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.home-salcombe {
    background-position: 0%;
    padding: 20px 0;
  }

  .up-title.align-center-mobile {
    width: 100%;
  }

  .button-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .hero-wrap {
    background-image: linear-gradient(90deg, #000000cf 15%, var(--trasparent)), linear-gradient(to bottom, #f2000026, #f2000026), url('../images/049485_6dc62c00ba4241ef994b1774f2529c5e~mv2.jpg');
    background-position: 0 0, 0 0, 40%;
  }

  .facility-card {
    height: 250px;
  }

  .facility-content {
    padding: 20px;
  }

  .slider {
    height: 640px;
  }

  .slider-arrow-icon {
    color: #fff;
  }

  .slide-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-arrow {
    z-index: 2;
    background-color: #000;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 60px;
    transition: background-color .7s cubic-bezier(.23, 1, .32, 1);
    inset: auto auto 0% 0%;
  }

  .slider-arrow:hover {
    background-color: #aeaeae;
  }

  .slider-arrow.right {
    inset: auto 0% 0% auto;
  }

  .testimonial-title.about {
    font-size: 1.3rem;
    line-height: 1.9rem;
  }

  .footer-menu-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .social-icon {
    height: 16px;
  }

  .about-grid._3-team {
    grid-template-columns: 1fr;
  }

  .about-testimonial {
    flex-flow: column;
  }

  .body {
    background-color: var(--black);
  }

  .facility-title {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .utility-page-content {
    padding: 40px 20px;
  }

  .text-block {
    font-size: 1.125rem;
    line-height: 1.6rem;
  }

  .contacts-content-wrapper {
    text-align: center;
  }

  .contacts-content-wrapper.no-padding-left {
    padding-right: 0;
  }

  .contacts-wrapp {
    grid-row-gap: 20px;
  }

  .contacts-detail-footer {
    grid-row-gap: 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .contacts-icon-contact-us {
    margin-right: 0;
  }

  .contacts-icon-contact-us.map {
    margin-top: 0;
  }

  .align-center-mobile {
    text-align: center;
  }

  .button-center-div.phones-only {
    justify-content: center;
    align-items: center;
  }

  .mainheaderh2centerservices-2 {
    width: 100%;
    font-size: 25px;
  }

  .main-privacy-text {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 17px;
  }

  .main-privacy-title {
    font-size: 13px;
  }

  .heading {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  .project-grid-div {
    grid-template-columns: 1fr;
  }

  .project-image-gallery {
    height: 55vw;
  }

  .div-ribs-for-kids-grid {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    grid-template-columns: 1fr;
  }
}

#w-node-c0d3483e-b4e5-f222-4227-5ca9f126f990-f3e0078a, #w-node-c3fd1be3-8786-fffc-eb70-c349b738caa6-f3e0078a, #w-node-a02ee04a-0f2b-b6a7-4d7e-9f4fa286621e-f3e0078a {
  align-self: start;
}

#w-node-d4da7300-8eb0-9fc2-5fea-8719e4d367c1-50f2e9fd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-c0d3483e-b4e5-f222-4227-5ca9f126f990-f3e0078a, #w-node-c3fd1be3-8786-fffc-eb70-c349b738caa6-f3e0078a, #w-node-a02ee04a-0f2b-b6a7-4d7e-9f4fa286621e-f3e0078a {
    align-self: start;
  }
}


