/*
	Template Name: robotix
*/


/*
	Global Css
*/

:root {
  --sky: #00C4FF;
  --dark: #111827;
  --black: #333333;
  --gray: #F9F9F9;
  --darkgray: #676767;
  --lightblack: #444444;
  --white: #ffffff; 
  --green: #2BB573; 
  --lightgreen: #5ED39B; 
  --ldgreen: #ECFFF6; 
  --fbg: #0C0B09; 
  --font: 'Space Grotesk', sans-serif; 
}


body{
	font-family: var(--font);
	font-size: 16px;
	color: var(--white);
	line-height: 29px;
	position: relative;
	background: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--font);
	font-weight: 700;
	line-height: normal;
	color: var(--white);
}
a,
a:hover,
a:focus{
	color: var(--white);
	text-decoration: none;
}

img{
	display: block;
	max-width: 100%;
}
iframe{
	max-width: 100%;
	display: block;
}

/* Start Bubble Effects */

.bubble_1 {
	position: absolute;
	left: 2%;
	top: 12%;
}
.bubble_2 {
	position: absolute;
	left: 2%;
	top: 48%;
}

.bubble_3 {
	position: absolute;
	left: 49%;
	bottom: 41%;
}
.bubble_4 {
	position: absolute;
	top: 12%;
	left: 56%;
}
.bubble_5 {
	position: absolute;
	bottom: 41%;
	right: 2%;
}

/*Css Effects */
@keyframes gelatine {
  from, to { transform: scale(1, 1); }
  25% { transform: scale(0.9, 1.1); }
  50% { transform: scale(1.1, 0.9); }
  75% { transform: scale(0.95, 1.05); }
}

.spin {
  animation: spin 1s infinite linear;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.elastic-spin {
  animation: elastic-spin 1s infinite ease;
}
@keyframes elastic-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(720deg); }
}

.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.8); }
  to { transform: scale(1.2); }
}

.flash {
  animation: flash 500ms ease infinite alternate;
}
@keyframes flash {
	from { opacity: 1; }	
	to { opacity: 0; }
}

