@font-face {
	font-family: 'Times';
	src: url('Fonts/Times.woff') format('woff');
}
@font-face {
	font-family: 'Didot';
	src: url('Fonts/Didot.woff') format('woff');
}
@font-face {
	font-family: 'Felix';
	src: url('Fonts/Felix.woff') format('woff');
}
@font-face {
	font-family: 'CENTAUR';
	src: url('Fonts/CENTAUR.woff') format('woff');
}
@font-face {
	font-family: 'CGR';
	src: url('Fonts/CGR.woff') format('woff');
}


html {
  height: 100%;
  
}
body{
	
   
    
	height: auto;
	min-width: 95vw;
    margin: 0;
    padding: 0;
	background-image: url('Img/B5.png');
    background-color: #0C0B0C;
	background-repeat: no-repeat;
	background-position: center top 0px;
	background-attachment: fixed; 
    background-size: cover;
	
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}





/* PAGE */

.page-container{
    width: 100%;
    max-width: 1800px;
    margin:0 auto;
    min-height:100vh; 
    background-size:auto 100%;
    overflow:hidden;
}

/* HEADER */

.top-bar{
	
    position:fixed;
	justify-content: center;
	align-items: center;
	text-align: center;
	display:grid;
	grid-template-columns:1fr auto 1fr;
	height: 60px;	
    top: 0;    
    width: 100%;
    max-width: 1800px;
    background: #0C0B0C;
	border-bottom: 1px solid #71697A;
	
    z-index:2000;
}

.social-left{
    justify-self: start;
	padding-left: 20px;
}

.menu-center{
    justify-self:center;
}

.social-right{
    justify-self:end;
	padding-right: 20px;
}

.social-links{
    display:flex;
    gap:15px;
}

.social-link img{
    width: 30px;
    height: 30px;
    object-fit:contain;
}


/* MENU BUTTON */

.menu-btn{

    background:none;
    border:none;
	align-items:center; /* centers all spans */
    cursor:pointer;

    display:flex;
    flex-direction:column;

    /* Overall spacing between lines */
    gap:6px;

    padding:10px;
}

/* Base settings for all lines */

.menu-btn span{

    display:block;

    background:#fff;

    transition:.3s;

    border-radius:0px;
}

/* LINE 1 */

.menu-btn span:nth-child(1){

    width: 45px;     /* length */
    height: .5px;     /* thickness */
}

/* LINE 2 */

.menu-btn span:nth-child(2){

    width: 40px;
    height: .5px;

    margin-top:2px; /* extra spacing above */
}

/* LINE 3 */

.menu-btn span:nth-child(3){

    width: 40px;
    height: .5px;

    margin-top: 2px;
}

/* LINE 4 */

.menu-btn span:nth-child(4){

    width: 45px;
    height: .5px;

    margin-top: 2px;
}

/* FULL SCREEN MENU */

.main-menu{

    position:fixed;
    top: 50px; /* height of header */
    left: 0;
    width: 100%;
    height: 400px;
    background:#000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap: 30px;
    opacity: 0;
    visibility:hidden;
    transition: 1.2s;
    z-index:1000;
}

.main-menu.active{

    opacity:1;
    visibility:visible;
}
.main-menu a{
    color:#fff;
    text-decoration:none;
    font-size: 2.4rem;
	
	
	font-family: "Didot";
	font-weight: 300;
}

/* TYPOGRAPHY */

h1{
	color:#fff;
    font-size: 2.4rem;
	letter-spacing: 0.15em;
	font-family: "Felix";
	font-weight: 300;
    text-align: center;
	padding-top: 50px;
	margin-left: 35%;
	display: inline-block; /* Required for transform to work on inline elements */
  	transform: scaleX(1.05); /* 1.0 is normal, 1.5 stretches it 150% wider */
  	transform-origin: left; /* Optional: keeps text from shifting away from its starting point */
	position: static;
	animation: fadeIn 4s;
}

.subheading{ 
	color:#fff;
    text-align: center;
    font-size: 2.1rem;
	letter-spacing: 0.04em;
	font-family: "Didot";
	font-weight: lighter;
	margin-left: 36%;
	
	animation: fadeIn 5s;
	
}

