/* Set Global Styles in Manage Settings */

html {
  font-size: 16px;
}

body {
	font-size: 16px;
	font-size: 1rem;  
}

body > div {
  line-height: 26px;
  line-height: 1.625rem;
}

img {
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

p {
  margin: 0 0 28px;
  margin: 0 0 1.75rem;
}

.ct-section-inner-wrap {
	padding-top: 75px;
	padding-top: 4.6875rem;
	padding-right: 20px;
	padding-right: 1.25rem;
	padding-bottom: 75px;
	padding-bottom: 4.6875rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.ct-new-columns > .ct-div-block {
	padding-top: 20px;
	padding-top: 1.25rem;
	padding-right: 20px;
	padding-right: 1.25rem;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

/* Add CSS styles below */


/* styles.css */
/* Custom animation */
.fade-in-up {
  animation: fade-in-up 1s ease forwards;
  visibility: visible !important; /* Make sure it's visible once animation starts */
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);  /* Start 100px below */
    visibility: hidden;  /* Keep it hidden initially */
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);  /* End at normal position */
    visibility: visible;  /* Make it visible when animation is done */
  }
}


/*animations */

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1); /* Normal size */
    }
    10% {
        transform: scale(1.1); /* Slightly larger */
    }
    20% {
        transform: scale(1.05); /* A little less than the max scale */
    }
    30% {
        transform: scale(1.1); /* Slightly larger again */
    }
    40% {
        transform: scale(1); /* Return to normal size */
    }
}

.heartbeat {
    animation-name: heartbeat;
    animation-duration: 2s; /* Duration of the heartbeat effect */
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1; /* Pulsate twice */
}

.fadeUp {
    opacity: 1;
    visibility: visible;
    animation-name: fadeUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: opacity 0.5s ease;
}

.fadeRight {
    opacity: 1;
    visibility: visible;
    animation-name: fadeRight;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: opacity 0.5s ease;
}

.fadeLeft {
    opacity: 1;
    visibility: visible;
    animation-name: fadeLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: opacity 0.5s ease;
}

