﻿@charset "UTF-8";

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

html {
    -webkit-text-size-adjust: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	color: #000;
	line-height: 1.5;
	background: #fff;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 16px;
	overflow: hidden;
}

@supports (overflow:clip) {
	#mainWrapper {
		overflow: clip;
	}
}

/* Section */

.section {
	max-width: 1360px;
	margin: 0 auto;
}

/* Narrow Section */

.narrowSection {
	max-width: 916px;
	margin: 0 auto;
}

.narrowSection>:last-child {
	margin-bottom: 0;
}

/* Header */

#header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: 46px 50px 0;
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	pointer-events: none;
}

#header .logo {
	width: 330px;
	pointer-events: auto;
}

#header .logo img {
	display: block;
	width: 100%;
}

#header .options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	pointer-events: auto;
}

#header .options .linkBtn {
	border: 1px solid #fff;
	margin: 0;
}

/* Slider */

#slider .swiper-slide img {
	display: block;
	width: 100%;
}

/* Page Slider */

#pageSlider {
	background: #F4E1C9;
}

#pageSlider .swiper-slide {
	width: 38%;
}

#pageSlider .swiper-slide img {
	display: block;
	width: 100%;
}

#pageSlider .prevBtn,
#pageSlider .nextBtn {
	position: absolute;
	left: 21px;
	top: 60%;
	width: 15px;
	height: 27px;
	background: url(../images/slider-arrow.svg) no-repeat;
	background-size: 100%;
	z-index: 1;
	cursor: pointer;
	outline: none;
}

#pageSlider .nextBtn {
	left: auto;
	right: 21px;
	-webkit-transform: scaleX(-1);
	    -ms-transform: scaleX(-1);
	        transform: scaleX(-1);
}

/* Info Bar */

.infoBar {
	background: #F4E1C9;
}

.infoBar .section  {
	padding-top: 60px;
	padding-bottom: 60px;
}

.infoBar .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.infoBar .left {
	width: 353px;
}

.infoBar .left>:last-child,
.infoBar .right>:last-child {
	margin-bottom: 0;
}

.infoBar .right {
	width: 446px;
	margin-left: auto;
	margin-right: 70px;
	margin-top: 8px;
}

.infoBar .left h2 {
	margin-bottom: 17px;
}

/* Info Box */

.infoBox {
	background: #F4E1C9;
}

.infoBox .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 60px;
	padding-bottom: 60px;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.infoBox .text {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin-left: 60px;
}

.infoBox .text>:last-child {
	margin-bottom: 0;
}

.infoBox .bookNow {
	margin: 0 0 0 120px;
}

/* Content */

.content {
	overflow: hidden;
}

.content .section {
	position: relative;
	padding-top: 85px;
	padding-bottom: 85px;
}

.content .section>:last-child {
	margin-bottom: 0;
}

.content.dog1 .section:before {
	content: "";
	position: absolute;
	left: 47px;
	bottom: -28px;
	width: 233px;
	height: 271px;
	background: url(../images/dog-image01.svg) no-repeat;
	background-size: 100%;
	pointer-events: none;
}

.content.dog2 .section:after {
	content: "";
	position: absolute;
	right: -30px;
	bottom: -36px;
	width: 215px;
	height: 271px;
	background: url(../images/dog-image02.svg) no-repeat;
	background-size: 100%;
	pointer-events: none;
	z-index: -1;
}

.content.dog3 .section:before {
	content: "";
	position: absolute;
	left: -40px;
	bottom: 0;
	width: 148px;
	height: 148px;
	background: url(../images/dog-image04.svg) no-repeat;
	background-size: 100%;
	pointer-events: none;
	-webkit-transform: scaleX(-1);
	    -ms-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.grayBg {
	background: #EEE;
}

.lightGrayBg {
	background: #fbfbfb;
}

.withCircles {
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(../images/circles.svg);
	background-size: 216px 100%;
}

/* Intro Text */

.introText {
	position: relative;
	text-align: center;
	padding-bottom: 40px;
	margin-bottom: 65px;
}

.introText:before {
	content: "";
	position: absolute;
	left: 205px;
	right: 205px;
	bottom: 0;
	height: 1px;
	background: #000;
}

/* Two Cols */

.twoCols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 85px;
}

