
/*START CUSTOM FONTS*/

@font-face {
  font-family: GlyphaLTStdBold;
  src: url(/themes/default/assets/pawtucket/css/font/glypha/GlyphaLTStd-Bold.otf);
}

@font-face {
	font-family: GlyphaLTStd;
	src: url(/themes/default/assets/pawtucket/css/font/glypha/GlyphaLTStd.otf);
}


/*END CUSTOM FONTS*/

/*START CUSTOM FONTS*/

@font-face {
  font-family: GraphikBold;
  src: url(/themes/default/assets/pawtucket/css/font/graphik/Graphik-Bold.otf);
}

@font-face {
  font-family: GraphikMedium;
  src: url(/themes/default/assets/pawtucket/css/font/graphik/Graphik-Medium.otf);
}

@font-face {
  font-family: GraphikRegular;
  src: url(/themes/default/assets/pawtucket/css/font/graphik/Graphik-Regular.otf);
}

/*END CUSTOM FONTS*/



html,
body,
input,
a,
textarea,
button {
/*	font-family: 'Nunito Sans', sans-serif;*/
}


/*START RESPONSIVE GRID*/
#grid {
	display: flex;
	flex-direction: column;
}

#grid > div {
	display: flex;
	flex-direction: column;
	padding: 10px;
	justify-content: center;
}
/*END RESPONSIVE GRID*/

button {
	margin: 0;
}

body {
	margin: auto;
	padding: 0;
}

* {
	box-sizing: border-box;
}

.container-full {
  width: 100%;
  margin: auto;
  padding: 10px;
  position: relative;
  /* border: 1px solid red; */
}

.container {
  width: 100%;
  margin: auto;
  padding: 10px;
  position: relative;
  /* border: 1px solid red; */
	max-width: 1280px;
}

.row {
  display: flex;
  /* border: 1px solid green; */
}

.col {
  width: 100%;
  /* border: 1px solid blue; */
}

a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

button {
	cursor: pointer;
}

:root {
  --color-light: #ffffff;
	--color-dark: #414141;
	--accent-color: #ef4923;
	--header-bkg-color: #ef4923;
  --footer-bkg-color: #262626;
  --division-color: #414141;
  --button-bkg-active-color: #e3401f33;
  --hover-color: #e3401fdd;
  --secundary-color-dark: #666666;
	--border-radius: 5px;
	--header-menu-bkg-color: #e3401f38;
	--header-menu-bkg-active-color: #e3401f;
	--preview-bkg-color: #00000088;
	--related-bkg-color: #f1f1f2;
}


h1 {
	color: var(--accent-color);
	font-size: 36px;
	font-weight: 400;
	margin: 60px 0 40px 0;
	padding: 0;
	font-family: GraphikMedium;
	border-bottom: 1px solid var(--division-color);
	max-width: 500px;
	padding: 0 0 60px 0;
}

h2 {
	color: var(--accent-color);
	font-size: 36px;
	font-weight: 400;
	margin: 60px 0 40px 0;
	padding: 0;
	font-family: GraphikMedium;
	border-bottom: 1px solid var(--division-color);
	max-width: 500px;
	padding: 0 0 60px 0;
}

#description {
	color: var(--color-dark);
	font-size: 20px;
	font-weight: 400;
	margin: 0;
	font-family: GraphikMedium;
	padding: 0 0 30px 0;
	white-space: pre-line;
}

h3 {
	color: var(--color-dark);
	font-size: 20px;
	font-weight: 400;
	margin: 60px auto 0 auto;
	padding: 0;
	font-family: GraphikMedium;
}

/* NOTE: start - header */

#header {
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 20;
}

#menu {
  padding: 16px;
/*	 background-color: var(--header-menu-bkg-color); */
	background-color: var(--header-menu-bkg-active-color);
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
	transition-duration: 200ms;
	text-transform: uppercase;
	font-family: GraphikMedium;
	letter-spacing: 2px;
}

#header-logo,
#footer-logo{
	width: 175px;
}

#header.active #menu {
	background-color: var(--header-menu-bkg-active-color);
}

#menu > div:nth-child(3) a,
#menu > div:nth-child(3) p {
	color: var(--color-light);
	font-size: 13px;
	font-weight: 300;
	margin: auto;
	width: 100%;
}

#menu > div a {
	position: relative;
}

#menu > div:nth-child(3) input::placeholder {
	text-transform: uppercase;
	font-family: GraphikMedium;
	color: var(--color-light);
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 2px;
}

#menu > div:nth-child(3) > a:after {
	position: absolute;
	content: "";
	border-bottom: 2px solid white;
	bottom: -2px;
	left: 0;
	right: 0;
	width: 94px;
}


#menu > div:nth-child(1) > a {
	text-transform: uppercase;
	font-family: GlyphaLTStdBold;
	color: var(--color-light);
	font-size: 20px;
	font-weight: 300;
}



#menu-logo {
	height: 24px;
}

#menu > div {
	display: flex;
	justify-content: center;
	margin: auto;
}

#search-form {
	display: flex;
	margin: auto;
	max-width: 120px;
}

#icon-search {
	height: 16px;
	margin: auto;
}

#search-form > input {
	background-color: transparent;
	border: none;
	font-size: 14px;
	font-weight: 400;
	max-width: calc(100% - 24px);
	outline: none;
	padding-right: 10px;
}

