/* Main Styles affecting the whole Body of the page */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'fields', Arial, sans-serif;
  background: url('background-image.jpg') center/cover no-repeat;
  color: #3052c2;
  text-decoration: none;
	
}

/* Media query for screens below 600px */
@media (max-width: 600px) {
  body {
    background: url('background-image3.jpg') center/cover no-repeat;
    /* Add any additional styles for smaller screens if needed */
  }
}

/* Navigation Bar Items */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
	min-height: 55px;
  background: url('background-image.jpg') center/cover no-repeat;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  transition: background-color 0.3s ease; /* Add transition for smooth color change */
	 box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add drop shadow */
}

.navbar img {
  max-width: 300px;
  height: auto;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: lighter; /* Change to lighter font weight */
  margin-left: 15px;
}

#secondImage {
  position: fixed;
  max-width: 360px;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Add a media query to change the image under 550px */
@media (max-width: 550px) {
  #secondImage {
    content: url('mobile-logo.png'); /* Specify the path to the alternative image */
  }
}

/* The Menu Triggered by hamburger in nav bar */

    #menuIcon, #closeIcon {
      cursor: pointer;
      width: 35px; /* Adjust the width of your icons */
      height: 35px; /* Adjust the height of your icons */
      z-index: 6;
		    position: fixed;
      top: 10px;
      left: 10px;
    }

    #overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(48, 82, 194, 0.9);
		  -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      justify-content: center;
      align-items: center;
      z-index: 6;
		  text-align: center; /* Center-align the buttons */
  flex-direction: column; /* Arrange buttons vertically */
  align-items: center; /* Center-align the buttons horizontally */
		font-family: 'fields', Arial, sans-serif;
    }

    #menu {
      color: #3052c2;
      text-align: center;
		font-family: 'fields', Arial, sans-serif;
		
    }

    #menu a {
      display: block;
      padding: 15px;
      text-decoration: none;
      color: #3052c2;
      font-size: 18px;
		font-family: 'fields', Arial, sans-serif;
		 font-weight: bold;
    }

    #closeIcon {
      position: absolute;
      top: 10px;
      left: 10px;
      display: none;
    }

.menu-btn {
  background-color: white; /* Button background color */
  color: #3052c2; /* Button text color */
  border: none;
  padding: 10px 20px; /* Adjust padding for button size */
  border-radius: 0px; /* Make it pill-shaped by setting border-radius */
  margin: 5px; /* Add margin for spacing between buttons */
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	  display: block; /* Display buttons as block elements for stacking */
  width: 200px; /* Set a width for the buttons */
  margin: 30px 0; /* Adjust vertical margin between buttons */
	font-family: 'futura-pt', Arial, sans-serif;
	 mask: radial-gradient(
            circle at 100% 100%,
            transparent 0,
             transparent 9px,
            #2179f5 10px
        ),
        radial-gradient(
            circle at 0 0,
            transparent 0,
             transparent 9px,
            #2179f5 10px
        ),
        radial-gradient(
            circle at 100% 0,
            transparent 0,
            transparent 9px,
            #2179f5 10px
        ),
        radial-gradient(
            circle at 0 100%,
            transparent 0,
            transparent 9px,
            #2179f5 10px
        );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

.menu-btn:hover {
  background-color: #b6cdff; /* Change background on hover */
  color: #ffffff;
}

/* Hero Items */

.hero {
  position: relative;
  overflow: hidden;
	 min-height: 500px; /* Minimum height of the hero section */
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* Maintain video aspect ratio and cover the container */
	  min-height: 500px; /* Minimum height for the image */
	max-height: 500px;
}

.text-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1; /* Ensure the text overlay appears above the video */
	 width: 80%; /* Or a specific width if desired */
}

.text-overlay h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.text-overlay p {
  font-size: 1.5em;
}

.logo-container {
  position: absolute;
  top: 50%; /* Adjust this value to place the logo as needed */
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* Maintain image aspect ratio and cover the container */
	  min-height: 500px; /* Minimum height for the image */
		max-height: 500px;
}

/* Adjust the aspect ratio for smaller screens */
@media (max-width: 768px) {
  .hero {
    height: 30vh; /* Set a specific height relative to viewport height */
  }
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain image aspect ratio and cover the container */
  }
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  .hero-text h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  .hero-text p {
    font-size: 1.5em;
  }
}

/* Default styles for title and subtitle */
#title {
  font-size: 2em; /* Adjust the default font size as needed */
  text-align: center;
  line-height: 1.2;
	letter-spacing: 2px;
}
#title2 {
  font-size: 1.7em; /* Adjust the default font size as needed */
  text-align: center;
  line-height: 1.2;
	letter-spacing: 2px;
}


