@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: menuFont;
   /* src: url("/fonts/FugazOne-Regular.ttf"); */
    src: url("/assets/MazinDEMO-Regular.otf");
}

body{
	margin:0;
	padding:0;
	height:100%;
	font-family:arial, Helvetica, sans-serif;
	font-size:12px;
}
html{
		height:100%;
	margin:0px;
    scroll-padding-top: 100px;
	}

.contactlogoimg{
    height:25px;
    padding-left: 10px;
    padding-right: 10px;
    
}
.msg{
    
    font-family:menuFont;
    font-size:18px;
    color: #FF0000;
}

#fcontact{
    width:100%;
    text-align: center;
    color: #FF0000;
    font-size: 20px;
    
}

#fcontact a{
    color:#FF0000;
    text-decoration: none;
}

#telFooter{
	 display:none;
}
#clear{
    clear:both;
}

.video-mobile {
  display: none;
}

.singlebar {
  display: inline-block;
  overflow: hidden;
    width:350px;
    padding:20px;
    position: relative;
}

.zoom-image {
  width: 100%;
  transition: transform 0.5s ease; /* smooth transition */
}

.singlebar:hover .zoom-image {
  transform: scale(1.04); /* 10% zoom in */
}

/* Default text (before hover) */
.overlay-text1::after {
  content: "Roof Trusses";
}
/* Default text (before hover) */
.overlay-text2::after {
  content: "Floor Joints";
}
/* Default text (before hover) */
.overlay-text3::after {
  content: "Contact Us";
}


#pagecontentcontact {
    display: flex;
    gap: 1rem;    
    margin:0 auto;
        background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
    
    
}

/* 2/3 – 1/3 split */
#leftcolcontact {
    flex: 2;
    padding:10px;
}

#rightcolcontact {
    flex: 1;
    font-family: menuFont;
        font-size:1.6rem;
    color:#2E2E2E;
}
#rightcolcontact a{
text-decoration: none;
color:#2E2E2E;
}
#rightcolcontact a:hover{
text-decoration: none;
color:#FF0000;
}


   #headright {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 50px;
    padding: 10px;
    text-align: right;
    z-index: 100000;
    cursor: pointer;
}


   #headcontact {
    position: fixed;
    top: 10px;
    right: 0px;
    width: 250px;
    padding: 10px;
    text-align: right;
    z-index: 100000;
    cursor: pointer;
}


#hamburger {
    width: 50px;
    height: 40px;
    display: flex;
    flex-direction: column;
   gap:10px;
}

#hamburger .bar {
    height: 7px;
    width: 100%;
    background-color: black;
    border-radius: 5px;
    transition: all 0.4s ease;
}
#hamburger.active .bar {
    background-color: white;
}
/* Animate into X */
#hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(12px, 11px);
}

#hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

#hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(12px, -11px);
}

/* Menu styling */
#bMenu {
      position: fixed;
    top: 0;
    left: -400px; /* start off-screen */
    width: 300px;
    height: 100%;
    border-right: #333 thin solid;
    background-color: #666;

    z-index: 50000;
    transition: left 0.4s ease; /* smooth slide */
    
    z-index: 50000;
    padding-top: 50px;
    font-family: menuFont;
}

#bMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#bMenu ul li {
    font-size: 24px;
    font-family: menuFont;
    text-align: left;
    padding-top: 25px;
   
}

#bMenu ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
     padding-left:20px;
}

#bMenu ul li a:hover{
color:#FF0000;
background-color:#cccccc;
}

#bMenu.show {
    left: 0; /* slide in */
}

.default-doc{
    font-size:1.6rem;
    padding-top:25px;
     position: absolute;
    bottom:30px;
    text-align: center;
    width:350px;
    color: #FFFFFF;
    
}

.default-doc a{
    color: #FFFFFF;
    text-decoration: none;
}

