/* General */
html {
  scroll-behavior: smooth;
}

body {
	position: relative;
	font-size: 24px;
	line-height: normal;
	font-weight: 400;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins';
	background: #fff;
	color: #213164;
}
.revert-colors{
	color:#F5F2DE;
}
img {
	max-width: 100%;
	height: auto;
}

a,
a:hover,
a:focus {
	display: inline-block;
	cursor: pointer; 
	text-decoration: none;
}
a{
	color: #F27228;
}
.revert-colors a{
	color:#fff;
}
a:hover,
a:focus {
	text-decoration: underline;
}
/* Transitions */
a,
.transition,
#languages li a.wpml-ls-link .wpml-ls-native {
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.fit-img-bot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

/* Border Radius */
.top-left-radius {
	border-top-left-radius: 70px;
}
.top-right-radius {
	border-top-right-radius: 70px;
}
.bot-left-radius {
	border-bottom-left-radius: 70px;
}
.bot-right-radius {
	border-bottom-right-radius: 70px;
}

.radius-12{
	border-radius: 12px;
}

/* Bootstrap CSS */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-link:focus,
.nav-link:hover {
	color: unset;
	background-color: unset;
}

/* Colors */
.black-text {
	color: #000;
}

.white-text {
	color: #fff;
}

.orange-text {
	color: #F27228;
}

.blue-text {
	color: #203164;
}

.blue-bg {
	background-color: #203164;
}

.white-bg {
	background-color: #fff;
}

.hideMe{
	display:none!important;
}


/* Fonts */

.text-128{
	font-size: clamp(60px,6.667vw,128px);
}

.text-64{
	font-size: clamp(30px,3.333vw,64px);
}

.text-48{
	font-size: clamp(26px,2.5vw,48px);
}

.text-40{
	font-size: clamp(26px,2.083vw,40px);
}

.text-36{
	font-size: clamp(24px,1.875vw,36px);
}

.text-32, .text-32 p, .text-32 h2{
	font-size: clamp(22px,1.667vw,32px);	
}

.text-30, .text-30 p, .text-30 h2{
	font-size: clamp(20px,1.563vw,30px);	
}
.text-28, .text-28 p{
	font-size: clamp(19px, 1.458vw, 28px);
}

.text-24, .text-24 p{
	font-size: clamp(18px,1.25vw,24px);	
}

.text-18, .text-18 p{
	font-size: clamp(16px,0.938vw,18px);	
}

.text-16, .text-16 p{
	font-size: clamp(15px,0.833vw,16px);
}

.text-14, .text-14 p{
	font-size: clamp(13px,0.729vw,14px);
}

/* Text Align */
.text-justify{
	text-align: justify;
}

.text-right{
	text-align: right;
}

/* Line Heights */
.line-height1{
	line-height: 1;
}

.line-height1-2{
	line-height: 1.2;
}

.line-height1-3{
	line-height: 1.3;
}

.line-height1-5{
	line-height: 1.5;
}

.line-height1-8{
	line-height: 1.8;
}

.line-height2{
	line-height: 2;
}


/* Font Weight */

strong, .strong{
  font-weight: 900;
  font-style: normal;
}

.font-600 {
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
}

.font-500 {
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
}

