.headerAAI {
	height: 30vh;
	width: 100%;
	position: relative;
}
.headerAAI img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* opacity: 0.3; */
}
.headerAAI > div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(1, 67, 137, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerAAI h2 {
	color: white;
	font-size: 2rem;
	text-align: center;
}
.contAAI {
	width: 100%;
	overflow: hidden;
}
.contAAI article {
	display: flex;
	height: 75vh;
	margin: 5vh 0;
	background: url('/images/AAI/aaibkg.jpg');
	align-items: center;
}
.contAAI article.flexColumn {
	height: auto;
	padding: 5vh 0;
}
.contAAI article.flexColumn div {
	background: white;
	margin: 1rem 0;
}
.bigImg {
	width: 50%;
	height: 100%;
}
.bigImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.textDiv {
	width: 36%;
	margin-left: 5%;
	margin-right: 5%;
	padding: 2%;
	font-size: 1.2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: white;
}
.textDiv h3 {
	margin: 0;
}

.myslide {
	position: relative;
	padding: 5vh 0;
	margin-bottom: 5vh;
}
.myslideBkg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/images/AAI/aai\(1\).jpg');
	opacity: 0.4;
	z-index: -1;
}

.myslide .imageContainer > * > * {
	object-fit: contain;
}
.thetalk .relative {
	position: relative;
}
.thetalk span {
	font-size: 1.7rem;
	text-transform: uppercase;
	font-weight: bold;
}
.thetalk .relative b {
	color: var(--blue-theme);
	font-weight: bold;
	font-size: 5rem;
	position: absolute;

	font-style: italic;
}
.thetalk .open {
	top: -3rem;
	left: -3.4rem;
}
.thetalk .close {
	bottom: -3rem;
	right: 0rem;
}
.thetalk p {
	font-size: 1rem;
}

@media all and (max-width: 1300px) {
	.textDiv {
		font-size: 1rem;
	}
}
@media all and (max-width: 1000px) {
	.contAAI article.columAt1000 {
		flex-direction: column;
		height: auto;
	}
	.columAt1000 .textDiv {
		width: 85%;
	}
	.contAAI .hide1000 {
		display: none;
	}
}
@media all and (max-width: 900px) {
	.contAAI article {
		flex-direction: column;
		height: auto;
	}
	.textDiv {
		width: 85%;
		margin: 5%;
	}
	.bigImg {
		width: 89%;
		height: 50vh;
		margin: 1% 0;
	}
}
@media all and (max-width: 700px) {
	.headerAAI h2 {
		font-size: 1.5rem;
		margin-top: 40px;
	}
}
@media all and (max-width: 500px) {
	.myslide {
		display: none;
	}
}

.leftToRight {
	-webkit-animation: 1s linear 0s animLeftToRight;
	animation: 1s linear 0s animLeftToRight;
	z-index: 3;
}
.rightToLeft {
	-webkit-animation: 1s linear 0s animRightToLeft;
	animation: 1s linear 0s animRightToLeft;
	z-index: 3;
}

@-webkit-keyframes animLeftToRight {
	from {
		opacity: 0.5;
		transform: translate(50%, 0);
	}
	to {
		opacity: 1;
		transform: translate(0, 0);
	}
}
@keyframes animLeftToRight {
	from {
		opacity: 0.5;
		transform: translate(50%, 0);
	}
	to {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@-webkit-keyframes animRightToLeft {
	from {
		opacity: 0.5;
		transform: translate(0, 0);
	}
	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}
@keyframes animRightToLeft {
	from {
		opacity: 0.5;
		transform: translate(-50%, 0);
	}
	to {
		opacity: 1;
		transform: translate(0, 0);
	}
}
