@font-face {
    font-family: 'BPG WEB 001 Caps';
    src: url('BPGWEB001Caps.woff2') format('woff2'),
        url('BPGWEB001Caps.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BPG WEB 001';
    src: url('BPGWEB001.woff2') format('woff2'),
        url('BPGWEB001.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
  --underline-height: .5em;
  --transition-duration: .5s;
  
  --main-ds-color: #AE3324;
  --main-ds-color-rgba: 174, 51, 36;
  --main-bg-color: #F1F1F2;
  --menu-bg-color: #F7F7F8;
  --menu-text-color: #231F20;
  
  --slider_01_bg: #F1F1F2;
  
  --footer_01_bg: #F1F1F2;
  --footer_02_bg: #D0D2D3;
  
  
  --secondary-text-color: #929497;
  
  --inline-padding: 1rem;
  --section-padding-block: 1rem;
  --wrapper-max-width: 50rem;
  
  --page-devider-color: #A6A8AB;
  
  
}

html, body {
	
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	/* 
	background-color: var(--main-bg-color);
	*/
	overflow-x: hidden;
}


/*Preloader*/
.preloaderContainer{
	position: absolute;
	top: 0;
	left: 0;

	width: 100vw;
	height: 100vh;
	
	display: flex;
	justify-content: center;
    align-items: center;

	z-index: 100000;
	
	background-color: white;
    background-image: url('../media/logob.png');
    background-repeat: no-repeat;	
    background-position: center center;
    background-size: 70px; 
}

.preloader{
	border: 5px solid #f3f3f3;
    border-top: 5px solid var(--main-ds-color);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 2s linear infinite;
}

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


/*Top Navigation*/

.imageLink{
	border: 0;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 1em;

  background-color: var(--menu-bg-color);
  color: var(--menu-text-color);
  
  font-family: "BPG WEB 001 Caps";
  
  position: fixed;
  top: 0;
  right: 0;
  left: 0;	
  
  z-index: 1000;
}

.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;

	height: inherit;
	align-items: center;
}

.menu > li {
	display: flex;
	overflow: hidden;
	height: inherit;
	align-items: center;
}

.menu a{
	color: var(--menu-text-color);
	text-decoration: none;
	margin: 0 0.3rem;
	
	display: flex;
	height: inherit;
	align-items: center;
	
	position: relative;
}

.menu a:hover,
.menu a.activeMenu
{
	color: var(--main-ds-color);
}

.menu a:after{
        position: absolute;
        content: '';

		width: 0%;
        height: 4px;
        bottom: 0px; 

        margin: 0 auto;
		left: 0;
        right: 0;
		  
		-o-transition:.2s;
		-ms-transition:.2s;
		-moz-transition:.2s;
		-webkit-transition:.2s;
		transition:.2s;	

		background: var(--main-ds-color);
}


.menu a:hover:after,
.menu a.activeMenu:after
 {
		width: 100%;
		background: var(--main-ds-color);
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--main-ds-color);
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}


/*Slider*/
.fpage_container{
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.fpage_container form {
  box-sizing: border-box;
  text-align: center;
  padding: 85px 22px 0 22px;
  display: inline-flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  justify-content: center;
}

.checkContainer{
	z-index: 10000;
	position: fixed;
	right: 20px;
}

.fpage_container form input {
  height: 0;
  margin: 10px 0;
  z-index: 1;
}

.fpage_container form input:checked {
  outline: 0;
  border: 0;
}


.fpage_container form input[type="radio"]{
  appearance: none;
  background-color: #fff;
  
  font: inherit;
  color: currentColor;
  width: 30px;
  height: 30px;
  border: 1px solid #D0D2D3;
  border-radius: 15px;
  display: grid;
  place-content: center;
  
  cursor: pointer;
}


.fpage_container form input[type="radio"]:before {

  transform: scale(0);
  box-shadow: inset 1em 1em var(--main-ds-color);
  
  content: "";
  display: inline-block;
  
  width: 22px;
  height: 22px;

  border-radius: 15px;


  transition: all 0.25s linear;

}
.fpage_container form input:checked:before {
  transform: scale(1);
}


.fpage_container form input:hover:after:not(label) {
  opacity: 1;
}
.fpage_container form .checkContainer:has(input:nth-of-type(1):checked) ~ .labels label {
  transform: translateY(-0%);
}
.fpage_container form .checkContainer:has(input:nth-of-type(2):checked) ~ .labels label {
  transform: translateY(-100%);
}
.fpage_container form .checkContainer:has(input:nth-of-type(3):checked) ~ .labels label {
  transform: translateY(-200%);
}

.fpage_container form .labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.fpage_container form .labels label {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2B2B38;
  z-index: 0;
  transition: all 0.75s cubic-bezier(0.75, 0.25, 0, 1.05);
}

.fpage_container form .labels label#Slide1{
	background-color: var(--slider_01_bg);
    background-image: url('../media/vine_3.png'), url('../media/vine_3.png');
    background-repeat: no-repeat;	
    background-position-x: -560px, calc(100% + 580px);
    background-position-y: center, center;
    background-size: auto 80%, auto 80%;
    transition:background-position 3s ease;
}

