/*------------------------------------VARIABLES-----------------------------------------*/

:root{

	--sBlue:#012BA2;
	--sLtBlue:#e7eaf5;


}



/*------------------------------------top-level-----------------------------------------*/
body{
	margin:0;
	padding:0;
	overflow-x: hidden;
	background-color:var(--sLtBlue);
}	

div, img, p, h1, h2, h3, h4, a{
	margin:0;
	padding:0;
	border:0;
}

li{
list-style-type:none;
}

a{
	text-decoration:none;
	color:var(--sBlue);
}


.brandColors{
	background-color:#6786b8;
}

/*---------------------------------------general------------------------------------------*/


.pageSection1{
	position:relative;
	width:100vw;
	min-height:800px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.pageSection2{
	position:relative;
	width:100vw;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.sectionCon{
	position:relative;
	width:80%;
	max-width: 1600px;
}

.img_wrpr,
.vid_wrpr{
	position:relative;
	width:100%;
	height: 100%;
	overflow: hidden;
}

.fitIMG,
.fitVid{
	position:relative;
	width:100%;
	height:100%;
	margin: 0% 0 -1% 0;
	object-fit: cover;
    object-position: center center;
}

/*------------------------------------fonts-----------------------------------------*/

.nimbReg{
	font-family: nimbus-sans,sans-serif;
	font-weight: 400;
	font-style: normal;
}

.nimbRegIt{
	font-family: nimbus-sans,sans-serif;
	font-weight: 400;
	font-style: italic;
}

.nimbBold{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	font-style: normal;
}

.nimbBoldIt{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	font-style: italic;
}

h1, h2, h4{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	color:var(--sBlue);
}

h2{
	font-size: 100px;
    line-height: 100px;
    letter-spacing: 12px;
}

h3, h6{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	color:var(--sBlue);
}


 h6{
 	font-size: 14px;
 	letter-spacing: 2px;
 }

.sectionTitle{
	font-size: 13.1vw;
    line-height: 1em;
    letter-spacing: 1.6vw;
}

.sectionTitle2{
	font-size: 160px;
    line-height: 160px;
    letter-spacing: 16px;
}

.sectionSmallTitle{
	font-size: 28px;
    line-height: 34px;
    letter-spacing: 6px;
}

.smallTitle{
	font-size: 16px;
	letter-spacing: 2px;
}

.blockQuote{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size:18px;
	line-height: 24px;
	color:var(--sBlue);
	/*text-align: justify;*/
}

.bodyCopy{
	font-family: nimbus-sans,sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:14px;
	line-height: 20px;
	letter-spacing: 1px;
	color:var(--sBlue);
	/*text-align: justify;*/
}

.boldCopy{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
}

.bodyCopyLarge{
	font-family: nimbus-sans,sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
    line-height: 24px;
	color:var(--sBlue);
	/*text-align: justify;*/
}

.boldCopyLarge{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	font-size: 14px;
    line-height: 26px;
    letter-spacing: 2px;
    color:var(--sBlue);
}


.linkText{
	font-family: nimbus-sans,sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 12px;
	letter-spacing: 2px;
	color:var(--sBlue);
	display: inline-block;
}

.undLineLink{
	margin: 20px 0;
}

.undLineLink::after, .undLine::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--sBlue);
    transition: 300ms;
    transform-origin: top right;
}

.undLineLink:hover{
	transform: translateX(-2px);
}

.undLineLink:hover::after {
    transform: scaleX(0.0);
}

.contactInd{
	color: var(--sBlue);
	font-style: italic;
	opacity: 0;
	transition: 300ms;
}



/*------------------------------------animations-----------------------------------------*/

@keyframes blink {	
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}

@keyframes rotateLoader {	
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}

@keyframes bounce1 {	
		0%{transform:translateY(0);}
		50%{transform:translateY(5px);}
		100%{transform:translateY(0px);}	
}

@keyframes lineAnim {	
		0%{transform:scaleX(0);}
		100%{transform:scaleX(1);}	
}

/*----------------------------------initialStates------------------------------------------*/

.o0{
	opacity: 0;
}

.o1{
	opacity: 1;
}

.a1{
	opacity: 0;
	transform: translateY(20px);
}

.a2{
	opacity: 0;
	transform: scale(0.9);
}

/*---------------------------------------nav------------------------------------------*/

.mainNav{
	position:relative;
	display:flex;
	justify-content:center;
}