.font-400 {
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

/* Buttons */
.button {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.button:hover,.button:focus{
	text-decoration: none;
}

.button {
	padding: clamp(12px,0.833vw,16px) clamp(18px,1.146vw,22px);
	border: 1px solid #fff;
	text-align: center;
	font-size: clamp(14px,0.833vw,16px);
	font-weight: 400;
	line-height: normal;
	transition: all .3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	color:white;
	background: transparent;
	border-radius: 30px;
	-webkit-font-smoothing: antialiased;
}

.button .word{
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	text-decoration: none;
	margin-left:clamp(12px,0.885vw,17px); 
	line-height: 0.5;
}

.button::before {
	content: "";
	background: #F27228;
	height: clamp(6px,0.417vw,8px);
	width: clamp(6px,0.417vw,8px);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	position: absolute;
	top: 42%;
	left: 18px;
}

.button.noDot .word{
	margin-left: 0;
}

header.is-sticky .button.noDot{
	background: #203164;
}

header .button.noDot,
header .button.noDot,
header.blue-logo .button{
	background: #203164;
}

.button.noDot:hover {
	background-color:#203164;
	border-color: #203164;
}

.button.noDot:hover .word{
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
}

.button.noDot::before{
	display:none;
}

.button.isBlue{
	background-color:#203164;
	border-color: #203164;
}

.button:hover .word {
	transform: translateX(-15%);
	-webkit-transform: translateX(-15%);
	-moz-transform: translateX(-15%);
	-ms-transform: translateX(-15%);
	-o-transform: translateX(-15%);
}

.button:hover {
	text-decoration: none;
}

.button:hover::before{
	left: 85%;
}

/************************************************/
/* Paddings */

/* xl */
.xl-l-padding{
	padding-left: clamp(20px,9.583vw,184px);
}

.xl-r-padding{
	padding-right: clamp(20px,9.583vw,184px);
}

.xl-t-padding{
	padding-top: clamp(100px,9.583vw,184px);
}

.xl-b-padding{
	padding-bottom: clamp(100px,9.583vw,184px);
}

/* large */
.l-padding{
	padding-left: clamp(20px,7.813vw,150px);
}

.r-padding{
	padding-right: clamp(20px,7.813vw,150px);
}

.t-padding{
	padding-top: clamp(80px,7.813vw,150px);
}

.b-padding{
	padding-bottom: clamp(80px,7.813vw,150px);
}

/* medium */
.m-r-padding{
	padding-right: clamp(50px,5.208vw,100px);
}

.m-l-padding{
	padding-left: clamp(50px,5.208vw,100px);
}

.m-t-padding{
	padding-top: clamp(50px,5.208vw,100px);
}

.m-b-padding{
	padding-bottom: clamp(50px,5.208vw,100px);
}

/* small */
.sm-l-padding{
	padding-left: clamp(20px,4.167vw,80px);
}

.sm-r-padding{
	padding-right: clamp(20px,4.167vw,80px);
}

.sm-t-padding{
	padding-top: clamp(50px,4.167vw,80px);
}

.sm-b-padding{
	padding-bottom: clamp(50px,4.167vw,80px);
}

/* extra small */
.xs-l-padding{
	padding-left: clamp(20px,2.604vw,50px);
}

.xs-r-padding{
	padding-right: clamp(20px,2.604vw,50px);
}

.xs-t-padding{
	padding-top: clamp(30px,2.604vw,50px);
}

.xs-b-padding{
	padding-bottom: clamp(30px,2.604vw,50px);
}

/************************************************/
/* Margin */
/* xl */
.xl-l-margin{
	margin-left: clamp(20px,9.583vw,184px);
}

.xl-r-margin{
	margin-right: clamp(20px,9.583vw,184px);
}

.xl-t-margin{
	margin-top: clamp(100px,9.583vw,184px);
}

.xl-b-margin{
	margin-bottom: clamp(100px,9.583vw,184px);
}

/* normal */
.l-margin{
	margin-left: clamp(20px,7.813vw,150px);
}

.r-margin{
	margin-right: clamp(20px,7.813vw,150px);
}

.t-margin{
	margin-top: clamp(80px,7.813vw,150px);
}

.b-margin{
	margin-bottom: clamp(80px,7.813vw,150px);
}

/* small */
.sm-l-margin{
	margin-left: clamp(20px,4.167vw,80px);
}

.sm-r-margin{
	margin-right: clamp(20px,4.167vw,80px);
}

.sm-t-margin{
	margin-top: clamp(50px,4.167vw,80px);
}

.sm-b-margin{
	margin-bottom: clamp(50px,4.167vw,80px);
}

/* extra small */
.xs-l-margin{
	margin-left: clamp(20px,2.604vw,50px);
}

.xs-r-margin{
	margin-right: clamp(20px,2.604w,50px);
}

.xs-t-margin{
	margin-top: clamp(30px,2.604vw,50px);
}

.xs-b-margin{
	margin-bottom: clamp(30px,2.604vw,50px);
}

.neg-inline-margin{
	margin-inline: -50px;
}

/* Borders */
.t-border {
	border-top: 1px solid;
}
.b-border {
	border-bottom: 1px solid;
}

.l-border {
	border-left: 1px solid;
}

.r-border {
	border-right: 1px solid;
}
.border-around{
	border: 1px solid;
}

.orange-border{
	border-color: #F27228;
}

.blue-border{
	border-color: #203164;
}

/*Radius*/
.radious-rt {
	border-radius: 0px 70px 0px 0px;
	overflow: hidden;
}
.radious-lt {
	border-radius: 70px 0px 0px 0px;
	overflow: hidden;
}
.radious-rb {
	border-radius: 0px 0px 0px 70px;
	overflow: hidden;
}
.radious-lb {
	border-radius: 0px 0px 70px 0px;
	overflow: hidden;

}
/* Plugins */
.grecaptcha-badge {
	z-index: 999;
}
.cn-button.bootstrap {
	border-radius: 0;
	padding: 10px 20px;
}

/* Reveal */
.img-reveal {
	visibility: hidden;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.reveal{
	visibility: hidden;
}
/*flex center all*/
.center-all{
	display: flex;
	justify-content: center;
	align-content: center;
	justify-items: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
}

/* Z-Indexes */
.z-index--1 {
	z-index: -1;
}
.z-index-1 {
	z-index: 1;
}
.z-index-10 {
	z-index: 10;
}
.z-index-20 {
	z-index: 20;
}

/************************************************/
/* Header */
#mobile-menu{
	transition: all .3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	background: rgba(255, 255, 255, 0.5);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	z-index: 2;
	margin-left: 12px;
}

#mobile-open {
	width: 25px;
	cursor: pointer;
}
.menu-line {
	height: 2px;
	width: 100%;
	margin: 0;
	transition: all .3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
.menu-line.top {
	width: 100%;
}
.menu-line.bot {
	width: 100%;
}

#mobile-open:hover .menu-line,
#mobile-menu.opened .menu-line{
	width: 100%;
}


#mobile-close {
	cursor: pointer;
}

