/* Custom Carousel */

.carousel-wrapper {
  position: relative;

  --color-white: #fff;
  --color-black: #000;
  --color-light-blue: aquamarine;
}

.custom-carousel {
  display: flex;
  overflow-x: auto;
}

.custom-carousel.slick-slider {
  overflow-x: unset;
}

.carousel-content-wrapper {
 	padding: 20px;
	min-height: 190px;
}

.slick-track {
  display: flex;
}

.carousel-item {
  /* background-color: var(--color-light-blue); */
  background-color: #fff;
  min-width: 30%;
  height: auto;
  margin: 15px;
  border-radius: 10px;
}

/* .carousel-item:not(:last-child) {
  margin-right: 30px;
} */

.carousel-item.slick-slide {
  min-width: initial;
}

.custom-carousel .carousel-image {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	width: 100%;
}

.carousel-item .carousel-title,
.carousel-text {
  color: #0F1A43;
}

.carousel-item .carousel-title {
  
}

.custom-carousel .carousel-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}

.custom-carousel .carousel-text {
	line-height: 24px;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  /* background: var(--color-black); */
  background: #000;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.slick-arrow i {
  /* color: var(--color-white); */
  color: #fff;
  font-size: 19px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.next {
  right: -50px;
  top: 50%;
  transform: translate(0, -50%);
}

.prev {
  left: -50px;
  top: 50%;
  transform: translate(0, -50%);
}

.custom-carousel .carousel-image {
	height: 203px;
	object-fit: cover;
}

.custom-carousel .carousel-content-wrapper {
	position: relative;
	min-height: 300px;
    max-height: 300px;
}

.custom-carousel-link-wrapper {
	display: flex;
    justify-content: flex-end;
	align-items: center;
	gap: 14px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #6C767D;
	
	position: absolute;
    width: calc(100% - 40px);
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.custom-carousel-link-wrapper .custom-carousel-link {
	display: block;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.5px;
	color: #0F1A43;
	font-family: "Poppins", Sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.custom-carousel-link-wrapper .custom-carousel-link:hover {
	text-decoration: none;
}

.custom-carousel .carousel-text {
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Custom Carousel End */

/* Custom Carousel Career */

.custom-carousel-career-wrapper {
  --color-white: #fff;
  --color-black: #000;
  --color-light-blue: aquamarine;
}

.custom-carousel-career {
  display: flex;
  overflow-x: auto;
}

.carousel-career-item {
  background: #fff;
  padding: 20px;
  margin: 10px;
  min-width: 20%;
  height: auto;
  margin: 15px;
  position: relative;
}

.carousel-career-item.slick-slide {
	min-width: initial;
	min-height: 262px;
}

.separator {
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  margin: 10px 0;
}

.carousel-career-text {
  margin-bottom: 40px;
}

.elementor-widget-custom_carousel_career .carousel-career-title {
	color: #0F1A43;
	font-family: "Poppins", Sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin-top: 0;
    margin-bottom: 15px;
	text-transform: uppercase;
}

.elementor-widget-custom_carousel_career .carousel-career-text {
	color: #6C767D;
	font-family: "Inter", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.elementor-widget-custom_carousel_career .carousel-career-link {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
    align-items: center;
    gap: 14px;
	color: #0F1A43;
	font-family: "Poppins", Sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.5px;
	text-decoration: none;
	text-transform: uppercase;
}

.slick-arrow {
	background: transparent;
	width: 40px;
	height: 40px
}

@media only screen and (max-width: 1024px) {
	.slick-arrow {
		top: unset;
		bottom: -60px
	}
	
	.prev {
		left: 35%
	}

	.next {
		right: 35%
	}
}

/* Custom Carousel Career End */

/* Custom Quote Slider Start */

.custom-quote-slider .quote-slider-item {
	position: relative;
	background: #F3F3F3;
	padding: 40px 50px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.quote-slider-item-wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
}

.custom-quote-slider .quote-slider-item::before {
	content: '';
	position: absolute;
	width: 35px;
	height: 32px;
	background: #F3F3F3;
	transform: rotate(45deg);
	bottom: -15px;
	right: 96px;
}

.custom-quote-slider .quote-slider-image {
	width: 100px;
	height: 100px;
}

.custom-quote-slider .quote-slider-text {
	font-family: "Inter", Sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #0F1A43;
}

.custom-quote-slider {
	max-width: 742px;
}

.custom-quote-slider-prev.prev {
	top: 20px;
    right: 50px;
    left: unset;
}

.custom-quote-slider-next.next {
	top: 20px;
    right: 0;
}

.quote-slider-text-author {
	display: block;
	color: #6C767D;
	font-family: "Poppins", Sans-serif;
	font-size: 20px;
	line-height: 26px;
	font-weight: 600;
	text-align: right;
	margin-top: 30px;
}

.quote-slider-text-author-email {
	display: block;
	font-family: "Inter", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.5px;
	text-align: right;
	color: #6C767D;
}

@media only screen and (max-width: 1024px) {
	.custom-quote-slider-prev.prev {
		top: -30px;
	}

	.custom-quote-slider-next.next {
		top: -30px;
	}
}

@media only screen and (max-width: 768px) {
	.custom-quote-slider .quote-slider-item {
		flex-direction: column;
		padding: 32px 26px;
		align-items: flex-start;
		gap: 10px;
	}

	.quote-slider-item-wrapper {
		flex-direction: column;
	}

	.quote-slider-nav {
		position: relative;
		display: flex;
		justify-content: center;
		gap: 20px;
	}

	.custom-quote-slider-prev.prev,
	.custom-quote-slider-next.next {
		position: relative;
		top: unset;
		right: unset;
		bottom: unset;
		transform: unset;
	}
}

/* Custom Quote Slider End */

/* Custom Content Map Tabs Start */

.content-map-tabs__wrapper {
	position: relative;
}

.content-map-tabs__single-tab {
	display: flex;
	gap: 50px;
	transition: 0.3s ease;
}

.content-map-tabs__year-wrapper {
	position: relative;
    display: flex;
    justify-content: flex-end;
    min-width: 76px;
}

.content-map-tabs__year-wrapper::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background: #6C767D;
	top: 0;
	right: -25px;
}

.content-map-tabs__year-wrapper::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 0;
	background: #00AEEF;
	top: 0;
	right: -26.5px;
	transition: 0.3s ease;
}

.active .content-map-tabs__year-wrapper::after {
	height: 100%;
	transition: 0.3s ease;
}

.content-map-tabs__main-content {
	max-width: 414px;
	margin-bottom: 36px;
}

.content-map-tabs__main-content:nth-last-child(1) {
	margin-bottom: 0;
}

.content-map-tabs__year {
	display: block;
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	color: #00AEEF;
	font-family: "Poppins", Sans-serif;
}

.content-map-tabs .content-map-tabs__title {
	cursor: pointer;
	display: block;
	font-size: 20px;
	line-height: 26px;
	font-weight: 600;
	color: #0F1A43;
	font-family: "Poppins", Sans-serif;
	margin: 0;
	margin-bottom: 4px;
}

.content-map-tabs__text {
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #6C767D;
	font-family: "Inter", Sans-serif;
	height: 0;
    opacity: 0;
    visibility: hidden;
	transition: 0.3s ease;
}

.content-map-tabs__map-wrapper {
	width: 540px;
	height: 508px;
	position: absolute;
    top: 0;
    right: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
}

.active .content-map-tabs__map-wrapper {
	opacity: 1;
	visibility: visible;
	min-height: 508px;
}

.active .content-map-tabs__text {
	opacity: 1;
	visibility: visible;
	height: auto;
}

@media (min-width:768px) and (max-width:1024px) {
	.content-map-tabs__main-content {
		max-width: 300px;
	}
	
	.content-map-tabs__map-wrapper {
		width: fit-content;
	}
	
	.content-map-tabs__map-wrapper frame {
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	.content-map-tabs__wrapper {
		padding: 0 24px 550px;
	}

	.content-map-tabs__map-wrapper {
		width: 100%;
		top: unset;
		bottom: 0;
	}
}

/* Custom Content Map Tabs End */

/* Custom Tabs Info Start */

.custom_tabs_info {
	display: flex;
	flex-direction: column;
	background: #F3F3F3;
	padding-top: 80px;
}

.custom_tabs_info .custom_tabs_info__title {
	display: block;
	color: #000;
	font-size: 40px;
	line-height: 48px;
	font-weight: 600;
	max-width: 1188px;
	width: 100%;
	padding: 0 24px;
	margin: 0 auto 16px;
}

.custom_tabs_info__tabs-buttons {
	display: flex;
	gap: 16px;
	max-width: 1188px;
	width: 100%;
	padding: 0 24px;
	margin: 0 auto 30px;
}

.custom_tabs_info__tab-button {
	cursor: pointer;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 60px;
	color: #000;
}

.custom_tabs_info__tab-button.active {
	color: #7755FF;
	background: #E6E7FF;
}

.custom_tabs_info .custom_tabs_info__button-icon {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	display: block;
	width: 24px !important;
	height: 24px !important;
	pointer-events: none;
}

.custom_tabs_info__tab-button.active .custom_tabs_info__button-icon {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.custom_tabs_info__button-text {
	display: block;
	font-family: "Poppins", Sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	letter-spacing: 0.36px;
	pointer-events: none;
}

.custom_tabs_info__tab-button.active .custom_tabs_info__button-text {
	font-weight: 600;
}

.custom_tabs_info__tabs-wrapper {
	position: relative;
	background: #00AEEF;
	padding: 90px 0;
}

.custom_tabs_info__tab {
	display: flex;
	gap: 80px;
	align-items: center;
	max-width: 1188px;
	width: 100%;
	padding: 0 24px;
	margin: 0 auto;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	top: 90px;
	left: 50%;
	transform: translateX(-50%);
	transition: opacity 0.5s ease;
}

.custom_tabs_info__tab.reverse {
	flex-direction: row-reverse;
}

.custom_tabs_info__tab.active {
	position: relative;
	opacity: 1;
	visibility: visible;
	top: 0;
	left: 0;
	transform: translateX(0);
}

.custom_tabs_info__tab-column {
	position: relative;
}

.custom_tabs_info .custom_tabs_info__tab-image {
	display: block;
	width: 554px;
	max-width: unset;
}

.custom_tabs_info .custom_tabs_info__tab-icon {
	position: absolute;
	bottom: -20px;
    left: -13%;
}

.custom_tabs_info .custom_tabs_info__tab-title {
    color: #fff;
	font-family: "Playfair Display", sans-serif;
	font-size: 64px;
	line-height: 68px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 16px;
}

.custom_tabs_info__tab-text {
    color: #fff;
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 40px;
}

.custom_tabs_info .custom_tabs_info__tab-link {
	display: flex;
    align-items: center;
    gap: 15px;
	width: fit-content;
	padding: 12px 20px;
	background: #F8981D;
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
}

.custom_tabs_info .custom_tabs_info__tab-link:hover {
	background: #DE8819;
}

.custom_tabs_info__mobile-dropdown {
	display: none;
}

@media only screen and (max-width: 768px) {
	.custom_tabs_info__tabs-wrapper {
		padding: 40px 0;
	}

	.custom_tabs_info__tabs-buttons {
		flex-direction: column;
	}

	.custom_tabs_info__tab {
		top: 40px;
		gap: 50px;
	}

	.custom_tabs_info__tab,
	.custom_tabs_info__tab.reverse {
		flex-direction: column;
	}

	.custom_tabs_info .custom_tabs_info__tab-image {
		width: 100%;
	}

	.custom_tabs_info .custom_tabs_info__tab-icon {
		width: 99px !important;
		left: -14px;
	}

	.custom_tabs_info .custom_tabs_info__tab-title {
		font-size: 44px;
		line-height: 50px;
	}
	
	.custom_tabs_info__mobile-dropdown {
		cursor: pointer;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0 24px;
		padding: 8px 16px;
		border-radius: 60px;
		color: #7755FF;
		background: #E6E7FF;
		font-family: "Poppins", Sans-serif;
		font-size: 18px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
		letter-spacing: 0.36px;
	}

	.custom_tabs_info__mobile-dropdown-text,
	.custom_tabs_info__mobile-dropdown-image {
		pointer-events: none;
	}

	.custom_tabs_info__tab-button.active .custom_tabs_info__button-icon {
		opacity: 0;
		visibility: hidden;
		width: 0 !important;
	}

	.custom_tabs_info__tabs-buttons {
		height: 0;
		max-height: 0;
		overflow: hidden;
		transition: 0.5s ease;
	}

	.custom_tabs_info__tabs-buttons.open {
		height: 100%;
		max-height: 700px;
	}
}

/* Custom Tabs Info End */

/* Custom Events Carousel Start */

.events-carousel a:hover {
	text-decoration: none;
}

.events-carousel .custom-carousel .carousel-content-wrapper {
	min-height: 180px;
}

/* Custom Events Carousel End */