.pgCornerLogo {
    position: absolute;
    width: 70px;
    height: auto;
    top: -2px;
    right: -120px;
    margin: auto;
}

.comingSoonText{
	font-family: nimbus-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--sBlue);
    display: inline-block;
}

.navContainer{
	position:fixed;
	width: fit-content;
    height: 25px;
	top:20px;
	left: 0;
    right: 120px;
	margin:auto;
	z-index: 100;
	opacity:0; /*migitates staggerFrom flash on mainNavItem*/
	background-color:rgba(255,255,255,0.0);
}

.barCon{
	display: none;
}

.navItem{
	position:relative;
	margin:0 20px;
}

.navItem:after, .f-rNavContainer .r-navItem:after{
    content: attr(data-line);
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--sBlue);
    transition: 300ms;
    transform: scaleX(0);
    transform-origin: top left;
}

.lineAnim{
	animation: lineAnim 300ms ease-out forwards;
}


.navItem:hover, .f-rNavContainer .r-navItem:hover{
	transform: translateX(-2px);
}

.navItem:hover:after, .f-rNavContainer .r-navItem:hover:after {
    transform: scaleX(1.0);
}

.changed:after{
   content:'';
   transform: scaleX(1);
}


.shifted{
	transform:translateX(-3px);
}


/*---------------------------------------footer------------------------------------------*/

.footerContainer{
	position:relative;
	width:100vw;
	height:180px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:100px auto 0px auto;
	opacity:0; /*migitates staggerFrom flash on mainNavItem*/
	background-color:rgba(255,255,255,0.0);
}

.f-navBlock{
	position:relative;
	width: 80%;
	left:0;
	right:0;
	margin:25px auto;
	opacity: 0;
	background-color:rgba(255,255,255,0.0);
}

.f-SocialNav{
	left: -10px;
}

.f-rNavContainer{
	left:-22px;
}

.f-line{
	height:2px;
	background-color:var(--sBlue);
	transform-origin: top left;
}

.f-stampLogo{
	position:absolute;
	width: 120px;
	height: auto;
	top: -16px;
    right: 140px;
    opacity: 0.8;
}

/*---------------------------------------loadWindow------------------------------------------*/


.loadWindow{
	position:fixed;
	width:100vw;
	height:100vh;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	background-color:var(--sLtBlue);
	z-index: 1000;
	display: none;
}

.loadTextCon{
	position:absolute;
	width: 1000px;
	height:220px;
	bottom:100px;
	left:0;
	right:0;
	margin:auto;
	background-color:rgba(255,255,255,0.0);
}

#loadingText{
	font-size: 200px;
	letter-spacing: 26px;
}

.introCon{
	position:absolute;
	width:150px;
	height:150px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.loaderIMG{
	position:absolute;
	width:100%;
	height:auto;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

#outerLoader{
	animation:rotateLoader 10000ms linear infinite;
}

#midLoader{
	animation:rotateLoader 8000ms linear infinite;
}

#innerLoader{
	animation:rotateLoader 6000ms linear infinite;
}

.entryConBottom{
	position: absolute;
	width:90%;
	height:150px;
	bottom:20px;
	left:0;
	right:0;
	margin:auto;
}

.bgLoadBarCon{
	position: absolute;
	width:100%;
	height:2px;
	left:0;
	overflow:hidden;
}

.bgLoadBar{
	position: absolute;
	width:100%;
	height:100%;
	left:0;
	background-color:var(--sBlue);
	opacity: 0;
	transform-origin: top left;
}


/*---------------------------------------entry------------------------------------------*/

#hpEntrySection{
	height: 100vh;
}

.mainLogo{
	position: absolute;
    width: 20%;
    max-width: 350px;
    height: auto;
    top: 9vw;
    left: 0;
    right: 0px;
    margin: auto;
}

.plateIMG01{
	position: absolute;
    width: 46%;
    max-width: 1200px;
    height: auto;
    top: 360px;
    left: 100px;
    margin: auto;
}

.scrollDownCon{
	position:absolute;
	width:50px;
	height:385px;
	background-color:rgba(255,255,255,0.0);
	z-index: 2;
	animation:bounce1 2300ms infinite;
}

#hpScrollCon{
	bottom: 30px;
    left: 16%;
	margin:auto;
}

.scrollDownArrow{
	position:absolute;
	width: auto;
	height: 360px;
	left:0;
	right:0;
	bottom: 0;
	margin: auto;
	animation:bounce1 2300ms infinite;
}