#subtitle {
  font-size: 1.7em; /* Adjust the default font size as needed */
  text-align: center;
  line-height: 1.2;
}

/* Adjust font size for screens smaller than 800px */
@media (max-width: 800px) {
  #title {
    font-size: 1.7em; /* Adjust the font size for smaller screens */
	    text-align: center;
  }

  #subtitle {
    font-size: 1.5em; /* Adjust the font size for smaller screens */
	    text-align: center;
  }
}

    .image-slideshow {
      position: relative;
      width: 100%;
      height: 500px; /* Adjust the height as needed */
      overflow: hidden;
    }

    .image-slideshow img {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    .image-slideshow img.active {
      opacity: 1;
    }



/* Value Props */


.value-props {
  background-color: #3052c2;
	text-align: center;
  padding: 30px 80px;
  text-align: center; /* Center-align the content */
  display: flex;
  justify-content: center; /* Center the items horizontally */
	color: #ffffff;

  /* Adjustments for smaller screens if needed */
  @media (max-width: 600px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns in the grid layout */
   row-gap: 40px; /* Vertical gap */
    column-gap: 5px; /* Horizontal gap */
    align-items: center; /* Center the items vertically */
  }
}

.value-prop {
  display: inline-block; /* Display the value props as inline blocks */
  margin: 0 40px; /* Adjust the margin between value props */
}

.value-prop img {
  width: 60px; /* Adjust the width of the icons */
  height: auto;
  margin-bottom: 10px;
}

.value-prop h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.value-prop p {
  font-size: 1.2em;
  margin-bottom: 0px;
	color: #1A3A2B;
}


/* The Gallery */


.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0px;
  padding: 20px;
	padding-bottom: 60px;
	padding-top: 10px;
  max-width: 1000px; /* Limit the width of the gallery */
 margin: 0px auto 0; /* Center the gallery and add space above it */
}

/* Limit the maximum number of columns to 3 */
@media (min-width: 768px) {
  .project-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
	text-align: center;
	color: #3052c2;
	
}

.project img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 250, 250, 0.7);
  color: white;
  padding: 10px;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}

.project:hover .project-info {
  transform: translateY(0);
  background-color: rgba(250, 250, 250, 0.7);
}

.project:hover img {
  transform: scale(1.1);
}


/* Glamor Shots that replace The Gallery on Project pages */


.glamor-images {
  max-width: 800px;
  margin: 40px auto 20px; /* Added margin-bottom of 20px */
  text-align: center;
}

.glamor-image {
  margin-bottom: 40px;
	padding-left: 40px;
	padding-right: 40px;
}

.glamor-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-block {
  text-align: left;
  margin-bottom: 40px;
		padding-left: 40px;
	padding-right: 40px;
}


/* The Footers */



.footer {
  text-align: center;
  padding: 10px;
  background-color: #1f3b89;
  color: white;
  bottom: 0;
  width: 100%;
}

.footer-buttons {
  display: flex;
  justify-content: center;
}

.footer-buttons button {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 10px;
  border-radius: 40px;
  margin: 15px;
	margin-bottom: 0px;
	margin-top: 0px;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  display: block;
  width: 150px;
  font-family: 'futura-pt', Arial, sans-serif;
		color: #1A3A2B;
}

.footer-buttons button:hover {
  background-color: #1A3A2B;
  color: white;
}

.footer2 {
  text-align: center;
  padding: 40px;
	padding-left: 30px;
	padding-right: 30px;
   background: url('background-image2.jpg') center/cover no-repeat;
  color: white;
  bottom: 0;
  width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add drop shadow */
}
.footer3 {
  text-align: center;
	min-height: 100px;
  padding: 40px;
	padding-top: 40px;
	padding-left: 50px;
	padding-right: 50px;
   background: url('background-image2.jpg') center/cover no-repeat;
  color: white;
  bottom: 0;
  width: 100%;
}


#footerlogo {
  max-width: 250px; /* Set the maximum width for larger screens */
  height: auto; /* Maintain the aspect ratio */
  padding-right: 20px; /* Adjust the padding as needed */
  margin-left: 10px;
}

/* Media query for screens below 500px */
@media (max-width: 500px) {
  #footerlogo {
    max-width: 200px; /* Set a smaller maximum width for smaller screens */
    margin-left: 00px; /* Adjust the margin as needed for smaller screens */
  }
}


.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
	align-items: center;
	margin-top: 10px;
}