h2{
	color:#fff;
    font-size: 3rem;
	font-family: "Didot";
	font-weight: lighter;
	padding-top: 60px;
	
	animation: fadeIn 6s;
	
}

.accordion-header{
    font-family:"Times New Roman", serif;
}

b2{
	color:#fff;
    font-size: 3.2rem;
	font-family: "Felix";
	font-weight: lighter;
	letter-spacing: 0.08em;
	padding-top: 0px;
	animation: fadeIn s;
}


b3{
	color:#fff;
    font-size: 2.1rem;
	font-family: "Felix";
	font-weight: lighter;
	letter-spacing: 0.05em;
	padding-top: 0px;
	animation: fadeIn s;
}

button{
    font-family:"Times New Roman", serif;
}

/* HERO */

.hero-section{

    text-align:center;
	
    background-color: #;
	background-repeat: no-repeat;
	background-position: center;
	overflow-x: hidden;
	background-size: 100%;
	min-height: 600px;
    padding: 130px 20px 50px;
}

#heroTitle,
#heroSubheading{
    transition:opacity 0.15s linear;
}

.hero-section h1{

    margin-bottom:15px;
}

.subheading{

    margin-bottom:50px;
}

.hero-heading-2{

    margin-top:0;
}

.content-section{

    padding: 80px 20px 130px;
}

.content-text{
	color:#fff;
    font-size: 2.8rem;
	font-family: "Didot";
	font-weight: lighter;
	letter-spacing: 0.06em;
	padding-top: 0px;
	
}

.content-row{

    display:flex;
    justify-content:center;
    align-items:center;
    gap: 150px;
}

.mail-link img{
    width: 60px;
    height: 60px;
    
}
.Sbut:hover{
    background : #5b536899;
	transition: 1s;
}

.Sbut{
	height: 70px;
	width: 220px;
	border: 1px solid #ffffff;
	border-radius: 39px;;
	display: inline-block;
	padding-left: 20px;
	padding-right: 12px;
	margin-top:  0px;
	margin-bottom:  8px;
	padding-top: 16px;
	padding-bottom: 0px;
	vertical-align: middle;
	overflow: hidden;
	font-size: 27px;
	font-family: "CGR";
	font-color: #ffffff;
	font-weight: normal;
	letter-spacing: 0.05em;
	text-decoration:none;
	color: #ffffff!important;
	background-color: #3a304799;
	text-align:center;
	cursor:pointer;
	
}

/* HEADING 2 */

.heading-two-section{
    padding:40px 20px;
    text-align:center;
}

.heading-two-actions{
    margin-top:20px;

    display:flex;
    justify-content:center;
    gap:20px;
}

/* ACCORDION */

.accordion-item{
    margin: 10px 0;
	justify-content: center;
	align-items: center;
	text-align: center;
	
	
}

.accordion{
    background-color:#352f3f85;
    color:#fff;
	
    cursor:pointer;
    padding: 35px;
    width: 80%;	
	max-width: 850px;
    border-width: 1.3px;
	border-color: #9C94A9;
	border-radius: 10px;
    text-align: center;
    outline: none;
    font-size: 2.1rem;
	font-family: "Didot";
	font-weight: lighter;
	letter-spacing: 0.03em;
    transition: 3s;
    position: relative;
    
	
}

.accordion:hover{
    background :#5c546999;
	transition: 1s;
}

.accordion::after{

    content:'+';
    position:absolute;
    right: 20px;
    font-size: 2.0rem;
	font-weight: lighter;
    transition: 1.8s;
}

.accordion.active::after{
    transform:rotate(45deg);
}

.panel{
	margin:0 auto;
    background: #0C0B0C;
	justify-content: center;
	align-items: center;
	text-align: center;	
    max-height:0;
	width: 80%;
	max-width: 850px;
    overflow:hidden;
    transition:max-height 1.6s ease-out;
    border-left: 0px solid #222;
    border-right: 0px solid #222;
    border-bottom: 0px solid #222;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.panel p{
	color:#fff;
    padding: 20px 50px;
	font-family: "CENTAUR";
	font-size: 2.2rem;
	font-weight: lighter;
}
b5{
	font-size: 2.4rem;
	font-family: "Didot";
	font-weight: lighter;
	line-height: 14px;
    color:#fff;
    text-decoration:none;
}
/* HEADING 6 */

