*,
 *::before,
 *::after {
     box-sizing: border-box;
}
/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Smooth Scroll */
  html, body {
  scroll-behaviour: smooth;
  overflow-x: hidden;
  
}
/* Typographic tweaks! 4. Add accessible line-height 5. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 6. Improve media defaults */
  img,svg,video,picture {
  max-width: 100%;
  height: auto;
}
/* 7. Remove built-in form typography styles */
input, button, textarea, select {
  font: inherit;
}
/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*! Main styles start */

.head-wrap {
	display:grid;
	grid-template-columns: 1fr 2fr 1fr;
	grid-template-rows: auto;
	background-color: white;


}
.logo {
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}
.navigation {
	text-align: center;
	padding-left: 25px;
	padding-right: 25px;

}
.social {
	text-align: center;
}

/********************/

.header {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	/* background: url(../bus.jpeg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: contain;
	-o-background-size: cover;
	background-size: cover;
	padding: 30vh 1rem; */
}
/*todo also in media.css for mobile */
.bg-home {
	background: url(../images/bus.webp) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: contain;
	-o-background-size: cover;
	background-size: cover;
	padding: 30vh 1rem;
}

.catch {
	max-width: 800px;
	padding: 1rem;
	background-color: #ffffffd0;
	margin-left: auto;
	z-index: 10;

}
/********************/
.full-width {
	display:grid;
	text-align: center;
	padding: 1rem;
}

/********************/
.fifty-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	align-items: center;
	justify-content: center;

}
.left50 {
	padding: 1rem;

	
}
.right50 {
	padding: 1rem;
}

/*************************/
.footer {
	text-align: center;
	padding: 1rem;
	margin-top: 1rem;
	background-color: rgb(236, 236, 236);
}


/*todo fonts*/
.jazzy {
    background: #03989e;
    background: linear-gradient(45deg,#0cd29d,#03989e);
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	font-size: 2rem;
    font-weight: 800;
}


h1 {
	color: #4A4A4A ;
	margin-bottom: 0.9rem;
	

}
h2 {
	color: #4A4A4A ;
	margin-bottom: 0.9rem;
	font-size: clamp(0.875rem, 0.6472rem + 1.1392vw, 2rem);

}
h3{
	color: #4A4A4A ;
	margin-bottom: 0.9rem;
	font-size: clamp(0.875rem, 0.6472rem + 1.1392vw, 2rem);


}
p {
	color: #4A4A4A;
	margin-bottom: 0.9rem;
	font-size: clamp(0.875rem, 0.8497rem + 0.1266vw, 1.2rem);
}

ul>li {
	margin: 20px;
}
li {
	font-size: clamp(0.875rem, 0.8497rem + 0.1266vw, 1.2rem);
	color: #4A4A4A;
}

.imgcorners {
	border-radius: 25px;
}


/*! Breadcrumb urls */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}
ul.breadcrumb li {
  display: inline;
  font-size: 13px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

/*todo links*/

#footer a:link  {
	color: #04A09E; 
	text-decoration: none; 
	font-weight: bold;
}

#footer a:visited { 
	color: #04A09E;
	text-decoration: none; 
	font-weight: bold;
}

#footer a:hover {
	text-decoration: underline; 
	font-weight: bold;
}

#footer a:active { 
	text-decoration: none; 
	font-weight: bold;
}

/*button */
.button {
	background-color: #04A09E; /* Green */
	border-radius: 8px;
	border: none;
	color: white;
	max-width: 500px;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor:pointer;
  }
  
  .button1 {
	background-color:#04A09E; 
	color: white; 

  }
  
  .button1:hover {
	background-color: #005B95;
	color: white;
  }

  /*todo background shape image */

  .bg25 {
	background-color: #f3f2f2;     background-image: url(../images/waves-a.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
  }
