﻿/*===================== 
	Color information
	
	-
	-
	-red #fc0215
    -grey #a5a5a5
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: 'Roboto', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-size: 30px;
        font-weight: 600;
        font-family: 'Literata', serif;
}
	h2 {
        font-size: 24px;
        font-weight: 600;
        font-family: 'Literata', serif;
}
	h3 {
        font-size: 20px;
        font-weight: 600;
        font-family: 'Literata', serif;
}
	h4 {
        font-size: 18px;
        font-weight: 600;
        font-family: 'Literata', serif;
}
	h5 {}
	h6 {}

p {
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

.btn-white {
    font-family: 'Roboto', sans-serif;
    background:#fff;
    color:#fc0215!important;
    padding:10px;
    min-width: 245px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    transition: .2s ease-in;
    margin:20px 0;
    box-sizing: border-box;
}
.btn-white:hover {
    background:#D7D7D7;
    box-shadow: 0 0 1px 5px rgba(0,0,0,0.1);
}

.btn-black {
    font-family: 'Roboto', sans-serif;
    background:#000;
    color:#fff!important;
    padding:10px;
    min-width: 245px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    transition: .2s ease-in;
    margin:20px 0;
    box-sizing: border-box;
}
.btn-black:hover {
    background:#4F4F4F;
}
.btn-red {
    font-family: 'Roboto', sans-serif;
    background:#fc0215;
    color:#fff!important;
    padding:10px;
    min-width: 245px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    transition: .2s ease-in;
    margin:20px 0;
    box-sizing: border-box;
}
.btn-red:hover {
    background:#4F4F4F;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
    position: relative;
	width: 100%;
	margin: 0;
    background:#000;
	}
.header-wrap:after {
    display: block;
    position: absolute;
    content:" ";
    width:100%;
    height: 100%;
    top:0;
    left: 0;
    background:rgba(255,255,255,0.15);
    clip-path: polygon(0% 0%,100% 0%,100% 19%,74% 79%);
}

header {
    position: relative;
	margin: 0 auto;
    padding:30px 15px!important;
	max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.head-logo-1 img {
	max-width: 500px;
	height: auto;
	display: block;
}
.head-link-1 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color:#fff!important;
    display: flex;
    align-items: center;
}
.head-link-1:hover {
    color:#fc0215!important;
}
.head-link-1 i {
    padding:0 10px 0 0;
}


/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	width:100%;
	position:relative;
	background: #a5a5a5;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: center;
        align-items: center;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Roboto', sans-serif;
				color: #000;
				font-size: 16px;
				text-decoration: none;
				padding: 20px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 700;
				}	
			nav.primary ul li a:hover {
				background: #fc0215;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/


.wrap-banner {
    background:#a5a5a5;
}
.wrap-banner .container-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:20px;
}
.wrap-banner .container-1 p {
   font-size: 20px;
    font-weight: bold;
    color:#000;
}

.sub-cab-cont {
    width:95%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding:20px 0;
}
.sub-cab-cont a {
    position: relative;
    margin:20px 0;
    width:23%;
}
.sub-cab-cont a:after {
    width:100%;
    height: 100%;
    position: absolute;
    bottom:0;
    left:0;
    clip-path: polygon(52.00% 63.00%,100% 74%,100% 100%,0% 100%,0% 86%);
    background:rgba(0,0,0,0.5);
    content: " ";
    z-index: 1;
    transition: .2s ease-in;
}
.sub-cab-cont img {
    max-width: 100%;
    width:100%;
    height: auto;
    display: block;
}
.sub-cab-cont p {
    position: absolute;
    width:100%;
    text-align: center;
    color:#fff;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 0 5px #000;
    left:0;
    bottom:15px;
    z-index: 2;
    transition: .3s ease-in;
}
.sub-cab-cont a:hover:after {
    clip-path: polygon(0% 0%,100% 0%,100% 100%,0% 100%,0% 86%);
    background:rgba(0,0,0,0.6);
}
.sub-cab-cont a:hover p {
    bottom:45%;
}
.red-wrap {
    background:#fc0215;
    width:100%;
    position: relative;
}
.red-wrap:after {
    width:100%;
    height: 100%;
    position: absolute;
    bottom:0;
    left:0;
    clip-path: polygon(0% 63%,30% 18%,86% 100%,0% 100%);
    background:rgba(0,0,0,0.2);
    content: " "; 
}
.search-wrap .container-1 {
    position: relative;
    z-index: 1;
    padding:20px;
}
.search-wrap .container-1 h2 {
    text-align: center;
    color:#fff;
    padding:0 0 10px 0;
}
.form-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.search-input {
    font-family: 'Roboto', sans-serif;
    width:28%;
    border:0;
    background:#fff;
    border-radius: 0px;
    outline:none;
    padding:10px;
    box-sizing: border-box;
    margin:10px 0;
}
.search-button {
    font-family: 'Roboto', sans-serif;
    width:14%;
    border:0;
    background:#000;
    color:#fff;
    text-align: center;
    border-radius: 0px;
    outline:none;
    padding:5px;
    box-sizing: border-box;
    cursor: pointer;
    transition: .2s ease-in;
    margin:10px 0;
}
.search-button:hover {
    background:#4F4F4F;   
}

/*===================== 
	slideshow styles 
=======================*/

