/* Gobira AB Tsuyo Sushi */

/* AOS */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

:root {
	/* Colors */
	--primary-color: 223, 35, 39;
	--primary-dark-color: 165, 37, 40;

	--black-color: 0, 0, 0;
	--gray-dark-color: 75, 75, 75;
	--gray-light-color: 240, 240, 240;
	--white-color: 255, 255, 255;

	/* Layout */
	--section-width: 130rem;
	--col-padding: 5rem;
	--menu-height: 8rem;
	--menu-height-scrolled: 8rem;

	/* Typography */
	--base-size: 1.7rem;

	/* Mobile nav */
	--activate-mobile-menu: 1000;
	--mobile-menu-height: 7rem;
	--mobile-menu-bg: var(--black-color);
	--menu-color: var(--white-color);
}

@media only screen and (max-width: 580px) {
	:root {
		--base-size: 1.6rem;
	}
}

/* Layout
========================================================================== */
body {
	background: rgb(var(--black-color));
}

.section-block {
	padding: 14rem 4rem;
}

/* Paddings */
.p-4 .section-block,
.p-4:not(.section-wrapper) {
	padding: 4rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
	padding-top: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
	padding-right: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
	padding-bottom: 0;
}

.pb-3 .section-block,
.pb-3:not(.section-wrapper) {
	padding-bottom: 3rem;
}

/* Margins */
.mb-2 {
	margin-bottom: 2rem;
}

.mb-3 {
	margin-bottom: 3rem;
}

.mb-6 {
	margin-bottom: 6rem;
}

.ml-2 {
	margin-left: 2rem;
}

/* Bredder */
.mw-none .section-block-wrapper {
	max-width: none;
}

.mw-98 .section-block-wrapper {
	max-width: 98rem;
	margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
	.section-block {
		padding: 10rem 3rem;
	}
}

@media only screen and (max-width: 580px) {
	.section-block {
		padding: 8rem 2rem;
	}
}

/* Text och typsnitt
========================================================================== */
body {
	font-family: 'Lato', sans-serif;
}

/* Rubriker */
.text-label {
	padding-bottom: 1rem;
	font-size: 3rem;
	font-weight: 400;
	color: rgb(var(--primary-color));
	font-family: 'Gochi Hand', cursive;
}

.section-title {
	padding-bottom: 1.5rem;
	font-size: 4.4rem;
	font-weight: 400;
	line-height: 1.2;
	color: rgb(var(--white-color));
}

.small-title {
	padding-bottom: 1rem;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.4;
	color: rgb(var(--white-color));
}

/* Brodtext och lankar */
p,
li {
	color: rgb(var(--white-color));
}

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

a:hover:not(.btn) {
	text-decoration: underline;
}

/* Ovriga klasser */
.text-block {
	max-width: 70rem;
}

.text-block-center {
	max-width: 70rem;
	margin-left: auto;
	margin-right: auto;
}

.text-center {
	text-align: center;
}

.text-italic {
	font-style: italic;
}

.text-uppercase {
	text-transform: uppercase;
}

.handwritten {
	font-family: 'Gochi Hand', cursive;
}

