/* General - DESKTOP */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 1vw;
  font-family: Helvetica, Arial, sans-serif;
}

a {
  color: black;
}

/* GENERAL - TABLET */

@media only screen and (max-width: 1300px) {
  html {
    font-size: 1vw;
  }
}

/* GENERAL - PHONE */

@media only screen and (max-width: 767px) {
  html {
    font-size: 1vw;
  }
}

/* BODY - DESKTOP */

body {
  margin: 0;
  padding: 0;
  background-color: rgb(207, 223, 233);
}

/* BODY - TABLET */

@media only screen and (max-width: 1300px) {
}
/* BODY - PHONE */

@media only screen and (max-width: 767px) {
}

/* NAV - DESKTOP */

#mainNav {
  display: flex;
  padding: 2rem 0rem;
  height: 3rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background-color: rgb(221, 230, 236);
  position: fixed;
  z-index: 2;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
  border-bottom: 1px solid black;
}

.navList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
  width: 40rem;
}

.navList li {
  padding: 0.3rem;
  letter-spacing: -0.04rem;
  font-family: "Yanone Kaffeesatz", sans-serif;
}

.navList li a {
  color: rgba(0, 0, 0, 0.884);
  text-decoration: none;
}

.navList li a:hover {
  color: black;
  text-decoration: underline;
}

.logo {
  width: 25rem;
  text-align: center;
  font-size: 3rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: -0.2rem;
}

.fontSize1rem {
  font-size: 1.4rem;
  font-weight: 100;
  opacity: 0.8;
  letter-spacing: -0.2rem;
  font-family: Arial, Helvetica, sans-serif;
}

.socialMediaIconsContainer {
  width: 30rem;
  margin-left: 3rem;
}

.socialMediaIconsContainer a {
  color: black;
  text-decoration: none;
  font-size: 1.8rem;
  padding: 0.5rem;
}

.socialMediaIconsContainer a:hover {
  color: rgba(255, 0, 0, 0.425);
}

/* NAV - TABLET */
@media only screen and (max-width: 1300px) {
  #mainNav {
    justify-content: center;
    height: 8rem;
  }

  .socialMediaIconsContainer {
    display: none;
  }

  .logo {
    width: fit-content;
    padding: 0;
    margin: 0rem 4rem 0rem 0rem;
    font-size: 4rem;
  }

  .navList {
    width: fit-content;
    font-size: 2.5rem;
  }

  .fontSize1rem {
    font-size: 1.8rem;
    font-weight: 100;
  }
}

/* NAV - PHONE */
@media only screen and (max-width: 767px) {
  #burgerMenu {
    position: fixed;
    width: 100%;
    font-size: 5rem;
    background-color: rgb(221, 230, 236);
    text-align: center;
    padding: 2rem;
    z-index: 10;
  }

  #mainNav {
    display: none;
    position: fixed;
    top: 9rem;
    height: auto;
  }

  .navList {
    display: block;
    font-size: 5rem;
  }

  .navList li {
    margin: 3rem;
  }

  .logo {
    display: none;
  }

  .navSeperator {
    display: none;
  }
}

/* HEADER - DESKTOP */

#bookMe {
  position: fixed;
  z-index: 100;
  top: 9%;
  right: 2%;
  border-radius: 100%;
  width: 9rem;
  height: 3.5rem;
  color: black;
  font-size: 1.3rem;
  font-family: "Yanone Kaffeesatz", sans-serif;
  background-color: rgb(234, 99, 101);
}

#bookMe:hover {
  text-decoration: underline;
  cursor: pointer;
}

#mainHeader {
  background-image: url(/resources/images/glencarrig_hq_fhd.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vw;
  margin-top: 0;
  padding: 0;
  display: block;
  justify-content: center;
  align-items: center;
  position: relative;
}

.headingMain {
  padding: 0;
  margin: 0;
  width: fit-content;
  position: absolute;
  top: 39%;
  right: 53%;
  background-color: #dfe9eec2;
  border: 1px solid black;
  padding: 1rem;
  border-radius: 4rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
}

#buttonsWrapper {
  display: flex;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 47%;
  right: 55%;
  z-index: 1;
}

#bookStay,
#bookBaking,
#bookFishing {
  margin: 1rem;
  z-index: 1;
  width: 12rem;
}

#bookStay p,
#bookBaking p,
#bookFishing p {
  font-size: 1.3rem;
  background-color: #dfe9eec2;
  border: 1px solid black;
  padding: 1rem;
  border-radius: 4rem;
  z-index: 1;
  text-align: center;
}