/*---------------------------------------ABOUTUS------------------------------------------*/


#hpAboutSection{
	background-color:rgba(0,0,0,0.0);
	display: flex;
	margin:200px 0 200px 0;
}

.hpAbCon{
	max-width: 1200px;
	height:auto;
    left: 0;
    right: 0;
    margin: auto;
    background-color:rgba(0,0,0,0.0);
}


.hpAbIMG{
	position:relative;
	width:83%;
	margin:0 0 0 140px;
	z-index:2;
}

#hpAbTitle{
	position:relative;
	height:auto;
	font-size:194px;
	margin:-40px 0 0 0;
    z-index:1;
	background-color:rgba(255,255,255,0.0);
}


.hpDesBlock{
	position:relative;
	width: 400px;
}

.hpDesBlock-about{
	margin: 20px 0;
}

.icon01{
	position: relative;
    width: 200px;
    float: right;
    margin: -7vw -2vw -10vw 0;
}


/*---------------------------------------MENU------------------------------------------*/

#hpMenuSection{
	background-color:rgba(255,255,255,0.0);
	display: flex;
	margin:100px 0 20vw 0;
}

.hpMenuIMG01{
	position:relative;
	width: 80%;
	height: auto;
	margin:30px auto 20px 0px;
}

.hpMenuCon{
	max-width: 1200px;
	height:auto;
    left: 0;
    right: 0;
    margin: auto;
    background-color:rgba(255,255,255,0.0);
}

.hpDesBlock-menu {
    float: right;
    margin: -240px 200px 0px 0px;
}


#hpMenuTitle{
	margin: 0px 35px 0px 0px;
}

.icon02 {
    position: absolute;
    width: 180px;
    margin: 0vw 0 0 -1vw;
    bottom: -10vw;
    left: 0;
}

.icon03 {
    position: relative;
    width: 260px;
    /* float: right; */
    margin: 5% auto 0 auto;
    left: -10%;
}

/*---------------------------------------CONTACT------------------------------------------*/


#hpResSection{
	background-color:rgba(0,0,0,0.0);
	display: flex;
	flex-direction: column;
	margin:0 0 100px 0;
}

.hpResCon{
/*	max-width: 1200px;*/
	height:auto;
    left: 0;
    right: 0;
    margin: auto;
    background-color:rgba(0,0,0,0.0);
}


.hpResIMG{
	position: relative;
    width: auto;
    height: 680px;
    float: right;
    margin: -22% 0 0 0;
    z-index: 0;
   
}

#hpResTitle{
	position:relative;
	height:auto;
	margin:0px 0 0 -7px;
    z-index:1;
}

.hpDesBlock-res{
	margin: 20px 0;
}




/*---------------------------------------CONTACT------------------------------------------*/

#hpContactSection{
	padding: 200px 0 100px 0;
	top: -10px;
	display: flex;
	background-color:rgba(255,255,255,0.0);
}

.contactCon{
	margin:0 auto;
	background-color:rgba(255,255,255,0.0);
}

.con-tTitle{
	position:relative;
}

.tactTitle{
	position:relative;
	margin:0 0 0 425px;
}

.contInfoCon{
	position:relative;
	width: 100%;
	margin: -162px 0 0 0;
	background-color:rgba(255,255,255,0.0);
}

.contInfoRow{
	position:relative;
	width: 100%;
	height:375px;
	margin:10px auto;
	background-color:rgba(255,255,255,0.0);
}

.contInfoBlock{
	position:relative;
	width:325px;
	height: 100%;
	margin:0 5px;
	display: inline-block;
	vertical-align: top;
	border-top: 2px solid var(--sBlue);
}

.contInfoBlock p{
	line-height: 22px;
}

.cont2Link{
	position: relative;
	float: right;
}

.contLink{
	transition: 300ms;
}

.contLink:hover{
	opacity: 0.5;
}



/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/



/*------------------------------------HOMEPAGE-----------------------------------------*/
/*------------------------------------HOMEPAGE-----------------------------------------*/


/*------------------------------------------------------1460PX----*/