.twoCols .col {
	width: 626px;
}

.twoCols .col>:last-child {
	margin-bottom: 0;
}

/* Three Cols */

.threeCols {
	--gap: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 calc(var(--gap) * -1) 85px;
	padding: 0 25px;
}

.threeCols .col {
	width: 33.33333333333333%;
	padding: 0 var(--gap);
}

.threeCols .col .linkBtn {
	margin: 0;
}

/* Features */

.features {
	max-width: 1010px;
	margin: 0 auto 85px;
	padding: 40px 50px;
	background: #EEE url(../images/features-bg.svg) no-repeat center;
	background-size: cover;
	border-radius: 40px;
}

.features .listing {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.features .listing li {
	margin: 0;
	padding: 30px 40px;
	list-style: none;
	width: 33.33333333333333%;
	text-align: center;
}

.features .listing li a {
	display: inline-block;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.features .listing li img {
	display: block;
	margin: 0 auto 12px;
}

.features .listing li a:hover {
	-webkit-transform: scale(1.06);
	    -ms-transform: scale(1.06);
	        transform: scale(1.06);
}

/* Image Text */

.imageText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 85px;
}

.imageText .image {
	width: 400px;
}

.imageText .image img {
	display: block;
	width: 100%;
	border-radius: 40px;
	border-bottom: 10px solid #000;
}

.imageText .text {
	width: 463px;
	margin-left: auto;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

.imageText .text>:last-child {
	margin-bottom: 0;
}

.imageText .text h2 {
	margin: 0 0 17px;
}

.imageText.alt .text {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	margin-left: 0;
}

.imageText.alt .image {
	margin-left: auto;
}

/* Text Image */

.textImage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 85px;
}

.textImage .image {
	width: 640px;
}

.textImage .image img {
	display: block;
	width: 100%;
	border-radius: 40px;
}

.textImage .text {
	width: 626px;
	margin-left: auto;
}

.textImage .text>:last-child {
	margin-bottom: 0;
}

/* Text Images */

.textImages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 50px;
}

.textImages .text {
	width: 626px;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

.textImages .text>:last-child {
	margin-bottom: 0;
}

.textImages .images {
	width: 550px;
	margin-left: auto;
	margin-right: 50px;
}

.textImages .images ul {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.textImages .images ul li {
	margin: 0;
	padding: 25px;
	list-style: none;
	width: 50%;
}

.textImages .images ul li a {
	display: block;
	overflow: hidden;
	border-radius: 40px;
}

.textImages .images ul li img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	-o-transition: transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
}

.textImages .images ul li a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* Info Cols */

.infoCols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 1060px;
	margin: 0 auto 85px;
	padding: 30px 0;
}

.infoCols .col {
	position: relative;
	width: 446px;
}

.infoCols .col>:last-child {
	margin-bottom: 0;
}

.infoCols .col:after {
	content: "";
	position: absolute;
	background: no-repeat;
	background-size: 100%;
	z-index: -1;
}

.infoCols .col:first-child:after {
	width: 176px;
	height: 151px;
	right: -50px;
	bottom: -70px;
	background-image: url(../images/dog-image03.svg);
}

.infoCols .col:last-child:after {
	width: 149px;
	height: 149px;
	right: -73px;
	bottom: -70px;
	background-image: url(../images/dog-image04.svg);
}

/* Gallery */

.gallery {
	text-align: center;
	max-width: 995px;
	margin: 0 auto 85px;
}

.gallery .coverImage {
	display: block;
	border-radius: 40px;
	margin-top: 40px;
	overflow: hidden;
}

.gallery .coverImage img {
	display: block;
	width: 100%;
}

.gallery img {
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	-o-transition: transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
}