.contactusbutton{
    display:inline-block;
    width:145px;
    height: 30px;
    color: #FFFFFF;
    background-color: #636363;
    border: thin solid #c51230;
    text-align: center;
    font-family:menuFont;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    padding-top: 4px;
    margin-right:20px;
}
#headcontact a:hover{
   color:#FF0000;
background-color:#cccccc;
}


/* Overlay text */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Text change on hover */
.singlebar:hover .overlay-text {
  content: "… more …";  /* <- ignored, we’ll use inner text instead */
  opacity: 1;
}

.singlebar:hover .overlay-text::after {
  content: ""; /* optional, ensures pseudo-elements don’t interfere */
    
}

/* Initially hide hover text */
.hover-text {
  display: none;
}



/* On hover, swap texts */
.singlebar:hover .default-text, 
.singlebar:active .default-text {
  display: none;
}
.singlebar:active  .default-doc{
  display: none;
}
.singlebar:hover .hover-text,
.singlebar:active .hover-text{
  display: inline;
    font-size: 1.5rem; /* optional size change */
 }


.singlebar.touched .default-text {
  display: none;
}

.singlebar.touched .hover-text {
  display: inline;
}



/* Simple hover effect to change text */
#paddingbottom{position: relative; height:1000px;}
#bottombar{
height:70;
width:100%;
position:absolute;
z-index:999;
text-align:center;
bottom: 40px;
padding-bottom:5px;	

color:#FFFFFF;
}
#scrolldowntxt{}
#bg-container{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;

  z-index: 0; /* stays in the back */
     /* fallback image */
  /*
    background-image: url("../gfx/bgImages/firstframezoomed.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    */
}
#bg-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
    object-position: center center;
  z-index: -1; /* make sure it stays behind content */
}

#bgimg1{
	position:absolute;
	
	background-image: url("/gfx/bgImages/Attic.jpg"); 
	top: 0;
    left: 0;
    height: 100%;
    width: 100%;
	background-attachment:fixed;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
		z-index:500;
	background-color: transparent;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
     pointer-events: none;
}
#bgimg2{
	position:absolute;
	
	background-image: url("/gfx/bgImages/Attic.jpg"); 
	top: 0;
    left: 0;
    height: 100%;
    width: 100%;
	background-attachment:fixed;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
		z-index:250;
		background-color: transparent;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
     pointer-events: none;
}
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}
#headerfixed{
	width:100%;
	height:75px;
	position:fixed;
	top:0px;
		z-index:1000;
	padding-top:3px;
 background-color:#ffffff; 
    	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #cccccc;
	padding-top:3px;
    display:flex;
    flex-direction: row;
	
}
#headleft{
   flex:1;
    font-family:verdana;
	font-size:18px;
	color:#FFFFFF;
	text-transform:uppercase;
    text-align: center;
    
}
#headleft a{
	color:#FFFFFF;
	text-decoration:none;
}
#headleft a:hover{
	color:#C51230;

}

#headSocial{
   position: fixed;
    top:0px;
    left:55px;
	
	width:110px;
	padding:5px;
	text-align:right;
	  z-index: 10000;
}

#headrightouter{
	float:left;
	width:600px;
	text-align:right;
	margin-right: 3px;
	height:75px;
}
#headrightouter a{
	text-decoration:none;
	color:#666666;
}


.footerlogoimg{
    height: 150px;
  padding:15px;
    
}

#closeBTN{
	padding-top:10px;
padding-left:30px;
    width:90%;
	text-align:left;
	font-size:50px;


}

.pageimg{width:500px;
  margin:20px;  
box-shadow:0 8px 30px rgba(0,0,0,0.6);
}
#closeBTN a{
	text-decoration:none;
	color:#FFFFFF;
}
#closeBTN a:hover{
	text-decoration:none;
	color:#CCCCCC;
}
.telzone{
	color:#C51230;
font-size:20px;
text-decoration:none;
}
.telzoneFooter{
	color:#FFFFFF;
font-size:20px;
text-decoration:none;
}
.emailzone{
font-size:18px;

}