.fpage_container form .labels label#Slide1.show{
	background-position-x: -230px, calc(100% + 200px);
}


/*Content*/
.content {
	width: 80rem;
    height: 100vh;
    box-sizing: border-box;
    padding: 85px 0 0 0;

    display: flex;
    flex-direction: row;    

    justify-content: center;
	align-items: center;
    
    font-family: "BPG WEB 001";
    color: var(--secondary-text-color);
}

.content .block {
  width: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  margin: 42px 0;
  display: flex;
  justify-content: center;
}
.content .block span, .content .block span i {
  margin: 0 42px;
}
.content .block span i {
  margin-bottom: 22px;
}
.content .block span i:before {
  font-size: 30px;
}
.content a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  margin-top: 30px;
}
.content a.learn-more {
  width: 15rem;
  height: auto;
}
.content a.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--main-ds-color);
  border-radius: 1.625rem;
}
.content a.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.content a.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.content a.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
    top: -0.35rem;
	right: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.content a.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.hiddenLogo{
	display: none;
}

#Slide2 .content a.learn-more .button-text,
#Slide3 .content a.learn-more .button-text
 {color: white;}

.content a:hover .circle {
  width: 100%;
}
.content a:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.content a:hover .button-text {
  color: #fff;
}



.fpagelogo{
	width: 150px;	
	margin-bottom: 40px;
}

.slide_content{
	flex-grow: 1;
	
	
    text-align: left;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}



#Slide1 .slide_content:first-child{
	padding: 0 0 0 150px;
	flex-basis: 20%;
	text-align: center;
}

#Slide2 .slide_content,
#Slide3 .slide_content{
	align-items: flex-start;
}

#Slide2 .slide_content:first-child,
#Slide3 .slide_content:first-child{
	flex-basis: 40%;
}

.slide_content h1{
	font-size: 42px;
	font-family: "BPG WEB 001 Caps";
}

.slide_content div{
	line-height: 1.5
}

.Slide{
	overflow: hidden;
}

.Slide#Slide1 .slide_content:last-child{
	height: 100%;
	align-items: center; 
/*	justify-content: space-between;*/
	position: relative;
	padding-left: 0px;
	}


.Slide#Slide1 .slide_content:last-child > img{
    max-width: 90%;
    /*height: 200px;
	padding: 50px 0;
	*/
}




#Slide1 h1{color: black;}
#Slide2 h1,
#Slide3 h1{color: white;}


.Slide#Slide2{
	background-image: url('../media/mp_banner_bg.jpg');
	background-size: cover;
}

.Slide#Slide3{
	background-image: url('../media/mp_banner_bg_2.jpg');
	background-size: cover;
}


#Slide2 img,
#Slide3 img{
	max-width: 100%;
}


#Slide3 .content{color: black !important;}

.content #Slide2.slide_left button.learn-more .button-text {
	color: var(--secondary-text-color);
}
.content #Slide2.slide_left button:hover .button-text {
    color: #fff;
}




.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.pageContainer{
	margin: 80px 0 0;
	width: 100%;
	
	font-family: "BPG WEB 001";
	color: var(--secondary-text-color);	
	
	line-height: 1.5;

}

.pageContainer > h1,
.pageContainer h2{
	max-width: var(--wrapper-max-width);
	margin: 0 auto;
	padding: 30px;
	
	font-family: "BPG WEB 001 Caps";
	color: black;	
	position: relative;
	
	
}

.pageContainer > h1{font-size: 1rem;}
.pageContainer h2{font-size: 1.2rem; text-align: center; letter-spacing: 0.1rem;}


