* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
/* img {vertical-align: middle;} */

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  text-align: left;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #276EF1;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #276EF1;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 860px) {
  .dot {background-color: #02213c;}
}



.rightTextContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    font-family: versaMedium, sans-serif;
    width: auto;
    height: 100%;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

@media only screen and (max-width: 860px) {
	.rightTextContainer {
	    grid-template-columns: repeat(1, 1fr);
	}
	
	#mobileLinks{
		margin-top:30px;
	}

}
.textContainer-wrapper-grey {
    background-color: #e2e2e2;
    width: 100%;
}