#headrightupper{
	float:left;
	width:100%;
	text-align:right;
	font-family:verdana;
}	
#headrightlower{
	clear:both;
	float:left;
	width:100%;
	text-align:right;
	font-family:verdana;
}

#prev{
		position:absolute;
	top:0px;
left:0px;
	width:50px;
	top:50%;
transform: translateY(-50%)	;
text-align:center;
	z-index:1500;
}

#next{
		position:absolute;
	top:0;
right:0px;
	width:70px;
	top:50%;
transform: translateY(-50%)	;
text-align:center;
	z-index:1500;
}
.prevbtn {

	cursor:pointer;
	margin-top: -22px;
	padding: 16px;
	color:#FFFFFF;
	font-weight:bold;
	font-size: 36px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
.nextbtn {

	cursor:pointer;
	margin-top: -22px;
	padding: 16px;
	color:#FFFFFF;
	font-weight:bold;
	font-size: 36px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

.prev:hover, .next:hover{
background-color: rgba(0,0,0,0.8);
}
#centrecontent{
	padding:0;
	margin:0 auto;
	text-align:center;
	position:absolute;
	width:100%;
	z-index:700;
	top:50%;
	transform: translateY(-50%)	;


}

#innerSquare{
	margin:0 auto;
	width: 500px;
	height: 280px;
	-moz-border-radius: 5%;
	-webkit-border-radius: 5%;
	border-radius: 5%;
	opacity: 0.7;
	z-index:1000;
	color:#ffffff;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left:5px;
	padding-right:5px;
	color:#666666;
	font-family:verdana;
	font-size:18px;
	background-color:#FFFFFF;
	border:#C51230 2px solid;
   }
#innerSquare a{
	color: inherit;
	text-decoration:none;
	background-color:#FFFFFF;
	}
#innerSquare h3{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 24px;
	}
#innerSquare a:hover{
	color:#FFFFFF;
	text-decoration:none;
	background-color:#C51230;

	}

#innerSquare:hover, innerSquare a:hover{
	color:#FFFFFF;
	text-decoration:none;
	background-color:#C51230;
			border:#FFFFFF 2px solid;
	}   
   
    #container{
	position:relative;
	width: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center;
}


#pagecontent{
	position:relative;
	width: 1150px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		text-align: left;
padding-top: 10px;
      min-height: 400px;

}
#pagecontent h1{
color:#C51230;
font-size:30px;
}
#pagecontent h2{
font-size:24px;
}
#pagecontent p{
font-size:16px;
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}
.smaller{
    font-size:15px;
    
}
#leftcol{
	float:left;
	width:570px;
	text-align:left;
	padding-right:5px;
}
#rightcolwithimg{
	float:left;
	width:570px;
	text-align:right;
	padding-left:5px;
    vertical-align: top;
}
#rightcol{
	float:left;
	width:570px;
	text-align:left;
	padding-left:5px;
}

#menu{
/*	display:inline; */
float:left;
width:40px;
	padding-top:3px;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size:16px;
}
#menu a{
	text-decoration:none;
	color:#000000;
}
#menu a:visited{
	text-decoration:none;
	color:#000000;
}

#menu ul{
		list-style:none;
}
#menu ul li{
	float:left;
	width: 125px;
		padding:0px;
		margin-top:2px;
		margin-right:15px;
		height:25px;
		text-align:left;
	font-family:arial, Helvetica, sans-serif;
		font-size:14px;
		font-weight:bold;
}

.menuselected{
color:#C51230;
}

#footer{

	width: 100%;
	padding-top:10px;
    padding-bottom: 10px;
      min-height: 400px;
}
#footerslim{

	width: 100%;
	padding-top:10px;
    padding-bottom: 10px;
      
}
#flogos{
    display: inline-block;
width:1170px;
    text-align: center;
    padding-top:10px;
    padding-bottom:10px;
    
    
}
#flinks{
width:100%;
    color:#FFFFFF;
