.resource-call-out-card-image{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 850px){
  .resource-call-out-card-image{
    flex-direction: column-reverse;
  }
}
.resource-call-out-card-image__texts{
  width: calc(6 * var(--column_width_percent) + 5 * var(--gutter_width_percent));
}
@media (max-width: 850px){
  .resource-call-out-card-image__texts{
    width: 100%;
  }
}
.resource-call-out-card-image__texts__links{
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer_20);
	margin-top: var(--spacer_28);
}
.resource-call-out-card-image__texts__link--bigger:not(.arrow-button) {
	padding: var(--spacer_32) 8.8rem;
}
.resource-call-out-card-image__texts > a,
.resource-call-out-card-image__texts > .hs_cos_wrapper{
  margin-top: var(--spacer_12);
  display: inline-block;
}
.resource-call-out-card-image__card {
  width: calc(5 * var(--column_width_percent) + 4 * var(--gutter_width_percent));
  position: relative;
	cursor: pointer;
}
@media (max-width: 850px){
  .resource-call-out-card-image__card{
    width: 100%;
  }
}
.resource-call-out-card-image__card-link--invisible {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: transparent;
	opacity: 0;
}

.resource-call-out-card-image__card__informations{
  z-index: 1;
  padding: var(--spacer_40) var(--spacer_40) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.resource-call-out-card-image__card__informations > em{
  font-size: var(--font_size_14);
  font-weight: var(--font_weight_700);
  text-transform: uppercase;
  font-style: normal;
}
.resource-call-out-card-image__card__informations > h4{
  font-size: 28px;
  font-weight: var(--font_weight_700);
}

.resource-call-out-card-image__card:hover .arrow-button {
	font-weight: var(--font_weight_700);
  background-position: left 0 center, left 17px center, left 100% center;
  background-size: 36px 36px, calc(100% - 35px) 36px, 36px;
}
.resource-call-out-card-image__card:hover .arrow-button::before {
  transform: translate(4px, -50%);
  transition: transform var(--default_transition);
}
.resource-call-out-card-image__card:hover .arrow-button::after {
  background-position: left 0 center, left 17px center, left 100% center;
  background-size: 36px 36px, calc(100% - 35px) 36px, 36px;
}

.resource-call-out-card-image__card__informations__text{
  height: fit-content;
  max-height: 0%;
  transition: max-height var(--slow_transition);
  overflow: hidden;
}
.resource-call-out-card-image__card:hover .resource-call-out-card-image__card__informations__text{
  max-height: 100%;
}

.resource-call-out-card-image__image {
	max-height: 32rem;
	object-fit: cover;
}

.resource-call-out-card-image__card__informations__image-container {
	margin-top: var(--spacer_30);
	max-height: 32rem;
	width: 100%;
	overflow: hidden;
	justify-content: center;
} 

.resource-call-out-card-image__card__informations__image {
	transform: scale(0.95);
	transition: transform var(--default_transition);
	height: 38rem;
	width: auto;
}
.resource-call-out-card-image__card:hover .resource-call-out-card-image__card__informations__image {
	transform: scale(1);
} 
{#######################}
{######## POPUP ########}
{#######################}

.resource-call-out-card-image__popup-closer {
	position: absolute;
	top: var(--spacer_20);
	right: var(--spacer_20);
	height: 4rem;
	width: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.resource-call-out-card-image__popup-item {
	position: fixed;
	width: 100vw;
	height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: visibility var(--default_transition), opacity var(--default_transition);
}

.resource-call-out-card-image__popup-item--visible {
	visibility: visible;
	opacity: 1;
	z-index: 20;
	cursor: pointer;
}

.resource-call-out-card-image__popup-container {
	padding: var(--spacer_36);
	background-color: var(--primary_color_10);
	max-width: calc(100vw - 30rem);
	max-height: 100vh;
	overflow-y: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 21;
}
@media(min-width: 1441px) {
	.resource-call-out-card-image__popup-container {
	  max-width: calc(var(--container_width) - 30rem);
	}
}
@media(max-width: 992px) {
	.resource-call-out-card-image__popup-container {
	  max-width: 100vw;
		width: 80%;
	}
}
@media(max-width: 600px) {
	.resource-call-out-card-image__popup-container {
		width: 100%;
    max-height: none;
    height: 100vh;
		top: 0;
		left: 0;
		transform: translate(0);
	}
}

.resource-call-out-card-image__popup-item--visible {
  opacity: 1;
	visibility: visible;
}

{#######################}
{######## FORM ########}
{#######################}

.resource-call-out-card-image__popup-item .hs_cos_wrapper_type_form {
	width: fit-content;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.resource-call-out-card-image__popup-item .hs-form-field label {
	font-weight: var(--font_weight_500);
	margin-bottom: var(--spacer_12);
	color: var(--dark_color);
}

.resource-call-out-card-image__popup-item .hs-form-field input,
.resource-call-out-card-image__popup-item .hs-form-field select {
	padding: var(--spacer_16) var(--spacer_52) var(--spacer_16) var(--spacer_20);
	font-size: var(--font_size_16);
	font-weight: var(--font_weight_300);
	line-height: 1.5;
	font-family: var(--body_font_family, sans-serif);
}

.resource-call-out-card-image__popup-item .hs-form-field select.is-placeholder {
	color: var(--form_field_placeholder_color);
}

.resource-call-out-card-image__popup-item .hs-form fieldset.form-columns-1 .hs-input {
	width: 100%; 
}


.resource-call-out-card-image__popup-item .hs-form-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='m5 9.314 7.314 7.315 7.315-7.315' stroke='%23231F20' stroke-width='2'/%3E%3Cpath d='m5 9.314 7.314 7.315 7.315-7.315' stroke='%23000' stroke-opacity='.2' stroke-width='2'/%3E%3Cpath d='m5 9.314 7.314 7.315 7.315-7.315' stroke='%23000' stroke-opacity='.2' stroke-width='2'/%3E%3Cpath d='m5 9.314 7.314 7.315 7.315-7.315' stroke='%23000' stroke-opacity='.2' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacer_20) center;
}

.resource-call-out-card-image__popup-item .hs-form-field .input {
	margin-right: 0!important;
	background-color: transparent;
	box-shadow: none;
	padding: 0;
}

.resource-call-out-card-image__popup-item .hs-form fieldset.form-columns-2 {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacer_32)
}
@media (max-width: 640px) {
	.resource-call-out-card-image__popup-item .hs-form fieldset.form-columns-2 {
		gap: 0;
	}
}

.resource-call-out-card-image__popup-item .hs-form fieldset.form-columns-2 .hs-form-field {
	width: calc(50% - var(--spacer_32) / 2);
	clear: both;
}

.resource-call-out-card-image__popup-item .hs-form fieldset.form-columns-2 .hs-form-field:first-child {
	
}


@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
	.resource-call-out-card-image__popup-item .hs-form:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
	.resource-call-out-card-image__popup-item .hs-form:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
		width: 100%;
	}
}
.resource-call-out-card-image__popup-item .hs-richtext p{
	font-size: var(--font_size_14);
	line-height: 1.14;
	font-weight: var(--font_weight_300);
}

.resource-call-out-card-image__popup-item .legal-consent-container p {
	font-size: var(--font_size_12);
}

.resource-call-out-card-image__popup-item .hs-richtext a {
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	text-decoration: underline;
}

.resource-call-out-card-image__popup-item .hs-button {
	box-shadow: inset 0 0 0 var(--button_border_width) var(--dark_color);
	color: var(--dark_color);
	background-color: transparent;
	transition: background-color var(--default_transition), color var(--default_transition);
}

.resource-call-out-card-image__popup-item .hs-button:hover {
	color: var(--white_color);
	background-color: var(--dark_color);
}

.resource-call-out-card-image__popup-item .hs-form-field .inputs-list>li {
	margin: 0;
}

.resource-call-out-card-image__popup-item .hs-form-field label.hs-error-msg {
	color: var(--error_color);
	font-weight: var(--font_weight_300);
	line-height: 1;
	margin-bottom: 0;
}
.resource-call-out-card-image__popup-item .hs-form .hs-richtext,
.resource-call-out-card-image__popup-item .hs-form .hs-richtext > *:last-child {
	margin-bottom: 0;
}

.resource-call-out-card-image__popup-item .hs-form .hs_submit {
	margin-top: var(--spacer_32);
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
	.resource-call-out-card-image__popup-item form.hs-form .hs-button,
	.resource-call-out-card-image__popup-item form.hs-form input[type="submit"] {
		text-align: center;
		width: 100%;
	}
}