/* Modal Components */

.Int-BgModal{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background: radial-gradient(at center center,rgba(0,0,0,.1) 0,rgba(20,20,20,.5) 100%);
  z-index: 1000;
}

.Contact-BgModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background: radial-gradient(at center center, rgba(0,0,0,0.5) 0, rgba(20,20,20,.8) 100%);
  z-index: 1000;
}

.Int-Modal{
  background: #fff;
  width: 560px;
  height: auto;
  position: absolute;
  top: calc(50% - 157.5px);
  left: calc(50% - 260px);
}

.Contact-Modal {
  background: #fff;
  border-radius: 20px;
  width: 600px;
  height: auto;
  position: absolute;
  padding: 40px;
  top: calc(50% - 250px);
  left: calc(50% - 260px);
}

.contactForm input[type="text"], input[type="email"]{
  width: 45%;
  margin-top: 15px;
  font-size: 1em;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

@media (max-width: 1000px) {
  .Contact-Modal {
    position: absolute;
    width: 80%;
    top: calc(50% - 250px);
    left: 6%;
  }

  .contactForm input[type="text"]{
    width: 45%;
    margin-top: 15px;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .contactForm input[type="email"]{
    width: 45%;
    margin-top: 15px;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
}

@media (max-width: 850px) {
  .Contact-Modal {
    position: absolute;
    width: 80%;
    top: 10%;
    left: 6%;
  }

  .contactForm input[type="text"]{
    width: 100%;
    margin-top: 15px;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .contactForm input[type="email"]{
    width: 100%;
    margin-top: 15px;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
}

@media (max-width: 560px) {
  .Contact-Modal {
    position: absolute;
    width: 80%;
    top: 5%;
    left: 10px;
  }

  .contactForm input[type="text"]{
    width: 100%;
    margin-top: 15px;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .contactForm input[type="email"]{
    width: 100%;
    margin-top: 15px;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
}

.contactForm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top:10px;
  margin-bottom:10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}


.videoIframe{
	width: 100%;
	height: 100%;
}

/*End Modal Components*/

/* Tab Menu */

.Tab-Menu{
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

.Tab{
  padding: 10px;
  cursor: pointer;
}

.TabSelected{
  background: linear-gradient(to right, rgba(1,125,234,1) 0%, rgba(0,168,214,1) 100%);
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/*End Tab Menu*/

/* Slider BG */

.Slider-Media-Container{
  height: -webkit-fill-available;
  filter: brightness(0.8);
}

.imageinSlider{
  position: absolute;
  width: 100%;
  transition: left .5s;
}
/* END Slider BG */

/*Slider 2*/
.mySlides {display: none}
img.Vertical {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* 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: calc(100% - 120px);
  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: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.Dots_Container{
  
}

.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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/*end slider 2*/