/*
Theme Name: Custom IHEP theme
Text Domain: iheptheme
Version: 0.1.0
*/

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
	aspect-ratio: 16 / 9;
}

.embed-responsive .embed-responsive-item, 
.embed-responsive embed, 
.embed-responsive iframe, 
.embed-responsive object, 
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Changes 6/13 */
#site-footer .footer__menu-link,
#site-footer .footer__address{
	font-size: 20px;
	line-height: 30px;
}
#site-footer .footer__btn {
	line-height: 50px;
	height: 50px;
}
#site-footer .footer__doc-link,
#site-footer .footer__copyright {
	font-size: 18px;
	line-height: 24px;
}
#site-footer input[type='text'],
#site-footer .gform_wrapper .gform_footer input.button {
	margin-left: 10px;
}
#site-footer .footer__link {
	width: 35px;
	height: 35px;
}

@media (min-width: 1440px) {
	#site-footer .footer__title {	
		font-size: 20px;
		line-height: 30px;
	}
}

/* Online Tools */
.online-tools {
	margin: 70px 0;
}

.online-tools__list {
	display: grid;
	gap: 20px;
	padding-left: 0;
	grid-template-columns: 1fr;
}

.online-tools__list-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	flex-basis: calc(50% - 10px);
	flex-shrink: 1;
	background-color: white;
	padding: 50px;
}

.online-tools__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.online-tools__icon {
	position: relative;
	width: 104px;
	height: 104px;

	img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.online-tools__heading {
	color: #003266;
	font-size: 45px;
	margin-bottom: 0;
}

@media (min-width: 900px) {
	.online-tools__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.online-tools__list-item {
		gap: 64px;	
	}
}