.pageWrapper{
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}


/*First Page Animation  - Begin*/
.animationObserver{
	
}
/*First Page Animation - End*/

footer{
  width:100%;
  height:65px;
  background-color: var(--footer_02_bg);	
}

footer span{
	display: block;
  width:100%;
  height:20px;
  background-color: var(--footer_01_bg);	
}


@media (max-width: 1680px){
	.content {width: 70rem;}
	
	#Slide1 .slide_content:first-child {padding: 0 0 0 100px;}
	
}


@media (max-width: 1024px) {
	.menu-button-container {
		display: flex;
	}
	
	.menu {
		position: absolute;
		top: 0;
		margin-top: 80px;
		left: 0;
		flex-direction: column;
		width: 100%;
		justify-content: center;
		align-items: center;
		height: auto;
		
		background-color: var(--secondary-text-color);
	}
	
	#menu-toggle ~ .menu li {
		height: 0;
		margin: 0;
		padding: 0;
		border: 0;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}
	
	#menu-toggle:checked ~ .menu li {
		height: 2.5em;
		padding: 0.5em;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}
	
	.menu > li {
		display: flex;
		justify-content: center;
		margin: 0;
		padding: 0.5em 0;
		width: 100%;
	}
	
	.menu > li:not(:last-child) {
		border-bottom: 1px solid #444;
	}
	

}

@media (max-width: 768px){}
@media (max-width: 840px){
	
	.content{
		flex-direction: column;
		width: 25rem;
	}	
	
	.slide_content{
		flex-grow: 0;
	}
	
	#Slide1 .slide_content:first-child {
        flex-basis: unset;
        padding: 50px 0 0 0;
    }
    
    .fpage_container form .labels label#Slide1.show {
    	background-position-x: -300px, calc(100% + 300px);
	}
	
	#Slide2 .slide_content:first-child, 
	#Slide3 .slide_content:first-child {
     	flex-basis: unset;
	}
	
}
@media (max-width: 430px) {
	
	.content {
        width: 15rem;
    }
	
	.fpagelogo {
        width: 70px;
        margin-bottom: 10px;
    }
	
    .fpage_container form .labels label#Slide1.show {
        background-position-x: -350px, calc(100% + 350px);
    }
    
    #Slide1 .slide_content:first-child {
        padding: 30px 0 0 0;
        font-size: 14px;
    }
    
    .Slide#Slide1 .slide_content:last-child {
    	justify-content: space-between;
	}
	
}


/*Animation from Company css*/
/*Animation*/
.animationObserver img.zoomImage{
	transition: transform 1s ease;
	transform: scale(0);	
}
.animationObserver.show img.zoomImage{
	transform: scale(1);
}

.animationObserver img.slideFromLeft{
	transition: left 2s ease;
	left: -100%;
	position: relative;	
}
.animationObserver.show img.slideFromLeft{
	left: 0;
	position: relative;	
}
.animationObserver img.slideFromRight{
	transition: right 2s ease;
	right: -100%;
	position: relative;	
}
.animationObserver.show img.slideFromRight{
	right: 0;
	position: relative;	
}

.animationObserver img.slideFromBottom{
	transition: transform 1s ease;
	transform: translateY(800px);	
}
.animationObserver.show img.slideFromBottom{
	transform: inherit;
}
.slideImage{
	position: relative;
}
.animationObserver.show .fadeIn{
    -webkit-animation: fadeInFromNone 1 linear;
    -moz-animation: fadeInFromNone 1s linear;
    -o-animation: fadeInFromNone 1s linear;
    animation: fadeInFromNone 1s linear;
}

@-webkit-keyframes fadeInFromNone {
    0% {opacity: 0; transform: scale(0);}
    50% {opacity: 0.5;}
    100% {opacity: 1; transform: scale(1);}
}
@-moz-keyframes fadeInFromNone {
    0% {opacity: 0; transform: scale(0);}
    50% {opacity: 0.5;}
    100% {opacity: 1; transform: scale(1);}
}
@-o-keyframes fadeInFromNone {
    0% {opacity: 0; transform: scale(0);}
    50% {opacity: 0.5;}
    100% {opacity: 1; transform: scale(1);}
}
@keyframes fadeInFromNone {
    0% {opacity: 0; transform: scale(0);}
    100% {opacity: 1; transform: scale(1);}
}