.seo-hidden {
	position: absolute;
    left: -999999px;
    top: 0;
}

/* ISG Header */
#isg-header {
	max-width: 100%;
	background-size: cover;
	height: 600px;
	background-position: 50% 20%;
	margin-bottom: 100px;
	position: relative;
	z-index: 1;
}

#isg-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: -1;
}

#isg-header h1 {
	color: #1d4f91;
}

#isg-header-text {
	position: relative;
}

#isg-header-text p {
	text-align: justify
}

#isg-header-buttons {
	display: flex;
}

#isg-header-buttons .button {
	border: 1px solid #1d4f91;
	border-radius: 3px;
	text-align: center;
	padding: 10px;
	min-width: 120px;
	display: block;
	text-decoration: none;
	color: black;
}

#isg-header-buttons .button:nth-last-child(1):not(:first-child) {
	color: white;
	background-color: #1d4f91;
	margin-left: auto;
}

@media (max-width: 1000px) {
	#isg-header {
		display: flex;
        background-repeat: no-repeat;
        height: 650px;
        padding-top: 0px;
        margin-bottom: 40px;
        background-size: 900px;
        background-position: 60% 10%;
	}
	#isg-header-text {
		align-self: flex-end;
		padding: 5% 5%;
		width: 100%;
		background: rgba(255, 255, 255, 0.95);
	}
	#isg-header-text h1 {
		padding: 0;
		margin: 0;
	}
	#isg-header::before {
		background-color: unset!important;
	}
}

@media (min-width: 1000px) {
	#isg-header-text {
		top: 220px;
		left: 14.2%;
		max-width: 30%;
	}
}

/* ISG Icon Text Box */
.isg-icon-text {
	display: flex;
	margin: 20px 0 20px 10px;
}

.isg-icon-text .icon {
	margin-top: 7px;
	margin-right: 5px;
	font-size: 50px!important;
	min-width: 70px;
    max-width: 70px;
}

.isg-icon-text .text h2, .isg-icon-text .text h2, .isg-icon-text .text h4 {
	/* color: #1d4f91; */
}

.isg-icon-text a {
	text-decoration: none;
}

.isg-icon-text a:hover {
	text-decoration: underline;
}


/* ISG Image Box */
.isg-image-box {
	max-width: 1200px!important;
}

.isg-image-box img {
	max-width: 100%;
	max-height: 500px;
	display: block;
	margin: 0 auto;
}

.isg-image-box a, .isg-image-box p, .isg-image-box h1, .isg-image-box h2, .isg-image-box h3, .isg-image-box h4, .isg-image-box h5, .isg-image-box h6 {
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 30px;
}

.isg-image-box h1, .isg-image-box h2, .isg-image-box h3, .isg-image-box h4, .isg-image-box h5, .isg-image-box h6 {
	text-align: center;
}

.isg-image-box:hover a {
	text-decoration: underline;
}	

.isg-image-box a {
	text-align: center;
	text-decoration: none;
}

/* ISG Slider */
.isg-slider {
	padding: 20px 0;
}

.slide { 
	display: none;
	justify-content: center;
	align-items: center;
}

