.container {
	display: flex;
	flex-direction: row;
    
}


.firstGallery{
    display: flex;
    flex-direction: row;
  
}

.secondGallery{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.thirdGallery{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    margin-bottom: 50px;


}
.faq {
	flex-basis: 50%;
	padding: 20px;
}

.faq h2 {
	margin-bottom: 20px;
    color: #ff6100;
}

.question {
	margin-bottom: 20px;
}

.question button {
	display: block;
	background-color: #1e1b1b;
	border: none;
	padding: 10px;
	margin-bottom: 10px;
	width: 100%;
	text-align: left;
	position: relative;
    color: #ffffff;
    
}

.question button:focus {
	outline: none;
}

.question button.active {
	background-color: #363636;
}

.question button::after {
	content: '\25BC';
	font-size: 0.8em;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.question button.active::after {
	content: '\25B2';
}

.question .answer {
	display: none;
	padding: 10px;
	border: 1px solid #ff6100;
	background-color: #f5f5f5;
}

.question.active .answer {
	display: block;
}

.gallery {
	flex-basis: 50%;
	padding: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.carousel img {
	width: 100%;
	height: auto;
	display: none;
}

.carousel img:first-child {
	display: block
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  padding-top: 100px; /* Location of the modal */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* Position the close button on top right corner of the modal */
.close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 40px;
  font-weight: bold;
  color: #ff6100;
  padding: 10px;
  cursor: pointer;
}


.gallery .controls1 , .controls2 , .controls3 {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 margin-top: 30px;
}

 .controls1 .prev1 , .next1{
   border: none;
   background-color: #ff6100;
   color: #ddd;
   border-radius: 5px;
   
   }

   .controls2 .prev2 , .next2{
    border: none;
    background-color: #ff6100;
    color: #ddd;
    border-radius: 5px;
    
    }

    .controls3 .prev3 , .next3{
        border: none;
        background-color: #ff6100;
        color: #ddd;
        border-radius: 5px;
        
        }
@media screen and  (max-device-width:1050px){
    .faq {
        flex-basis: 100%;
        padding: 20px;
    }

    .gallery {
        flex-basis: 100%;
        padding: 20px;
        margin-top: auto;
        margin-bottom: auto;
    }
    
    .firstGallery{
        display: flex;
        flex-direction: column;
    }
    
    .secondGallery{
        display: flex;
        flex-direction: column-reverse;
    }
    
    .thirdGallery{
        display: flex;
        flex-direction: column;
    }
}



.question table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  .question table  td, th {
    border: 1px solid #ff6100;
    text-align: left;
    padding: 8px;
    
  }