.row {
  display: inline-flex;
}

.column {
  flex: 50%;
}

.dark {
				color: #ddd;
				color: rgba(255, 255, 255, 0.75);
			}

				.dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
					color: inherit;
				}

				.dark strong {
					color: #fff;
					border-color: inherit;
				}

				.dark a {
					color: #fff;
					border-color: inherit;
				}

					.dark a:hover {
						border-bottom-color: rgba(255, 255, 255, 0);
					}

.parallax {
    /* The image used */
    background-image: url("../../images/banner.jpg");
    z-index: -100;
    /* Set a specific height */
    min-height: 500px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bparallax-window {
    min-height: 50%;
    background: transparent;
}

.parallax-window1 {
    min-height: 400px;
    background: transparent;
}

.parallax-window2 {
    min-height: 400px;
    background: transparent;
}
.parallax-windowk {
    min-height: 1000px;
    background: transparent;
}


.banner-window {
    padding: 2em 0;
    background-size: cover;
    z-index: -1;
    background-image: url("../../images/banner.jpg");
    
    
    
    margin: 0;
    overflow: hidden;
    padding-top: 4sm;
    padding-bottom: 1em;
    text-align: center;
    background-position: center;
    opacity: 0;
    
    
        
}
.cn {
  display: flex;
  justify-content: center;
  align-items: center; 
}

.fixed0 {
    padding: 70px 0;
    
    background-size: cover;
    
  
    
    margin: 0;

    text-align: center;
    background-position: center;
    height:100vh;
    
   
           
}

.fixed1{
    
    top: 0em;
    background: #222729 url("images/overlay.png");
    padding: 3em;
    text-align: center;
    z-index: 0;
    
    text-align: center;
    
    
    
}

.fixed2{
    padding: 1em;
    z-index: 1;
    background: #fff url("images/overlay.png");
    position: center; 
    text-align: center;
    position: relative;
}

.fixed3{
    padding: 2em;
    z-index: 1;
    background: #ecf1f1 url("images/overlay.png");
    position: center; 
    text-align: center;
    position: relative;
}

.fixed4{
    padding: 2em;
    z-index: 1;
    background: #fff url("images/overlay.png");
    position: center; 
    text-align: center;
    position: relative;
}

.fixed5{
    padding: 1em;
    z-index: 1;
    background: #222729 url("images/overlay.png");
    position: center; 
    text-align: center;
    position: relative;
}
.foot{
    padding: 1em;
    width:auto;
    z-index: 1;
    background: #fff url("images/overlay.png");
    position: center; 
    text-align: center;
    position: relative;
}

h7{
    font-size: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 8px;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 8 px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/*slideshow css */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