@media only screen and (max-width: 780px) {
	.section-title {
		font-size: 4rem
	}

	.small-title {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 580px) {
	.text-label {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 3.5rem
	}

	.small-title {
		font-size: 2rem;
	}
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
	margin-top: 2rem;
}

.btn-wrapper.center {
	text-align: center;
}

/* Knappar */
.btn {
	padding: 1.9rem 4rem;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.btn::after {
	content: ' \2023';
	display: inline-block;
	margin-left: .5rem;
	transition: transform .4s ease;
}

.btn:hover::after {
	transform: translateX(1rem);
	transition: transform .4s ease;
}

.btn-primary-filled {
	color: rgb(var(--white-color));
	background: rgb(var(--primary-color));
}

.btn-primary-filled:hover {
	background: rgb(var(--gray-dark-color));
}

.btn-white-filled {
	color: rgb(var(--black-color));
	background: rgb(var(--white-color));
}

.btn-white-filled:hover {
	background: rgb(var(--gray-light-color));
}

/* Cirkelikon */
.circle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	margin: .5rem;
	font-size: 0;
	color: rgb(var(--gray-dark-color));
	text-decoration: none;
	border-radius: 50%;
	background-color: rgb(var(--white-color));
	transition: .3s ease;
}

a.circle-icon:hover {
	color: rgb(var(--white-color));
	background-color: rgb(var(--primary-color));
	text-decoration: none;
}

.circle-icon em:before,
.circle-icon i:before {
	font-size: var(--base-size);
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
	background-color: rgb(var(--primary-color));
}

.bg-primary-dark {
	background-color: rgb(var(--primary-dark-color));
}

/* Farger */
.text-primary {
	color: rgb(var(--primary-color));
}

.text-gray-light {
	color: rgb(var(--gray-light-color));
}

.text-white {
	color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */
.border-bottom-dotted-primary {
	border-bottom: 2px dotted rgb(var(--primary-color));
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
	position: relative;
	overflow: hidden;
}

.bg-video-wrapper {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bg-video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CTA-knappar
========================================================================== */
.cta-side-wrapper {
	z-index: 2;
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: 0.4s ease-in-out;
}

.cta-side-wrapper a {
	position: relative;
	left: 0;
	display: block;
	padding: 1.5rem;
	margin: .5rem 0;
	white-space: nowrap;
	transition: 0.4s ease-in-out;
	font-size: var(--base-size);
}

header.scrolled .cta-side-wrapper a {
	left: calc(100% - 3rem - 1.5rem);
	/* 100% - i's width - a's padding-left */
}

.cta-side-wrapper a:hover {
	background-color: rgb(var(--gray-dark-color));
	text-decoration: none;
}

header.scrolled .cta-side-wrapper a:hover {
	left: 0;
}

.cta-side-wrapper i {
	width: 3rem;
}

@media only screen and (max-width: 980px) {
	.cta-side-wrapper {
		top: unset;
		bottom: 0;
	}
}

/* Cards
========================================================================== */
.cards-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.cards-wrapper:not(.w-100) {
	margin-left: -1rem;
	margin-right: -1rem;
}

.card-item {
	text-decoration: none;
	transition: all .3s ease;
}

/* Specifika klasser */
.cards-wrapper.justify-center {
	justify-content: center;
}

/* Bredder */
.cards-wrapper.w-33 .card-item {
	width: calc((100% / 3) - 2rem);
	margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
	width: 100%;
	margin: 1rem 0;
}

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

	/* Bredder */
	.cards-wrapper.w-33 .card-item {
		width: calc((100% / 2) - 2rem);
		margin: 1rem;
	}
}

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

	/* Bredder */
	.cards-wrapper.w-33 .card-item {
		width: 100%;
		margin: 1rem 0;
	}
}

/* Card-2-2 */
.card-2-2 .card-header {
	font-size: 3rem;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.split-wrapper.reverse {
	flex-direction: row-reverse;
}

.split-content {
	width: 50%;
	padding: 5rem;
}

.split-image {
	width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
	align-self: center;
}

@media screen and (max-width: 1300px) {
	.split-content {
		padding: 4rem;
	}
}

@media screen and (max-width: 1000px) {

	.split-wrapper,
	.split-wrapper.reverse {
		flex-direction: column;
	}

	.split-content {
		width: 100%;
		padding: 0 0 4rem;
		max-width: 70rem;
	}

	.split-image {
		width: 100%;
	}

	/* Centrera content */
	.split-wrapper .align-center {
		align-self: flex-start;
	}
}

@media screen and (max-width: 580px) {
	.split-content {
		padding: 0 0 3rem 0;
	}
}

/* Header / Navigation
========================================================================== */
header {
	background: transparent;
}

header.scrolled {
	background: rgb(var(--black-color));
}

/* Logo */
.header-logo {
	flex: 1 1 0px;
}

/* Nav */
.TemplateMenu a {
	font-weight: 400;
	font-size: var(--base-size);
	color: rgb(var(--white-color));
}

/* CTA */
.header-cta-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-basis: 0;
	flex: 1 1 0px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-cta-wrapper li {
	margin: 0 .5rem;
}

.header-cta-wrapper .btn {
	min-width: unset;
	padding: 1rem 3rem;
}

@media only screen and (max-width: 580px) {
	.header-cta-wrapper .btn {
		min-width: unset;
		padding: 0.7rem 1.5rem;
		letter-spacing: 0;
	}

	.header-logo img {
		padding: 2rem 0;
	}
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 90vh;
	padding-top: var(--menu-height);
	margin-top: calc(-1 * var(--menu-height));
	background: linear-gradient(to right, rgba(var(--black-color), 0.8), rgba(var(--black-color), 0.5));
}

.top-section .section-block {
	width: 100%;
}

.top-section .btn-wrapper {
	display: flex;
}

@media only screen and (max-width: 480px) {
	.top-section .btn-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero
========================================================================== */
.hero {
	margin-top: calc(-1 * var(--menu-height));
	background-image: url(/assets/images/sushi-pattern-2000x.png);
	background-size: cover;
	background-repeat: repeat;
	background-position: center left;
}

.hero .section-block {
	display: flex;
	justify-self: center;
	align-items: center;
	min-height: 50rem;
	width: 100%;
	max-width: 55rem;
	background: rgba(var(--black-color), 0.7);
}

.hero .section-block-wrapper {
	padding-top: var(--menu-height);
}

@media only screen and (max-width: 1200px) {
	.hero .section-block {
		min-height: 25rem;
	}
}

/* ==========================================================================
Undersida: Meny
========================================================================== */
/* Tabbval - Filtrering */
.tabs-wrapper {
	padding-bottom: 2rem;
}

.tabs-heading {
	display: none;
}

.tab {
	display: inline-block;
	padding: 1rem 2rem;
	margin: 0 0.2rem 0.4rem 0;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	transition: .4s ease;
}

.tab-active {
	background: rgb(var(--primary-color));
	color: rgb(var(--white-color));
}

.tab:hover {
	background: rgb(var(--gray-light-color));
	color: rgb(var(--black-color));
}

/* Innehall */
.tab-header {
	width: 100%;
}

.menu-wrapper {
	display: flex;
	flex-wrap: wrap;
}

/* Innehall bredder */
.menu-wrapper.w-33 .menu-item {
	width: calc((100% / 3) - 2rem);
	padding: 1rem;
}

/* Innehall - menu-item */
.menu-item .small-title {
	font-size: 1.8rem;
	font-weight: 300;
}

.menu-item .item-description {
	font-size: 1.4rem;
}

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

	/* Tabbval - Filtrering */
	.tabs-wrapper {
		position: relative;
		width: 100%;
		padding: 1rem 2rem;
		background: rgb(var(--primary-color));
		cursor: pointer;
	}

	.tabs-heading {
		display: block;
	}

	.tabs-heading p {
		display: flex;
		justify-content: space-between;
		padding-bottom: 0;
	}

	.tabs-list {
		display: none;
		z-index: 1;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 3px;
		text-align: left;
		background: rgb(var(--white-color));
	}

	.tabs-wrapper.opened .tabs-list {
		display: block;
	}

	.tab {
		display: block;
		padding: 1.5rem 1rem;
		margin: 0 0 3px;
		color: rgba(var(--black-color));
	}

	.tab-active {
		background: rgb(var(--primary-color));
		color: rgb(var(--white-color));
	}

	/* Innehall bredder */
	.menu-wrapper.w-33 .menu-item {
		width: calc((100% / 2) - 2rem);
		margin: 1rem
	}
}

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

	/* Innehall bredder */
	.menu-wrapper.w-33 .menu-item {
		width: 100%;
		padding: 1rem 0;
	}
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	padding: 0 4rem;
}

/* Footer top */
.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 8rem 0 4rem 0;
	border-bottom: 1px solid rgb(var(--primary-color));
}

.footer-menu {
	width: 20%;
	margin: 1.5rem 0;
}

.footer .text-label {
	font-size: 2.2rem;
}

.footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-top li,
.footer-top p:not(.text-label),
.footer-top a:not(.circle-icon) {
	font-size: 1.5rem;
	max-width: 33rem;
}

.footer em::before {
	font-size: 1.4rem;
}

/* Footer bottom */
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
}

.footer-bottom p,
.footer-bottom a {
	padding: .5rem .2rem;
	font-size: 1.2rem;
	line-height: 1.6;
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
	display: flex;
	align-items: center;
}

.webbess-stamp img {
	width: 2.5rem;
	margin-left: 1rem;
	filter: invert();
}

@media only screen and (max-width: 1024px) {
	.footer {
		padding: 0 3rem;
	}

	/* Footer top */
	.footer-menu {
		width: 48%;
	}
}

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

	/* Footer top */
	.footer-menu {
		width: 100%;
	}
}

@media only screen and (max-width: 580px) {
	.footer {
		padding: 0 2rem;
	}

	/* Footer top */
	.footer-top {
		padding: 8rem 0 4rem 0;
	}

	/* Footer bottom */
	.footer-bottom {
		justify-content: center;
	}
}