text-align:center;
padding-top:10px;
    background-color: #FF0000;
    min-height: 25px;
}
#flinks a{
color:#FFFFFF;
text-decoration:none;
}
#faddress{
float:left;
width:400px;
text-align:right;
padding-top:15px;

}
#logoTL{
	width:489px;
	
}
.closeDownload{
text-align: left;
    font-size: 1.2rem;
    font-family: menuFont;
    color:#000000;
    text-decoration: none;
    position: absolute;
    top:0px;
   
    
}
.closeDownload a{
        color:#000000;
    text-decoration: none;
}
.closeDownload a:hover{
        color:#FF0000;
    text-decoration: underline;
}

#barcontentdownload10{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
    display: none;
}
#barcontentdownload11{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
    display: none;
}
#barcontentdownload12{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
    display: none;
}
#barcontentdownload13{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
    display: none;
}
#barcontentdownload14{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
    display: none;
}
#barcontentdownload15{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
    display: none;
}
#barcontentblank{
    background-color: #FFFFFF;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
}
#barcontentblanknoheight{
    background-color: #FFFFFF;
        padding-top:10px;
  min-height: 120px;
    padding-bottom: 10px;
}
#barcontent{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 10px;
}
#barcontenttop{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:10px;
  min-height: 380px;
    padding-bottom: 0px;
}
#barcontentlower{
    background-image: url("../gfx/bgimages/hexpagebg.png"); 
		background-attachment:fixed;
	background-repeat:repeat;
        padding-top:0px;
  min-height: 380px;
    padding-bottom: 10px;
}

.docDisplaylayer{
    display: inline-block;
  
      overflow-y: scroll;
  overflow-x: hidden;
  width: 1130px;
  padding: 10px;
  position: relative;
     border: 2px #000000 solid;
    height: 360px;

}
.docDisplaylayer h2{
    font-family:menuFont;
    font-size:20px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.docDisplaylayer h3{
    font-family:menuFont;
    font-size:16px;
    color: #c51230;
    margin:0px;
}

.docDisplaylayer p{
    font-family:menuFont;
    font-size:13px;
    margin:0px
    }
.docDisplaylayer a{
    color:#000000;
    text-decoration: none;    
}

.docDisplaylayer a:hover{
    color:#FF0000;
    text-decoration: underline;
    
}

.docWrapper{
         display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.docItem {
  flex: 1 1 350px;   /* grows, shrinks, base width */
  max-width: 362px; /* optional, prevents mega-wide cards */
 
}


#barcontenttesti {
  background-image: url("../gfx/bgimages/hexpagebg.png"); 

    background-attachment: fixed;
  background-repeat: repeat;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px;
    

    
    
}
#loadingbanner {
       
  position: relative;
  font-family: menuFont;
  font-style: italic;
  font-size: 2rem; /* large quote text */
  color: #3B3B3B;
  max-width: 600px;
  line-height: 1.4;
    padding-top: 100px;
       margin-top: 100px;
}
#quote {
     background-image: url("../gfx/bgimages/doublequote.png"); 
  background-position: center top;
  background-repeat: no-repeat;
    
  position: relative;
  font-family: "Georgia", "Palatino Linotype", serif;
  font-style: italic;
  font-size: 1.75rem; /* large quote text */
  color: #3B3B3B;
  max-width: 600px;
  line-height: 1.4;
    padding-top: 50px;
       margin-top: 50px;
}
#quote {
  transition: opacity 1s ease;
  opacity: 1;
}

#quote.fade {
  opacity: 0;
}
/* Big opening and closing quotation marks
#quote::before,
#quote::after {
  font-size: 5rem;
  color: rgba(255, 255, 255, .7);
  position: absolute;
}

#quote::before {
content:url('/gfx/icons/openquote.png');
  top: -40px;
  left: -20px;
}

#quote::after {

    content:url('/gfx/icons/closequote.png');
  bottom: -60px;
  right: -20px;
}
 */
/* Person being quoted */
.detto {
  display: block;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 20px;
  color: #717171;
}

	
.hamburger-menu-black{
	width:50px;
	height:7px;
	background-color:#111111;
	 border-radius:5px;
	margin:3px 0;
}