#mobile-close.show{
	display: block;
	z-index: 9;
	width: max-content;
}

#mobile-close svg {
	height: 30px;
	width: auto;
}
#mobile-close svg {
	transition: .3s all linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#mobile-close:hover svg {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

header.is-sticky{
	background: white;
	box-shadow: 0px 0px 14px rgb(0, 0, 0, 0.1);
}

header.is-sticky .custom-logo-white{
	display: none;
	opacity: 0;
}

/*menu and submenu*/
#menu-modal-menu li:last-child {
	border: none;
}
.sub-menu {
	list-style: none;
	padding: 10px;
	padding-left: 0;
	position: absolute;
	top: 120%;
	border-radius: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s linear;
	-webkit-transition: opacity 0.3s linear;
	-moz-transition: opacity 0.3s linear;
	-ms-transition: opacity 0.3s linear;
	-o-transition: opacity 0.3s linear;
	background: rgba(255,255,255,1);
	box-shadow: 0px 0px 14px rgb(0, 0, 0, 0.1);
}

.sub-menu.show{
	opacity: 1;
	pointer-events: all;
}

span.accordion-btn {
	cursor: pointer;
	width: 12.5px;
	height: 12.5px;
}
span.accordion-btn span.accordion-line {
	width: 100%;
	height: 2px;
	left: 0;
	top: calc(50% - 1px);
}
span.accordion-btn span.accordion-line.top {
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}
span.accordion-btn span.accordion-line.active.top {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}

.menu-item-has-children .sub-menu .current-menu-item a{
	background: none;
	color: #203164;
	font-weight: 600;
}


/* Header Menu */

.menu-header-menu-container{
	position:fixed;
	top: 23px;
}