.hithere {
  animation: hithere 1s ease infinite;
}
@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.grow {
  animation: grow 2s ease infinite;
}
@keyframes grow {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.fade-in {
  animation: fade-in 2s linear infinite;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-out {
  animation: fade-out 2s linear infinite;
}
@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.bounce {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

.bounce2 {
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

.shake {
  animation: shake 2s ease infinite;
}
@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.flip {
	backface-visibility: visible !important;
	animation: flip 2s ease infinite;
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.swing {
	transform-origin: top center;
	animation: swing 2s ease infinite;
}
@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}

.wobble {
  animation: wobble 2s ease infinite;
}
@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.fade-in-down {
  animation: fade-in-down 2s ease infinite;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  animation: fade-in-left 2s ease infinite;
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-out-down {
  animation: fade-out-down 2s ease infinite;
}
@keyframes fade-out-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.fade-out-right {
  animation: fade-out-right 2s ease infinite;
}
@keyframes fade-out-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.bounce-in {
  animation: bounce-in 2s ease infinite;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% { transform: scale(.9); }
  100% { transform: scale(1); }
}

.bounce-in-right {
  animation: bounce-in-right 2s ease infinite;
}
@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

.bounce-out {
  animation: bounce-out 2s ease infinite;
}
@keyframes bounce-out {
  0% { transform: scale(1); }
  25% { transform: scale(.95); }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(.3);
  } 
}

.bounce-out-down {
  animation: bounce-out-down 2s ease infinite;
}
@keyframes bounce-out-down {
  0% { transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.rotate-in-down-left {
  animation: rotate-in-down-left 2s ease infinite;
}
@keyframes rotate-in-down-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotate-in-up-left {
  animation: rotate-in-up-left 2s ease infinite;
}
@keyframes rotate-in-up-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.hinge {
  animation: hinge 2s ease infinite;
}
@keyframes hinge {
  0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }  
  20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }  
  40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; } 
  80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } 
  100% { transform: translateY(700px); opacity: 0; }
}

.roll-in {
  animation: roll-in 2s ease infinite;
}
@keyframes roll-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

.roll-out {
  animation: roll-out 2s ease infinite;
}
@keyframes roll-out {
    0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
/* End Bubble Effects */

.section-padding{
	padding-top: 100px;
	padding-bottom: 100px;
}
.gray-section{
	background-color: var(--gray);
}
.pt_0{
	padding-top: 0;
}
.pb_0{
	padding-bottom: 0;
}
.pb_40{
	padding-bottom: 40px;
}

.pt_100{
	padding-top: 100px;
}
.pb_100{
	padding-bottom: 100px;
}
.main_btn {
	background: #4342F5;
	color: var(--white);
	padding: 7px 25px;
	display: inline-block;
	font-weight: 500;
	border-radius: 25px;
	border: 1px solid #4342F5;
	font-size: 15px;
	transition: .8s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.main_btn:hover,
.main_btn:focus{
	color: var(--white);
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
}

.light .main_btn:hover,
.light .main_btn:focus{
	color: var(--white);
	background: #151f39;
	border-color: #151f39;
}

.section-title{
	margin-bottom: 60px;
}

.section-title span {
	color: var(--white);
	background: linear-gradient(90deg, #7B3EFF 45.53%, #00C4FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.section-title h2 {
	font-size: 32px;
	line-height: 40px;
}
.light .tools-area .section-title h2 {
	color: #fff;
}

.main-banner-area {
	background-size: cover;
	position: relative;
	padding: 176px 0 80px;
	text-align: center;
}
.main-banner-area:after{
	position: absolute;
	content: '';
	width:100%;
	height: 100%;

	opacity: 1;
	left: 0;
	top: 0;
}
.banner-content{
	position: relative;
	z-index: 1;
}
.banner-content h2{
	color: var(--white);
	font-size: 35px;
}

/*START PRELOADER DESIGN*/

.preloader {
    background: #111827;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 4px solid rgba(0, 0, 0, 0.08);
    border-right: 4px solid rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid #7B3EFF;
    border-radius: 50%;
    -webkit-animation: spinner 600ms infinite linear;
    animation: spinner 600ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*END PRELOADER DESIGN*/

/* #Back To Top
================================================== */

.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 17px;
	color: #4342F5;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 17px;
	opacity: 0;
	background-image: linear-gradient(298deg, #6721FF, #00C4FF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}

.progress-wrap svg.progress-circle path {
	stroke: #4342F5;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*
	Legacy navigation (retained for non-header usage)
*/

.site-logo{
	width: 120px;
	display: block;
}

.global-header.navShadow {
	background: rgba(25, 35, 55, 0.96);
	box-shadow: 0 18px 45px rgba(11, 31, 63, 0.28);
}

.login_btn{
	color: #fff;
	display: inline-block;
	padding: 7px 26px;
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
	border-radius: 50em;
	transition: .5s;
	font-size: 15px;
	font-weight: 500;
}
.login_btn:hover,
.login_btn:focus{
	color: #fff;
	background: #4342F5;
}

.login_btn img {
	width: 19px;
	display: inline-block;
	padding-top: 4px;
}

.border_btn{
	color: #4342F5;
	border: 1px solid #4342F5;
	display: inline-block;
	padding: 7px 25px;
	border-radius: 30px;
	font-weight: 500; 
	font-size: 15px;
	transition: .5s;
}
.border_btn:hover,
.border_btn:focus{
	color: #fff;
	background: #4342F5;
	border-color: #4342F5;
}

.border_btn img {
	width: 19px;
	display: inline-block;
	padding-top: 4px;
}
.light .border_btn:hover,
.light .border_btn:focus{
	color: #fff!important;
}

.border_small_btn{
	color: #4342F5;
	border: 1px solid #4342F5;
	display: inline-block;
	padding: 7px 25px;
	border-radius: 30px;
	font-weight: 500; 
	font-size: 15px;
	transition: .5s;
}
.border_small_btn:hover,
.border_small_btn:focus{
	color: #fff;
	border: 1px solid #fff;
}

.border_small_btn img {
	width: 19px;
	display: inline-block;
	padding-top: 4px;
}
.light .border_small_btn:hover,
.light .border_small_btn:focus{
	color: #fff!important;
}






/* Drop Down Menu */

.navigation ul li{
	position: relative;
}
.navigation ul li i{
	font-size: 10px;
	position: relative;
	top: -1px;
	margin-left: 1px;
}
.navigation ul li ul{	
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	position: absolute;
	border: none;
	top: 80px;
	left: 0;
	width: 205px;
	z-index: 99;
	display: block;
	opacity: 0;
	visibility: hidden;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 0px;
}

.navigation ul li ul li {
	padding: 0;
	border-bottom: 1px solid #f1f1f1;
	display: block;
	text-align: left;
}
.navigation ul li ul li:last-child {
	border-bottom: 0px solid transparent;
}

.navigation ul li ul li a {
	text-transform: capitalize;
	padding: 8px 15px;
	margin: 0;
	position: relative;
	color: #0b0b31;
	font-size: 15px;
	font-weight: 500;
	transition: .5s;
}
.navigation ul li ul li a:hover{
	background: #4342F5;
	color: #fff;
}
.navigation ul li:hover ul {
	opacity: 1;
	visibility: visible;
	top: 100%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
/* Mobile Menu */

#mobile_menu{
	display: none;
}

.slicknav_menu{
	position: relative;
}
.slicknav_menu i{
	display: none;
}
.slicknav_nav{
	position: absolute;
}
.slicknav_menu .slicknav_icon{
	font-size: 22px;
}
.slicknav_btn,
.slicknav_btn:hover,
.slicknav_btn:focus{
	color: #fff;
}
.slicknav_nav{
	text-align: left;
	top: 36px;
	left: 0;
	width: 100%;
}

.try_intelliphant {
	background-size: cover;
	position: relative;
	padding-top: 20px;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	transform-origin: bottom;
	background-color: #111827;
}


/* Slider */

.home-slider-area {
	background-size: cover;
	position: relative;
	padding-top: 20px;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	transform-origin: bottom;
	background-color: #111827;
}

.home-slider-area .main_btn:hover,
.home-slider-area .main_btn:focus{
	color: var(--white);
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
}





.home-top-menu{
	height: 350px;	
}
.single-slide1,
.home-top-menu .row{
	height: 100%;
}





.home-slider1{
	height: auto;
}

.single-slide1,
.home-slider1 .row{
	height: auto;
}


.home-slider{
	height: auto;
}
.single-slide{
	position: relative;
	z-index: 1;
	color: var(--white);
}
.single-slide,
.home-slider .row{
	height: auto;
}
.slider-content{
	padding-right: 25%;
}
.single-slide h2 span {
	background: linear-gradient(90deg, #7B3EFF 45.53%, #00C4FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}


.single-slide h2 {
	color: var(--white);
	font-size: 40px;
	line-height: 61px;
	margin-bottom: 18px;
}
.light .single-slide h2{
	color: #fff;
}
.single-slide  p{
	padding-bottom: 20px;
}
.slider-image{
	position: relative;
	min-height: 340px;
}
.slider-image .atom{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.bud-1 {
	position: absolute;
	top: 13%;
	right: 70%;
}
.bud-2 {
	position: absolute;
	bottom: 36%;
	right: -4%;
}

.bud-3 {
	position: absolute;
	bottom: 20%;
	left: -4%;
}

.bud-4 {
	position: absolute;
	bottom: 0%;
	left: 65%;
}

.single-budge {
	background: #192337;
	color: #fff;
	display: inline-block;
	padding: 8px 18px;
	border-radius: 4px;
}
.single-budge img {
	display: inline-block;
	padding-right: 10px;
	width: 48px;
	float: left;
	padding-top: 3px;
}
.bud_content{
	display: inline-block;
}
.bud_content h4 {
	font-size: 15px;
	margin-bottom: 0;
	line-height: 10px;
	padding-top: 7px;
}
.bud_content span {
	color: #fff;
	font-size: 12px;
}

.vid_btn{
	text-decoration: underline;
}
.slider-content .vid_btn {
	margin-left: 22px;
	margin-top: 0;
	display: inline-block;
	color: var(--white);
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
	padding: 7px 25px;
	display: inline-block;
	font-weight: 500;
	border-radius: 25px;
	font-size: 15px;
	transition: .8s;
	position: relative;
	overflow: hidden;
	z-index: 1;	
	text-decoration: none;
}

.slider-content .vid_btn:hover,
.slider-content .vid_btn:focus{
	background-color: #4342F5;
	border-color: #4342F5;
}
/* Start About */


.about-us{
	padding-top: 50px;
	position: relative;
}
.shape_1 img,
.shape_2 img{

}
.shape_1 {
	position: absolute;
	left: 0;
	top: 21%;
	z-index: -1;
}
.shape_2{
	position: absolute;
	right: 0;
	top: 21%;
	z-index: -1;
}
.bubble_6 {
	position: absolute;
	top: 8%;
	left: 29%;
}

.bubble_7 {
	position: absolute;
	top: 36%;
	left: 67%;
}

.bubble_8 {
	position: absolute;
	top: 19%;
	right: 17%;
}

.bubble_9 {
	position: absolute;
	bottom: 10%;
	right: 6%;
}
.about-content h2{
	margin-bottom: 40px;
}
.about-content .border_btn{
	color: #fff;
	margin-bottom: 60px;
	
}
.light .about-content .border_btn{
	color: #222;
}	
.about-content ul{
	list-style-type: none;
	padding-left: 0;
	font-weight: 500;
}
.about-content li {
	width: 50%;
	float: left;
	margin-bottom: 23px;
}
.about-content li i {
	font-size: 10px;
	width: 21px;
	text-align: center;
	height: 21px;
	line-height: 21px;
	border: 1px solid #4569E7;
	color: #4569E7;
	border-radius: 50%;
	margin-right: 5px;
}

/* Light*/

.light h1, 
.light h2, 
.light h3, 
.light h4, 
.light h5, 
.light h6{
	color: #222;
}
.light {
	color: #444;
}

.light{
	background-color: #fff;
}
.light.about-us{
	color: #444;	
	padding-top: 100px;
}
.light.about-us .about-content h2{
	color: #222;
}
.light.about-us .about-content li{
	color: #444;
}

/* End  About */


/* Start Service */

.services{
	position: relative;
	padding-bottom: 50px
}

.bubble_10 {
	position: absolute;
	top: 4%;
	left: 16%;
}
.bubble_11 {
	position: absolute;
	top: 8%;
	left: 57%;
}

.bubble_12 {
	position: absolute;
	bottom: 20%;
	right: 3%;
}
.bubble_13 {
	position: absolute;
	bottom: -6%;
	left: 59%;
}

.bubble_14 {
	position: absolute;
	bottom: 19%;
	left: 52%;
}

.bubble_15 {
	position: absolute;
	bottom: 8%;
	left: 11%;
}
.single-service {
	border: 1px solid #2D4C70;
	border-radius: 10px;
	padding: 15px 30px 10px 30px;
	margin-bottom: 30px;
}
.light .single-service {
	border-color: #cdd4de;
}
.single-service img{
	width: 80px;
	margin-bottom: 20px;
}

.single-service h3 {
	font-size: 23px;
	margin-bottom: 15px;
}

.light.services .single-service h3{
	color: #222;
}

/* End Service */

/* Start Counter */

.counter-up{
	background-color: #111827;
	position: relative;
	z-index: 1;
}
.counter-up:before{
	content: '';
	left: 0;
	top: 0;
	position: absolute;
	background-image: url(../img/counter-shape1.png);
	width: 300px;
	height: 239px;
	z-index: -1;
	opacity: .5;
}

.counter-up:after{
	content: '';
	right: 0;
	bottom: 0;
	position: absolute;
	background-image: url(../img/counter-shape2.png);
	background-size: contain;
	width: 300px;
	height: 239px;
	z-index: -1;
	opacity: .5;
}
.counter-title h2{
	margin-bottom: 40px;
}
.counter{
	text-align: center;
	background: #E2E2FC;
	border-radius: 4px;
	padding: 40px 10px 30px;
	margin-bottom: 30px;
}
.counter .number ,
.counter .number h3{
	color:#6B6BD4;
	font-size: 32px;
	font-weight: 700;
}
.counter .number h3{
	display: inline-block;
}
.counter span{
	color: #393939;
	font-weight: 500;
	font-size: 16px;
}
.c-2{
	background: #B9DCFF;
}
.c-2 .number ,
.c-2 .number h3{
	color:#0984E3;
}

.c-3{
	background: #C2FCEC;
}
.c-3 .number ,
.c-3 .number h3{
	color:#00B894;
}

.c-4{
	background: #FFD4CA;
}
.c-4 .number ,
.c-4 .number h3{
	color:#E17055;
}

.light .counter-title h2{
	color: #fff;
}

/* End Counter */


/* Start Pricing */

.pricing-table{
	padding-top: 50px;
	padding-bottom: 100px;
}
.pricing-tab {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-tab span{
    vertical-align: middle;
}
.pricing-tab .pricing-tab-switcher {
	height: 24px;
	width: 70px;
	background: rgba(103, 33, 255, 0.2);
	display: inline-block;
	border-radius: 30px;
	position: relative;
	transition: all 0.3s ease;
	margin: 0 18px;
	transform: translateY(-3px);
}
.pricing-tab .pricing-tab-switcher:hover{
    cursor: pointer;
}

.pricing-tab .pricing-tab-switcher::before {
	content: '';
	position: absolute;
	left: 7px;
	top: 3px;
	background: #4342F5;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	transition: all 0.3s ease;
}

.pricing-tab .pricing-tab-switcher.active:before {
    left: calc(100% - 33px)
}
.annual_price{
	display: none;
}
.change-subs-duration .monthly_price{
	display: none;
}
.change-subs-duration .annual_price{
	display: block;
}
.monthly_tab_title,
.annual_tab_title{
	font-weight: 700;
	font-size: 19px;
}

.annual_tab_title p {
	display: inline-block;
	padding-left: 4px;
	font-weight: 400;
	font-size: 13px;
	color: #FDCB6E;
}
.light .annual_tab_title p {
	color: #7B3EFF;
}

.pricing-tab{
	margin-bottom: 30px;
	text-align: center;
}
.single-pricing{
	background-color: #192337;
	text-align: center;
	border-radius: 10px;
	padding: 50px 30px;
	margin-bottom: 30px;
}
.single-pricing img{
	width: 45px;
	display: inline-block;
	margin-bottom: 20px;
}
.pricing-amount {
	background: #fff;
	font-size: 18px;
	font-weight: 500;
	color: #393939;
	padding: 3px 16px;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 30px;
}
.single-pricing h3{
	margin-bottom: 20px;
}
.single-pricing ul{
	list-style-type: none;
	margin-bottom: 30px;
	padding-left: 0;
}
.single-pricing ul li{
	line-height: 31px;
}
.grborder-btn{
	color: #fff;
	background: linear-gradient(#192337, #192337) padding-box,
	linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	border-radius: 50em;
	border: 1px solid transparent;
	display: inline-block;
	padding: 6px 26px;
}
.light .grborder-btn{
	background: linear-gradient(#fff, #fff) padding-box,
	linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	color: #7B3EFF;
}

.light.pricing-table {
	padding-top: 100px;
}
.light .single-pricing{
	background: #fff;
	border: 1px solid #cdd4de;
}
/* End Pricing */

/* Start Tools Area */
.tools-area{
	background-repeat: no-repeat;
	background-size: cover;
	
}
.single-tools{
	text-align: center;
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 30px;
}
.single-tools img{
	display: inline-block;

}
.ticon{
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #4342F5;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 15px;
}
.single-tools h3{
	color: #000;
	font-size: 23px;
}
.single-tools a{
	color: #393939;
}

/* End Tools Area */

/* Start Video Area */
#video_player{
	width: 100%;
	margin-bottom: 40px;
}
#video_player .vp-title{
	display: none;
}

/* End Video Area */

/* Start Testimonials Area */
.rev_content{
	border: 1px solid #2D4C70;
	padding: 30px 40px 30px 80px;
	border-radius: 10px;
}
.light .rev_content{
	border: 1px solid #cdd4de;
}

.single-review {
	position: relative;
	width: 59%;
	margin: 0 auto;
	transform: translateX(75px);
}
.rev_img {
	position: absolute;
	left: -127px;
	top: 45px;
}
.rev_img::before {
	content: '';
	background-image: url(../img/icons/quote.svg);
	left: -30px;
	position: absolute;
	top: -14px;
	width: 50px;
	height: 73px;
}
.rev_img img{
	width: 170px;
}
.rev_rating {
	color: #FFD700;
	font-size: 14px;
	margin-bottom: 5px;
}
.rev_content p{
	margin-bottom: 20px;
}
.rev_content h3{
	font-size: 17px;
	margin-bottom: 2px;
}
.rev_content span{
	font-size: 14px;
}
.review-slider .slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: auto;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	top: -97px;
	right: 0;
}
.review-slider .slick-dots li button::before {
	color: #7B3EFF;
	opacity: 1;
	font-size: 10px;
	border-radius: 50%;
	line-height: 17px;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
}
.review-slider .slick-dots li {
	margin: 0 3px;
}
.review-slider .slick-dots li.slick-active  button::before {
	outline: 1px solid #7B3EFF ;
}


/* End Testimonials Area */


/* Start FAQ */
.accordion-item,
.accordion-button,
.accordion-button:not(.collapsed){
	background-color: #192337;
	color: #fff;
	border-color: #192337;
	box-shadow: inherit;
}
.accordion-item{
	margin-bottom: 30px;
	border-radius: 10px;
	padding: 5px;
}
.accordion-button{
	color: #fff;
	font-size: 22px;
}
.accordion-button:not(.collapsed){
	color: #00C4FF;
	padding-bottom: 5px;
}
.accordion-button:focus{
	box-shadow: inherit;
}
.accordion-body{
	font-size: 16px;
}
.accordion-button::after{
	background-image: var(--bs-accordion-btn-active-icon);
}

.light .accordion-item, 
.light .accordion-button, .light 
.accordion-button:not(.collapsed) {
	background-color: #F6F6F6;
	color: #444;
	border-color: #F6F6F6;
	box-shadow: inherit;
}

.light .accordion-item, 
.light .accordion-button, 
.light .accordion-button:not(.collapsed) {
	border-color: #d8d2d2;
}
.light .accordion-item:not(:first-of-type){
	border-top: 1px solid #d8d2d2;
}


/* End FAQ */

/* Start Team */
.pb_100{
	padding-bottom: 100px;
}
.single-team{
	position: relative;
	margin-bottom: 30px;
}
.single-team img{
	border-radius: 10px;
}
.team-content {
	background-color: #fff;
	color: #000;
	text-align: center;
	padding: 20px;
	width: 70%;
	border-radius: 7px;
	position: absolute;
	bottom: 20px;
	left: 34%;
	overflow: hidden;
	height: 93px;
	transition: .6s;
}
.team-content::after {
	content: '';
	background: linear-gradient(0deg, #7B3EFF 45.53%, #00C4FF 100%);
	width: 6px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.single-team:hover .team-content{
	padding-bottom: 108px;
}
.team-content h3{
	color: #000;
	font-size: 20px;
	margin-bottom: 0;
}
.team-content span {
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
}
.team-content ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	transition: .5s;
	transform: translateY(200%);
}
.single-team:hover ul{
	transform: translateY(0%);
}
.team-content ul li{
	display: inline-block;
	padding-top: 8px;

}
.team-content ul li a{
	width: 25px;
	height: 25px;
	line-height: 25px;
	border: 1px solid #6721FF;
	display: block;
	border-radius: 50%;
	margin: 0 3px;
	color: #000;
	font-size: 13px;
}

/* End Team */


/* Start Partner */

.partner-area {
	background: #192337;
	padding: 50px;
	border-radius: 10px;
	margin-bottom: -70px !important;
	position: relative;
	z-index: 99;
}

/* End Partner */

/* Start CTA */
.cta-area{
	background-size: cover;
	background-color: #6C4EFF;
	padding-top: 100px;
}
.cta-area span{
	display: block;
	margin-bottom: 15px;
}
.light .cta-area span,
.light .cta-area h2{
	color: #fff;
}
.cta-area h2 {
	font-size: 35px;
	margin-bottom: 25px;
}

.cta_btn {
	background: #fff;
	color: #222;
	padding: 9px 25px;
	border-radius: 30px;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
}
.cta_btn:hover,
.cta_btn:focus{
	color: #222;
}
.cta_btn i{
	background: linear-gradient(90deg, #7B3EFF 45.53%, #00C4FF 100%);
	color: #fff;
	width: 25px;
	height: 25px;
	line-height: 25px;
	border-radius: 50%;
	font-size: 12px;
	margin-left: 3px;
}


/* End CTA */

/* Start Contact */

.contact-info-area .section-title{
	margin-bottom: 40px;
}
.contact-info-area{
	padding-right: 50px;
}

.use-case-contact-info-area .section-title {
		margin-bottom: 40px;
	}

.use-case-contact-info-area {
	padding-right: 50px;
}

.social_options{
	list-style-type: none;
	padding: 0;
	margin-top: 30px;
}
.contact-info i{
	padding-right: 5px;
}
.social_options li{
	display: inline-block;
	margin-right: 10px;
}
.social_options li a{
	background: linear-gradient(#111827, #111827) padding-box, linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	border: 1px solid transparent;
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: #12A8FF;
	border-radius: 50%;
	display: block;
	text-align: center;
	font-size: 14px;
}
.light .social_options li a{
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	
}
.contact-form{
	padding: 40px;
	background-color: #192337;
	border-radius: 10px;
	border: 1px solid #476180;
	margin-left: 80px;
}

.light .contact-form{
	background-color: #F6F6F6;
	border: 1px solid #9099a6;
}
.contact-form .form-control,
.form-control{
	border: 1px solid #476180;
	background: transparent;
	color: #fff;
	height: 45px;
	line-height: 45px;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 400;
}
.light .contact-form .form-control, .form-control{
	border: 1px solid #9099a6;
}
.form-control::-webkit-input-placeholder { /* Chrome */
 color: #fff;
}
.form-control::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #fff;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #fff;
}

.light .form-control::-webkit-input-placeholder { /* Chrome */
 color: #444;
}
.light .form-control::placeholder {
  color: #444;
  opacity: 1; /* Firefox */
}

.light .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #444;
}

.light .form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #444;
}

.light .contact-form .form-control, .form-control {

	color: #444;
}
.contact-form .form-control:focus,
.form-control:focus
{
	border: 1px solid #6721FF;
	box-shadow: inherit;
	background: transparent;
}
.contact-form textarea.form-control{
	height: 140px;
	text-align: left;
}
.contact-form .main_btn {
	position: relative;
	padding-right: 33px;
}
.contact-form .main_btn::after {
	position: absolute;
	content: '';
	background-image: url(../img/icons/arrow-top.svg);
	width: 11px;
	height: 11px;
	top: 17px;
	right: 15px;
	background-size: cover;
}
.form-control:focus{
	border-color: #6721FF;
}

/* End Contact */

/* Footer */

.footer{
	padding: 0px 0 10px;
	color: var(--white);
	background-color: #111827;
}
.footer-about{
	padding-right: 50px;
}
.single-footer{
	margin-bottom: 40px;
}
.footer-about .site-logo{
	margin-bottom: 25px;
}
.footer-about p{
	margin-bottom: 22px;
}
.footer-about ul li{
	display: inline-block;
	padding-right: 5px;
}
.footer h3{
	color: var(--white);
	font-size: 22px;
	margin-bottom: 25px;
}

.footer ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.footer a{
	color: var(--white);
}
.footer ul li {
	line-height: 32px;
	margin-right: 2px;
}
.footer-about ul li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: var(--green);
	display: block;
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
}
.newsletter-area form{
	position: relative;
}
.newsletter-area button {
	background: transparent;
	border: 1px solid transparent;
	position: absolute;
	top: 10px;
	right: 12px;
}
.newsletter-area .form-control{
	color: #fff;
}
.newsletter-area button img{
	width: 18px;
}
.copyright {
	border-top: 1px solid rgb(255, 255, 255, 0.09);
	padding-top: 30px;
}

.light.footer{
	padding-top: 80px;
}

.light.footer .form-control::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

.light.footer .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #ffffff;
}

.light.footer .form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #ffffff;
}

.light.footer .form-control::-webkit-input-placeholder { /* Chrome */
 color: #ffffff;
}
.light.footer .form-control::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

.light.footer .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #ffffff;
}

.light.footer .form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #ffffff;
}

/*
* ----------------------------------------------------------------------------------------
* 19.START Thank You DESIGN
* ----------------------------------------------------------------------------------------
*/

.thankyou-text{
	
}
.thankyou-text h2{
	font-size: 30px;
	margin-bottom: 40px;
}

/* Home 2 */

.banner-2.home-slider-area{
	position: relative;
}
.banner-2.home-slider-area:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: .8;
}
.banner-2 .bubble_2,
.banner-2 .bubble_3,
.banner-2 .bubble_4,
.banner-2 .bubble_5{
	z-index: 1;
}
.banner-2 .bubble_3 {

	left: 46%;
	bottom: 14%;
}
.banner-2 .slider-content{
	padding-right: 0;
}

.banner-2 .single-slide p {
	padding: 0 0 20px;
}

.home-2 .single-review {
	position: relative;
	width: auto;
	margin-left: 170px;
	transform: translateX(0px);
	margin-bottom: 30px;
}


/* ------------------------------------------------------------------
   Global header overrides (Scale.com inspired navigation)
-------------------------------------------------------------------*/
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.global-header {
	background-color: transparent;
	border-bottom: none;
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow 0.2s ease;
}

.global-header__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: 80px;
}

.global-header__logo img {
	height: 36px;
	width: auto;
	display: block;
}

.global-header__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	position: relative;
}

.global-header__nav-list {
	display: flex;
	gap: 28px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.global-header__item {
	position: relative;
}

.global-header__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	padding: 12px 0;
	text-decoration: none;
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.2s ease;
}

.global-header__link:hover,
.global-header__link:focus {
	color: #7aa6ff;
	outline: none;
}

.global-header__item--has-panel .global-header__link {
	padding-right: 20px;
}

.global-header__chevron {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-top: 2px;
}

.global-header__item.is-open > .global-header__link .global-header__chevron,
.global-header__item:focus-within > .global-header__link .global-header__chevron {
	transform: rotate(-135deg);
}

.global-header__panel {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 32px;
	background: linear-gradient(135deg, rgba(10, 16, 31, 0.98), rgba(22, 32, 58, 0.98));
	border-radius: 18px;
	box-shadow: 0 30px 80px rgba(8, 12, 26, 0.65);
	min-width: 640px;
	display: flex;
	gap: 32px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.global-header__panel--wide {
	min-width: 760px;
	width: min(900px, 90vw);
}

.global-header__item.is-open > .global-header__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

@media (min-width: 992px) {
	.global-header__item--has-panel:hover > .global-header__panel {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}
}

.global-header__panel-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
	gap: 24px;
}

.global-header__panel[data-nav-panel="services"] .global-header__panel-grid {
	gap: 16px 12px;
	grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.5fr);
}

.global-header__panel[data-nav-panel="services"] .global-header__panel-group:last-child {
	padding-right: 20px;
}

.global-header__panel[data-nav-panel="services"] {
	min-width: 720px;
	width: min(840px, 90vw);
}

.global-header__panel-grid--compact {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.global-header__panel-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.global-header__panel-group--two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 16px;
	row-gap: 10px;
}

.global-header__panel-group--two-column > .global-header__panel-title {
	grid-column: 1 / -1;
}

.global-header__panel-title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(180, 198, 255, 0.65);
	margin-bottom: 8px;
}







.global-header__persona-roles-overview-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.global-header__persona-roles-overview-panel-link::before {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 12px;
	background-image: url("/assets/img/icons/top-menu/persona-roles-overview.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
}

.global-header__persona-roles-overview-panel-link:hover,
.global-header__persona-roles-overview-panel-link:focus {
	background-color: rgba(88, 120, 255, 0.28);
	color: #ffffff;
	outline: none;
}








.global-header__software-developer-persona-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.global-header__software-developer-persona-panel-link::before {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 12px;
	background-image: url("/assets/img/icons/top-menu/software-developer-persona.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
}

.global-header__software-developer-persona-panel-link:hover,
.global-header__software-developer-persona-panel-link:focus {
	background-color: rgba(88, 120, 255, 0.28);
	color: #ffffff;
	outline: none;
}








.global-header__engineer-ai-cloud-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__engineer-ai-cloud-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/engineer-ai-cloud.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__engineer-ai-cloud-panel-link:hover,
	.global-header__engineer-ai-cloud-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}














.global-header__operations-manager-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__operations-manager-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/operations-manager.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__operations-manager-panel-link:hover,
	.global-header__operations-manager-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}













.global-header__sme-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__sme-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/subject-matter-expert.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__sme-panel-link:hover,
	.global-header__sme-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}