#bookStay p a,
#bookBaking p a,
#bookFishing p a {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-weight: 900;
  color: black;
  text-decoration: none;
}

#bookStay p a:hover,
#bookBaking p a:hover,
#bookFishing p a:hover {
  text-decoration: underline;
}

/* HEADER - TABLET */

@media only screen and (max-width: 1300px) {
  #bookMe {
    display: none;
  }

  #mainHeader {
    height: 50vh;
  }

  .headingMain {
    padding: 2rem;
    font-size: 2.5rem;
    top: 20%;
    right: 41%;
  }

  #buttonsWrapper {
    display: block;
    position: absolute;
    top: 33%;
    right: 60%;
  }

  #bookStay,
  #bookBaking,
  #bookFishing {
    margin: 1rem;
    width: 22rem;
  }

  #bookStay p,
  #bookBaking p,
  #bookFishing p {
    font-size: 2.2rem;
    padding: 1rem 1rem;
    border-radius: 4rem;
  }
}

/* HEADER - PHONE */

@media only screen and (max-width: 767px) {
  #bookMe {
    display: block;
    position: fixed;
    z-index: 100;
    top: 90%;
    right: 30%;
    width: 40rem;
    height: 13rem;
    color: black;
    font-size: 5rem;
    background-color: rgb(234, 99, 101);
  }

  #mainHeader {
    background-image: url(/resources/images/glencarrigDrone.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .dNone {
    display: none;
  }

  .headingMain {
    display: block;
    position: absolute;
    top: 10rem;
    right: 4rem;
    font-size: 6rem;
  }

  #bookStay,
  #bookBaking,
  #bookFishing {
    width: 50rem;
  }

  #bookStay p,
  #bookBaking p,
  #bookFishing p {
    font-size: 5rem;
  }

  #buttonsWrapper {
    display: block;
    position: absolute;
    top: 50%;
    right: 25%;
  }
}

/* MAIN - DESKTOP */

.sectionClass {
  width: 100%;
  margin: 0;
  padding: 0;
}

.mainSectionHeading {
  width: 100%;
  text-align: center;
  background-color: #dfe9eec2;
  margin: 0;
  padding: 1.5rem;
  font-family: "Cinzel", serif;
}

.mainContent {
  width: 100%;
  margin: 0;
  padding: 0rem 2rem;
  display: flex;
  justify-content: center;
}

.mainContent figcaption {
  height: fit-content;
  padding: 0;
  margin: 0;
  background-color: #dfe9eec2;
}

/* MAIN - TABLET */

@media only screen and (max-width: 1300px) {
  .mainSectionHeading {
    font-size: 3rem;
    padding: 2.5rem;
  }

  .mainContent {
    width: 100%;
    margin: 0;
    padding: 0rem 0rem;
    display: block;
    text-align: center;
  }

  .mainContent figcaption {
    margin: 0 auto;
  }
}

/* MAIN - PHONE */

@media only screen and (max-width: 767px) {
  .mainSectionHeading {
    font-size: 4.5rem;
    padding: 3.5rem;
  }
}

/* SECTION 1 - ABOUT US - DESKTOP */

#fig1 {
  margin: 0rem 0rem 0rem 2rem;
  font-size: 1.1rem;
  padding: 0rem 2rem 2rem 2rem;
  width: 30rem;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#pic1 {
  width: 45rem;
  border-bottom: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

#fig2 {
  margin: 2rem 2rem 0rem 0rem;
  font-size: 1.1rem;
  padding: 2rem 2rem 0rem 2rem;
  width: 27rem;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

#pic2 {
  width: 48rem;
  margin: 2rem 0rem 0rem 0rem;
  border-top: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

.displayNone {
  display: none;
}

/* SECTION 1 - ABOUT US - TABLET */

@media only screen and (max-width: 1300px) {
  #pic1 {
    width: 50rem;
    float: left;
    padding: 0rem 2rem;
  }

  #fig1 {
    margin: 0 auto;
    font-size: 2rem;
    padding: 0rem 2rem 2rem 2rem;
    border-radius: 0rem;
    text-align: left;
    width: auto;
    line-height: 3rem;
  }

  #fig2 {
    margin: 0rem;
    font-size: 2rem;
    padding: 0rem 2rem 2rem 2rem;
    width: auto;
    text-align: left;
    border-radius: 0rem;
    line-height: 3rem;
  }

  #pic2 {
    width: 50rem;
    padding: 0rem 1rem;
    margin: 0;
    float: right;
    border-top-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    border-bottom-left-radius: 10rem;
  }

  .displayNone {
    display: block;
  }

  .displayBlock {
    display: none;
  }
}