.slide .left-image {
	background-size: cover;
	width: 48%;
	height: 500px;
	margin-right: 80px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.slide .right-text {
	width: 48%;
}

.slide .right-text .button {
	text-decoration: none;
	color: black;
	padding: 10px;
	min-width: 150px;
	max-width: 150px;
	display: block;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #1d4f91;
}

.slide.active { 
	display: flex; 
}

.slider-dots {
	margin: 60px auto 0;
	text-align: center;
}

.slider-dots button {
	color: #1d4f91;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	margin: 5px;
}

.slider-dots button.dot {
	position: relative;
	bottom: 6px;
}

.slider-dots button.dot::before {
	font: var(--fa-font-thin);
	content: '\f111';
	font-size: 24px;
}

.slider-dots button.dot:hover::before {
	font: var(--fa-font-solid);
	content: '\f111';
	font-size: 24px;
}

.slider-dots button.active::before {
	font: var(--fa-font-solid);
	content: '\f111';
	font-size: 24px;
}

.slider-dots button.prev::before {
	font: var(--fa-font-thin);
	content: '\f104';
	font-size: 38px;
}

.slider-dots button.next::before {
	font: var(--fa-font-thin);
	content: '\f105';
	font-size: 38px;
}

@media (max-width: 1200px) {
	.slide .left-image, .slide .right-text {
		margin-top: 50px;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.slider-dots button {
		padding: 0;
	}
	
	.slider-dots button.dot {
		bottom: 4px;
	}
	
	.slider-dots button.dot::before {
		font-size: 18px;
	}
	
	.slider-dots button.dot:hover::before {
		font-size: 18px;
	}
	
	.slider-dots button.active::before {
		font-size: 18px;
	}
	
	.slider-dots button.prev::before {
		font-size: 28px;
	}
	
	.slider-dots button.next::before {
		font: var(--fa-font-thin);
		content: '\f105';
		font-size: 28px;
	}
}

/* ISG Circle */
#branch-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 500px;
	height: 500px;
	margin: auto;
}

#outer-circle {
	box-sizing: border-box;
	padding: 35px;
}

#bak-circle {
	background: url(../images/circle.svg), linear-gradient(185deg, rgba(255,255,255,0) 0%, rgba(200,200,200,0.5) 100%);
	transition: transform 1.5s ease;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
	border-radius: 50%;
}


.bak-circle-grad {
	background: url(../images/circle.svg), linear-gradient(185deg, rgba(255,255,255,0) 0%, rgba(200,200,200,0.0.8) 100%)!important;
	transition: transform 1.5s ease;
}

#central-circle {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	border: 2px solid #1d4f91;
	background-color: #fff;
	text-align: center;
	position: relative;
	z-index: 1;
	background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(100, 100, 100, 0.7)), url('../images/bak.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#circle-inner {
	margin: 80px 20px 10px;
}

#circle-inner h4 {
	font-size: 24px;
	font-weight: normal;
	color: white;
	margin: 0;
	position: relative;
	top: 75px;
}

#circle-inner p {
	color: white;
	margin-left: 25px;
	margin-right: 25px;
}

#circle-inner button {
	border: none;
	border-radius: 5px;
	text-align: center;
	padding: 10px;
	min-width: 120px;
	display: none;
	text-decoration: none;
	color: white;
	background: none;
	cursor: pointer;
	font-size: 16px;
	background: #1d4f91;
}

#branche-button {
	transition: background-color 0.3s ease, color 0.3s ease;
}

#branch-button:hover {
	background-color: white;
	color: #1d4f91;
}

.learn-more-button {
	background-color: #1d4f91;
	color: white!important;
	text-decoration: none!important;
	border-radius: 5px;
	min-width: 100px;
	padding: 10px;
	margin-top: 20px;
	text-align: center;
}

.branch-icons {
	cursor: pointer;
	width: 100px;
	position: absolute;
}

.branch-icons .icon:hover {
	cursor: pointer;
}

.branch-icons .icon {
	border: 1px solid #1d4f91;
	border-radius: 50%;
	height: 80px;
	width: 80px;
	text-align: center;
	margin: 0 auto;
}

.branch-icons .icon .fa-thin {
	font-size: 33px;
	position: relative;
	top: 22px;
}

.branch-icons .icon-header {
	text-align: center;
	margin-top: 10px;
}

.branch-icons .icon-text {
	display: none;
}