.wrap-slider {
    width:100%;
    
}
.hero-slide-cont-1 {
    width:100%;
    height: auto;
    position: relative;
}
.hero-slide-cont-1 img {
    width:100%;
    height: auto;
    display: block;
    position: relative;
}
.hero-slide-cont-1:after {
   display: block;
    position: absolute;
    content:" ";
    width:100%;
    height: 100%;
    top:0;
    left: 0;
    background:rgba(0,0,0,0.5);
    clip-path: polygon(55% 28%,100% 52%,100% 100%,31% 100%);
}
.hero-slide-overlay-1 {
    position: absolute;
    width:auto;
    bottom:20%;
    left:50%;;
    margin:0 auto;
    z-index: 200;
	box-sizing: border-box
}
.hero-slide-overlay-cont-1 {
    text-align: center;
    max-width: 500px;
}
.hero-slide-overlay-1 h2 {
    font-size:35px;
    font-weight: 600;
    color:#fff;
    text-shadow: 0 0 5px #000;
    
}
.slick-prev {
    position: absolute;
    top: 50%;
    z-index: 200;
    font-size: 32px;
    color: rgba(255,255,255,0.8);
    left: calc(50% - 610px);
    width: 30px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
.slick-next {
    position: absolute;
    top:50%;
    z-index: 200;
    right:  calc(50% - 610px);
    font-size: 32px;
    color: rgba(255,255,255,0.6);
    width: 30px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
.slick-prev:hover, .slick-next:hover {
     color: rgba(255,255,255,0.9);  
}
.content-wrap {
    position: relative;
    padding:100px 0;
    width:100%;
}
.content-wrap:before {
   display: block;
    position: absolute;
    content:" ";
    width:100%;
    height: 150px;
    top:0;
    left: 0;
    background:rgba(0,0,0,0.2);
    clip-path: polygon(0% 0%,86% 0%,13% 66%,0% 40%);
    z-index: 1;
}
.content-wrap:after {
   display: block;
    position: absolute;
    content:" ";
    width:100%;
    height: 150px;
    bottom:0;
    left: 0;
    background:rgba(0,0,0,0.2);
    clip-path: polygon(100% 54%,100% 100%,14% 100%,85% 14%);
    z-index: 1;
}
.about-wrap .container-2 {
    position: relative;
    z-index: 2;
}
.header-text {
    text-align: center;
}
.header-text p {
    font-size: 24px;
}
.header-text h1 {
    padding:0 0 10px 0;
}
.btn-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:20px 0 10px 0;
}
.btn-cont-1 a {
    width:48%;
    margin-left: auto;
    margin-right: auto;
}
.img-cont-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.img-cont-1 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-info ul {
    margin:0;
    padding:10px 0;
}
.contact-info ul li {
    margin:0;
    padding:5px 0;
    list-style: none;
}
.contact-info ul li a {
    color:#000;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	padding:30px 20px 20% 20px!important;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .button {
	color: #fff;
	font-size:20px;
	font-weight: 500; 
    display: block;
    padding: 10px;
	width: 40%;
    margin: 10px auto;
	-webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
	border: none;
    background: #891b1d;
	-webkit-appearance: none;
}


.form-inline .btn-black {
    border: 0px;
    outline: none;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:30px 20px;
	box-sizing: border-box;
    position: relative;
    z-index: 2;
	}
.container-2 {
	max-width: 620px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
    position: relative;
    z-index: 2;
	}
.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding:30px 20px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
    background:#a5a5a5;
    position: relative;
	}