.heading-six-layout{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 30px;

}

.heading-six-buttons{
    display: flex;
    flex-direction: column;
	margin-bottom: 320px;
	padding-right: 50px;
	padding-bottom: 50px;
    gap: 380px;
	
}

.snipcart-add-item{
	height: 60px;
	width: 150px;
	border: 1px solid #ffffff;
	border-radius: 35px;;
	display: inline-block;
	padding-left: 22px;
	padding-right: 20px;
	margin-top:  0px;
	margin-bottom:  18px;
	padding-top: 4px;
	padding-bottom: 4px;
	vertical-align: middle;
	overflow: hidden;
	font-size: 27px;
	font-family: "CGR";
	font-color: #ffffff;
	font-weight: normal;
	letter-spacing: 0.05em;
	text-decoration:none;
	color: #ffffff!important;
	background-color: #3a304799;
	text-align:center;
	cursor:pointer;
	
}

.snipcart-checkout{
  margin-top: 0px;
  margin-bottom: 8px;
  background-color: transparent;
  width: 30px;
  height: 30px;
  border-radius: 0px;
  border: none;
  border-color: none;
  cursor: pointer;
  position: fixed;
  left: 0;	
  top: 2px;
  z-index: 1000;
  
  
  
}


.minusBtn:hover, .plusBtn:hover, .snipcart-add-item:hover{
  cursor: pointer;
}
.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-control input[type=number] {
  -moz-appearance: textfield;
}

.snipcart-modal__container{
   z-index: 10000;
	
}

/* FOOTER */



footer{
	color:#fff;
	background-color: #0C0B0C;
    padding-top: 10px;
	padding-bottom: 10px;
    display: flex;
	position:fixed;

    bottom:0;

    left:0;

    width:100%;
    justify-content:center;
    align-items:center;
	text-align: center;
    gap: 500px;
 	border-top: 1px solid #71697A;

  
  
}

.email-link{
	font-size: 18px;
	font-family: "Didot";
	font-weight: lighter;
    color:#fff;
    text-decoration:none;
}


.copyright{
	font-size: 14px;
	font-family: "felix";
	font-weight: lighter;
    color:#fff;
    text-decoration:none;
	padding-bottom: 3px;
}

b4{
	font-size: 16px;
	font-family: "Felix";
	font-weight: lighter;
    color:#fff;
    text-decoration:none;
}


a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
a:active {
	color: #FFFFFF;
	text-decoration: none;
}