/* SECTION 1 - ABOUT US - PHONE */

@media only screen and (max-width: 767px) {
  #pic1 {
    display: none;
  }

  #fig1 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 0rem 4rem 2rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #fig2 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #pic2 {
    width: 100%;
    padding: 3rem 3rem;
    margin: 0 auto;
    float: none;
    border-radius: 0;
  }

  .displayNone {
    display: block;
  }

  .displayBlock {
    display: none;
  }
}

/* SECTION 2 - OUR LOCATION - DESKTOP */

.gmapsFigure {
  width: 100%;
  margin: 0;
  padding: 0rem 2rem;
  text-align: center;
}

#gmaps {
  margin: 0 auto;
  width: 78rem;
  height: 40rem;
  border-bottom: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
}

#pic3 {
  width: 30rem;
  height: auto;
  border-bottom: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top: 1rem solid #dfe9eec2;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
  margin: 2rem 0rem 2rem 0rem;
}

#fig3 {
  margin: 2rem 2rem 2rem 2rem;
  font-size: 1.1rem;
  padding: 1rem 2rem 2rem 2rem;
  width: 25rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#pic4 {
  width: 30rem;
  height: auto;
  border-bottom: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top: 1rem solid #dfe9eec2;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
  margin: 2rem 0rem 2rem 0rem;
}

/* SECTION 2 - OUR LOCATION - TABLET */

@media only screen and (max-width: 1300px) {
  .gmapsFigure {
    padding: 0rem 0rem;
  }

  #gmaps {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 40vh;
    border-bottom: 2rem solid #dfe9eec2;
    border-left: 2rem solid #dfe9eec2;
    border-right: 2rem solid #dfe9eec2;
  }

  #pic3 {
    width: 40rem;
    height: auto;
    margin: 0;
    float: left;
    padding: 2rem;
  }

  #fig3 {
    margin: 0 auto;
    font-size: 2rem;
    padding: 2rem 2rem 2rem 2rem;
    border-radius: 0rem;
    text-align: left;
    width: auto;
    line-height: 3rem;
  }

  #pic4 {
    display: none;
  }
}

/* SECTION 2 - OUR LOCATION- PHONE */

@media only screen and (max-width: 767px) {
  #pic3 {
    width: 100%;
    float: none;
    padding: 2rem;
    border-radius: 0;
  }

  #fig3 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #pic4 {
    display: none;
  }
}

/* SECTION 3 - FACILITIES - DESKTOP */

#fig4 {
  margin: 0rem 0rem 0rem 2rem;
  font-size: 1.1rem;
  padding: 0rem 2rem 2rem 2rem;
  width: 28rem;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

.listContainer {
  width: 20rem;
  margin: 2rem 2rem 0rem 2rem;
  padding: 1.5rem;
  background-color: #dfe9eec2;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  text-align: center;
}

.uoList {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-weight: 900;
}
#smallList {
  margin-top: 5rem;
  height: 10rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

.subHeading {
  text-align: center;
  background-color: #dfe9eec2;
  margin: 0rem 0rem 1rem 0rem;
  padding: 0;
  font-size: 1.9rem;
  font-family: "Cinzel", serif;
}

.underline {
  text-decoration: underline;
}

/* SLIDER GALLERY CSS */

.slider {
  margin: 0;
  width: 50rem;
  height: 31.25rem;
  border-radius: 2rem;
  overflow: hidden;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-bottom: 4rem solid #dfe9eec2;
}

.slides {
  width: 500%;
  height: 31.25rem;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 2s;
}

.slide img {
  width: 50rem;
}

.navigation-manual {
  position: absolute;
  width: 50rem;
  margin-top: -2.5rem;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid black;
  padding: 0.3125rem;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child) {
  margin-right: 2.5rem;
}

.manual-btn:hover {
  background: black;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -20%;
}

#radio3:checked ~ .first {
  margin-left: -40%;
}

#radio4:checked ~ .first {
  margin-left: -60%;
}

#radio5:checked ~ .first {
  margin-left: -80%;
}

#radio6:checked ~ .first {
  margin-left: -100%;
}

#radio7:checked ~ .first {
  margin-left: -120%;
}

.navigation-auto {
  position: absolute;
  display: flex;
  width: 50rem;
  justify-content: center;
  margin-top: 28.75rem;
}