.gallery a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.gallery .images {
	--gap: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 60px calc(var(--gap) * -1) 0;
	padding: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.gallery .images li {
	margin: 0;
	padding: 0 var(--gap);
	list-style: none;
	width: 20%;
}

.gallery .images li a {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.gallery .images li img {
	display: block;
	width: 100%;
}

/* Footer */

#footer {
	background: #F4E1C9;
	font-size: 12px;
}

#footer .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 50px;
	padding-bottom: 50px;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#footer h3 {
	margin: 0 0 2px;
}

#footer .left {
	width: 680px;
}

#footer .left .form {
	margin-top: 45px;
}

#footer .left .form .fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	--gap: 10px;
	margin: 0 calc(var(--gap) * -1);
}

#footer .left .form .fields .field {
	width: 50%;
	padding: 0 var(--gap);
	margin-bottom: calc(var(--gap) * 2);
}

#footer .left .form .fields .field .textbox {
	display: block;
	margin: 0;
	padding: 0 25px;
	border-radius: 40px;
	border: 1px solid #000;
	width: 100%;
	height: 52px;
	background: none;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #000;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

#footer .left .form .submitBtn {
	margin: 0 0 0 auto;
}

#footer .right {
	margin-left: auto;
	width: 555px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

#footer .right .options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 32px;
}

#footer .right .options .socials {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#footer .right .options .socials li {
	margin: 5px 0 5px 20px;
	padding: 0;
	list-style: none;
}


#footer .right .options .socials li img {
	display: block;
	height: 28px;
}

#footer .right .options .socials li a:hover img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

#footer .right .options .linkBtn {
	margin: 0 0 0 26px;
}

#footer .right .logo {
	display: block;
	-webkit-filter: brightness(0) saturate(100%);
	        filter: brightness(0) saturate(100%);
}

#footer .right .logo img {
	display: block;
	width: 100%;
}

#footer .bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-top: 15px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#footer .bottom .websiteBy {
	display: inline-block;
	margin: 0;
}

#footer .bottom .websiteBy a {
	display: inline-block;
	padding-left: 19px;
	background: url(../images/cloud-ico.svg) no-repeat 1px 3px;
}

#footer .bottom .copyright {
	display: inline-block;
	padding-left: 16px;
	margin: 10px 0 0;
	background: url(../images/copyright-ico.svg) no-repeat 0 3px;
}

/* Hamburger */

.hamburger {
	overflow: visible;
	position: relative;
	top: 12px;
	margin-top: 0;
	margin-left: 29px;
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	text-transform: none;
	color: inherit;
	border: 0;
	background-color: transparent;
}

.hamburger.is-active:hover,
.hamburger:hover {
	opacity: 1
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #fff;
}

.hamburger-box {
	display: inline-block;
	width: 32px;
	height: 24px;
}

.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -4px
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: absolute;
	width: 32px;
	height: 4px;
	-webkit-transition-timing-function: ease;
	     -o-transition-timing-function: ease;
	        transition-timing-function: ease;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	border-radius: 4px;
	background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: ""
}

.hamburger-inner:before {
	top: -10px
}

.hamburger-inner:after {
	bottom: -10px
}

.hamburger .hamburger-inner {
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	     -o-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	        transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	-webkit-transition-duration: .22s;
	     -o-transition-duration: .22s;
	        transition-duration: .22s
}

.hamburger .hamburger-inner:before {
	-webkit-transition: top .1s ease-in .25s, opacity .1s ease-in;
	-o-transition: top .1s ease-in .25s, opacity .1s ease-in;
	transition: top .1s ease-in .25s, opacity .1s ease-in
}

.hamburger .hamburger-inner:after {
	-webkit-transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	-o-transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.hamburger.is-active .hamburger-inner {
	-webkit-transition-delay: .12s;
	     -o-transition-delay: .12s;
	        transition-delay: .12s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	     -o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg)
}

.hamburger.is-active .hamburger-inner:before {
	top: 0;
	-webkit-transition: top .1s ease-out, opacity .1s ease-out .12s;
	-o-transition: top .1s ease-out, opacity .1s ease-out .12s;
	transition: top .1s ease-out, opacity .1s ease-out .12s;
	opacity: 0
}

.hamburger.is-active .hamburger-inner:after {
	bottom: 0;
	-webkit-transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-o-transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg)
}

