/*
Theme Name: Geo Sim v2
Version: 1.3
*/

:root {
	--brandGrey: #7F7F7F;
	--brandBlue: #00A2E8;
}

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/**
 * Custom
 */
.site-header-contact {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	color: var(--brandGrey);
	font-size: 1rem;
	border-bottom: 1px solid #e9e9e9;
	padding-left: 120px;
	padding-bottom: 4px;
	padding-top: 4px;
}

.site-header-logo-inner {
	padding-left: 80px;
}

@media (max-width: 1250px) {
	.site-header-contact {
		padding-left: 20px;
	}

	.site-header-logo-inner {
		padding-left: unset;
	}
}

.site-header-contact a {
	text-decoration: none;
}

.site-header-contact a i {
	margin-right: 4px;
}

.site-header-contact-divider-container {
	margin-left: 16px;
	margin-right: 16px;
}

.site-header-contact-divider {
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 75%;
	background-color: var(--brandGrey);
}

.contact-form {

}

.contact-form .form-control {
	margin-top: 4px;
}

.contact-form-row{
}

.contact-form-full-width{

}

.form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-submit {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	background-color: var(--brandBlue);
	color: white;
	cursor: pointer;
}

.form-submit:hover {
	filter: brightness(90%);
}

.elevation-on-hover:hover {
    box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2),0 21px 33px 3px rgba(0, 0, 0, .14),0 8px 40px 7px rgba(0, 0, 0, .12);
}

/** clickable cover */
.clickable-cover a {
    text-decoration: none;
}

.clickable-cover a:focus {
	outline: none;
}

.clickable-cover:focus {
	outline: none;
}

.clickable-cover::after {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0;
    content: " ";
    transition: opacity 0.3s;
}

.clickable-cover:hover::after {
    background-color: var(--brandBlue);
    opacity: 0.3;
}

.home-photo-text-shadow {
	text-shadow: 1px 1px 20px #004572,
	1px 1px 20px #004572,
	1px 1px 20px #004572;
}

.home-photo-responsive {
    height: 250px;
    min-height: unset;
}

.contactPageCover{
	height: 100px;
	min-height: unset !important;
}

@media only screen and (max-width: 1280px) {
	.normal-cover-padding-on-mobile {
		padding-right: var(--wp--preset--spacing--60) !important;
		padding-left: var(--wp--preset--spacing--60) !important;
	}
}

@media only screen and (min-width: 1280px) {
    .home-photo-responsive {
        height: 28vh;
        min-height: unset;
    }
}

@media only screen and (min-width: 1360px) {
    .home-photo-responsive {
        height: 29vh;
        min-height: unset;
    }
}

@media only screen and (min-width: 1600px) {
    .home-photo-responsive {
        height: 35vh;
        min-height: unset;
    }

	.contactPageCover{
		height: 180px;
	}
}

@media only screen and (min-width: 1920px) {
    .home-photo-responsive {
        height: 42vh;
        min-height: unset;
    }

	.contactPageCover{
		height: 250px;
	}
}