/*header*/
header.main-head {
	padding-top: 19.5px;
	padding-top: 1.2188rem;
	padding-bottom: 19.5px;
	padding-bottom: 1.2188rem;
}
header .oxy-header-container {
	max-width: 100%;
	padding-left: 100px;
	padding-left: 6.25rem;
	padding-right: 100px;
	padding-right: 6.25rem;
}
header .oxy-header-left img {
	width: 188px;
	width: 11.75rem;
}
header .oxy-header-left .sticky-head {
	display: none;
}
header .oxy-header-left .sticky-head img {
	width: 156px;
	width: 9.75rem;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item a {
	padding-left: 20px;
	padding-left: 1.25rem;
	padding-right: 20px;
	padding-right: 1.25rem;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item,
header .oxy-header-right .oxy-pro-menu-list .menu-item a {
	font-size: 16px;
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item.current-menu-item,
header .oxy-header-right .oxy-pro-menu-list .menu-item.current-menu-item a {
	color: #145946;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item.current-menu-item a {
	display: inline-block;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item.current-menu-item a::after {
  	content: "";
  	display: block;
  	border-bottom: 2px solid #145946;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item a {
  	position: relative;
  	display: inline-block;
  	padding: 10px 20px;
  	color: #ffffff;
  	text-decoration: none;
  	overflow: hidden;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item a span {
  position: relative;
  display: inline-block;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item a span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #145946;
  transition: width 0.4s ease;
}
header .oxy-header-right .oxy-pro-menu-list .menu-item a:hover span::after {
  width: 100%;
}
header.oxy-sticky-header-active .oxy-header-right .oxy-pro-menu-list .menu-item,
header.oxy-sticky-header-active .oxy-header-right .oxy-pro-menu-list .menu-item a {
	color: #145946;
}
header.main-head.oxy-sticky-header-active {
	padding-top: 7.5px;
	padding-top: 0.4688rem;
	padding-bottom: 7.5px;
	padding-bottom: 0.4688rem;
}
header.oxy-sticky-header-active .oxy-header-left .sticky-head {
	display: block;
}
header.oxy-sticky-header-active .oxy-header-left .not-sticky {
	display: none;
}
header .oxy-header-right .book-now {
	width: 100%;
	height: 47px;
	height: 2.9375rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	border-radius: 3.125rem;
	min-width: 130px;
	min-width: 8.125rem;
	color: #ffffff;
	font-size: 15px;
	font-size: 0.9375rem;
	margin-left: 100px;
	margin-left: 6.25rem;
	background-color: #145946;
	border: 1px solid #145946;
	transition: height .2s ease, background-color .2s ease, padding .2s ease, width .2s ease, margin .2s ease, top .2s ease, transform .2s ease;
}

/*home */
.row-hero .ct-section-inner-wrap {
	padding-top: 192px;
	padding-top: 12rem;
	padding-right: 40px;
	padding-right: 2.5rem;
	padding-bottom: 212px;
	padding-bottom: 13.25rem;
	padding-left: 40px;
	padding-left: 2.5rem;
}
.row-hero .hero-img {
	width: 100%;
	flex-direction: column;
	display: flex;
	text-align: left;
	align-items: center;
}
.row-hero .hero-img img {
	width: 510px;
	width: 31.875rem;
}
.row-links .ct-section-inner-wrap {
	padding-top: 0;
	padding-bottom: 0;
}
.row-links .links-main-box {
	width: 100%;
	flex-direction: row;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -85px;
	margin-top: -5.3125rem;
	z-index: 1;
}
.row-links .link-box {
	margin-top: 10px;
	margin-top: 0.625rem;
	margin-bottom: 10px;
	margin-bottom: 0.625rem;
	margin-left: 73.5px;
	margin-left: 4.5938rem;
	margin-right: 73.5px;
	margin-right: 4.5938rem;
}
.row-links .link-box a {
	height: 135px;
	height: 8.4375rem;
	width: 135px;
	width: 8.4375rem;
	background-color: #145946;
	border-radius: 25px;
	border-radius: 1.5625rem;
	flex-direction: column;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	border: 3px solid #145946;
	border: 0.1875rem solid #145946;
	transition: height .2s ease, background-color .2s ease, padding .2s ease, width .2s ease, margin .2s ease, top .2s ease, transform .2s ease;
}
.row-links .link-box a .ct-text-block {
	padding-top: 10px;
	padding-top: 0.625rem;
	padding-bottom: 10px;
	padding-bottom: 0.625rem;
	font-size: 15px;
	font-size: 0.9375rem;
	color: #ffffff;
	font-weight: 700;
}
.row-slider .ct-section-inner-wrap {
	padding-bottom: 90px;
	padding-bottom: 5.625rem;
	padding-top: 120px;
	padding-top: 7.5rem;
}
.row-slider .ct-div-block.slider-holder {
	width: 100%;
	max-width: 840px;
	max-width: 52.5rem;
	flex-direction: column;
	display: flex;
	text-align: left;
	align-items: center;
	justify-content: center;
	gap: 20px;
	gap: 1.25rem;
	height: 132px;
	height: 8.25rem;
}
.row-slider .ct-text-block {
	color: #145946;
	font-weight: 700;
	font-size: 18px;
	font-size: 1.125rem;
	width: 100%;
	text-align: center;
	line-height: 1.27777777;
}
.row-slider .oxy-rich-text {
	color: #145946;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
}
.row-image-right .ct-section-inner-wrap {
	max-width: 100%;
	padding-left: 100px;
	padding-left: 6.25rem;
	padding-right: 0px;
	padding-right: 0rem;
	padding-top: 0;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
}
.row-image-right.welcome .ct-section-inner-wrap {
	min-height: 664px;
	min-height: 41.5rem;
}
.row-image-right .image-right-cont {
	width: 100%;
	text-align: left;
	flex-direction: row;
	display: flex;
	align-items: center;
}
.row-image-right .image-right-txt-cont {
	width: 50%;
	padding-right: 100px;
	padding-right: 6.25rem;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: flex-start;
}
.row-image-right .image-right-img-cont {
	width: 50%;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: flex-start;
	min-height: 664px;
	min-height: 41.5rem;
}
.row-image-right.backpackers .image-right-img-cont {
    min-height: 577px;
    min-height: 36.0625rem;
}
.row-image-right .image-right-txt-cont h1 {
	color: #145946;
	font-weight: 700;
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 25px;
	margin-bottom: 1.5625rem;
	line-height: 1.5;
	width: 100%;
	max-width: 760px;
	max-width: 47.5rem;
}
.row-image-right .image-right-txt-cont h2 {
	color: #145946;
	font-weight: 700;
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 25px;
	margin-bottom: 1.5625rem;
	line-height: 1.5;
}
.row-image-right .image-right-txt-cont .hr {
	background-color: #145946;
	width: 58px;
	width: 3.625rem;
	height: 2px;
	height: 0.125rem;
}
.row-image-right .image-right-txt-cont .ct-text-block {
	color: #101010;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 2;
	margin-top: 25px;
	margin-top: 1.5625rem;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}
.row-image-right .image-right-txt-cont .book-now {
	width: 100%;
	height: 47px;
	height: 2.9375rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	border-radius: 3.125rem;
	color: #ffffff;
	font-size: 15px;
	font-size: 0.9375rem;
	max-width: 135px;
	max-width: 8.4375rem;
	background-color: #145946;
	border: 1px solid #145946;
	transition: height .2s ease, background-color .2s ease, padding .2s ease, width .2s ease, margin .2s ease, top .2s ease, transform .2s ease;
}
.row-map .ct-section-inner-wrap {
	padding-top: 20px;
	padding-top: 1.25rem;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}
.row-map-link .ct-section-inner-wrap {
	height: 433px;
	height: 27.0625rem;
	padding: 0;
}
.row-before-footer-form .header-cont {
	width: 100%;
	flex-direction: column;
	display: flex;
	text-align: left;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	margin-bottom: 3.125rem;
}
.row-before-footer-form .header-cont h2,
.row-before-footer-form .header-cont h1 {
	color: #145946;
	font-weight: 700;
	font-size: 40px;
	font-size: 2.5rem;
	margin-bottom: 18px;
	margin-bottom: 1.125rem;
	width: 100%;
	text-align: center;
}
.row-before-footer-form .header-cont .hr {
	background-color: #145946;
	width: 100px;
	width: 6.25rem;
	height: 2px;
	height: 0.125rem;
}
.row-before-footer-form .form-main-cont {
	width: 100%;
	text-align: left;
	flex-direction: row;
	display: flex;
}
.row-before-footer-form .form-text-cont {
	width: 50%;
	padding-right: 60px;
	padding-right: 3.75rem;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: flex-start;
}
.row-before-footer-form .form-cont {
	width: 50%;
	padding-left: 20px;
	padding-left: 1.25rem;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: flex-start;
}
.row-before-footer-form .form-text-cont h3 {
	color: #145946;
	font-weight: 600;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.5;
	width: 100%;
	max-width: 367px;
	max-width: 22.9375rem;
}
.row-before-footer-form .form-text-cont h3 a {
	text-decoration: underline;
	color: #145946;
}
.row-before-footer-form .form-text-cont h3 a:hover {
	color: rgba(20, 89, 70, .8);
}
.row-before-footer-form .form-text-cont .ct-text-block {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 2;
	margin-top: 25px;
	margin-top: 1.5625rem;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}
.row-before-footer-form .form-text-cont .oxy-rich-text.phone-email {
	color: #000000;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.5;
}
.row-before-footer-form .form-text-cont .oxy-rich-text.phone-email a {
	color: #000000;
}
.row-before-footer-form .form-text-cont .social-icons {
	width: 100%;
	text-align: left;
	flex-direction: row;
	display: flex;
	gap: 15px;
	gap: 0.9375rem;
	margin-top: 15px;
	margin-top: 0.9375rem;
}
.row-before-footer-form .form-text-cont .social-icons div.ct-fancy-icon {
	color: #145946;
}
.row-before-footer-form .form-text-cont .social-icons svg {
	width: 22px;
	width: 1.375rem;
	height: 22px;
	height: 1.375rem;
}


.row-before-footer-form .form-cont div#gform_fields_1 {
	gap: 15px;
	gap: 0.9375rem;
}
.row-before-footer-form .form-cont .gform_heading{
	display: none;
}

.row-before-footer-form .form-cont .gform_wrapper input[type="text"],
.row-before-footer-form .form-cont .gform_wrapper input[type="tel"],
.row-before-footer-form .form-cont .gform_wrapper input[type="email"],
.row-before-footer-form .form-cont .gform_wrapper textarea {
	border: 1px solid #f7f7f7;
	border: 1px solid #f7f7f7;
	padding: 0 15px;
	padding: 0 0.9375rem;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	color: #2E343A;
	background-color: #f7f7f7;
	border-radius: 0px;
	height: 40px;
	height: 2.5rem;
	width: 100%;
	box-shadow: none;
	max-width: 548px;
	max-width: 34.25rem;
}
.row-before-footer-form .form-cont .gform_wrapper input[type="text"]::placeholder,
.row-before-footer-form .form-cont .gform_wrapper input[type="tel"]::placeholder,
.row-before-footer-form .form-cont .gform_wrapper input[type="email"]::placeholder,
.row-before-footer-form .form-cont .gform_wrapper textarea::placeholder{
	color: #A1A1A1;
	font-style: italic;
}
.row-before-footer-form .form-cont .gform_wrapper textarea {
	height: 80px;
	height: 5rem;
	padding-top: 10px;
	padding-top: 0.625rem;
}
.row-before-footer-form .form-cont .gform-theme--foundation .gfield textarea.large {
	min-block-size: unset;
}
.row-before-footer-form .form-cont .ginput_container.ginput_container_consent span.gfield_required.gfield_required_text {
	display: none;
}
.row-before-footer-form .form-cont .gform_footer #gform_submit_button_1 {
	width: 100%;
	height: 43px;
	height: 2.6875rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	border-radius: 3.125rem;
	font-weight: 400;
	color: #ffffff;
	font-size: 15px;
	font-size: 0.9375rem;
	max-width: 190px;
	max-width: 11.875rem;
	background-color: #145946;
	border: 1px solid #145946;
	transition: height .2s ease, background-color .2s ease, padding .2s ease, width .2s ease, margin .2s ease, top .2s ease, transform .2s ease;
}

.row-before-footer-form .form-cont .gform-theme--framework .gform_validation_errors .gform-icon {
	display: none;
}

.row-before-footer-form .form-cont .gform-theme--framework .gform_validation_errors .gform_submission_error {
	font-size: 16px;
	font-size: 1rem;
	text-transform: normal;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 0;
}

.row-before-footer-form .form-cont .gform-theme--framework .gfield_validation_message {
	display: none;
}
.gform-theme--framework .gform_validation_errors {
	padding: 10px;
	padding: 0.625rem;
	width: 85.4%;
}
.row-before-footer-form .form-cont .gform-theme--framework .gform_validation_errors  {
	width: 100%;
	max-width: 548px;
	max-width: 34.25rem;
}

.row-before-footer-form .form-cont .gfield_error  input[aria-invalid=true],
.row-before-footer-form .form-cont .gfield_error  textarea[aria-invalid=true],
.row-before-footer-form .form-cont .gfield_error  input[aria-invalid=true],
.row-before-footer-form .form-cont  .gfield_error  textarea[aria-invalid=true] {
	border: 1px solid #c02b0a;
}

/*footer */
.row-footer .ct-section-inner-wrap {
	/*padding: 85px 100px;
	padding: 5.3125rem 6.25rem;*/
	padding: 85px 100px 24px;
	padding: 5.3125rem 6.25rem 1.5rem;
	max-width: 100%;
}
.row-footer .main-footer-cont {
	width: 100%;
	text-align: left;
	flex-direction: row;
	display: flex;
}
.row-footer .footer-boxes {
	width: 25%;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: flex-start;
}
.row-footer img {
	width: 193px;
	width: 12.0625rem;
}
.row-footer .footer-boxes h2 {
	font-size: 15px;
	font-size: 0.9375rem;
	color: #ffffff;
	font-weight: 700;
}
.row-footer .footer-menu-cont {
	gap: 5px;
	gap: 0.3125rem;
	margin-top: 15px;
	margin-top: 0.9375rem;
}
.row-footer .footer-menu-cont a {
	color: #ffffff;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	text-decoration: underline;
}
.row-footer .social-icons {
	width: 100%;
	text-align: left;
	flex-direction: row;
	display: flex;
	gap: 15px;
	gap: 0.9375rem;
	margin-top: 15px;
	margin-top: 0.9375rem;
	padding-left: 100px;
	padding-left: 6.25rem;
}
.row-footer .social-icons div.ct-fancy-icon {
	color: #ffffff;
}
.row-footer .social-icons svg {
	width: 22px;
	width: 1.375rem;
	height: 22px;
	height: 1.375rem;
}
.row-copyright .ct-section-inner-wrap {
	padding-top: 24px;
	padding-top: 1.5rem;
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
}
.row-copyright .copyright-cont {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.row-copyright .copyright-cont .oxy-rich-text {
	font-size: 14px;
	font-size: 0.875rem;
	color: #ffffff;
	font-weight: 300;
}
.row-copyright .copyright-cont .oxy-rich-text a {
	color: #939393;
}

/*motel*/
.row-hero-white {
	background-position: 0% 51%;
}

.row-hero-white .ct-section-inner-wrap {
	padding-right: 40px;
	padding-right: 2.5rem;
	padding-left: 40px;
	padding-left: 2.5rem;
	height: 905px;
	height: 56.5625rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.row-hero-white .hero-img {
	width: 100%;
	flex-direction: column;
	display: flex;
	text-align: left;
	align-items: center;
	gap: 20px;
	gap: 1.25rem;
}
.row-hero-white h1 {
	color: #145946;
	font-size: 80px;
	font-size: 5rem;
	width: 100%;
	text-align: center;
}
.row-hero-white .ct-text-block {
	color: #145946;
	font-size: 22px;
	font-size: 1.375rem;
	font-weight: 600;
	max-width: 785px;
	max-width: 49.0625rem;
	width: 100%;
	text-align: center;
}
.row-hero-white .book-now {
	width: 100%;
	height: 47px;
	height: 2.9375rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	border-radius: 3.125rem;
	color: #ffffff;
	font-size: 15px;
	font-size: 0.9375rem;
	max-width: 130px;
	max-width: 8.125rem;
	background-color: #145946;
	border: 1px solid #145946;
	margin-top: 10px;
	margin-top: 0.625rem;
	transition: height .2s ease, background-color .2s ease, padding .2s ease, width .2s ease, margin .2s ease, top .2s ease, transform .2s ease;
}
.row-image-right.slider-right  .image-right-txt-cont {
	padding-right: 60px;
	padding-right: 3.75rem;
}
.row-image-right.slider-right .image-right-txt-cont h2 {
	color: #145946;
	font-weight: 700;
	font-size: 22px;
	font-size: 1.375rem;
	margin-bottom: 10px;
	margin-bottom: 0.625rem;
	line-height: 1.5;
}
.row-image-right.slider-right .image-right-txt-cont .ct-text-block.slider-content {
	color: #6D6D6D;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.5;
	margin-top: 22px;
	margin-top: 1.375rem;
	margin-bottom: 10px;
	margin-bottom: 0.625rem;
}
.slider-right .image-right-txt-cont .ct-text-block.ul-head {
	font-size: 18px;
	font-size: 1.125rem;
	color: #145946;
	font-weight: 700;
	margin-top: 20px;
	margin-top: 1.25rem;
	margin-bottom: 10px;
	margin-bottom: 0.625rem;
	line-height: 1.5;
}
.slider-right .image-right-txt-cont .faclities-list {
	width: 85%;
	flex-direction: row;
	display: flex;
	justify-content: space-between;
}
.slider-right .image-right-txt-cont .faclities-list .oxy-rich-text {
	color: #145946;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
}
.row-image-right.slider-right .image-right-img-cont img {
	height: 664px;
	height: 41.5rem;
	object-fit: cover;
	width: 100%;
}
.row-image-right.slider-right.backpackers .image-right-img-cont img {
	height: 577px;
	height: 36.0625rem;
}
.row-image-right.backpackers .ct-section-inner-wrap,
.row-image-right.about .ct-section-inner-wrap {
	padding-bottom: 0px;
	padding-bottom: 0rem;
}
.row-map.backpackers .ct-section-inner-wrap,
.row-map.about .ct-section-inner-wrap,
.row-map.contact .ct-section-inner-wrap {
	padding-top: 0px;
	padding-top: 0rem;
}
.row-before-footer-form.backpackers .ct-section-inner-wrap,
.row-before-footer-form.about .ct-section-inner-wrap {
	padding-bottom: 120px;
	padding-bottom: 7.5rem;
}
.row-image-right.slider-right.about .image-right-txt-cont {
	padding-right: 100px;
	padding-right: 6.25rem;
}
.row-hero-white.backpackers .ct-text-block {
	max-width: 1005px;
	max-width: 62.8125rem;
	width: 100%;
}
.row-hero-white.about .ct-text-block {
	max-width: 100%;
}

.row-room .bedroom {
	width: 100%;
	text-align: center;
	flex-direction: row;
	display: flex;
	gap: 20px;
	gap: 1.25rem;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
}
.row-room .bedroom.one {
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	border-bottom-color: #000000;
	border-bottom-width: 1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.row-room .bedroom.two {
	padding-top: 20px;
	padding-top: 1.25rem;
}
.row-room .bedroom .img-cont {
	max-width: 195px;
	max-width: 12.1875rem;
	width: 100%;
}
.row-room .bedroom img {
	width: 195px;
	width: 12.1875rem;
	height: 195px;
	height: 12.1875rem;
}
.row-room .bedroom .bedroom-cont {
	height: 195px;
	height: 12.1875rem;
	justify-content: space-between;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: flex-start;
}
.row-room .bedroom .bedroom-cont h2 {
	color: #145946;
	font-weight: 700;
	font-size: 23px;
	font-size: 1.4375rem;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	text-align: left;
}
.row-room .bedroom .bedroom-cont .ct-text-block.room-details {
	color: #000000;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 300;
	text-align: left;
}
.row-room .bedroom .bedroom-cont .book-now {
	width: 100%;
	color: #145946;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	flex-direction: row;
	display: flex;
	align-items: center;
	gap: 10px;
	gap: 0.625rem;
}
.row-room .bedroom .bedroom-cont .book-now svg {
	width: 18px;
	width: 1.125rem;
	height: 18px;
	height: 1.125rem;
}

/*sitemap */
.row-hero-white.sitemap .ct-section-inner-wrap {
	height: auto;
	padding-top: 150px;
	padding-top: 9.375rem;
}
.row-sitemap ul li a,
.row-sitemap p a {
	color: #145946;
}

.row-404 .oxy-rich-text {
	color: #145946;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 600;
    max-width: 785px;
    max-width: 49.0625rem;
    width: 100%;
    text-align: center;
}
.row-404 .oxy-rich-text a {
	color: rgba(20, 89, 70, .8);
    text-decoration: underline;
}
.pswp__button--close {
  display: block !important;
  opacity: 1 !important;
  font-size: 30px;
  color: #fff;
  z-index: 9999;
  top: 140px;
}

/*hovers */
header .oxy-header-right .book-now:hover,
.row-links .link-box a:hover,
.row-image-right .image-right-txt-cont .book-now:hover,
.row-before-footer-form .form-cont .gform_footer #gform_submit_button_1:hover,
.row-hero-white .book-now:hover {
	background-color: #ffffff;
	color: #145946;
	border: 3px solid #145946;
	border: 0.1875rem solid #145946;
}
.row-links .link-box a:hover .ct-text-block,
.row-before-footer-form .form-text-cont .oxy-rich-text.phone-email:hover,
.row-before-footer-form .form-text-cont .oxy-rich-text.phone-email a:hover,
.row-404 .oxy-rich-text a:hover {
	color: #145946;
}
.row-footer .footer-menu-cont a:hover,
.row-footer .social-icons div.ct-fancy-icon:hover,
.row-before-footer-form .form-text-cont .social-icons svg:hover,
.row-sitemap ul li a:hover,
.row-sitemap p a:hover  {
	color: #939393;
}
.row-copyright .copyright-cont .oxy-rich-text a:hover {
	text-decoration: underline;
}
.row-room .bedroom:hover .book-now {
	text-decoration: underline;
}


/* Media Queries */
@media (max-width: 2560px) {
	.row-map-link {
		background-image: url(/wp-content/uploads/2025/05/mansfieldbackpackers-map-2560.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 50% 50%;
	}
}

@media (max-width: 1920px) {
	.row-map-link {
		background-image: url(/wp-content/uploads/2025/05/mansfieldbackpackers-map-1920.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 50% 50%;
	}
}
@media (max-width: 1600px) {

}

@media only screen and (max-width: 1300px) {
    .row-footer .ct-section-inner-wrap,
	.row-image-right .ct-section-inner-wrap,
	header .oxy-header-container {
        padding-right: 20px;
        padding-right: 1.25rem;
        padding-left: 20px;
        padding-left: 1.25rem;
    }
}

                                        

@media only screen and (max-width: 1200px) {

	html {		
		font-size: 14px;		
	}

}


@media only screen and (max-width: 1080px) {

	html {		
		font-size: 13px;	
	}
  
}


@media (max-width: 992px) {
	.row-image-right .image-right-txt-cont,
	.row-image-right.slider-right.about .image-right-txt-cont {
		padding-right: 50px;
		padding-right: 3.125rem;

	}
	.pswp__button--close {
  		top: 105px;
	}

	body.admin-bar .oxy-pro-menu .oxy-pro-menu-mobile-close-icon {
    	top: 75px;
	}

	.oxy-pro-menu {
		order: 1;
	}
	header .oxy-header-right .book-now {
		margin-left: 0;
	}
	header.oxy-sticky-header-active #-pro-menu-12-14 .oxy-pro-menu-mobile-open-icon svg {
		color: #000000;
	}
}

@media only screen and (max-width: 900px) {

	html {		
		font-size: 12px;		
	}

}


@media only screen and (max-width: 800px) {

	html {		
		font-size: 11px;	
	}

}
@media only screen and (max-width: 991px) and (min-width: 769px) {

}

@media only screen and (min-width: 769px) {

}
@media (max-width: 782px) {
    .pswp__button--close {
        top: 120px;
		left: -10px;
    }
}

@media only screen and (max-width: 768px) {
	.row-image-right.slider-right.about .image-right-txt-cont {
		padding-bottom: 50px;
		padding-bottom: 3.125rem;
	}
	.row-image-right .image-right-txt-cont h1,
	.row-image-right .image-right-txt-cont h2,
	.row-image-right .image-right-txt-cont .ct-text-block {
		text-align: center;
		width: 100%;
		max-width: 100%;
	}
	.row-image-right .image-right-txt-cont {
		padding-right: 0;
		padding-top: 50px;
        padding-top: 3.125rem;
		width: 100%;
		display: flex;
        align-items: center;
	}
	.row-image-right .image-right-img-cont {
		width: 100%;
    }
	.row-image-right .image-right-cont {
		flex-direction: column-reverse;
	}
	.pswp__button--close {
        top: 140px;
    }
	.row-slider .ct-div-block.slider-holder {
		height: 100%;
	}
	.row-hero-white .ct-section-inner-wrap {
		padding-right: 20px;
        padding-right: 1.25rem;
        padding-left: 20px;
        padding-left: 1.25rem;
	}
	.row-hero-white .ct-text-block,
	.row-hero-white.backpackers .ct-text-block {
		max-width: 100%;
	}
	.row-hero-white .ct-section-inner-wrap {
		height: auto;
		padding-top: 150px;
		padding-top: 9.375rem;	
	}
	.row-image-right.slider-right .image-right-txt-cont,
	.row-image-right.slider-right.about .image-right-txt-cont {
		padding-right: 0;
	}
	.row-hero-white h1 {
		font-size: 40px;
		font-size: 2.5rem;	
	}

	.slider-right .image-right-txt-cont .faclities-list {
		width: 100%;
	}

	html {		
		font-size: 16px;	
	}

    .row-links .link-box {
        margin-left: 10px;
        margin-left: 0.625rem;
        margin-right: 10px;
        margin-right: 0.625rem;    
    }
    .row-before-footer-form .form-main-cont {
        width: 100%;
        text-align: left;
        flex-direction: column;
        display: flex;
        align-items: center;
    }
    .row-before-footer-form .form-text-cont {
        width: 100%;
        padding-bottom: 60px;
        padding-bottom: 3.75rem;
        padding-right: 0;
    }
    .row-before-footer-form .form-cont {
        width: 100%;
        padding-left: 0;
    }
    .row-before-footer-form .form-text-cont h3 {
        max-width: 100%;
    }
    .row-before-footer-form .form-cont .gform_wrapper input[type="text"], .row-before-footer-form .form-cont .gform_wrapper input[type="tel"], .row-before-footer-form .form-cont .gform_wrapper input[type="email"], .row-before-footer-form .form-cont .gform_wrapper textarea {
        max-width: 100%;
    }
    .row-footer .main-footer-cont {
        flex-wrap: wrap;
    }
    .row-footer .footer-boxes.footer-logo-cont {
        width: 100%;
        display: flex;
        align-items: center;
        padding-bottom: 20px;
    }
    .row-footer .footer-boxes.footer-nav {
        width: 50%;
    }
    .row-footer .footer-boxes.footer-socials {
        width: 100%;
    }
    .row-footer .social-icons {
        padding-left: 0;
        justify-content: center;
        align-items: center;
    }
    .row-footer .ct-section-inner-wrap {
        padding-top: 35px;
        padding-top: 2.1875rem;    
    }
    .row-footer .footer-menu-cont a,
    .row-before-footer-form .form-text-cont .oxy-rich-text.phone-email {
        word-break: break-all;
    }


}

@media (max-width: 767px) {
	div#_gallery-86-49.oxy-gallery-flex .oxy-gallery-item {
		width: calc(50% - 3px - 3px);
	}

}


@media only screen and (max-width: 600px) {  

	html {		
		font-size: 15px;	
	}

}

@media (max-width: 580px) {
    .row-links .links-main-box {
        flex-wrap: wrap;
    }
	.slider-right .image-right-txt-cont .faclities-list {
		flex-direction: column;
		display: flex;
		justify-content: space-between;
	}
	.slider-right .image-right-txt-cont .faclities-list .oxy-rich-text ul {
		margin: 0;
	}
}

@media only screen and (max-width: 500px) {

}

@media (max-width: 479px) {
	div#_gallery-86-49.oxy-gallery-flex .oxy-gallery-item {
		width: calc(100% - 6px);
	}

}

@media (max-width: 470px) {
	.row-room .bedroom .bedroom-cont {
		width: 100%;
		max-width: 230px;
		max-width: 14.375rem;	
	}
	header .oxy-header-right .book-now {
		display: none;
	}
	header.oxy-sticky-header-active .oxy-header-right .book-now {
		display: block;
		max-width: 130px;
		max-width: 8.125rem;
		width: 100%;
	}
	header.oxy-sticky-header-active .oxy-header-left,
	header.oxy-sticky-header-active .oxy-header-center {
		display: none;
	}
	header.oxy-sticky-header-active .oxy-header-right {
		justify-content: space-between;
		width: 100%;
		display: flex;
		align-items: center;
	}
}

@media (max-width: 450px) {
    .row-footer .footer-boxes.footer-nav {
        width: 100%;
        padding: 10px 0px;
        padding: 0.625rem 0rem;    
    }
}

@media only screen and (max-width: 400px) {
	.row-room .bedroom {
		display: flex;
		flex-direction: column;
        justify-content: flex-start;
        align-items: center;
	}
	.row-room .bedroom .img-cont,
	.row-room .bedroom .bedroom-cont {
		max-width: 100%;
		display: flex;
		align-items: center;
	}
	.row-room .bedroom .bedroom-cont .book-now {
		justify-content: center;
	}
	.row-room .bedroom .bedroom-cont h2,
	.row-room .bedroom .bedroom-cont .ct-text-block.room-details {
		text-align: center;
		width: 100%;
	}
}


@media only screen and (max-width: 370px) {

	html {  		
		font-size: 14px;		
	}
	
}


@media only screen and (max-width: 350px) {

	html {		
		font-size: 13.66px;		
	}

}


.row-slider .unslider-arrow {
	background: none;
	text-indent: initial;
	overflow: visible;
	width: auto;
	height: auto;
	opacity: 1;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	padding: 0.5rem;
}

/* Style the SVG inside the arrows */
.row-slider .unslider-arrow svg {
	width: 36px;
	width: 2.25rem;
	height: 36px;
	height: 2.25rem;
	fill: green; /* Set your desired green color */
}
.row-slider .unslider-arrow.prev {
	transform: none;
}
.row-slider .slider-hover .unslider-arrow.prev {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-20px); /* slide in from the left */
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	pointer-events: none;
}
.row-slider .slider-hover:hover .unslider-arrow.prev {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}
.row-slider .slider-hover .unslider-arrow.next {
	opacity: 0;
	visibility: hidden;
	transform: translateX(20px); /* subtle slide effect */
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	pointer-events: none;
}
.row-slider .slider-hover:hover .unslider-arrow.next {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}
.row-hero-white.privacy .ct-section-inner-wrap {
	height: 100%;
	padding-top: 120px;
	padding-top: 7.5rem;
}
/*Requested Changes from 2948037007/262491*/
img#image-11-14,
img#image-21-14{
	display:none;
}
.row-copyright {
	padding-top: 109px;
	padding-top: 6.8125rem;
}
footer {
    background-image: url(/wp-content/uploads/2025/05/Mans-Footer-BG-longer.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.row-footer .footer-boxes h2,
.row-footer .footer-boxes a,
.row-copyright p {
    color: #8c6328;
}