.mm-panel {
	background: #F4E1C9;
	text-align: left;
		font-weight: bold;
}

.mm-navbar>* {
	min-height: 40px;
	background: #000;
	font-weight: bold;
}

.mm-navbar__title>span {
	color: #fff;
	padding-left: 10px;
}

.mm-listitem__text {
	color: #000 !important;
}

.mm-listitem.active, 
.mm-listitem .active {
	background-color: #151515;
}

/* Miscelleneous */

p {
	margin: 0 0 25px;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	margin: 0 0 19px;
}

h2 {
	font-size: 36px;
	margin-bottom: 29px;
}

h3 {
	font-size: 32px;
	margin-bottom: 16px;
}

h4 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 16px;
}

h5 {
	font-size: 26px;
	font-weight: normal;
	margin-bottom: 10px;
}

h6 {
	font-size: 21px;
	font-weight: bold;
	margin-bottom: 10px;
}


a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

img {
	border: 0;
	max-width: 100%;
}

ul,
ol {
	padding: 0 0 0 25px;
	margin-bottom: 25px;
}

.linkBtn {
	position: relative;
	display: table;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: normal;
	margin: 25px 0;
	min-width: 131px;
	text-align: center;
	color: #fff;
	border: 0;
	padding: 14px 26px;
	border-radius: 40px;
	background: #000;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

button.linkBtn {
	padding-top: 15.5px;
	padding-bottom: 15.5px;
}

.linkBtn:hover {
	background-color: #191919;
	color: #fff;
}

.clear {
	clear: both;
}

.clearfix:after { 
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden; 
}

.clearfix { 
  display: inline-block;  
}

* html .clearfix{  
  height: 1%;  
}

.clearfix {  
  display: block;  
}

input::-moz-focus-inner { 
    border: 0;
    padding: 0;
}

form {
	margin: 0;
	padding: 0;
}

input, select, textarea {
    border-radius: 0;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-moz-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {  
	color: inherit;
	opacity: 1;
}

/* Media Queries */

/* Large Screens (Desktops) */

@media only screen and (max-width : 1450px) {
	.section {
		max-width: 1230px;
	}	

	.textImage .image {
		width: 601px;
	}

	.textImage .text {
		width: 572px;
	}

	.textImages .images {
		margin-right: 0;
	}

	.infoBox .bookNow {
		margin-left: 60px;
	}

	.twoCols .col {
		width: 590px;
	}

	#footer .left {
		width: 623px;
	}
}

/* Tablet Screens (Landscape) */

@media only screen and (max-width : 1260px) {
	.section {
		max-width: 970px;
	}	

	#header {
		padding: 25px 30px 0;
	}

	#header .logo {
		width: 290px;
	}

	.hamburger {
		margin-left: 20px;
	}

	.content.dog1 .section:before {
		left: -9px;
		bottom: -28px;
		width: 196px;
		height: 234px;
	}

	.content.dog2 .section:after {
		right: -3px;
		bottom: -36px;
		width: 179px;
		height: 226px;
	}

	#pageSlider .swiper-slide {
		width: 43%;
	}

	.infoCols .col:first-child:after {
		right: -27px;
	}

	.infoCols .col:last-child:after {
		right: -35px;
	}

	.textImage .image {
		width: 416px;
	}

	.textImage .text {
		width: 520px;
	}

	.textImages .images {
		width: 452px;
	}

	.textImages .text {
		width: 493px; 
	}

	.textImages .images ul li {
		padding: 10px;
	}

	.twoCols .col {
		width: 464px;
	}

	.threeCols {
		--gap: 15px;
		padding-left: 0;
		padding-right: 0;
	}

	.gallery .images {
		margin-top: 50px;
	}

	.infoBox .text {
		margin-left: 30px;
	}

	.infoBox .bookNow {
		margin-left: 40px;
	}
	
	#footer .left {
		width: 530px;
	}

	#footer .left .form {
		margin-top: 25px;
	}

	#footer .right {
		width: 407px;
	}
	
}

/* Tablet Screens (Portrait) */