@media (min-width:0px) and (max-width:1460px){

/*--------GEN---------*/

/*
.sectionTitle {
    font-size: 140px;
    line-height: 140px;
    letter-spacing: 14px;
}*/



/*--------ENTRY---------*/

/*.navContainer{
	left:9%;
}
*/
/*.pgCornerLogo {
	width:100px;
    right: -100px;
}
*/
.plateIMG01 {
    top: 300px;
    left: 80px;
}



/*--------ABOUT---------*/

#hpAbTitle{
	font-size: 144px;
	line-height: 144px;
	letter-spacing: 12px;
}


/*--------MENU---------*/

.icon02 {
    position: relative;
    width: 120px;
    margin: 150px 0 0 110px;
}

.icon03 {
    width: 200px;
}

.hpDesBlock-menu {
    margin: -240px 30px 0px 0px;
}


.menuIMGCon{
	max-height: 667px;
	display: block;
}

#hpMenuTitle {
    margin: 10px -25px 20px 0px;
}

/*--------RESERVE---------*/

/*.hpResIMG {
    position: relative;
    width: auto;
    height: 480px;
}*/

.hpDesBlock {
    width: 330px;
}

/*--------CAREERS---------*/

.hpCarCon {
    left: 0px;
}



/*--------CONTACT---------*/

.contactCon{
	width:850px;
}

.tactTitle {
    margin: 0 0 0 336px;
}

.contInfoCon {
    margin: -137px 0 0 0;
}


}



/*------------------------------------------------------1000PX----*/

@media (min-width:0px) and (max-width:1025px){

/*--------GEN---------*/

.pageSection1 {
    min-height: 670px;
}

.sectionCon {
    width: 90%;
}

.hpDesBlock {
    width: 340px;
}

.navContainer {
   left: 11px;
   right: 0;
   width:100%;
}

.topNavItem{
	margin: 0 5px;
}

.linkText {
    font-size: 11px;
    letter-spacing: 1px;
}

/*.sectionTitle {
    font-size: 146px;
    line-height: 146px;
    letter-spacing: 12px;
}*/



/*--------LOADING---------*/

#loadingText{
	font-size: 100px;
	letter-spacing: 12px;
}

/*--------ENTRY---------*/

#hpAboutSection {
    margin: 50px 0;
}

.pgCornerLogo{
    display: none;
}


.plateIMG01 {
	width: 64%;
    left: 20px;
}


/*--------ABOUT---------*/

#hpAbTitle {
    font-size: 128px;
    line-height: 138px;
    letter-spacing: 8px;
}

.hpAbIMG {
    margin: 0 0 0 104px;
}


/*--------MENU---------*/

.hpDesBlock-menu {
    margin: -240px 120px 0px 0px;
}

.icon02 {
    position: relative;
    width: 120px;
    margin: 140px 0 0 140px;
}


/*--------RES---------*/

.hpDesBlock-res {
    margin: 20px 0;
    width: 270px;
}


/*--------CAREERS---------*/

.hpDesBlock-car {
	width: 270px;
}

.hpCarIMG {
    height: 83%;
}

.icon04 {
    position: relative;
    width: 120px;
    float: right;
    margin: 360px 50px 0 0;
}


/*--------CONTACT---------*/

#hpContactSection {
    margin: 100px 0;
}


.contInfoBlock {
    margin: 25px 0;
}

/*--------FOOTER---------*/

.f-rNavContainer .r-RestNav .r-navItem {
    position: relative;
    margin: 0px 14px;
}

.f-rNavContainer {
    left: -8px;
}

.f-stampLogo {
    top: -45px;
    right: 40px;
}

}

/*------------------------------------------------------iPad-Pro----*/

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {



.plateIMG01 {
    position: absolute;
    width: 62%;
    height: auto;
    top: 230px;
    bottom: 0;
    left: 40px;
    margin: auto;
}

.hpDesBlock-menu {
    margin: -240px 100px 0px 0px;
}

}


/*------------------------------------------------------768px----*/