.social-icon {
  max-width: 30px;
  margin-right: 20px;
}

.social-icon img {
  max-width: 100%;
  height: auto;
}


/* Recipe Pages */

}

.recipe-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
	

h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #3052c2;
}
h3 {
    font-size: 1.3em;
    margin-bottom: 0px;
    color: #3052c2;
			text-decoration: none;
}
	h4 {
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}
	h5 {
		    font-size: 1.2em;
		font-weight: normal;
    margin-right: 10px;
    display: inline-block;
		   
}
	a:link {
  color: #3052c2;
		text-decoration: none;
}

a:visited {
  color: #3052c2;
	text-decoration: none;
}

a:hover {
  color: #95AEF4;
	text-decoration: none;
}

a:active {
  color: #3052c2;
	text-decoration: none;
}

a:link, a:visited {
  text-decoration: none;
}

.calories-info {
    font-size: 1.2em;
    color: #3052c2;
	padding: 30px;
	text-align: center;
}

.ingredients-section {
      background: url('ingredients.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 0px;
    text-align: left;
    max-width: 920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    mask: radial-gradient(
        circle at 100% 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 100% 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .ingredients-section {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

.oldglamsalads {
      background: url('image3.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 920px;
	min-height: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    mask: radial-gradient(
        circle at 100% 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 100% 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .oldglamsalads {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}
.glamentree {
      background: url('image2.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 920px;
	min-height: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    mask: radial-gradient(
        circle at 100% 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 100% 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .glamentree {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}
.glamdessert {
      background: url('image4.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 920px;
	min-height: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    mask: radial-gradient(
        circle at 100% 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 100% 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .glamdessert {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

.glamsoup {
      background: url('image6.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 920px;
	min-height: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    mask: radial-gradient(
        circle at 100% 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 100% 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .glamsoup {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

.glamappetizer {
      background: url('image1.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 920px;
	min-height: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    mask: radial-gradient(
        circle at 100% 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 100% 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .glamappetizer {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

.oldglamsides {
      background: url('image7.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 920px;
	min-height: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    mask: radial-gradient(
        circle at 100% 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 100% 0,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    ),
    radial-gradient(
        circle at 0 100%,
        transparent 0,
        transparent 11px,
        #2179f5 12px
    );
    mask-repeat: no-repeat;
    mask-position: right bottom, left top, right top, left bottom;
    mask-size: 70% 70%;
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .oldglamsides {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

.blurbar {
      background: url('background-image2.jpg') center/cover no-repeat;
    border-radius: 0px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 940px;
	min-height: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Media query for smaller screens */
@media (max-width: 1080px) {
    .oldglamsalads {
        max-width: calc(100% - 2 * 40px); /* Adjust for smaller screens with a minimum margin */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

.ingredients-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #3052c2;
}

.ingredient-list {
    list-style-type: none;
    padding: 0;
	
}

.ingredient-list li {
    font-size: 1.2em;
    margin-bottom: 8px;
}

.preamble {
    font-size: 1.2em;
    color: #3052c2;
    text-align: left;
    margin-bottom: 20px;
	 max-width: 1000px;
    margin: 0 auto;
     padding: 40px;
}

.preamble3 {
    font-size: 1.2em;
    color: #3052c2;
    text-align: left;
	 max-width: 1000px;
    margin: 0 auto;
   padding-top: 40px;
	padding-left: 40px;
	padding right 40px;
}
.preamble2 {
    font-size: 1.2em;
    color: #3052c2;
    text-align: left;
    margin-bottom: 40px;
	 max-width: 1000px;
    margin: 0 auto;
padding-bottom: 40px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 20px;
}

.instructions-section {
    margin-top: 20px;
    text-align: left;
	 max-width: 1000px;
    margin: 0 auto;
padding-left: 40px;
	padding-right: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.instructions-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #3052c2;
	margin-bottom: 40px;
}

.instruction-steps {
    list-style-type: none;
    padding: 0;
    text-align: left;
	
	
}

.instruction-steps li {
    font-size: 1.7em;
    margin-bottom: 15px;
	
	
}

.instruction-steps2 {
  list-style-type: none;
  padding: 0;
}

.instruction-steps2 li {
	    font-size: 1.2em;
  margin-bottom: 20px;
  border-bottom: 1px solid #3052c2; /* Change to your preferred shade of blue */
  padding-bottom: 15px; /* Add space between the items */

}

.step-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #3052c2;
    margin-right: 10px;
    display: inline-block;
}

hr {
    border: 1px solid #3052c2;
    margin: 20px 0;
}