.ul-main-menu{
	display: flex;
	list-style: none; 
	/* gap: clamp(15px,2.083vw,40px); */
	padding-left: 0;
	background: rgba(255,255,255,0.5);
	padding: 5px;
	border-radius: 30px;
	margin-bottom: 0;
	backdrop-filter: blur(50px);
}

.ul-main-menu li{
	display: flex;
	align-items: center;
}

.ul-main-menu li a{
	color: #203164;
	font-size: clamp(13px,0.729vw,14px);
	font-weight: 400;
	border-radius: 30px;
	margin-inline: 0;
	display: inline-flex;
	margin: 0 2px;
	padding: 10px clamp(20px,1.667vw,32px);
}

.ul-main-menu li.current-menu-item > a{
	color: #fff;
	padding: 10px clamp(20px,1.667vw,32px);
	background-color: #203164;
	/* margin-inline: -25px; */
}

.menu-item-has-children .sub-menu .current-menu-item a:before{
	left: 96%;
}

.ul-main-menu li.level-1:hover > a {
	background-color: #203164;
	color: #fff;
	text-decoration: none;
}

.ul-main-menu li.level-2 a{
	position: relative;
	/* max-width: 200px; */
}

.ul-main-menu li.level-2 > a::before {
	content: "";
	background: #F27228;
	height: clamp(6px, 0.417vw, 8px);
	width: clamp(6px, 0.417vw, 8px);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	position: absolute;
	top: 16px;
	left: clamp(10px,0.938vw,18px);
}

.ul-main-menu li.level-2:hover > a{
	text-decoration: none;
}

.ul-main-menu li.level-2:hover > a::before {
	left: 96%;
}

#header .dropdown-menu{
	padding: 20px 25px 20px 5px;
	border-radius: 20px;
}

#header .dropdown-menu a{
	color: #203164;
	line-height: 3;
	font-size: clamp(13px,0.729vw,14px);
	position: relative;
	padding-left: clamp(20px,1.667vw,32px);
}

#header .dropdown-menu a:hover{
	text-decoration: none;
}

#header .dropdown-menu a:hover:before{
	left: 104%!important;
}

#header .dropdown-menu li.current-menu-item a:before{
	left: 104%!important;
}

#header .dropdown-menu a:before {
	content: "";
	background: #F27228;
	height: clamp(6px, 0.417vw, 8px);
	width: clamp(6px, 0.417vw, 8px);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	position: absolute;
	top: 16px;
	left: clamp(8px,0.729vw,14px);
}
/* #menu-header-menu.isOpened{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
} */

/*search*/
.button.nostyle {
	border: none;
	background: none;
	color:  #F27228;
}

.w-100Icon svg{
	width: 100%;
	height: auto;
}

/* Fit Images/Videos */
.fit-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.fit-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* Order */
.order-1 {
	order: 1;
}
.order-2 {
	order: 2;
}

.privacy-policy ul.wp-block-list{
	position: relative;
	margin-top: 50px;
}

/* Pagination */
ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 0;
	line-height: 0;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