.global-header__scrum-master-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__scrum-master-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/scrum-master.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__scrum-master-panel-link:hover,
	.global-header__scrum-master-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}










.global-header__product-manager-person-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__product-manager-person-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/product-manager-person.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__product-manager-person-panel-link:hover,
	.global-header__product-manager-person-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}













.global-header__robotic-persona-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.global-header__robotic-persona-panel-link::before {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 12px;
	background-image: url("/assets/img/icons/top-menu/robotic_person.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
}

.global-header__robotic-persona-panel-link:hover,
.global-header__robotic-persona-panel-link:focus {
	background-color: rgba(88, 120, 255, 0.28);
	color: #ffffff;
	outline: none;
}









.global-header__site-reliability-engineer-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__site-reliability-engineer-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/site-reliability-engineer.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

.global-header__site-reliability-engineer-panel-link:hover,
.global-header__site-reliability-engineer-panel-link:focus {
	background-color: rgba(88, 120, 255, 0.28);
	color: #ffffff;
	outline: none;
}






.global-header__human_resource_persona-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__human_resource_persona-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/human_resource_persona.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__human_resource_persona-panel-link:hover,
	.global-header__human_resource_persona-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}







.global-header__try_persona-demo-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.global-header__try_persona-demo-panel-link::before {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 12px;
	background-image: url("/assets/img/icons/top-menu/try_persona-demo.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
}

	.global-header__try_persona-demo-panel-link:hover,
	.global-header__try_persona-demo-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}