#search-form > input:focus {
	background-color: white;
}

#search-form > input::placeholder {
	color: var(--color-light);
	font-size: 14px;
	font-weight: 400;
}

#switch-locale {
	color: var(--color-light);
	display: flex;
	font-size: 16px;
	font-weight: 300;
}

#switch-locale > a {
	color: var(--color-light);
	font-size: 14px;
}

#switch-locale > a.current {
	font-family: GraphikBold;
	font-weight: 600;
}

#menu-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: auto;
}

/* NOTE: end - header */


/* NOTE: start - footer */

#footer {
	display: flex;
	flex-direction: column;
	background-color: var(--footer-bkg-color);
	margin: auto;
	padding: 50px 0 100px 0;
}

#footer div:nth-child(1) > a {
	text-transform: uppercase;
	font-family: GlyphaLTStdBold;
	color: var(--accent-color);
	font-size: 22px;
	font-weight: 300;
	margin: 30px auto;
}

#footer .footer-title {
	font-family: GlyphaLTStdBold;
	color: var(--accent-color);
	font-size: 22px;
	font-weight: 300;
	margin: 30px auto;
}

#footer > a {
	margin: auto;
}

#footer-categories {
	flex-direction: row !important;
	flex-wrap: wrap;
}

#footer-description > p,
#footer-contact > a,
#footer-categories > a {
	color: var(--color-light);
	display: flex;
	font-family: GraphikMedium;
	font-size: 14px;
	font-weight: 400;
	margin: 10px auto;
	padding: 0;
	text-align: center;
}

#footer-categories > a {
	max-width: 150px;
	margin: 0 10px;
}

#footer-categories > a:after {
	content: "|";
	color: var(--color-light) !important;
	font-size: 13px;
	padding: 0 0 0 10px;
}

#footer-categories > a:last-child:after {
	content: "";
}

#footer-description > p {
	text-align: center;
}

#footer-pnone {
	color: var(--color-light);
	font-size: 14px;
	font-weight: 400;
	margin: 10px auto;
	padding: 0;
	text-align: center;
	font-family: GraphikMedium;
}

#footer-pnone a {
	color: var(--color-light);
}

#social-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 15px 0 0 0;
}

/* NOTE: end - footer */



#hero-wrapper {
	position: relative;
	overflow: hidden;
}

#hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  width: 100%;
	position: relative;
	-webkit-animation: zoom 50s infinite;
	animation: zoom 50s infinite;
}

#hero:before {
	background-color: var(--header-menu-bkg-color);
	bottom: 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

hr {
  border-top: 1px solid var(--division-color);
}


@-webkit-keyframes zoom {
  0% { transform: scale(1); }
	50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
@keyframes zoom {
	0% { transform: scale(1); }
	50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}



/* NOTE: responsive */
@media all and (max-width: 920px) {
	#menu p {
		display: none;
	}
}

@media all and (max-width: 720px) {
	#menu-logo {
		height: 16px;
	}
}






#types {
	display: grid;
	justify-items: center;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 100px), 1fr));
	gap: 10px;
	align-items: center;
}

#types a {
	display: flex;
	color: var(--color-dark);
	font-size: 14px;
	font-weight: 500;
	transition-duration: 200ms;
	font-family: GraphikMedium;
	text-align: center;
}

#types a:hover {
	color: var(--header-bkg-color);
}

#types a.current {
	color: var(--header-bkg-color);
}



/*START HEADER SLIDER*/

.swiper-header {
  width: 100%;
  height: 400px;
	position: relative;
	margin-top: 56px;
}

.swiper-header .swiper-slide:after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	left: 0;
	top: 0;
	position: absolute;
	z-index: 1;
}

.swiper-header > .swiper-button-prev,
.swiper-header > .swiper-button-next {
	color: #ffffff !important;
}

.swiper-header .swiper-slide {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
}

.swiper-header .swiper-pagination-bullet {
	opacity: 1 !important;
	background: #ffffff !important;
}

.swiper-header .swiper-pagination-bullet-active {
	background: var(--accent-color) !important;
}

.swiper-header > .swiper-pagination {
	text-align: right;
	padding: 0 10px 0 0;
}

.swiper-header .swiper-slide > p {
	z-index: 2;
	font-size: 24px;
	color: #ffffff;
	align-self: center;
	font-family: GraphikMedium;
	text-transform: uppercase;
}

/*END HEADER SLIDER*/


/*START RELATED SLIDER*/

#related {
	background-color: var(--related-bkg-color);
}

.swiper-related {
  width: 100%;
  height: 240px;
	position: relative;
	overflow: hidden;
	margin: 80px 0;
}

.swiper-related > .swiper-button-prev,
.swiper-related > .swiper-button-next {
	color: var(--division-color) !important;
}

.swiper-related .swiper-slide {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
}

.swiper-related .swiper-slide:after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	left: 0;
	top: 0;
	position: absolute;
	z-index: 1;
}


.swiper-related .swiper-slide > p {
	z-index: 2;
	font-size: 16px;
	color: var(--color-dark);
	align-self: center;
	font-family: GraphikMedium;
	text-transform: uppercase;
}

/*END RELATED SLIDER*/