.navigation-auto div {
  border: 2px solid black;
  padding: 0.3125rem;
  border-radius: 1rem;
  transition: 1s;
}

.navigation-auto div:not(:last-child) {
  margin-right: 2.5rem;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
  background: black;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
  background: black;
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
  background: black;
}

#radio4:checked ~ .navigation-auto .auto-btn4 {
  background: black;
}

#radio5:checked ~ .navigation-auto .auto-btn5 {
  background: black;
}

#radio6:checked ~ .navigation-auto .auto-btn6 {
  background: black;
}

#radio7:checked ~ .navigation-auto .auto-btn7 {
  background: black;
}

.flexContainer {
  display: flex;
}

/* SECTION 3 - FACILITIES- TABLET */

@media only screen and (max-width: 1300px) {
  #fig4 {
    margin: 0rem;
    font-size: 2rem;
    padding: 2rem 2rem 2rem 2rem;
    width: auto;
    text-align: left;
    border-radius: 0;
    line-height: 3rem;
  }

  .slider {
    float: right;
    margin: 2rem 1rem;
  }

  .listContainer {
    width: 100%;
    margin: 0;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
  }

  .uoList {
    padding: 1rem;
    font-size: 2.3rem;
    line-height: 4rem;
  }
  #smallList {
    margin-top: 0;
    height: auto;
    border-bottom-right-radius: 0rem;
    border-bottom-left-radius: 0rem;
  }

  .subHeading {
    margin: 0;
    padding: 0rem 0rem 2rem 0rem;
    font-size: 3rem;
  }

  .flexContainer {
    display: flex;
  }
}

/* SECTION 3 - FACILITIES- PHONE */

@media only screen and (max-width: 767px) {
  #fig4 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  .slider {
    display: none;
  }

  .listContainer {
    width: 100%;
    margin: 0;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
  }

  .uoList {
    padding: 1rem;
    font-size: 5rem;
    line-height: 5rem;
  }
  #smallList {
    margin-top: 0;
    height: auto;
    border-bottom-right-radius: 0rem;
    border-bottom-left-radius: 0rem;
  }

  .subHeading {
    margin: 0;
    padding: 2rem 0rem 2rem 0rem;
    font-size: 4rem;
  }

  .flexContainer {
    display: flex;
  }
}

/* SECTION 4 - ACTIVITIES - DESKTOP */

#fig5 {
  margin: 0rem 0rem 0rem 2rem;
  font-size: 1.1rem;
  padding: 0rem 2rem 2rem 2rem;
  width: 35rem;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#pic5 {
  width: 44rem;
  border-bottom: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#fig6 {
  margin: 2rem 2rem 0rem 0rem;
  font-size: 1.1rem;
  padding: 2rem 2rem 2rem 2rem;
  width: 30rem;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#pic6 {
  width: 42rem;
  margin: 2rem 0rem 0rem 0rem;
  border-bottom: 1rem solid #dfe9eec2;
  border-top: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

#positionRelative {
  position: relative;
}

#pic7,
#pic8,
#pic9 {
  width: 25rem;
  height: auto;
  margin: 2rem;
  border: 1rem solid #dfe9eec2;
  border-radius: 2rem;
}

#fig7 {
  text-align: center;
  display: flex;
  align-items: center;
  position: absolute;
  top: 3.5rem;
  right: 67.9rem;
  opacity: 0.7;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-top-left-radius: 3rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 5rem;
}

#fig8 {
  text-align: center;
  display: flex;
  align-items: center;
  position: absolute;
  top: 26rem;
  right: 46rem;
  opacity: 0.7;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-top-left-radius: 3rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 5rem;
}

#fig9 {
  text-align: center;
  display: flex;
  align-items: center;
  position: absolute;
  top: 4rem;
  right: 13rem;
  opacity: 0.7;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-top-left-radius: 3rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 5rem;
}

#fig10 {
  margin: 0rem 2rem 0rem 0rem;
  font-size: 1.1rem;
  padding: 2rem 2rem 2rem 2rem;
  width: 30rem;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#pic10 {
  width: 44rem;
  margin: 0rem 0rem 0rem 0rem;
  border-bottom: 1rem solid #dfe9eec2;
  border-top: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

#fig11 {
  margin: 2rem 0rem 0rem 0rem;
  font-size: 1.1rem;
  padding: 2rem 2rem 2rem 2rem;
  width: 35rem;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#pic11 {
  width: 40rem;
  margin: 2rem 2rem 0rem 0rem;
  border-top: 1rem solid #dfe9eec2;
  border-bottom: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