@media (min-width:0px) and (max-width:781px){

/*--------GEN---------*/

body{
	overflow-x: hidden;
}


.sectionTitle {
    font-size: 16.4vw;
    line-height: 1em;
    letter-spacing: 0.07em;
}

.smallTitle {
    margin: 15px 0;
}

/*--------NAV---------*/

.navContainer{
	width: 102vw;
    height: 100vh;
    top: 0;
    right: -201%;
	background-color:var(--sBlue)
}

.barCon{
	position:fixed;
	width: 60px;
    height: 20px;
    top: 15px;
    right: 15px;
	background-color:rgba(0,0,0,0.0);
	display: block;
	z-index: 100;
}

.navBar{
	position:absolute;
	width: 100%;
	height:2px;
	background-color:var(--sBlue);
}

.navBar3{
	opacity: 0;
}

.navBar2, .navBar3{
	top:0;
	bottom:0;
	margin:auto;
}

.navBar4{
	bottom:0;
}

.mainNav{
	position:absolute;
	width: 250px;
    height: 400px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	opacity: 0;
	background-color:rgba(0,0,0,0.0);
}

.topNavItem{
	font-size: 28px;
    line-height: 32px;
    text-align: center;
	color:var(--sLtBlue);
	display: block;
	margin: 0 0 10px 0px;
}

/*--------ENTRY---------*/


.plateIMG01 {
	height: auto;
    width: 60%;
    Top: 360px;
	bottom: auto;
    left: 40px;
}


/*--------ABOUT---------*/

#hpAboutSection {
    margin: 100px 0;
}

#hpAbTitle {
    width: auto;
    margin: -40px 0 0 0;
}

/*--------MENU---------*/

.hpDesBlock-menu {
    margin: -170px 50px 0px 0px;
}

/*--------RESERVE---------*/

.hpResIMG {
    height: 440px;
    margin:-12% 0 0 0;
}

/*--------ACCOLADES---------*/


.hpDesBlock-acc {
    margin: -70px 0px 0px 0;
}

/*--------GIFTCARDS---------*/

.hpDesBlock-gc {
    margin: -20px 0px 0px 0;
    z-index: 1;
}

/*--------COOKBOOK---------*/

/*.bookIMGWrap {
    display: block; 
    height: 400px;
}

*/


.bookIMG {
    width: 150%;
    left:-25%;
}

.cbCopyCon {
    flex-direction: column;
}

/*--------CONTACT---------*/


.tactTitle {
    margin: 0px 0 0 250px;
}

.contInfoCon {
    margin: -105px 0 0 0;
}


}



/*------------------------------------------------------768px----*/

@media (min-width:0px) and (max-width:781px){


/*--------GEN---------*/

.loadTextCon {
    width: 100%;
    height: 160px;
}

#loadingText{
	font-size: 72px;
	letter-spacing: 8px;
}

.pageSection1, .pageSection2 {
    overflow: hidden;
}

.mainNav {
    flex-direction: column;
}

.sectionCon {
    overflow: hidden;
}

.sectionTitle {
    font-size: 22vw;
    line-height: 1em;
    letter-spacing: 0.08em;
}

#hpContactSection .sectionTitle {
    font-size: 21vw;
    letter-spacing: 1vw;
    line-height: 1em;
}



/*
.navContainer{
	position:absolute;
	width: 110px;
	height: 200px;
	top:10px;
	left:auto;
	right:10px;
}

.navItem, .f-rNavContainer .r-RestNav .r-navItem  {
    margin: 10px 10px;
    display: block;
}

.mainNav .navItem {
	text-align: right;
	font-size: 10px;
    letter-spacing: 1px;
}

.rNavContainer .r-navItem{
	font-size: 10px;
	letter-spacing: 1px;

}*/

.barCon {
    width: 40px;
}

.f-rNavContainer {
    left: -13px;
}

.gotoText{
	font-size:8px;
}

.bookCopyBlock {
    width: 100%;
}

/*--------ENTRY---------*/

.mainLogo {
    position: absolute;
    width: 260px;
    height: auto;
    top: 0px;
    left: 0;
    right: 0px;
    margin: auto;
    bottom: 320px;
}

.plateIMG01 {
    width: 70%;
    top: 90px;
    left: 20px;
    bottom: 0;
}

.scrollText{
	font-size: 10px;
    letter-spacing: 1px;
}

.scrollDownCon {
    position: absolute;
    width: 40px;
    height: 240px;
}

.scrollDownArrow {
    height: 220px;
}

/*--------ABOUT---------*/

#hpAboutSection {
    margin: 50px 0;
}

.hpAbIMG {
    margin: 0 0 0 0;
    width: 100%;
}
/*
#hpAbTitle {
    font-size: 104px;
    line-height: 98px;
    letter-spacing: 8px;
    margin: -23px 0 -20px 0;
}*/

#hpAbTitle {
    margin: -5% 0 0 0px;
     font-size: 16.4vw;
    line-height: 1em;
    letter-spacing: 0.07em;
}


.hpDesBlock {
    width: 100%;
}