@media only screen and (max-width : 991px) {
	.section {
		max-width: 750px;
		padding-left: 15px;
		padding-right: 15px;
	}	

	#header {
		padding: 30px 20px 0;
	}

	.hamburger {
		margin-left: 15px;
	}

	.infoBar .section {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	
	.infoBox .text {
		margin-left: 0;
	}

	.infoBar .left {
		width: 330px;
		margin-left: 0;
	}

	.infoBar .right {
		width: 359px;
		margin-right: 0;
	}

	.content .section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.content.dog1 .section:before {
		left: -9px;
		bottom: -76px;
		width: 153px;
	}

	.content.dog2 .section:after {
		right: -29px;
		bottom: -103px;
		width: 125px;
	}

	.textImage .image {
		width: 270px;
	}

	.textImage .text {
		width: 423px;
	}

	.gallery {
		margin-bottom: 60px;
	}

	.gallery .images {
		--gap: 10px;
		margin-top: 40px;
	}

	.twoCols {
		margin-bottom: 60px;
	}

	.twoCols .col {
		width: 340px;
	}

	.threeCols {
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 60px;
	}

	.introText:before {
		left: 40px;
		right: 40px;
	}

	#pageSlider .swiper-slide {
		width: 46%;
	} 

	#pageSlider .prevBtn, #pageSlider .nextBtn {
		top: 65%;
	}

	.textImages .text {
		width: 394px;
	}

	.textImages .images {
		width: 308px;
	}

	.features {
		padding: 20px 30px;
		margin-bottom: 60px;
	}

	.features .listing li {
		padding: 20px 10px;
	}

	.imageText {
		margin-bottom: 60px;
	}

	.imageText .image {
		width: 280px;
	}
	
	.imageText .text {
		width: 408px;
	}

	.textImage {
		margin-bottom: 60px;
	}

	.infoBox .bookNow {
		margin-left: 30px;
	}

	.infoCols {
		padding-top: 0;
		padding-bottom: 0;
	}

	.infoCols .col {
		width: 338px;
	}

	.infoCols .col:first-child:after {
		right: -2px;
		width: 148px;
		height: 136px;
	}

	.infoCols .col:last-child:after {
		right: -8px;
		width: 136px;
		height: 133px;
	}

	#footer .left {
		width: 410px;
	}

	#footer .left .form .fields {
		--gap: 6px;
	}

	#footer .right {
		width: 280px;
	}

	#footer .right .options .linkBtn {
		margin-left: 17px;
	}

	#footer .right .options .socials li {
		margin-left: 16px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 26px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 22px;
	}
}

/* Mobile Screens */