.global-header__why-aistein-persona-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__why-aistein-persona-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/why-aistein-persona.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__why-aistein-persona-panel-link:hover,
	.global-header__why-aistein-persona-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}







.global-header__consulting-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__consulting-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/consulting.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__consulting-panel-link:hover,
	.global-header__consulting-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}






.global-header__strategy-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__strategy-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/strategy.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__strategy-panel-link:hover,
	.global-header__strategy-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}






.global-header__implementation-support-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__implementation-support-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/implementation-support.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__implementation-support-panel-link:hover,
	.global-header__implementation-support-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}






.global-header__persona_playbooks-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__persona_playbooks-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/persona_playbooks.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__persona_playbooks-panel-link:hover,
	.global-header__persona_playbooks-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}





.global-header__assessment-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__assessment-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/assessment.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__assessment-panel-link:hover,
	.global-header__assessment-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}



.global-header__assessment-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__assessment-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/assessment.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__assessment-panel-link:hover,
	.global-header__assessment-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}





.global-header__our-team-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__our-team-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/our-team.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__our-team-panel-link:hover,
	.global-header__our-team-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}




.global-header__contact-us-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__contact-us-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/contact-us.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__contact-us-panel-link:hover,
	.global-header__contact-us-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}



.global-header__terms-of-use-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__terms-of-use-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/terms-of-use.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__terms-of-use-panel-link:hover,
	.global-header__terms-of-use-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}