.icon01 {
    position: relative;
    width: auto;
    height: 190px;
    float: none;
    margin: 60px auto;
    display: block;
}


/*--------MENU---------*/

.hpDesBlock-menu {
    margin: -70px 0 0 0px;
}

.hpMenuIMG01 {
    width: 100%;
    margin: 0;
}

.hpDesBlock-menu {
    margin: -70px 0 70px 0px;
}



.icon02 {
    position: relative;
    width: auto;
    height: 130px;
    float: none;
    margin: 60px auto;
    display: block;
}

/*--------RESERVE---------*/

#hpResTitle {
    margin: 0px;
    letter-spacing: 3px;
}

.hpResIMG {
    position: relative;
    width: 100%;
    height: auto;
    float:none;
}

/*--------ACCOLADES---------*/

#hpAccSection {
    background-color: rgba(255,255,255,0.0);
    display: flex;
    margin: 0px 0;
}

.hpAccIMG01 {
    width: 100%;
}

.icon03 {
	width:180px;
    float:none;
    margin: 50px auto;
    display: block;
    left: 0;
}

/*--------CAREERS---------*/

#hpCarSection {
    margin: 50px 0;
}

.hpCarCon {
     height: auto; 
}

#hpCarTitle {
    margin:-62px 0 0 0;
    letter-spacing: 4px;
}

.hpCarIMG {
    position: relative;
}

.hpDesBlock-car {
    position: relative;
    top: 0;
}

/*--------GIFTCARDS---------*/

.hpGcCon {
    height: 590px;
}

#hpGcSection {
    margin: 100px 0 0 0;
}

.gcIMGCon {
	width: 300px;
	height: 190px;
}

.hpGcBG01 {
    border-radius: 5px;
}

.hpGcLogo01 {
    width: 200px;
}

#hpGcTitle {
    margin: 5px 0 0px 0px;
}

.icon04{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}


/*--------COOKBOOK---------*/

.bookTitle {
    margin: 0 0 -70px 0;
}



/*--------CONTACT---------*/

#hpContactSection{
	padding: 50px 0 0 0;
}

.contactCon {
    height: fit-content;
}


.tactTitle {
    margin: 0px 0 0 130px;
}

.contInfoBlock {
	width: 100%;
}

.contInfoCon {
    margin: 0 0 0 0;
}

/*--------FOOTER---------*/


.footerContainer {
    position: relative;
    width: 100vw;
    height: 160px;
    margin: 170px 0 0 0;
    padding: 0 0 20px 0;
}
    
.footerContainer .navItem {
    position: relative;
    margin: 0 10px;
}

.f-navBlock {
    position: relative;
    width: 90%;
}

.f-stampLogo {
	width:100px;
    top: -105px;
    right: 20px;
}

.f-rNavContainer .r-RestNav .r-navItem {
    margin: 5px 15px;
    display: block;
}

}

/*------------------------------------------------------375px----*/

@media (min-width:0px) and (max-width:375px){

.sectionTitle {
    font-size: 70px;
    line-height: 77px;
    letter-spacing: 6px;
}

#hpAbTitle {
    font-size: 93px;
    line-height: 93px;
}

.bookTitle{
	font-size: 71px;
}

.bookIMGWrap {
    margin: -20px 0 0 0px;
}

.bookIMG {
    left: -62%;
}



}

/*------------------------------------------------------320px----*/

@media (min-width:0px) and (max-width:320px){


.sectionTitle {
    font-size: 59px;
    line-height: 66px;
    letter-spacing: 4px;
}

/*.mainLogo {
    bottom: 160px;
}

.plateIMG01 {
    top: 170px;
}*/

#hpAbTitle {
    font-size: 75px;
    line-height: 75px;
    letter-spacing: 6px;
    margin: -19px 0 -20px 0;
}

.hpResIMG {
    margin: -13px 0 0 0;
}

.icon04 {
    width: 120px;
}

.gcIMGCon {
    width: 270px;
    height: 160px;
}

.hpGcLogo01 {
    width: 180px;
}

.hpDesBlock-gc {
    margin: -12px 0px 0px 0;
}

.bookTitle{
	font-size: 77px;
    line-height: 79px;
    letter-spacing: 6px;
}

.bookIMG {
    left: -82%;
}

.sm-navItem{
	margin: 0 8px;
}

.f-rNavContainer .r-RestNav .r-navItem {
    margin: 5px 10px;
}

.f-stampLogo {
    top: -125px;
}



}