footer:after {
    display: block;
    position: absolute;
    content:" ";
    width:100%;
    height: 100%;
    bottom:0;
    left: 0;
    background:rgba(0,0,0,0.1);
    clip-path: polygon(100% 56%,100% 0%,14% 0%,85% 74%);
    z-index: 1;
}
footer .container-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding:10px 20px;
}
.foot-nav ul {
    padding:20px 0;
    margin:0;
}
.foot-nav ul li {
    font-family: 'Roboto', sans-serif;
    padding:0 0 5px 0;
    margin:0;
    list-style: none;
}
.foot-nav ul li a {
    font-size: 16px;
    color:#000;
}
.foot-nav ul li a:hover {
    color:#fff;
}
.foot-info-cont-1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
}
.foot-logo-1 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:10px auto;
}
.foot-link-2 {
    color:#000!important;
    padding:5px 0;
    display: inline-block;
}
.foot-link-2:hover {
    color:#fff!important;
}
.foot-info-cont-1 p {
    font-size: 17px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}
.foot-bottom {
    width:100%;
    text-align: center;
    padding:20px 10px;
    background:#fc0215;
    box-sizing: border-box;
}
.foot-bottom p {
    font-family: 'Roboto', sans-serif;
    color:#fff;
    font-size: 12px;
}
.foot-bottom p a {
    color:#fff;
}
.foot-bottom p a:hover {
    color:#000;
}

	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1260px)  {
    .slick-next {
      right: 10px;
    }
    .slick-prev {
      left: 10px;
    }
    .hero-slide-overlay-1 {
      left: 45%;
    }
}
@media screen and (max-width: 920px)  {

    .head-logo-1 {
        width:calc(100% - 400px);
    } 
    .head-logo-1 img {
        width:100%;
    } 
    .hero-slide-overlay-1 {
        left: 0;
        width:100%;
    }
    .hero-slide-overlay-cont-1 {
      width:100%;
      max-width: none;
    }
    .sub-cab-cont a {
        width:47%;
    }
}

@media screen and (max-width: 760px)  {
    
    .col-1-3, .col-2-3, .col-1-2 {
        width:100%;
    }
    
    .header-wrap::after {
      clip-path: polygon(100% 0%,100% 39px,76% 62px,0% 40px,0% 0%);
    }
    
    header {
        justify-content: center;
        padding:20px 15px !important;
    }
    
    .head-link-1 {
        order: 1;        
    }
    .head-link-1 i {
        display: block;
        font-size: 20px;
        padding:0 10px;
    }
    .head-link-1 span {
      display: none;
    }
    .head-logo-1 {
        width:100%;
        order: 2;
        padding:30px 0 0 0;
    }
    .head-logo-1 img {
        margin: 0 auto;
    }
    
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    .mobile.open + .menu-toggle.exit-click {
        position: fixed !important;
        top: 0 !important;
        left: 250px !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1000;
    }
    
	nav.primary{display:none;}
	#menu-button{ 
		width: 100%;
		display: block;
		font-size: 24px;
		position: relative;
		line-height:60px; 
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		background: #a5a5a5;
        text-align: center;
	}
		#menu-button a{
			 color:#000;
			 text-decoration: none;
			 font-weight:normal;
			cursor: pointer;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #000;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #fc0215;
		color: #000;
		text-decoration: none;
		top:-4px;
		right:13px;
		cursor: pointer;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #999;
		text-decoration: none;
		border-left:4px #333 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #fc0215 solid; /* border highlight - Change to fit match site colors */
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#fc0215; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}


	nav.mobile ul li .fa-chevron-down {color:#999;}
    
    .hero-slide-overlay-1 {
        position: relative;
        padding:20px 10px 0 10px;
        background:#000;
    }
    .slick-prev, .slick-next {
        display: none!important;
    }

    .hero-slide-overlay-1 h2 {
        font-size: 5vw;
    }
    .btn-white, .btn-black, .btn-cont-1 a {
        min-width: 100%;
        width:90%;
        margin:20px auto;
        box-sizing:border-box;
    }
    .hero-slide-cont-1::after {
      height: 33vw;
      clip-path: polygon(0% 76%,71% 37%,100% 65%,100% 100%,0% 100%);
    }
    .search-input, .search-button {
        width:100%;
    }
    .red-wrap::after {
        clip-path: polygon(19% 13%,100% 34%,100% 100%,0% 100%,0% 28%);
    }
    .content-wrap {
      padding: 40px 0;
    }
    .content-wrap::after {
      clip-path: polygon(100% 67%,100% 100%,0% 100%,0% 74%,78% 47%);
    }
    .content-wrap::before {
      clip-path: polygon(100% 20%,100% 0%,0% 0%,0% 25%,15% 41%);
    }
    .foot-nav {
        display: none;
    }
    
    footer .container-1 {
      justify-content: center;
    }
    footer:after {
        clip-path: polygon(89% 35%,100% 26%,100% 0%,0% 0%,0% 10%);
    }
    
}
	

@media screen and (max-width: 550px)  {
    .sub-cab-cont a {
        width:100%;
    }
}