ul.page-numbers li {
	width: auto;
	height: auto;
	margin: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
ul.page-numbers li span.page-numbers,
ul.page-numbers li a.page-numbers:not(.next, .prev) {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
ul.page-numbers li span.page-numbers,
ul.page-numbers li a.page-numbers:hover {
	background-color:  #F27228;
 }
 /* ul.page-numbers li a.page-numbers svg {
	stroke:  #F27228;
 }
 ul.page-numbers li a.page-numbers:hover svg {
 	stroke:  #F27228;
} */
ul.page-numbers li a.next,
ul.page-numbers li a.prev {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-left: 10px;
}
/* ul.page-numbers li a.page-numbers.prev svg {
	transform: rotate(-136deg);
	-webkit-transform: rotate(-136deg);
	-moz-transform: rotate(-136deg);
	-ms-transform: rotate(-136deg);
	-o-transform: rotate(-136deg);
} */
ul.page-numbers li a.page-numbers.next svg {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
ul.page-numbers li:hover a svg path {
	fill: #fff;
}
ul.page-numbers li a svg path,
ul.page-numbers li:hover a svg path {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

/*swiper*/
.swiper-controls {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	justify-items: center;
}
.swiper-pagination {
	margin-top: 15px;
	margin-left: 20px;
	margin-right: 20px;
	position:relative;
	display: flex;

}
.swiper-pagination-bullet {
	border: 1px solid;
	width: 10px;
	height: 10px;
	background: transparent;
	opacity: 1;
}
.how-content .swiper-pagination-bullet-active{
	background: white;
}
.swiper-button {
	border: 1px solid;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	justify-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	transition: all .3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
.swiper-button:hover {
	background:white;
}
.swiper-button:hover path{
	background:white;
	stroke:  #F27228;
}
.swiper-button-disabled{
	opacity: .6;
}


/************************************************/
/* Max Widths */
.max-450{
	max-width: 450px;
}

.max-500{
	max-width: 500px;
}

.max-600{
	max-width: 600px;
}

.max-1000{
	max-width: 1000px;
	margin: 0 auto;
}

.max-1300{
	max-width: 1300px;
	margin: 0 auto;
}

/************************************************/
/* Gaps */

.gap-6{
	gap: 6rem;
}

/************************************************/
/* Footer */

#footer-social .social-wrapper a:first-child{
	padding-left: 0!important;
}

.footer-line{
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: ttranslateX(-100%);
}


/* Search */

.search_close {
	width: 25px;
	height: 25px;
	display: none;
	opacity: 0;
}
#search-icon.opened .search_open {
	display: none;
	opacity: 0;
}
#search-icon.opened .search_close {
	display: block;
	opacity: 1;
}

/* Search Form */
#searchOverlay {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
}
#search-icon {
	cursor: pointer;
	transition: all .3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	background: rgba(255,255,255,0.5);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	margin-right: 10px;
}
#search-icon:hover {	
	opacity:0.6;
}
#s {
	background: none;
	box-shadow: none;
	border-bottom: 1px solid  #F27228;
	border-left: none;
	border-radius: 0;
	border-right: 0;
	border-top: 0;
	height: 46px;
	color:  #F27228;
	outline: 0;
	font-size: clamp(18px,1.25vw,24px);
}

#s::placeholder{
	color: white;
}

#searchform button{
	max-width: max-content;
	background: #F27228;
	color: #fff;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);	
	padding: 15px clamp(30px,2.604vw,50px);
	border: 1px solid #F27228;
}

#searchform button .word{
	margin-left: 0;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
}

#searchform button::before{
	display: none;
}

#searchform button:hover{
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	background: none;
	border: 1px solid #F27228;
}

#search_close {
	text-align: center;
	margin-top: 180px;
	position: absolute;
	width: 100%;
}
#search_close svg {
	width: 50px;
	height: auto;
	cursor: pointer;
}


/************************************************/
/* Company Styles */
/************************************************/

.decoration-fill-line{
	border-top: 1px solid #F27228;
}

.decoration-fill-line .decoration-fill-line-inner{
	height: 5px;
	width: 0;
	background: #F27228;
	margin-top: -3px;
}

.company-page-img-wrapper{
	max-height: clamp(300px,23.958vw,460px);
	height: clamp(300px,23.958vw,460px);
}

.company-accordion-img-wrapper{
	max-height: 340px;
	height: 340px;
}

.inner-page-hero-slide{
	max-height:560px;
	min-height: 350px;
	height: 100%;
}

.inner-page-hero-slide::before{
	content: '';
	position: absolute;
	bottom: 20px;
	left: 40px;
	border-radius: 50%;
	width: clamp(320px,21.615vw,415px);
	height: clamp(320px,21.615vw,415px);
	background: rgba(61, 173, 255, 0.42);
	filter: blur(100px);
	z-index: 2;
}

.inner-page-hero-slide::after{
	content: '';
	position: absolute;
	bottom: clamp(20px,2.865vw,55px);
	right: clamp(10px,17.188vw,330px);
	border-radius: 50%;
	width: clamp(300px,13.281vw,255px);
	height: clamp(300px,13.281vw,255px);
	background: rgba(61, 173, 255, 0.42);
	filter: blur(100px);
	z-index: 2;
}

