:root {
	--primary: #1b3552;
	--dark-blue: #132538;
	--green: #37b476;
	--violet: #743864; 
	--white: #ffffff;
	--grey: #eeeff3;
}

.dark-gradient-color-definiton {
  background-image: linear-gradient(to right, var(--primary), var(--dark-blue));
  z-index: -2;
}

.light-gradient {
  background-image: linear-gradient(to right, var(--white), var(--grey));
}

*, *::before, *::after {
	box-sizing: border-box;
}

@font-face {
    font-family: 'FuturaLTPro';
    src: url('/fonts/web/FuturaPT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaLTPro';
    src: url('/fonts/web/FuturaPT-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaLTPro';
    src: url('/fonts/web/FuturaPT-Light.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaLTPro';
    src: url('/fonts/print/FuturaLTPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaLTPro';
    src: url('/fonts/print/FuturaLTPro-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaLTPro';
    src: url('/fonts/print/FuturaLTPro-Light.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Futura PT', sans-serif;
	margin: 0;
	font-size: 18px;
}

.container {
	max-width: 1276px;
	margin: 0 auto;
}

nav {
	display: flex;
	justify-content: space-between;
}

.nav-background {
	display: flex; 
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap; 
	height: 106px;
}

@media (max-width: 1026px) {
	.nav-background {
		justify-content: start;
		display: none;
		flex-direction: column;
		position: absolute;
		height: 100%;
		top: 64px;
		width: 100%;
		align-items: flex-start;
		z-index: 1;
		left: 50%;
	    transform: translateX(-50%);
	    background-color: var(--white);
	}

	.nav-background li {
		width: 100%;
	}
}

.normalised-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.nav-link {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	padding: 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.nav-effect-top {
	position: relative;
	z-index: 1;
}

.nav-effect-top:hover:after {
	max-width: 100%;
}

.nav-effect-top:after {
	position: absolute;
	left: 0;
	width: 100%;
	max-width: 0%;
	height: 25px;
	border-bottom: 9px solid var(--green);
	transition: max-width .5s ease;
	overflow: hidden;
	content: "";
	z-index: -1;
}

.logo-heroshot-flex {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin-right: 20px;
	z-index: 3;
}

@media (max-width: 1026px) {
	.logo-heroshot-flex {
		margin: 15px 20px 20px 20px;
	}
}

.h1-postion {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;
}

h1 {
	font-size: 16px;
	font-weight: 400;
	color: var(--primary);
	margin: 0;
}

.logo-heroshot {
	width: 100%;
	max-width: 120px;
	padding: 0 0 3px 16px;
	display: block;
}

@media (max-width: 1026px) {
	.logo-heroshot {
		max-width: 75px;
	}
}

.hamburger {
	display: none;
	position: absolute;
	top: 25px;
	height: 1.5em;
	width: 25px;
 	right: 0;
 	left: 15px;
 	background-color: transparent;
 	border: 0;
}

@media (max-width: 1026px) {
	.hamburger {
		display: block;
	}
}

.hamburger__line {
	position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transform: translateY(-50%);
  transition:
    top 300ms ease,
    transform 300ms ease;
}

.hamburger__line--1 {
	top: 0;
	width: 100%;
}

.hamburger__line--2 {
	top: 50%;
	width: 100%;
}

.hamburger__line--3 {
	top: 100%;
	width: 100%;
}

.hamburger--is-expanded .hamburger__line--1 {
  top: 0.75em;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger--is-expanded .hamburger__line--2 {
  transform: translateY(-50%) rotate(-45deg);
}

h2 {
	font-size: 24px;
	font-weight: 700;
	padding: 42px 0;
	margin: 0 0 0 20px;
	color: var(--white);
	text-transform: uppercase;
}

.padding-bg-white {
	padding-bottom: 150px;
}

@media (max-width: 1026px) {
	.padding-bg-white {
 		padding-bottom: 100px;
	}
}

.padding-elements {
	padding-top: 100px;
}

@media (max-width: 1026px) {
	.padding-elements {
 		padding-top: 60px;
	}
}

.display-flex {
	display: flex;
}

h3 {
	font-size:  18px;
	font-weight: 700;
	color:  var(--primary);
	text-transform: uppercase;
	margin: 0 6px 0 20px;
}

h4 {
		font-size: 16px;
		font-weight:  400;
		color:  var(--primary);
		margin: 0;
}

.light-blue {
	height: 176px;
	width: 176px;
	background-color: var(--primary);
	margin: 16px 30px 0 20px;
}

.dark-blue {
	height: 176px;
	width: 176px;
	background-color: var(--dark-blue);
	margin: 16px 30px 0 20px;
}

.green {
	height: 176px;
	width: 176px;
	background-color: var(--green);
	margin: 16px 30px 0 20px;
}

.violet {
	height: 176px;
	width: 176px;
	background-color: var(--violet);
	margin: 16px 30px 0 20px;
}

.dark-gradient {
	height: 176px;
	width: 333px;
  background-image: linear-gradient(to right, var(--primary), var(--dark-blue));
  margin: 16px 30px 0 20px;
}

.light-gradient {
	height: 176px;
	width: 333px;
  background-image: linear-gradient(to right, var(--white), var(--grey));
	margin: 16px 30px 0 20px;
}

.cursor-pointer {
	cursor: pointer;
}

.position-color-text {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;
}

.text-small {
	font-weight: 700;
	font-size: 18px;
	color:  var(--primary);
	margin: 16px 0 4px 0;
}

.margin-gradient-text {
	margin: 0 0 0 20px;
}

.flex-gradient-text {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width:  333px;
}

.arrow-right {
	width: 100%;
	max-width: 20px;
}

.logo-size {
	margin: 30px 0 0 20px;
	width: 100%;
	max-width: 360px;
}

@media (max-width: 1026px) {
	.logo-size {
		margin: 30px 0 0 20px;
		width: 100%;
		max-width: 335px;
	}
}

.box-logo-text {
	display: flex;
	margin: 0 0 0 20px;
}

.download-button-box-logo-top {
	width: 100%;
	max-width: 330px;
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 1026px) {
		.download-button-box-logo-top {
 		margin-top: 0;
	}
}

.download-button-box-logo {
	width: 100%;
	max-width: 330px;
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-text {
	font-size: 16px;
	color: var(--primary);
	margin: 0 30px 0 0;
	text-transform: uppercase;
	font-weight: 400;
}

.download-button-styling {
width: 70px;
  height: 70px;
  border-radius: 50px;
  border-style: none;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-button-styling:hover {
	background-color: var(--grey);
}

.download-button-styling:active,

.download-button-styling--is-active {
	background-color: var(--violet);
}

.button-icons {
	width:  100%;
	max-width: 30px;
}

.margin-download-button-box-logo {
	margin-left: 80px;
}

@media (max-width: 1026px) {
	.margin-download-button-box-logo {
		margin-left: 50px;
	}
}

.gradient-background-logo {
  background-image: linear-gradient(to right, var(--primary), var(--dark-blue));
	padding-bottom: 100px;
	margin-bottom: 150px;
}

@media (max-width: 1026px) {
		.gradient-background-logo {
 			margin-bottom: 100px;
	}
}

.padding-elements-logo {
	padding-top: 100px;	
}

.h3-light {
	color: var(--white);
}

.download-button-text-light {
	font-size: 16px;
	color: var(--white);
	margin: 0 30px 0 0;
	text-transform: uppercase;
	font-weight: 400;
}

.subheadline-fonts-definition-top {
	margin: 100px 0 0 20px ;
}

@media (max-width: 1026px) {
		.subheadline-fonts-definition-top {
 		margin-top: 60px;
	}
}

.font-boxes {
		margin-top: 40px;
}

.font-text-bold-web {
	font-size: 40px;
	color: var(--primary);
	margin: 0 0 0 20px;
	text-transform: uppercase;
	font-weight: 700;
}

.font-text-book-web {
	font-size: 40px;
	color: var(--primary);
	margin: 0 0 0 20px;
	text-transform: uppercase;
	font-weight: 400;
}

.font-text-light-web {
	font-size: 40px;
	color: var(--primary);
	margin: 0 0 0 20px;
	text-transform: uppercase;
	font-weight: 100;
}

.font-text-bold-print {
	font-family: futuraltpro;
	font-size: 40px;
	color: var(--primary);
	margin: 0 0 0 20px;
	text-transform: uppercase;
	font-weight: 700;
}

.font-text-book-print {
	font-family: futuraltpro;
	font-size: 40px;
	color: var(--primary);
	margin: 0 0 0 20px;
	text-transform: uppercase;
	font-weight: 400;
}

.font-text-light-print {
	font-family: futuraltpro;
	font-size: 40px;
	color: var(--primary);
	margin: 0 0 0 20px;
	text-transform: uppercase;
	font-weight: 200;
}

.download-button-box-fonts {
	margin-top: 15px;
	display: flex;
	align-items:  center;
}

.text-fonts-definition {
	font-size: 16px;
	color: var(--primary);
	margin: 0 40px 0 20px;
	text-transform: uppercase;
	font-weight: 400;
}

.subheadline-fonts-definition {
	margin: 100px 0 0 20px ;
}

footer {
	padding: 40px 0;
}

.flex-box-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.flex-button-footer {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin: 0 0 20px 20px;
}

@media (max-width: 1026px) {
		.flex-button-footer {
		display: block;
	}
}

.button-footer{
	width: 70px;
  height: 70px;
  border-radius: 50px;
  border-style: none;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-footer:hover {
	background-color: var(--grey);
}

.button-footer:focus,

.button-footer--is-active {
	background-color: var(--violet);
}

.text-footer {
	font-size: 16px;
	font-weight: 400;
	color: var(--white) ;
	text-transform: uppercase;
	padding: 0 0 0 16px;
	margin: 0;
	display: flex;
	align-items: center;
}

@media (max-width: 1026px) {
		.text-footer {
 		padding: 20px 0 0 0;
	}
}

.nav-link-footer {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
	padding: 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.nav-effect-footer {
	position: relative;
	z-index: 1;
}

.nav-effect-footer:hover:after {
	max-width: 100%;
}

.nav-effect-footer:after {
	position: absolute;
	left: 0;
	width: 100%;
	max-width: 0%;
	height: 23px;
	border-bottom: 9px solid var(--green);
	transition: max-width .5s ease;
	overflow: hidden;
	content: "";
	z-index: -1;
}

.nav-background-footer {
	display: flex; 
	justify-content: end;
	align-items: center;
	flex-wrap: wrap; 
}

@media (max-width: 1026px) {
		.nav-background-footer {
 		padding-right: 5px;
	}
}

.toast {
	position: absolute;
	pointer-events: none;
	opacity: 0;
	background-color: var(--white);
	color:  var(--primary);
	padding:  0.25em 0.5em;
	transition: opacity 200ms ease;
	border: 2px solid var(--grey);
	font-size: 16px;
	font-weight: 400;
}

.toast--is-visible {
	opacity: 1;
}