.branch-icons:nth-child(2) {
	top: -15%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(3) {
	top: 0%;
	left: 0%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(4) {
	top: 35%;
	left: -20%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(5) {
	top: 75%;
	left: -20%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(6) {
	top: 105%;
	left: 5%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(7) {
	top: 120%;
	left: 35%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(8) {
	top: 120%;
	left: 70%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(9) {
	top: 105%;
	left: 105%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(10) {
	top: 70%;
	left: 120%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(11) {
	top: 35%;
	left: 120%;
	transform: translate(-50%, -50%);
}

.branch-icons:nth-child(12) {
	top: 0%;
	left: 95%;
	transform: translate(-50%, -50%);
}

.pulse {
	animation: pulse-animation 2s;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px rgba(150, 150, 150, 0.4);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}

@media only screen and (max-width: 1050px) {
  /* Hide the circle elements */
  .wp-block-isg-plugin-circle .spacel {
	height: 0;
  }
  
  #branch-container {
    display: block;
    width: 100%;
    height: auto;
  }

  #outer-circle {
    display: none;
  }

  .branch-icons {
    position: unset;
    width: 100%;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	cursor: unset;
	transform: unset!important;
	margin-bottom: 60px;
  }

  .branch-icons .icon {
    margin: 20px auto;
    width: 80px;
    height: 80px;
  }

  .branch-icons .icon-header {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
  }

  .branch-icons .icon-text {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    padding: 0 15px;
	text-align: center;
  }

  .branch-icons.active .icon-text {
    display: block;
  }
}

/* ISG Circle Box */
.isg-circle-box {
	margin-bottom: 400px!important;
}

.circle-box-link a, .circle-box-link i, .circle-box-link h4, .circle-box-link p {
	text-decoration: none!important;
}

.circle-box-link a:hover .circle-box {
	background-color: #f7f7f7;
}

.circle-boxes {
	margin: 200px auto; /* Center the circle */
}

@media (min-width: 976px) {
	.circle-boxes {
		position: relative;
		width: 700px; /* Size of the circle */
		height: 500px; /* Size of the circle */
	}
	
	.circle-box {
		position: absolute;
		min-width: 310px; /* Width of each box */
		width: 310px;
		min-height: 110px; /* Height of each box */
		left: 0;
		right: 0;
		top: 50%;
		margin-left: auto;
		margin-right: auto;
		background-color: white; /* Color of the box */
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		border-radius: 3px; /* Optional, for rounded corners */
		text-align: center;
		padding: 20px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.circle-circle {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 14%;
		border: 1px solid black;
		border-radius: 50%;
	}
}

.circle-box {
	border: 1px solid #efefef;
	border-radius: 10px;
}

.circle-box h4 {
	padding: 10px;
	color: black;
}

.circle-box p, .circle-box h4 {
	margin: 0;
}

.circle-box p {
	margin-top: 10px;
}

.circle-box .icon-container {
	width: 52px;
	height: 50px;
	font-size: 25px;
    margin-bottom: 5px;
	background: white;
    color: black;
    border: 1px solid #1d4f91;
    border-radius: 50%;
}

.circle-box i {
	line-height: 50px;
}

@media (max-width: 975px) {
	.circle-boxes {
	}
	
	.circle-box {
		margin-left: auto;
		margin-right: auto;
		background-color: white; /* Color of the box */
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		border-radius: 3px; /* Optional, for rounded corners */
		text-align: center;
		padding: 40px;
		margin-bottom: 30px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: unset!important;
		width: 100%;
	}
}

.small-circle .circle-boxes {
	width: 600px;
	height: 400px;
}

.small-circle .circle-box {
	min-width: 250px;
	width: 250px;
	min-height: 110px;
}

@media (max-width: 768px) {
	.isg-circle-box {
		margin-bottom: 300px!important;
	}
	
	.small-circle .circle-boxes {
		width: 100%;
		height: unset;
	}
}

/* ISG Accordion */
.isg-accordion {
	display: flex;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	box-sizing: border-box;
}

.accordion-container h4 {
	display: inline-block;
	color: black;
	font-family: "para-r", Arial, Helvetica, sans-serif;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

.isg-accordion i {
	margin-right: 5px;
	margin-top: 1px;
}

.acc-button h4:hover, .acc-button-sub h4:hover {
	text-decoration: underline;
}

.acc-button-sub h4 {
	font-size: 14px;
}

.acc-button-sub h4::before {
	font: var(--fa-font-solid);
	content: '\2d';
	margin-right: 7px;
	text-decoration: none!important;
	display: inline-block;
}

.acc-button-sub h4.underline {
	text-decoration: underline;
}

.acc-buttons {
	width: 35%;
	padding: 30px;
}

.acc-button {
	display: flex;
	min-width: 200px;
	position: relative;
	margin: 20px;
	padding: 15px 15px 15px 30px;
}

.acc-button.butactive {
	background: white;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	
	border-radius: 5px;
}

.acc-button:hover {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer; 
}

.acc-button.butactive {
	animation: pulse-animation2 0.3s;
}

.sub-accordion-container > .acc-button-sub:first-child {
	margin-top: 10px;
}

.acc-button-sub {
	padding: 10px 0px 10px 17px
}

@keyframes pulse-animation2 {
	0% {
		box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.0);
	}
	100% {
		box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
	}
}

.acc-content { 
	width: 54%;
	margin-left: auto;
	padding-bottom: 40px;
}

.acc-image { 
	height: 100%;
	height: 400px;
	margin-bottom: 20px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	margin-bottom: 40px;
}

.acc-text {
	padding: 0 20px;
	max-width: 90%;
    margin: 0 auto;
}

.acc-text .button:hover {
	box-shadow: unset!important;
}

@media (max-width: 768px) {
	.isg-accordion {
		display: block!important;
	}
	
	.acc-button {
		min-width: 90%;
		margin: 5px 0;
		padding: 10px;
	}
	
	.acc-content, .acc-buttons { 
		width: 80%;
	}
	
	.acc-image {
		width: 90%;
		height: 250px;
	}
	
	.acc-text {
		min-height: unset;
	}
}

/* ISG Timeline */
#timeline {
	max-width: 100%!important;
	margin: 150px 0 100px;
}

.timeline-container {
	position: relative;
	width: 100%;
	height: 750px;
	overflow: hidden;
	white-space: nowrap;
	cursor: grab;
	padding-top: 60px; /* Aligns the center line in the middle */
}

.timeline-line {
	position: absolute;
	width: 10000px; /* Arbitrary large width to accommodate content */
	height: 2px;
	background-color: #1d4f91;
	top: 370px; /* Center the line vertically */
}

.timeline-entry {
	display: inline-block;
	width: 260px;
	height: 280px;
	margin: 0 20px;
	left: 50px;
	text-align: center;
	background: white;
	border-radius: 25px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	box-sizing: border-box;
	white-space: pre-wrap;
	vertical-align: top;
	transition: top 0.3s ease; 
}

.timeline-entry:nth-child(odd) {
	position: relative;
	top: -50px;
}

.timeline-entry:nth-child(odd):hover {
	top: -12px;
}

.timeline-entry:nth-child(odd)::before, .timeline-entry:nth-child(even)::before  {
	content: '';
	width: 260px;
	height: 280px;
	position: absolute;
	display: block;
	font-size: 50px;
	color: #1d4f91;
}

.timeline-entry:nth-child(odd)::before {
	font-family: 'Font Awesome 6 Pro';
	content: "\f107";
	font-weight: 300;
	top: 300px;
}

.timeline-entry:nth-child(even) {
	position: relative;
	top: 385px;
}

.timeline-entry:nth-child(even):hover {
	top: 353px;
}

#timeline.no-hover .timeline-entry:nth-child(even):hover {
    top: 385px;
}

#timeline.no-hover .timeline-entry:nth-child(odd):hover {
    top: -50px;
}

.timeline-entry:nth-child(even)::before {
	font-family: 'Font Awesome 6 Pro';
	content: "\f106";
	font-weight: 300;
	bottom: 40px;
}

.timeline-entry i {
	display: block;
	font-size: 34px;
	margin-bottom: 5px;
	color: #1d4f91;
}
.timeline-entry-container {
	display: block;
	box-sizing: border-box;
	height: 100%;
	padding: 20px;
}

.timeline-entry-header {
	font-weight: bold;
	margin-bottom: 5px;
}

.timeline-scroll-arrow {
	position: fixed;
	background-color: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: none;
	padding: 5px;
	color: #1d4f91;
	cursor: pointer;
	font-size: 44px;
	z-index: 10;
}

.timeline-left-arrow {
	left: 50px;
}

.timeline-right-arrow {
	right: 50px;
}

.timeline-year, .timeline-title, .timeline-text {
	margin: 15px 0;
}

.timeline-year {
	font-family: "para-m", Arial, Helvetica, sans-serif;
	font-size: 18px;
}

.timeline-title {
	font-size: 18px;
	color: #1d4f91;
}

.timeline-text {
	margin: 5px 0;
}

/* ISG Bubbles */
.bubbles-container {
	margin: 0 auto 200px !important;
    text-align: center;
    padding: 80px;
    z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* Centers items in the row and works with align-content for multiple rows */
	align-items: center;
    gap: 40px;
}

.bubbles-entry {
	flex: 1 1 22%;
	max-width: 280px;
	border-radius: 50%;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

@keyframes varied-pulsing-shadow {
	0%, 100% {
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	}
	20% {
		box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
	}
	40% {
		box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
	}
	60% {
		box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.7);
	}
	80% {
		box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	}
}

/* .bubbles-entry:hover {
	animation: varied-pulsing-shadow 10s infinite;
} */

.bubbles-entry-container {
	min-height: 280px;
    min-width: 280px;
    text-align: center;
}

.bubbles-entry-container .bubbles-title {
	font-weight: bold;
	margin-bottom: 15px;
}

.bubbles-entry-inside {
	padding: 40px 30px 30px;
}

.bubbles-entry i {
    font-size: 45px;
	margin-bottom: 15px;
}


.small-bubble .bubbles-entry {
	flex: 1 1 15%;
	max-width: 200px;
}

.small-bubble .bubbles-entry-container {
	min-height: 200px;
    min-width: 200px;
}

.small-bubble .bubbles-entry-inside {
	padding: 30px 20px 20px;
}

.small-bubble .bubbles-entry i {
	font-size: 35px;
}

.small-bubble .bubbles-entry-container .bubbles-title {
	font-weight: normal;
	margin-bottom: 10px;
}

/* ISG Cover Image Text */
.isg-cover-image-text {
    display: flex;
    flex-wrap: wrap;
	gap: 80px;
    align-items: stretch; /* Ensure children stretch to the same height */
    width: 100%;
    box-sizing: border-box;
	justify-content: center;
    align-items: center;
	margin: 80px auto !important;
}

.isg-cover-image-text .isg-cover-image-text-image {
    flex: 1 1 45%; /* Allows the image container to take up 45% of the container's width */
    max-width: 50%;
	min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.isg-cover-image-text .isg-cover-image-text-text {
    flex: 1 1 45%; /* Allows the text container to take up 45% of the container's width */
    max-width: 45%;
    box-sizing: border-box;
}

.isg-cover-image-text.align-right .isg-cover-image-text-image {
    order: 2; /* Moves the image to the right when the alignment is right */
}

.isg-cover-image-text.align-right .isg-cover-image-text-text {
    order: 1; /* Ensures the text is on the left when the alignment is right */
}

@media (max-width: 1018px) {
    .isg-cover-image-text .isg-cover-image-text-image,
    .isg-cover-image-text .isg-cover-image-text-text {
        flex: 1 1 100%; /* Stack the elements vertically on small screens */
        max-width: 100%;
	}
}