.global-header__privacy-notice-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__privacy-notice-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/privacy-notice.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__privacy-notice-panel-link:hover,
	.global-header__privacy-notice-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}



.global-header__about-us-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__about-us-panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/about-us.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

	.global-header__about-us-panel-link:hover,
	.global-header__about-us-panel-link:focus {
		background-color: rgba(88, 120, 255, 0.28);
		color: #ffffff;
		outline: none;
	}



.global-header__panel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	color: rgba(226, 234, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

	.global-header__panel-link::before {
		content: "";
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 12px;
		background-image: url("/assets/img/icons/top-menu/persona-roles-overview.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		flex-shrink: 0;
		box-shadow: 0 10px 20px rgba(8, 15, 40, 0.25);
	}

.global-header__panel-link:hover,
.global-header__panel-link:focus {
	background-color: rgba(88, 120, 255, 0.28);
	color: #ffffff;
	outline: none;
}

.global-header__panel-link--highlight {
	color: #ffffff;
	font-weight: 600;
}

.global-header__panel-link-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

.global-header__panel-link-title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	color: inherit;
}

.global-header__panel-link-desc {
	font-size: 13px;
	line-height: 1.4;
	color: rgba(210, 220, 255, 0.75);
	transition: color 0.2s ease;
}

.global-header__panel-link:hover .global-header__panel-link-desc,
.global-header__panel-link:focus .global-header__panel-link-desc {
	color: rgba(240, 246, 255, 0.92);
}

.global-header__panel-link--highlight .global-header__panel-link-title {
	font-weight: 600;
}

.global-header__panel-link--highlight .global-header__panel-link-desc {
	color: rgba(224, 234, 255, 0.78);
}

.global-header__panel-link--highlight:hover .global-header__panel-link-desc,
.global-header__panel-link--highlight:focus .global-header__panel-link-desc {
	color: #ffffff;
}

.global-header__cta {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 26px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	background: rgba(17, 24, 39, 0.52);
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 10px 20px rgba(8, 15, 40, 0.32);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.global-header__cta:hover,
.global-header__cta:focus {
	background: rgba(78, 108, 255, 0.9);
	border-color: rgba(160, 190, 255, 0.6);
	color: #ffffff;
	box-shadow: 0 16px 30px rgba(47, 107, 255, 0.35);
	outline: none;
}

.global-header__action--primary:hover,
.global-header__action--primary:focus {
	background: linear-gradient(135deg, #214bcc, #4a36ef);
	color: #ffffff;
}

.global-header__menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(11, 31, 63, 0.35);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.global-header__menu-toggle:hover,
.global-header__menu-toggle:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
	outline: none;
}

.global-header__menu-icon,
.global-header__menu-icon::before,
.global-header__menu-icon::after {
	display: block;
	width: 18px;
	height: 2px;
	background: #ffffff;
	border-radius: 999px;
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.global-header__menu-icon::before,
.global-header__menu-icon::after {
	content: '';
	position: absolute;
	left: 0;
}

.global-header__menu-icon::before {
	top: -6px;
}

.global-header__menu-icon::after {
	top: 6px;
}

.global-header--menu-open .global-header__menu-icon {
	background: transparent;
}

.global-header--menu-open .global-header__menu-icon::before {
	transform: translateY(6px) rotate(45deg);
}

.global-header--menu-open .global-header__menu-icon::after {
	transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1199.98px) {
	.global-header__panel {
		min-width: 520px;
	}

	.global-header__panel-grid {
		grid-template-columns: minmax(0, 2.25fr) minmax(0, 1fr);
		gap: 20px;
	}

	.global-header__panel-group {
		gap: 4px;
	}

	.global-header__panel-group--two-column {
		column-gap: 12px;
		row-gap: 8px;
	}

	.global-header__panel-group--two-column > .global-header__panel-title {
		margin-bottom: 4px;
	}

	.global-header__panel-link {
		padding: 6px;
		gap: 8px;
		font-size: 14px;
	}

	.global-header__panel-link::before {
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.global-header__panel-link-desc {
		font-size: 12px;
	}
}

@media (max-width: 991.98px) {
	.global-header {
		position: sticky;
		top: 0;
		background: rgba(17, 24, 39, 0.92);
	}

	.global-header__inner {
		flex-wrap: wrap;
		gap: 16px;
		padding: 12px 0;
	}

	.global-header__menu-toggle {
		display: inline-flex;
		order: 2;
	}

	.global-header__nav {
		order: 3;
		width: 100%;
		display: none;
	}

	.global-header--menu-open .global-header__nav {
		display: block;
	}

	.global-header__nav-list {
		flex-direction: column;
		align-items: stretch;
		padding: 12px 0;
		gap: 0;
	}

	.global-header__item {
		border-bottom: 1px solid rgba(11, 31, 63, 0.08);
	}

	.global-header__link {
		width: 100%;
		justify-content: space-between;
		padding: 16px 4px;
		font-size: 18px;
	}

	.global-header__panel {
		position: static;
		transform: none;
		box-shadow: none;
		border-radius: 0;
		padding: 16px 0 24px;
		min-width: 100%;
		display: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.global-header__panel--wide {
		width: 100%;
		min-width: 100%;
	}

	.global-header__panel-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 0 4px;
	}

	.global-header__panel-link {
		font-size: 16px;
	}

	.global-header__panel-link-title {
		font-size: 16px;
	}

	.global-header__panel-link-desc {
		font-size: 13px;
	}

	.global-header__panel-group--two-column {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.global-header__panel[data-nav-panel="services"] .global-header__panel-group:last-child {
		padding-right: 0;
	}

	.global-header__panel[data-nav-panel="services"] .global-header__panel-grid {
		gap: 12px;
		grid-template-columns: 1fr;
	}

	.global-header__panel[data-nav-panel="services"] {
		min-width: 100%;
		width: 100%;
	}

	.global-header__item.is-open > .global-header__panel {
				position: relative;
		display: block;
	}

	.global-header__cta {
		order: 4;
		width: 100%;
		display: none;
		justify-content: center;
		margin-left: 0;
		margin-top: 12px;
	}

	.global-header--menu-open .global-header__cta {
		display: inline-flex;
	}
}

@media (max-width: 575.98px) {
	.global-header__inner {
		gap: 12px;
	}

	.global-header__link {
		font-size: 16px;
	}
}