#fig12 {
  margin: 2rem 2rem 0rem 3rem;
  font-size: 1.1rem;
  padding: 2rem 2rem 2rem 2rem;
  width: 27rem;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}

#pic12 {
  width: 45rem;
  margin: 2rem 0rem 0rem 0rem;
  border-bottom: 1rem solid #dfe9eec2;
  border-top: 1rem solid #dfe9eec2;
  border-left: 1rem solid #dfe9eec2;
  border-right: 1rem solid #dfe9eec2;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

/* SECTION 4 - ACTIVITIES - TABLET */

@media only screen and (max-width: 1300px) {
  #fig5 {
    margin: 0rem 0rem 0rem 0rem;
    font-size: 2rem;
    padding: 2rem 2rem 2rem 2rem;
    width: auto;
    text-align: left;
    border-radius: 0;
    line-height: 3rem;
  }

  #pic5 {
    float: left;
    width: 60rem;
    padding: 2rem 2rem 0rem 2rem;
  }

  #fig6 {
    margin: 0;
    font-size: 2rem;
    padding: 2rem 2rem 2rem 2rem;
    width: auto;
    border-radius: 0;
    text-align: left;
    line-height: 3rem;
  }

  #fig6 ul {
    text-align: right;
    list-style: none;
    margin: 0rem 18rem 0rem 0rem;
  }

  .textAlignRight {
    text-align: right;
    float: right;
    margin-right: 9rem;
    margin-bottom: 2rem;
  }

  #pic6 {
    float: right;
    width: 50rem;
    padding: 0rem 2rem;
    border-radius: 8rem;
    margin-top: -4rem;
  }

  #positionRelative {
    display: none;
  }

  #fig10 {
    margin: 0;
    font-size: 2rem;
    padding: 1rem;
    width: auto;
    border-radius: 0;
    text-align: left;
    line-height: 3rem;
    padding: 2rem;
  }

  #pic10 {
    width: 55rem;
    padding: 2rem 2rem 1rem 2rem;
    border: none;
    float: left;
    border-radius: 8rem;
    margin: -11rem 2rem 0rem 0rem;
  }

  #fig11 {
    margin: 0;
    font-size: 2rem;
    padding: 1rem;
    width: auto;
    border-radius: 0;
    text-align: left;
    line-height: 3rem;
    padding: 2rem;
  }

  #pic11 {
    width: 55rem;
    padding: 2rem 2rem 1rem 2rem;
    border: none;
    float: right;
    border-radius: 8rem;
    margin: -7rem 2rem 0rem 0rem;
  }

  #fig12 {
    margin: -2rem 0rem 0rem 0rem;
    font-size: 2rem;
    padding: 2rem 2rem 2rem 2rem;
    width: auto;
    border-radius: 0;
    text-align: left;
    line-height: 3rem;
  }

  #pic12 {
    width: 55rem;
    padding: 2rem 2rem 1rem 2rem;
    border: none;
    float: left;
    border-radius: 8rem;
    margin: 0rem 2rem 0rem 0rem;
  }
}

/* SECTION 4 - ACTIVITIES- PHONE */

@media only screen and (max-width: 767px) {
  #fig5 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #pic5 {
    display: none;
  }

  #fig6 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #fig6 ul {
    text-align: center;
    list-style: none;
    margin: 0 auto;
  }

  .textAlignRight {
    text-align: center;
    float: none;
    margin: 0 auto;
  }

  #pic6 {
    float: none;
    width: 100%;
    padding: 2rem 2rem;
    border-radius: 0rem;
    margin: 0 auto;
  }

  #positionRelative {
    display: none;
  }

  #fig10 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #pic10 {
    float: none;
    margin: 0 auto;
    width: 100%;
    border-radius: 0rem;
    padding: 2rem 2rem;
  }

  #fig11 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #pic11 {
    width: 100%;
    padding: 2rem 2rem 1rem 2rem;
    border: none;
    float: none;
    border-radius: 0rem;
    margin: 0 auto;
  }

  #fig12 {
    margin: 0 auto;
    font-size: 4rem;
    padding: 2rem 4rem 0rem 4rem;
    border-radius: 0rem;
    text-align: center;
    width: auto;
    line-height: 5rem;
  }

  #pic12 {
    width: 100%;
    padding: 2rem 2rem 1rem 2rem;
    border: none;
    float: none;
    border-radius: 0rem;
    margin: 0 auto;
  }
}