@media only screen and (max-width : 767px) {
	.hamburger {
		display: block;
	}

	#header {
		display: block;
		position: static;
		background: #000;
		padding: 40px 15px 30px;
	}

	#header .options .linkBtn {
		display: none;
	}

	#header .logo {
		display: block;
		margin: 0 auto;
		width: 260px;
	}

	.hamburger {
		position: absolute;
		right: 10px;
		top: 10px;
		margin: 0;
	}

	.infoBar {
		text-align: center;
	}

	.infoBar .section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.infoBar .inner {
		display: block;
	}

	.infoBar .left {
		width: 100%;
		margin-bottom: 16px;
	}
	
	.infoBar .right {
		width: 100%;
	}
	
	.features {
		padding: 20px;
		margin-bottom: 50px;
	}

	.features .listing {
		display: block;
	}

	.features .listing li {
		padding: 15px 0;
		width: 100%;
	}

	.features .listing li h6 br {
		display: none;
	}

	.content .section {
		padding-top: 50px;
		padding-bottom: 50px;
		text-align: center;
	}

	.gallery {
		margin-bottom: 50px;
	}

	.gallery .coverImage {
		margin-top: 0;
	}

	.gallery .images {
		--gap: 5px;
		margin-top: 20px;
	}

	.gallery .images li a {
		border-radius: 10px;
	}

	#pageSlider .swiper-slide {
		width: 80%;
	}

	#pageSlider .prevBtn, 
	#pageSlider .nextBtn {
		top: 50%;
		margin-top: -13.5px;
	}

	#pageSlider .prevBtn {
		left: 15px;
	}

	#pageSlider .nextBtn {
		right: 15px;
	}

	.imageText {
		display: block;
		text-align: center;
		margin-bottom: 50px;
	}

	.imageText .image {
		margin: 0 auto 30px;
	}

	.imageText .text {
		width: 100%;
	}

	.textImage {
		display: block;
		margin-bottom: 50px;
	}

	.textImage .image {
		margin: 0 auto 20px;
	}

	.textImage .text {
		width: 100%;
	}

	.textImages {
		display: block;
	}

	.textImages .text {
		width: 100%;
	}

	.textImages .images {
		margin: 20px auto 0;
		max-width: 100%;
		width: 350px;
	}

	.infoBox .section {
		display: block;
		text-align: center;
	}

	.infoBox .bookNow {
		margin-left: auto;
		margin-right: auto;
		margin-top: 25px;
	}

	.content.dog1 .section:before {
		left: -10px;
		bottom: -135px;
		width: 96px;
		z-index: -1;
	}

	.content.dog2 .section:after {
		right: 2px;
		bottom: -148px;
		width: 79px;
	}

	.infoCols {
		display: block;
		margin-bottom: 20px;
	}

	.infoCols .col {
		width: 100%;
		margin-bottom: 25px;
			padding-bottom: 160px;
	}

	.infoCols .col:first-child:after {
		right: 50%;
		bottom: 0;
		margin-right: -74px;
	}
	
	.infoCols .col:last-child {
		margin-bottom: 0;
	}

	.infoCols .col:last-child:after {
		right: 50%;
		bottom: 0;
		margin-right: -68px;
	}

	.twoCols {
		display: block;
		margin-bottom: 50px;
	}

	.twoCols .col {
		width: 100%;
		margin-bottom: 30px;
	}

	.twoCols .col:last-child {
		margin-bottom: 0;
	}

	.threeCols {
		display: block;
		margin-bottom: 50px;
	}

	.threeCols .col {
		width: 100%;
		padding: 0;
		margin-bottom: 40px;
	}

	.threeCols .col .linkBtn {
		margin-left: auto;
		margin-right: auto;
	}

	.threeCols .col>:last-child {
		margin-bottom: 0;
	}

	.introText {
		padding-bottom: 20px;
		margin-bottom: 42px;
	}

	.introText:before {
		left: 30px;
		right: 30px;
	}

	.content.dog3 .section:before {
		left: 8px;
		width: 95px;
		height: 73px;
	}

	#footer {
		text-align: center;
	}

	#footer .left .form {
		margin-top: 0;
	}

	#footer .left .form .fields {
		max-width: 400px;
		margin: 0 auto;
	}

	#footer .left .form .fields .field {
		width: 100%;
		margin-bottom: 20px;
	}

	#footer .left .form .submitBtn {
		margin-left: auto;
		margin-right: auto;
	}

	#footer .left {
		width: 100%;
	}

	#footer .right {
		margin-top: 30px;
		margin-left: 0;
		width: 100%;
	}

	#footer .right .logo {
		width: 280px;
		margin: 0 auto 10px;
	}

	#footer .right .options {
		display: block;
		margin: 0 auto 30px;
	}

	#footer .right .options .linkBtn {
		margin-left: auto;
		margin-right: auto;
	}

	#footer .right .options .socials {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin-bottom: 20px;
	}

	#footer .right .options .socials li {
		margin-left: 7px;
		margin-right: 7px;
	}

	#footer .bottom {
		display: block;
	}
	
	.linkBtn {
		margin-left: auto;
		margin-right: auto;
	}

	ul.bulletList {
		padding: 0;
	}

	ul.bulletList li {
		list-style: none;
		margin-bottom: 10px;
	}

	ul.bulletList li:before {
		content: "\2022";
		display: inline-block;
		margin-right: 7px;
	}

	h3 {
		font-size: 26px;
	}

	h6 {
		font-size: 18px;
	}
}

@media only screen and (max-width : 479px) {

}