.fade-in{
	animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* MOBILE */


@media screen and (max-width: 1200px){
	
	
	
}	

@media screen and (max-width: 1100px){
	
	h1{
        font-size: 1.8rem;
    }

    .subheading{
        font-size: 1.8rem;
    }

    .hero-heading-2{
        font-size: 1.8rem;
    }
	b2{
        font-size: 1.9rem;
    }
	
}	

@media screen and (max-width: 1000px){
	
	
	.hero-section{
		min-height: 550px;
    	padding: 100px 20px 50px;
	}

	
	h1{
        font-size: 1.8rem;
    }

    .subheading{
        font-size: 1.8rem;
    }

    .hero-heading-2{
        font-size: 1.8rem;
    }
	b2{
        font-size: 1.9rem;
    }
	
	footer{

        display:flex;
        justify-content:space-between;
        align-items:center;
        gap: 20px;
        flex-wrap:wrap;
		padding-left: 20px;
		padding-right: 20px;
    }
	
	.content-row{

        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
        gap: 25px;
    }
	
}	

@media screen and (max-width: 900px){
	
	
	
}	

@media screen and (max-width: 800px){
	
	
	.hero-section{
		min-height: 550px;
    	padding: 80px 20px 50px;
	}
	
	h1{
        font-size: 1.5rem;
    }

    .subheading{
        font-size: 1.5rem;
    }

    .hero-heading-2{
        font-size: 1.5rem;
    }
	
	b3{
        font-size:1.7rem;
    }
}	

@media screen and (max-width: 700px){
	
	
	
	
	h1{
        font-size: 1.3rem;
    }

    .subheading{
        font-size: 1.3rem;
    }

    .hero-heading-2{
        font-size: 1.5rem;
    }
	
}	

@media screen and (max-width:600px){

   

    /* Header */

    .top-bar{

        display:grid;
        grid-template-columns:1fr auto 1fr;
        align-items:center;
        padding:15px 10px;
    }

    .social-left{
        justify-self:start;
    }

    .menu-center{
        justify-self:center;
    }

    .social-right{
        justify-self:end;
    }

    .social-link img{
        width:30px;
        height:30px;
    }

    /* Typography */

    h1{
        font-size:2rem;
    }

    .subheading{
        font-size:1rem;
    }

    .hero-heading-2{
        font-size:1.5rem;
    }

    /* Text Button Link */

    .content-row{

        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
        gap: 25px;
    }

    /* Accordion */

    .accordion{
        font-size: 1.4rem;
    }
	
	b3{
        font-size: 1.6rem;
    }

    /* Heading 6 */

    

    /* Footer */

    footer{

        display:flex;
        justify-content:space-between;
        align-items:center;
        gap: 0px;
        flex-wrap:wrap;
		padding-left: 20px;
		padding-right: 20px;
    }
	.accordion::after{

    	content:'+';
    	position :absolute;
    	right: 20px;
    	font-size: 1.4rem;
		font-weight: lighter;
		padding-bottom: 10px;
		
		
    	transition: 1.8s;
}
	.panel p{
        padding: 30px 20px;
		font-family: "CENTAUR";
		font-size: 1.4rem;
		font-weight: lighter;
    }
	b5{
       font-size: 1.7rem;
    }
	.top-bar{
	
	height: 60px;	
	}
	.content-text{
    justify-content:center;
    align-items:center;
    text-align: center;
	}
	.Sbut{
	scale: 0.8; 
	}
    
}








@media screen and (max-width: 550px){
	
	body{
		background-image: url("Img/B3.2.png");	
		min-width: 98vw;
   		margin: 0;
    	padding: 0;
    	background-color: #000;
		background-position: center top 60px;
		background-attachment: fixed; 
    	background-size:  contain;
		
	}
	
	h1{
        font-size: 1.2rem;
		margin-left: 0%;
    }

    .subheading{
        font-size: 1.2rem;
		margin-left: 0%;
    }

    .hero-heading-2{
        font-size: 1.2rem;
    }
	
	b3{
        font-size:1.4rem;
    }
	.accordion{
        font-size:1.2rem;
		padding: 15px 0px;
    	width: 90%;	
		
    }
	
	
	.panel{
        width: 90%;
		
    }
	.panel p{
        padding: 30px 20px;
		font-family: "CENTAUR";
		font-size: 1.4rem;
		font-weight: lighter;
    }
	b5{
       font-size: 1.7rem;
    }
	.top-bar{
	
	height: 60px;	
	}
	.content-text{
    justify-content:center;
    align-items:center;
    text-align: center;
	font-size: 2.0rem;
    
	}
	.Sbut{
	scale: 0.7; 
	}

	
	
	
	
	.social-left{
    justify-self: start;
	padding-left: 10px;
	}

	.menu-center{
    justify-self:center;
	}

	.social-right{
    justify-self:end;
	padding-right: 10px;
	}

	.social-links{
    display:flex;
    gap:15px;
	}
	.menu-btn{
    padding: 0px;
	}
	
	
	
	.heading-six-layout{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

    padding: 0px 0px 0px 0px;
	}

	.heading-six-buttons{
    display: flex;
    flex-direction: column;
	margin-bottom: 320px;
	padding-right: 20px;
	padding-bottom: 50px;
    gap: 380px;
	
	}

	.snipcart-add-item{
	scale: 0.8;
	padding-left: 0px;
	padding-right: 0px;
	margin-top:  0px;
	margin-bottom:  8px;
	padding-top: 4px;
	padding-bottom: 4px;
	
	
	}


}