.hamburger-menu-white{
	width:25px;
	height:4px;
	background-color:#ffffff;
	/* border-radius:5px; */
		margin:5px 0;
}

#pagecontent a{
text-decoration:none;
color:#C51230;
}
#pagecontent a:hover{
text-decoration:underline;
color:#C51230;
}
@media screen and (max-width : 1200px){

    #barcontenttop{
  min-height: 200px;
 
}
    
        .docDisplaylayer{
  width: 80%;
    
}
    
    .singlebar {
  display: inline-block;
  overflow: hidden;
    width:28%;
    padding:10px;
    position: relative;
}

   #flogos{
    display: inline-block;
width:80%;
    text-align: center;
    padding-top:10px;
    padding-bottom:10px;
    
    
}
 
    
    #pagecontent{
	position:relative;
	width: 80%;
        padding-left: 10%;
        padding-right: 10%;
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

}
    
    
#leftcol{
	float:left;
	width:40%;
	text-align:left;
	padding-right:5px;
}
#rightcolwithimg{
	float:left;
	width:40%;
	text-align:right;
	padding-left:5px;
    vertical-align: top;
}
#rightcol{
	float:left;
	width:40%;
	text-align:left;
	padding-left:5px;
}
     .pageimg{width:85%;
}
       
    
    
    
#headleft{
	flex:1;
	
}
#logoTL{
	width:400px;
	
}
#headrightouter{
	width:50px;
	height:50px;
}
#headrightupper{
	display:none;
}	
#headrightlower{
	position:absolute;
	top: 3px;
	right:3px;
	width:50px;
	height:50px;
	text-align:right;

}

#mobileOne{
position:fixed;
width:0px;
right:0px;
height:1100px;
text-align:left;
margin-top:62px;
background-color:#C51230;
overflow:visible;
right:0px;
z-index:11000;
padding:0px;
top:0px;
transition: 0.3s ease-out;
-webkit-transition:  0.3s ease-out;

}
#menu ul{
width:125px;
}
#menu ul li{
float: left;
width:120px;
padding-bottom:10px;
padding-bottom:20px;
font-size:18px;

}
#menu a{
padding-right:15px;
text-decoration:none;
color:#FFFFFF;
}
#menu a:hover{
	color:#CCCCCC;
}

#innerSquare{
	margin:0 auto;
	width: 350px;
	height: 300px;
	-moz-border-radius: 5%;
	-webkit-border-radius: 5%;
	border-radius: 5%;
	opacity: 0.7;
	z-index:1000;
	color:#ffffff;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left:3px;
	padding-right:3px;
	color:#666666;
	font-family:verdana;
	font-size:18px;
	background-color:#FFFFFF;
	border:#C51230 1px solid;
   }
#innerSquare h3{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 22px;
	}
#pagecontent{
	width: 90%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		text-align: left;
padding-top: 10px;

}
#pagecontent h1{
color:#C51230;
font-size:26px;
}
#pagecontent h2{
font-size:20px;
}
#pagecontent p{
font-size:14px;
}
    .smaller{
        font-size:13px;
    }
#leftcol{
	width:48%;
	padding-right:2px;
}
#rightcol{
	width:48%;
	padding-left:2px;
}
#footer{
width:100%;
padding-bottom:25px;
}

#flinks{
clear:both;
width:100%;
text-align:center;

}

#faddress{
clear:both;
width:100%;
text-align:center;
padding-top:0px;

}
#headerfixed{
	height:60px;
}



}
@media screen and (max-width : 850px){
     #barcontenttop{
  min-height: 150px;
 
}
       
        #headSocial{
display:none;
}
    
          #headcontact {
display: none;
}
    
    .docDisplaylayer{
  width: 80%;
    
}
    
}
   @media (max-width: 768px) {
    #pagecontentcontact {
        flex-direction: column;
    }
} 
    