.company-gallery-img-wrapper{
	height: clamp(100px,26.563vw,510px);
}

.swiper-scrollbar{
	background: #fff;
	border-top: 1px solid #F27228;
	left: 50%;
	max-width: 50%;
	margin: 0 auto;
}

.swiper-scrollbar-drag{
	margin-top: -2px;
	background:  #F27228;
}
	
/* Company Accordions */
#companyAccordion .accordion-button {
	background-color: #203164;
	color: white;
}

#companyAccordion .accordion-button::after {
	display: none;
}

#companyAccordion .accordion-button .open-btn {
	width: clamp(35px,3.385vw,65px);
	height: clamp(35px,3.385vw,65px);
	border: 2px solid #fff;
	border-radius: 50%;
}

#companyAccordion .accordion-button .open-btn .minus{
	width: clamp(13px,1.302vw,25px);
	height: 2px;
	background: #fff;
}

#companyAccordion .accordion-button .open-btn .plus{
	width: 2px;
	height: clamp(13px,1.302vw,25px);
	background: #fff;
}

#companyAccordion .accordion-button:focus {
	box-shadow: none;
}

#companyAccordion .accordion-item {
	border: 0;
}

#companyAccordion .accordion-header button{
	border: 1px solid #203164;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

#companyAccordion .accordion-body-inner{
	padding-inline: clamp(20px,10.938vw,210px);
	opacity: 0;
	transform: translateY(20px);
}


#companyAccordion .accordion-body-inner.revealMe{
	opacity: 1;
	transform: translateY(0);
}

#companyAccordion .accordion-button[aria-expanded="true"] {
  border-bottom-left-radius: 0px; 
  border-bottom-right-radius: 0px; 
}

#companyAccordion .open-btn .plus {
	transform: translate(-50%, -50%) rotate(0deg);
}

#companyAccordion .accordion-button[aria-expanded="true"] .open-btn .plus {
  	transform: translate(-50%, -50%) rotate(90deg);
}

#companyAccordion .accordion-collapse{
	border-top: 1px solid rgba(255,255,255,0.5);
} 


#companyAccordion .accordion-button:not(.collapsed){
	box-shadow: none;
}

#companyAccordion .accordion-body{
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

#companyAccordion .accordion-body:focus-visible{
	outline: 0;
} 

#companyAccordion .accordion-gallery-items-wrapper{
	gap: clamp(20px,6.771vw,130px);
}

#companyAccordion .swiper-navigation svg.prev{
	left: clamp(20px,4.167vw,80px);
	max-width: clamp(35px,2.396vw,46px);
}

#companyAccordion .swiper-navigation svg.next{
	right: clamp(20px,4.167vw,80px);
	max-width: clamp(35px,2.396vw,46px);
}

#companyAccordion .year-desc{
	border: 1px solid #F27228;
	padding: clamp(30px,2.917vw,56px) clamp(20px,1.719vw,33px);
	max-width: 485px;
}

#companyAccordion .year,
#companyAccordion .year-desc{
	min-width: clamp(200px,25.26vw,485px);
	max-width: clamp(200px,25.26vw,485px);
}

#companyAccordion .timeline-items-wrapper{
	max-width: 1200px;
	margin: 0 auto;
}

#companyAccordion .timeline-line{
	height: 100%;
	width: 1px;
	background: #f27228;
}

#companyAccordion .timeline-line-secondary {
  height: 0%; 
  width: 4px;
  background: #f27228;
  position: absolute;
  left: 49.8%;
}


#companyAccordion .timeline-points svg circle{
	background: #213165;
}

#companyAccordion .timeline-points{
	max-width: clamp(20px,3.385vw,65px);
}

/* Services Page */

#senator-services .services-img-wrapper{
	height: 500px;
	border-radius: 400px 0 0 400px;
}

#senator-services .service-content-inner {
	padding: 30px 20px 30px clamp(20px,4.167vw,80px);
}

/* Job Listings Page */