/* SECTION 5 - RECOMMENDATIONS - DESKTOP */

#recommendationsFigure {
  width: 100%;
  background-color: #ffffff;
  margin-top: 2rem;
  border-bottom: 1rem solid #dfe9eec2;
  border-top: 1rem solid #dfe9eec2;
}

#recommendationsFigure img {
  height: 10rem;
  margin: 1rem 0.5rem;
  padding: 1rem 1rem;
}

/* SECTION 5 - RECOMMENDATIONS - TABLET */

@media only screen and (max-width: 1300px) {
  #recommendationsFigure img {
    height: 15rem;
  }
}

/* SECTION 5 - RECOMMENDATIONS- PHONE */

@media only screen and (max-width: 767px) {
  #recommendationsFigure img {
    width: 30%;
    height: 30%;
  }
}

/* FOOTER - DESKTOP */

#mainFooter {
  width: 100%;
  margin: 2rem 0rem 0rem 0rem;
  position: relative;
}

#footerSection1 {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background-color: #dfe9eec2;
  padding: 2rem;
  border: 1rem solid white;
  border-radius: 5rem;
}

.footerContainer {
  width: 10rem;
  margin: 0 auto;
  text-align: center;
}

.footerContainer i {
  font-size: 2rem;
}

#floatingHeading {
  position: absolute;
  top: -3.5rem;
  padding: 1.5rem;
  border-radius: 2rem;
  background-color: #dfe9ee;
  border-top: 0.5rem solid white;
  border-left: 0.5rem solid white;
  border-right: 0.5rem solid white;
  border-bottom: none;
}

#footerSection2 {
  width: 100%;
  text-align: center;
}

#footerSubHeading {
  margin: 2rem 0rem 0rem 0rem;
  font-size: 1rem;
  background-color: inherit;
  padding: 2rem 0rem 2rem 2rem;
  background-color: rgb(221, 230, 236);
  border-top-right-radius: 10rem;
  border-top-left-radius: 10rem;
  border-top: 1px solid black;
}

/* FOOTER - TABLET */

@media only screen and (max-width: 1300px) {
  #floatingHeading {
    font-size: 3rem;
    top: -4.5rem;
    left: 38rem;
  }

  #adress {
    position: absolute;
    right: 8.8rem;
    top: 12rem;
  }

  #eMail {
    position: absolute;
    top: 13rem;
    left: 10rem;
  }

  #instagram {
    position: absolute;
    top: 0rem;
    right: 10rem;
  }

  #facebook {
    position: absolute;
    top: 0rem;
    left: 10rem;
  }

  #footerSection1 {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    background-color: #dfe9eec2;
    padding: 2rem;
    border: 1rem solid white;
    border-radius: 5rem;
  }

  .footerContainer {
    width: auto;
    margin: 0 auto;
    text-align: center;
    font-size: 2rem;
  }

  .footerContainer i {
    font-size: 4rem;
  }

  #footerSubHeading {
    margin: 2rem 0rem 0rem 0rem;
    font-size: 1.5rem;
    background-color: inherit;
    padding: 2rem 0rem 2rem 2rem;
    background-color: rgb(221, 230, 236);
    border-top-right-radius: 10rem;
    border-top-left-radius: 10rem;
    border-top: 1px solid black;
  }
}

/* FOOTER - PHONE */

@media only screen and (max-width: 767px) {
  #floatingHeading {
    font-size: 5rem;
    position: absolute;
    left: 32%;
    top: -5%;
  }

  .names {
    font-size: 4rem;
  }

  #adress {
    position: initial;
    font-size: 4rem;
  }

  #eMail {
    position: initial;
    font-size: 4rem;
  }

  #instagram {
    position: initial;
    font-size: 4rem;
  }

  #facebook {
    position: initial;
    font-size: 4rem;
  }

  #footerSection1 {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    background-color: #dfe9eec2;
    padding: 2rem;
    border: 1rem solid white;
    border-radius: 5rem;
  }

  .footerContainer {
    width: auto;
    margin: 0 auto;
    text-align: center;
    font-size: 2rem;
  }

  .footerContainer i {
    font-size: 7rem;
  }

  #footerSubHeading {
    margin: 2rem 0rem 0rem 0rem;
    font-size: 3rem;
    background-color: inherit;
    padding: 2rem 2rem 2rem 2rem;
    background-color: rgb(221, 230, 236);
    border-top-right-radius: 10rem;
    border-top-left-radius: 10rem;
    border-top: 1px solid black;
  }
}