@media screen and (max-width : 450px){

    
     .docDisplaylayer{
  width: 320px;
         
    
}
      #headcontact {
display: none;
}
    
    .pageimg{width:85%;
}
    
    #hamburger {
    height: 30px;
    gap:4px;
}
       #headright {
    
    padding-left: 10px;
           padding-top:4px;
    
}

/* Animate into X */
#hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}


#hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}    
    
  #quote {
   font-size: 1.25rem; /* large quote text */
  max-width: 280px;
  
}  
    
  .zoom-image {
  width: 90%;
padding:10px;}  
    
    
.video-desktop {
    display: none;
  }
  .video-mobile {
    display: block;
  }
    
    .singlebar {
  display: inline-block;
  overflow: hidden;
    width:350px;
    padding:0px;
    position: relative;
}

    


#headleft{
	flex:1;
    text-align: center;
}
#logoTL{
	width:200px;
	
}
#headrightouter{
	width:50px;
	height:50px;
}
#headrightupper{
	display:none;
}	
#headrightlower{
	position:absolute;
	top: 3px;
	right:3px;
	width:50px;
	height:50px;
	text-align:right;

}

    
    
    .hamburger-menu-black{
	width:45px;
	height:5px;
	background-color:#111111;
	 border-radius:5px;
	margin:3px 0;
}
#mobileOne{
position:fixed;
width:0px;
right:0px;
height:800px;
text-align:left;
margin-top:50px;
background-color:#C51230;
overflow:visible;
right:0px;
z-index:11000;
padding:0px;
top:0px;
transition: 0.3s ease-out;
-webkit-transition:  0.3s ease-out;

}
#menu ul{
width:125px;
}
#menu ul li{
float: left;
width:120px;
padding-bottom:10px;
padding-bottom:20px;
font-size:18px;

}
#menu a{
padding-right:15px;
text-decoration:none;
color:#FFFFFF;
}
#menu a:hover{
	color:#CCCCCC;
}

#innerSquare{
	margin:0 auto;
	width: 250px;
	height: 250px;
	-moz-border-radius: 5%;
	-webkit-border-radius: 5%;
	border-radius: 5%;
	opacity: 0.7;
	z-index:1000;
	color:#ffffff;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left:3px;
	padding-right:3px;
	color:#666666;
	font-family:verdana;
	font-size:14px;
	background-color:#FFFFFF;
	border:#C51230 1px solid;
   }
#innerSquare h3{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 20px;
	}
#pagecontent{
	width: 350px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		text-align: left;
padding-top: 10px;
    
          padding-left: 0%;
        padding-right: 0%;
    
    

}
#pagecontent h1{
color:#C51230;
font-size:24px;
}
#pagecontent h2{
font-size:18px;
}
#pagecontent p{
font-size:14px;
}    
#pagecontent a{
text-decoration:none;
color:#C51230;
}
#pagecontent a:hover{
text-decoration:underline;
color:#C51230;
}

#leftcol{
	width:350px;
	padding-right:0px;
    text-align: center;
}
#rightcol{
	width:350px;
	clear:both;
	padding-left:0px;
}
    #rightcolwithimg{
	width:100%;
        	clear:both;
	text-align:center;
	padding-left:0px;
    vertical-align: top;
}
#footer{
width:100%;
padding-bottom:25px;
}

#flinks{
clear:both;
width:100%;
text-align:center;

}

#faddress{
clear:both;
width:100%;
text-align:center;
padding-top:0px;

}
#headerfixed{
	height:35px;
}
#telFooter{
	 display:none; 
	position:fixed;
	bottom:0;
	width:100%;
	background-color:#C51230;
	height:25px;
	opacity:100%;
	text-align:center;
	z-index:10000;
}
#telFooter a{
	text-decoration:none;
}
.menuselected{
color:#C51230;
}
    
    .footerlogoimg{
    height: 50px;
           padding:15px;
}
    
    #fcontact{
    font-size: 14px;
    
}
}

@media (min-aspect-ratio: 16/9) {
  #bg-container video {
    height: 100%;
    width: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #bg-container video {
    width: 100%;
    height: auto;
  }
}