.normal-post-image-wrapper {
	height: clamp(250px,20.052vw,385px);
}
#job-listings .job-thumb-wrapper{
	height: 300px;	
}

#job-listings .job-content-inner{
	padding: 40px 30px;
	height: 100%;
	border: 1px solid #f27228;
} 

#job-listings .job-item-wrapper .job-content-inner::before{
	content: '';
	position: absolute;
	top: 50%;
	left: -25px;
	height: 1px;
	width: 25px;
	background: #f27228;
} 

#job-listings .job-item-wrapper.active .job-content-inner{
	background: #203164;
	color: #fff;
	border: 1px solid #203164;
}

#job-listings .job-item-wrapper.active .job-content-inner h2{
	color: #fff;
}

#job-listings .job-item-wrapper.active .job-content-inner a{
	background: transparent;
	color: #fff;
	border-color: #fff;
}

#job-listings .close-job-details{
	bottom: 10px;
	right: 10px;
	cursor: pointer;
	display: none;
}

#job-listings .close-job-details svg{
	max-width: clamp(22px,1.823vw,35px);
}

#job-listings .job-item-wrapper.isOpened .close-job-details{
	display:block;
}


/* Job Filters */
.job-filter-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.job-filter-wrapper button{
	width: 100%;
	border: 1px solid #F27228;
	padding: clamp(12px,1.146vw,22px) 10px;
	font-size: clamp(16px,1.146vw,22px);
	background: white;
	color: #F27228;
	font-weight: 400;
	border-radius: 10px;
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px,2.083vw,40px);
}

.job-filter-wrapper button svg{
	max-width: clamp(20px,1.927vw,37px);
}


.job-filter {
	font-size: clamp(16px,1.146vw,22px);
	padding: clamp(20px,1.458vw,28px) 10px;
	border: 1px solid rgba(32, 49, 100, 0.7);
	border-radius: 10px;
	background-color: #f9f9f9;
	color: rgba(32, 49, 100, 0.5);
	flex: 0 0 33.3333%;
	text-align: center;
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.5" d="M23.752 8L21.6947 5.8775L13.5745 14.255V0.5L10.6666 0.5V14.255L2.54648 5.8775L0.48918 8L12.1206 20L23.752 8Z" fill="%23203164"/></svg>');
	background-position: right clamp(50px,7.813vw,150px) center; 
	background-repeat: no-repeat;
	background-size: clamp(15px,1.198vw,23px);
}

.job-filter:focus-visible{
	outline: 0;
}

.job-filter::-ms-expand {
	display: none;
}
.mfp-bg {
	background: #203164;
}
.mfp-arrow:before,
.mfp-arrow:after{
	display: none;
}
.mfp-arrow-right svg {
	right: 20px;
}




/* Social Footer */
.social-wrapper a img {
	height: 35px;
	filter: invert(1);
}

.mobile-only{
	display:none!important;	
}

.privacy-policy h2{
	margin: 40px 0;
}

/* Cookies */
#cookie-notice,
#cookie-notice .cookie-notice-container {
    width: 350px;
    min-width: unset;
    left: 15px;
    bottom: 15px;
    border-radius: 20px;
}
#cookie-notice .cookie-notice-container {
    padding: 15px 45px;
    box-shadow: 0 0 15px rgba(255, 255, 255, .25);
}
#cookie-notice .cookie-btn {
    padding: 10px 30px;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
}
span#cn-notice-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	margin-top: 30px;
}
span#cn-notice-text,
#cookie-notice .cookie-btn{
    font-size: 15px;
    line-height: 20px;
	margin: 0;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#cookie-notice .cn-close-icon {
    right: 15px;
    top: 12.5px;
    margin-top: 0;
    opacity: 1;
}
#cookie-notice .cn-close-icon:after,
#cookie-notice .cn-close-icon:before {
    background-color: #F27228;
}
@media (max-width: 900px) {
    .cookie-notice-container #cn-notice-buttons,
	.cookie-notice-container #cn-notice-text {
        display: flex;
    }
}
@media (max-width: 768px) {
	#cookie-notice {
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
	}
	
}