@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Roboto:wght@100&display=swap');

html, body{
  font-size: 17px;
}


/* Typo */
p, h1, h2, h3, h4{
	font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4{
	color: #e30613;
}

.home h1{
	font-size: 2rem;
	margin-bottom: 3rem;
	text-transform: uppercase;
	font-weight: 600;
}
@media screen and (min-width: 576px){
	.home h1{
		font-size: 3rem;
	}
}
@media screen and (min-width: 1200px){
	.home h1{
		font-size: 4rem;
	}
}
h1{
	font-size: 1.75rem;
	margin-bottom: 2.5rem;
}
@media screen and (min-width: 576px){
	h1{
			font-size: 2.75rem;
			margin-bottom: 2.5rem;
	}
}

.home h2{
	font-size: 2.75rem;
	margin-bottom: 2.75rem;
	text-transform: uppercase;
	color: #ffffff !important;
}
h2{
	font-size: 1.75rem;
}

@media screen and (max-width: 576px){
	h2{
		font-size: 1.25rem;
	}
}

img{
	max-width: 100%;
}

.image-column-hide{
	display: none;
}
@media screen and (min-width: 992px){
	.image-column-hide{
			display: block;
	}
}

.image-column{
	display: flex;
	flex-direction: column;
}

.image-column img{
	height: calc(100vh / 2);
	object-fit: cover;
	object-position: center;
	max-height: 400px;
}

.text-uppercase{
	text-transform: uppercase;
}

.text-large{
	font-size: 1.5rem;
	line-height: 1.5rem;
}
@media screen and (min-width: 577px){
	.text-large{
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
}

.text-medium{
	font-size: 1.125rem;
}
@media screen and (min-width: 577px){
	.text-medium{
		font-size: 1.25rem;
	}
}

.text-red{
	color: #e30613;
}

.text-center{
	text-align: center;
}

@media screen and (min-width: 577px){
		ul{
		margin-left: 2rem;
	}
}



/* Container */

.container-fluid{
	max-width: 1600px;
}

/*Section */
section{
	overflow: hidden;
}
@media screen and (min-width: 992px){
	.section--height{
		padding: 3rem;
		height: 100vh;
		display: flex;
		max-height: 800px;
	}
	.section--height > div{
		margin-top: auto;
		margin-bottom: auto;
	}
}



.section{
	padding: 2.5rem 1.5rem;
}
@media screen and (min-width: 768px){
	.section{
		padding: 5rem 1.5rem;
	}
}
@media screen and (min-width: 992px){
	.section{
		padding: 5rem;
	}
}

.animated-content{
	opacity: 0;
  transform: translate3d(0,1rem,0);
  transition: 1.25s;
  width: 100%;
  max-width: 1000px;
	margin: auto;
}

.animated-content.scrolled{
	 opacity: 1;
   transform: translate3d(0,0,0);
   width: 100%;
}



.section-primary{
	background-color: #1d3a8f;
	color: #ffffff;
}
.section-primary h2{
	color: #e30613;
}


.section--grey{
	background-color: #f2f3f6;
}

.section--footer{
	background-color: #ffffff;
	padding: 1.5rem;
	color: #1d3a8f;
}

.section--footer a{
	color: #1d3a8f;
}

footer .section--grey{
	padding: 2rem 0;
}

/* Header */
header{
	background-color: transparent;
	position: absolute;
	padding: 1.5rem;
	display: flex;
	width: 100%
}
@media screen and (min-width: 992px){
	header{
		position: fixed;
	}
}

header .logo{
	margin-right: auto;
}
header .logo img{
	height: 4rem;
}


/* Pig */ 
.pig{
	position: fixed;
	bottom: 1rem;
	right: 1rem;
}
.pig img{
	height: 6rem;
}


/* Button */

.btn-primary{
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 0px;
  line-height: 1.25rem;
  background-color: #e30613;
  color: #ffffff;
  border: 2px solid #e30613;
  font-size: 1.25rem;
  margin-top: 2rem;
  min-width: 220px;
}
.btn-primary:hover{
	color: #ffffff;
  border: 2px solid #e30613;
  background-color: #e30613;
}
.btn-primary:active, .btn-primary:focus{
	background-color: #e30613 !important;
  border: 2px solid #e30613 !important;
  box-shadow: none !important;
}

.btn-white{
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 0px;
  line-height: 1.25rem;
  background-color: #ffffff;
  color: #8c1d59;
  border: 2px solid #ffffff;
  font-size: 1.25rem;
  margin-top: 2rem;
  min-width: 220px;
}
.btn-white:hover{
	color: #8c1d59;
  border: 2px solid #ffffff;
  background-color: #ffffff;
}
.btn-white:active, .btn-white:focus{
	background-color: #ffffff !important;
  border: 2px solid #ffffff !important;
  box-shadow: none !important;
}

a{
	color: #000000;
	text-decoration: none;
	transition: 0.3s ease-in-out;
}

a:hover{
	color: #e30613;
}

.link{
	font-size: 1rem;
  padding-right: 3.5rem;
  display: inline-flex;
  position: relative;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}  
@media screen and (min-width: 577px){
		.link{
			font-size: 1.5rem;
		}
}
.link:hover{
	color: #e30613;
	transition: 0.3s ease-in-out;
}
.link:after{
	position: absolute;
	content: " ";
	transition: 0.3s ease-in-out;
	background-image: url("../img/arrow.svg");
	background-size: 100%;
	background-repeat: no-repeat;
	height: 2rem;
	width: 1.5rem;
	margin-top: 5px;
	right: 1.5rem;
}
.link:hover:after{
  right: 1rem;
  transition: 0.3s ease-in-out;
  background-image: url("../img/arrow-red.svg"); 
}



/* Keyvisual-Box */

.keyvisual-box{
	display: flex;
	position: absolute;
	margin-left: -9rem;
}

.keyvisual-box-content{
	padding: 3rem;
	margin: 3rem;
	border: 3px solid #e30613;
	background-color: #1d3a8f;
}


/* Overview Page */

/* Slider */

.slider{
	max-height: 50vh;
	overflow: hidden;
}
@media screen and (min-width: 993px){
	.slider{
		max-height: 70vh;
	}
}	

.slider-wrapper{
	position: relative;
}

.slider-wrapper h1{
	font-size: 4rem;
	line-height: 4rem;
	position: absolute;
	z-index: 10000;
	top: -2rem;
	color: #8c1d59;
}

@media screen and (min-width: 769px){
	.slider-wrapper h1{
		font-size: 7rem;
		line-height: 7rem;
		transform: rotate(-90deg);
		top: 10rem;
		left: -8rem;
	}
}

/* Content Box */

.conten-box{
	display: flex;
	margin-bottom: 2rem;
}

.conten-box h2{
	padding: 6rem 1rem;
	margin: auto;
	text-transform: uppercase;
	border: 3px solid red;
}


