body{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	background-color: #14192d;
	font-family: Sora;
}
h1{
	color: #FFF;
	text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.52);
	font-family: Sora;
	font-size: 54px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
h2{
	color: #FFF;
	font-family: Sora;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	margin: 0px;
}
h3{
	color: #FFF;
	font-family: Sora;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}
p{
	color: #BBB;
	font-family: Sora;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}
input::placeholder {
	color: #999;
	font-family: Sora;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
}
.tag{
	border-radius: 100px;
	background: #242F4B;
	padding: 8px 29px;
	color: #FFF;
	font-family: Sora;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
}
.theme-btn{
	border-radius: 8px;
	background-color: #88BA14;
	border: 1px solid #88BA14;
	padding: 12px 24px;
	color: #FFF;
	font-family: Sora;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
	display: inline-block;
	transition: all 0.4s;
	width: max-content;
}
.theme-btn:hover{
	background-color: #61860D;
	border-color: #61860D;
}
.bg-with-shape{
	background-image: url(../images/inner-service-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.desktop-hide{
	display: none;
}
.header{
	background: rgba(36, 47, 75, 0.10);
	backdrop-filter: blur(25px);
	padding: 16px 0px;
	position: fixed;
	width: 100%;
}
.header .navbar-brand{
	padding: 0px;
	margin: 0px;
}
.header .navbar-collapse .navbar-nav {
	justify-content: center;
	width: 85%;
	gap: 42px;
}
.header .navbar-collapse .navbar-nav .nav-link {
	color: #FFF;
	font-family: Sora;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 16px 0px;
	position: relative;
	transition: all 0.4s;
}
.header .navbar-collapse .navbar-nav .nav-link:hover{
	font-weight: 700;
}
.header .navbar-collapse .navbar-nav .nav-link:hover::before{
    background-color: #88BA14;
}
.header .navbar-collapse .navbar-nav .nav-link:before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
}
.navbar-nav li:hover > ul.dropdown-menu {
	display: block;
}
.dropdown-submenu {
	position:relative;
}
.dropdown-submenu>.dropdown-menu {
	top:0;
	left: 100%;
	margin-top:-6px;
}
.dropdown-menu {
    position: relative;
}
.dropdown-menu:before {
    width: 20px;
    height: 20px;
    border-bottom: solid 10px rgb(30 38 61);
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
    content: '';
    position: absolute;
    top: -21px;
    left: 74px;
}
.dropdown-menu.inner-dropdown:before {
    display: none;
}
.navbar-nav .nav-item ul li:last-child {
    border-bottom: 0px;
}
.header .navbar-collapse .navbar-nav .nav-link.dropdown-toggle::after {
	content: '\f078';
	border: none;
	font-family: "Font Awesome 6 Pro";
	margin: 0px;
}
.header .navbar-collapse .navbar-nav .dropdown-item.dropdown-toggle::after {
	content: '\f054';
	border: none;
	font-family: "Font Awesome 6 Pro";
	margin: 0px;
}
.header .navbar-collapse .navbar-nav .dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px;
}
.header .theme-btn{
	border: 1px solid #88BA14;
	background-color: transparent;
}
.header .theme-btn:hover{
	background-color: #88BA14;
	color: #fff;
}
.dropdown-menu {
	background: #1E263D;
	width: 246px;
	padding: 0px;
	top: 45px;
}
.dropdown-menu .dropdown-item {
	color: #fff;
	border-radius: 6px;
	padding: 6px 10px;
}
.dropdown-menu li {
	padding: 6px;
	border-bottom: 1px solid #3D445F;
}
.dropdown-menu .dropdown-item:hover {
	background: #242F4B;
	font-weight: 600;
}
.banner-section{
	padding: 100px 0px;
	height: 100vh;
	/*background-image: url('../images/banner-img.jpg');
	background-size: cover;
	background-repeat: no-repeat;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.banner-section .container {
    z-index: 9;
}
.banner-section video {
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
}
.banner-content {
	text-align: center;
}
.banner-content h1{
	margin-bottom: 50px;
}
.banner-content .theme-btn {
	padding: 20px 48px;
	width: 422px;
}
.services-section{
	padding: 100px 0px;
	background-image: url(../images/service-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
}
.main-head {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 16px;
}
.main-head.text-center {
	align-items: center;
}
.services-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.services-box{
	display: flex;
	align-items: stretch;
	border-radius: 16px;
	overflow: hidden;
}
.services-box img{
	width: 216px;
	object-fit: cover;
}
.services-box .services-content{
	padding: 24px;
	background-color: #1E263D;
	box-shadow: 0px 9px 30px 0px rgba(0, 27, 129, 0.15);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.services-box .services-content p {
	margin-bottom: 24px;
}
.services-box .services-content .theme-btn {
	width: 100%;
	text-align: center;
}
.choose-section{
	padding: 50px 0px;
	background-color: #192239;
}
.choose-content {
	margin-left: 15px;
}
.choose-point{
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 32px;
}
.choose-img img {
	width: 100%;
}
.choose-point li {
	color: #FFF;
	font-family: Sora;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	display: flex;
	align-items: center;
	gap: 10px;
}
.choose-point li i{
	color: #88BA14;
}
.client-section{
	padding: 100px 0px;
	background-color: #14192d;
}
.carousel-wrapper {
	overflow: hidden;
	margin-top: 50px;
}
.carousel {
	display: flex;
	align-items: center;
	animation: slide 10s linear infinite;
	gap: 60px;
	width: max-content;
}
.item {
	flex: 1 0 100px;
	text-align: center;
}
.item>img {
	width: auto;
	height: auto;
	object-fit: cover;
}
@keyframes slide {
	100% {
		transform: translateX(calc(-35% - 30px));
	}
}
.about-section{
	padding: 50px 0px;
	background-color: #192239;
}
.about-main-section{
	padding: 15px 0px 100px 0px;
	background-image: url(../images/about-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.about-main-img img{
	width: 100%;
}
.about-main-content {
	width: 97%;
}
.about-main-content h3 {
	margin-bottom: 12px;
}
.about-main-content p {
	text-align: justify;
}
.about-main-content ul li {
	color: #BBB;
	text-align: justify;
	font-family: Sora;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}
.about-main-content ul li b {
	color: #fff;
}
.about-main-content ul li::marker {
	color: #fff;
}
.mtb20{
	margin: 20px 0px;
}
.feature-section{
	padding: 50px 0px;
	background-color: #192239;
}
.feature-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 50px;
	margin: 32px 0px 50px 0px;
}
.feature-box {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.feature-box h3 {
	font-size: 20px;
}
.feature-btn {
	text-align: center;
}
.feature-btn .theme-btn {
	width: 294px;
	padding: 16px 50px;
}
.blog-section{
	padding: 100px 0px;
	background-image: url(../images/blog-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
}
.blog-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.blog-box img{
	width: 100%;
}
.blog-box .blog-content {
	background-color: #1E263D;
	padding: 24px;
}
.blog-box {
	border-radius: 16px;
	overflow: hidden;
}
.blog-box .blog-content .theme-btn {
	width: 100%;
	text-align: center;
	background: transparent;
}
.blog-box .blog-content .theme-btn:hover {
	background-color: #14192d;
	border-color: #88BA14;
}
.newsletter-content h3{
	margin-bottom: 0px;
	font-size: 32px;
}
.newsletter-content p{
	margin-bottom: 0px;
}
.newsletter-form{
	position: relative;
	width: 100%;
}
.newsletter-form input{
	width: 100%;
	height: 75px;
	border-radius: 16px;
	border: 1px solid #3D445F;
	background: #3D445F;
	padding: 10px 16px;
	color: #999;
}
.newsletter-form button {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	padding: 16px 40px;
}
.newsletter-form button[disabled] {
    opacity: 0.3;
}
.newsletter-form input:focus {
	outline: none;
}
.mtb100{
	margin: 100px 0px;
}
.contact-form{
	border-radius: 16px;
	background: #1E263D;
	/* box-shadow: 0px 9px 30px 0px rgba(0, 27, 129, 0.15); */
	padding: 24px;
	text-align: left;
	margin-top: 8px;
}
.input-fields input , .input-fields textarea {
	width: 100%;
	border-radius: 10px;
	border: 1px solid #3D445F;
	background: #242F4B;
	padding: 12px 16px;
	color: #999;
}
.input-fields input:focus , .input-fields textarea:focus{
	outline: none;
}
.input-fields label {
	color: #FFF;
	font-family: Sora;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 13px;
	margin-bottom: 14px;
}
.input-fields {
	margin-bottom: 24px;
}
.submit-btn {
    text-align: center;
}
.submit-btn .theme-btn {
    width: 316px;
    padding: 16px;
}
.submit-btn .theme-btn[disabled]{
	opacity: 0.3;
}
.footer{
	background-color: #192239;
	padding-top: 50px;
}
.follow {
    display: flex;
    align-items: center;
    gap: 24px;
}
.follow h4 {
    color: #FFF;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 0px;
}
.follow ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-links h3 {
    font-size: 20px;
    margin-bottom: 24px;
}
.footer-links ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-links ul li a {
    color: #BBB;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
}
.footer-links ul li {
    line-height: 100%;
}
.flex-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 50px);
}
ul.bottom-list {
    flex-direction: unset;
    gap: 24px;
}
.footer-links.footer-contact {
    height: 100%;
}
ul.bottom-list li a {
    text-decoration: underline;
}
.container-fluid.copyright-top {
    border-top: 1px solid #3D445F;
    margin-top: 32px;
}
.copyright{
	padding: 24px 0px;
	text-align: center;
}
.copyright p{
	color: #999;
	font-family: Sora;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 0px;
}
.copyright p a{
	color: #fff;
	text-decoration: none;
}
.page-banner{
	background-image: url(../images/page-banner-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	height: 315px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 88px;
}
.pagebanner-content{
	text-align: center;
}
.pagebanner-content h2 {
    margin-bottom: 20px;
}
.pagebanner-content ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px;
	padding: 0px;
	list-style: none;
	gap: 16px;
}
.pagebanner-content ul li {
    color: #BBB;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.pagebanner-content ul li i {
    color: #fff;
}
.pagebanner-content ul li a {
    color: #FFF;
    font-weight: 500;
    text-decoration: none;
}
.service-inner{
	background-image: url(../images/inner-service-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0px;
}
.service-content img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 32px;
}
.service-content .theme-btn {
    width: 280px;
    text-align: center;
	font-size: 18px;
    padding: 15px 14px;
}
.service-content h3 {
    margin-bottom: 16px;
    font-size: 32px;
}
.service-content p {
    margin-bottom: 32px;
}

.service-list-head {
    font-size: 32px;
    margin-bottom: 25px;
}
.service-list {
    list-style: none;
	padding:0;
}
.service-list > li {
    position: relative;
    margin-bottom: 28px;
	 margin-left: 55px;
}
.service-list p strong{
    color: #fff;
}
.service-list > li ul{
	list-style: square;
    color: #BBB;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-top: 10px;
    padding-left: 15px;
}
/*
.service-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro';
    color: #88BA14;
    position: absolute;
    top: 0px;
    font-size: 24px;
    left: -32px;
}
.service-list li:last-child {
    margin-bottom: 0px;
}
*/
.service-list > li:before {
    content: '';
    position: absolute;
    top: 0px;
    left: -55px;
    height: 42px;
    width: 42px;
    background-image: url(../images/icons/tick.png);
    background-size: 100%;
}
.service-list > li.iot-service-1:before { background-image: url(../images/icons/iot-icon-1.png); }
.service-list > li.iot-service-2:before { background-image: url(../images/icons/iot-icon-2.png); }
.service-list > li.iot-service-3:before { background-image: url(../images/icons/iot-icon-3.png); }
.service-list > li.iot-service-4:before { background-image: url(../images/icons/iot-icon-4.png); }
.service-list > li.iot-service-5:before { background-image: url(../images/icons/iot-icon-5.png); }
.service-list > li.iot-service-6:before { background-image: url(../images/icons/iot-icon-6.png); }
.service-list > li.iot-service-7:before { background-image: url(../images/icons/iot-icon-7.png); }
.service-list > li.iot-service-8:before { background-image: url(../images/icons/iot-icon-8.png); }
.service-list > li.iot-service-9:before { background-image: url(../images/icons/iot-icon-9.png); }

.service-list > li.cyber-service-1:before { background-image: url(../images/icons/cyber-service-1.png); }
.service-list > li.cyber-service-2:before { background-image: url(../images/icons/cyber-service-2.png); }
.service-list > li.cyber-service-3:before { background-image: url(../images/icons/cyber-service-3.png); }
.service-list > li.cyber-service-4:before { background-image: url(../images/icons/cyber-service-4.png); }
.service-list > li.cyber-service-5:before { background-image: url(../images/icons/cyber-service-5.png); }
.service-list > li.cyber-service-6:before { background-image: url(../images/icons/cyber-service-6.png); }
.service-list > li.cyber-service-7:before { background-image: url(../images/icons/cyber-service-7.png); }
.service-list > li.cyber-service-8:before { background-image: url(../images/icons/cyber-service-8.png); }
.service-list > li.cyber-service-9:before { background-image: url(../images/icons/cyber-service-9.png); }
.service-list > li.cyber-service-10:before { background-image: url(../images/icons/cyber-service-10.png); }
.service-list > li.cyber-service-11:before { background-image: url(../images/icons/cyber-service-11.png); }
.service-list > li.cyber-service-12:before { background-image: url(../images/icons/cyber-service-12.png); }

.service-list > li.it-staffing-service-1:before { background-image: url(../images/icons/it-staffing-icon-1.png); }
.service-list > li.it-staffing-service-2:before { background-image: url(../images/icons/it-staffing-icon-2.png); }
.service-list > li.it-staffing-service-3:before { background-image: url(../images/icons/it-staffing-icon-3.png); }
.service-list > li.it-staffing-service-4:before { background-image: url(../images/icons/it-staffing-icon-4.png); }

.service-list > li.monitoring-service-1:before { background-image: url(../images/icons/monitoring-icon-1.png); }
.service-list > li.monitoring-service-2:before { background-image: url(../images/icons/monitoring-icon-2.png); }
.service-list > li.monitoring-service-3:before { background-image: url(../images/icons/monitoring-icon-3.png); }
.service-list > li.monitoring-service-4:before { background-image: url(../images/icons/monitoring-icon-4.png); }

.service-list > li.cisco-service-1:before { background-image: url(../images/icons/cisco-icon-1.png); }
.service-list > li.cisco-service-2:before { background-image: url(../images/icons/cisco-icon-2.png); }
.service-list > li.cisco-service-3:before { background-image: url(../images/icons/cisco-icon-3.png); }
.service-list > li.cisco-service-4:before { background-image: url(../images/icons/cisco-icon-4.png); }
.service-list > li.cisco-service-5:before { background-image: url(../images/icons/cisco-icon-5.png); }

.service-list li h3 {
    margin-bottom: 10px;
}
.service-list li p {
    margin-bottom: 0px;
}
.service-list li p b {
    color: #fff;
}
.inner-chooseus{
	padding: 50px 0px;
	background-color: #192239;
}
.inner-chooseus .choose-content{
	margin: 0px;
}
.choose-content h3{
	font-size: 32px;
	margin-bottom: 16px;
}
.choose-list li::marker {
    color: #88BA14;
    font-size: 30px;
    line-height: 100%;
}
.choose-list {
    position: relative;
}
.choose-list li:before {
    content: '';
    border-left: 2px dashed #3D445F;
    position: absolute;
    top: 23px;
    left: -23px;
    height: 100%;
    z-index: 1;
}
.choose-list li:last-child::before {
    display: none;
}
.choose-list li {
    z-index: 9;
    position: relative;
}
.choose-list li h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.sub-services{
	background-image: url(../images/inner-service-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0px 50px 0px;
}
.sub-service-content h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.sub-service-content h2 i {
    color: #88BA14;
    font-size: 34px;
    line-height: 100%;
}
.sub-service-content .flex-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 32px 0px;
}
.sub-service-content .flex-content img {
    width: 100%;
    border-radius: 16px;
}
.sub-service-content p {
    margin-bottom: 0px;
}
.benefit-content {
    margin-top: 50px;
}
.benefit-content h3 {
    font-size: 32px;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 85px 24px;
    margin-top: 32px;
}
.benefit-box .benefit-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
/*
.benefit-box .benefit-head img {
    border-radius: 10px;
    width: 179px;
    height: 100px;
    object-fit: cover;
    flex: none;
}
*/
.benefit-box .benefit-head h3 {
    font-size: 26px;
    margin-bottom: 0px;
}
.benefit-box p {
    margin-bottom: 0px;
}
.benefit-box ul {
    margin: 20px 0px 0px 0px;
}
.benefit-box ul li {
    color: #fff;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.benefit-box ul li::marker {
    color: #88ba14;
}
.risk-section{
	padding: 50px 0px;
	background-color: #192239;
}
.risk-head{
	text-align: center;
	margin-bottom: 32px;
}
.risk-head h2{
	font-size: 32px;
}
.risk-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.risk-box img{
	margin-bottom: 16px;
}
.risk-box p{
	margin-bottom: 0px;
}
.sub-services-1{
	padding: 50px 0px;
}
.sub-services-1 .benefit-content{
	margin-top: 32px;
}
.combination-section{
	padding: 50px 0px;
	background-color: #192239;
}
.combination-head{
	text-align: center;
	margin-bottom: 10px;
}
.combination-head h2{
	font-size: 32px;
}
.combination-section .benefit-head h3{
	font-size: 26px;
}
.combination-section .benefit-box{
	margin-top: 32px;
}
.preparation-section{
	background-image: url(../images/preparation-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0px;
}
.crucial-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 24px;
	margin-top: 50px;
}
.crucial-box span {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #242F4B;
    border-radius: 14px;
}
.crucial-box span i {
    font-size: 52px;
    color: #88BA14;
}
.crucial-box h3 {
    margin: 16px 0px 10px 0px;
}
.crucial-box p{
	margin-bottom: 0px;
}
.server-section{
	padding: 50px 0px;
	background-color: #192239;
}
.zero-trust{
	padding: 50px 0px;
	background-color: #192239;
}
.zero-trust-img {
    height: 100%;
}
.zero-trust-img img{
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 16px;
}
.zero-trust-head {
    font-size: 24px;
    margin-left: 2rem;
    margin-bottom: 24px;
}
.mtb50{
	margin: 50px 0px;
}
.zero-trust-text{
	text-align: center;
}
.zero-trust-text p{
	margin-bottom: 0px;
}
.imprint-section{
	padding: 100px 0px;
}
.imprint-content ul {
    margin: 0px;
    list-style: square;
}
.imprint-content ul li {
    color: #BBB;
    font-family: Sora;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 10px;
}
.imprint-content ul li b {
    color: #fff;
}
.imprint-content ul li:last-child {
    margin-bottom: 0px;
}
.imprint-content p:last-child {
    margin-bottom: 0px;
}
.imprint-content p b {
    color: #fff;
}
.imprint-content p a {
    color: #BBB;
    text-decoration: none;
}
.mt50{
	margin-top: 50px;
}
.blogpage-section{
	padding: 100px 0px;	
}
.blogpage-section .main-head{
	gap: 10px;
}
.blogpage-section .main-head h3{
	margin-bottom: 0px;
}
.blog-main-box {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 100px;
}
.blogpage-box {
    display: flex;
    align-items: center;
    gap: 24px;
}
.blogpage-box img {
    width: 100%;
    border-radius: 16px;
}
.blogpage-box .blogpage-content h3 {
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: Sora;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.blogpage-box .blogpage-content p {
    overflow: hidden;
    color: #BBB;
    text-overflow: ellipsis;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    height: 64px;
}
.blogpage-btn{
	text-align: center;
	margin-top: 50px;
}
.blogpage-btn .theme-btn {
    background-color: transparent;
    width: 285px;
    padding: 16px 24px;
}
.blogpage-btn .theme-btn:hover{
	background-color: #88BA14;
}
.mt100{
	margin-top: 100px;
}
.bloginner-section{
	padding-top: 50px;
}
.innerblog-content h2 {
    font-size: 32px;
}
.blog-details{
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 16px 0px 24px 0px;
}
.blog-details .client{
	display: flex;
	align-items: center;
	gap: 8px;
}
.blog-details .client h5{
	color: #FFF;
	font-family: Sora;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	margin-bottom: 0px;
}
.blog-details .date{
	display: flex;
	align-items: center;
	gap: 12px;
}
.blog-details .date i{
	color: #BBB;
}
.blog-details .date p{
	margin-bottom: 0px;
}
.innerblog-content img.blog-inner-img{
	width: 100%;
	border-radius: 16px;
	margin-bottom: 32px;
}
.innerblog-content p:last-child {
    margin-bottom: 0px;
}
.bloginner-section hr{
	border-color: #3D445F;
	opacity: 1;
	margin: 50px 0px 0px 0px;
}
.pt50{
	padding-top: 50px;
}
.contact-detail {
    border-radius: 20px 0px 0px 20px;
    background: #1E263D;
    padding: 32px;
    height: 100%;
}
.cont-detail {
    margin: 50px 0px;
    padding: 0px;
    list-style: none;
}
.cont-detail li {
    color: #FFF;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.cont-detail li a {
    color: #fff;
    text-decoration: none;
}
.contact-detail p {
    margin-bottom: 0px;
}
.contact-section .col-md-5 , .contact-section .col-md-7 {
	padding: 0px;
}
.contact-section{
	box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.07);
	border-radius: 20px;
	margin-top: 50px;
}
.contact-page{
	border-radius: 0px 20px 20px 0px;
	background: #192239;
	padding: 32px;
	margin: 0px;
}


/*=============================================*/

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(36, 47, 75, 0.10);
    backdrop-filter: blur(25px);
    z-index: 99;
}
.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
nav .navbar .links {
    display: flex;
    margin: 0px;
    padding: 0px;
}
nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}
nav .navbar .links li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}
nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    display: none;
    z-index: 2;
    background: #1E263D;
    width: 246px;
    padding: 0px;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}
.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 10px;
    width: 100%;
    line-height: 100%;
}
.navbar .links li .sub-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    border-radius: 6px;
    padding: 12px 10px;
    width: 100%;
}
.navbar .links li .sub-menu .more-arrow {
    line-height: 100%;
}
.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}
.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}
.remove-before:before {
    display: none;
}
nav .navbar .links li .sub-menu:before {
    width: 20px;
    height: 20px;
    border-bottom: solid 10px rgb(30 38 61);
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
    content: '';
    position: absolute;
    top: -20px;
    left: 74px;
}
.navbar .links li .sub-menu .more span {
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 100%;
}

.navbar .links li .sub-menu .more span a {
    padding: 4px 0px;
}

.navbar .links li .sub-menu .more {
    display: inline-block;
    padding: 10px 12px;
}

.navbar .links li .sub-menu .more span:hover {
    background-color: #242F4B;
}
.navbar .links li .sub-menu a:hover {
    background: #242F4B;
    font-weight: 600;
}
.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}
.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}
.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}
.navbar .nav-links .sidebar-logo {
    display: none;
}
.navbar .fa-bars {
    display: none;
}

.service-content-para{
	font-size:18px;
}


@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 10px 25px;
    }
    nav .navbar .logo a {
        font-size: 27px;
    }
    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }
    nav .navbar .links li a {
        font-size: 15px;
    }
}
@media (max-width:800px) {
    .navbar .fa-bars {
        display: block;
    }
    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #1e263d;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
        height: 100vh;
    }
    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }
    .sidebar-logo i,
    .navbar .fa-bars {
        font-size: 25px;
        color: #fff;
    }
    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }
    nav .navbar .links li .arrow {
        line-height: 40px;
    }
    nav .navbar .links li {
        display: block;
    }
    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }
    nav .navbar .links li .sub-menu li {
        border-bottom: none;

    }
    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }
    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }
    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }
    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }
    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }
    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }
    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}
@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

.career-sec-img{
	padding: 100px 0px;
}
.job-listing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 20px;
    border-bottom: 1px solid #3D445F;
}
.job-listing-head span{
	color: #FFF;
	text-align: right;
	font-family: Sora;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
}
.search-box input{
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid #3D445F;
	background: var(--Chips, #242F4B);
}
.search-box input::placeholder{
	color: #999;
font-family: Sora;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}
.search-box{
	position: relative;
	margin-top: 30px;
}
.search-box button{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	background:transparent;
	border:none;
}
.job-head{
	display: flex;
	align-items: center;
	gap: 20px;
	flex-direction: row;
}
.career-inner .job-head{
	margin-bottom: 25px;
}
.job-head h3{
color: #FFF;
font-family: Sora;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: 130%; /* 28.6px */
margin: 0;
}
.job-head span{
	border-radius: 100px;
	background: #242F4B;
	padding: 10px 16px;
	color: #FFF;
	font-family: Sora;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	display: flex;
	align-items: center;
	gap: 10px;
}
.job-content p{
	color: #FFF;
font-family: Sora;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%;
}
.job-info span{
	display: flex;
	align-items: center;
	gap: 10px;
	color: #FFF;
	font-family: Sora;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 21px */
}
.job-info{
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 25px;
}
.job-content {
    margin: 25px 0px;
}
.job-box{
	border-radius: 16px;
border: 1px solid #3D445F;
box-shadow: 0px 9px 30px 0px rgba(0, 27, 129, 0.15);
padding: 35px;
}
.job-listing{
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 30px;
}
.career-inner-head{
	padding-bottom: 25px;
	border-bottom: 1px solid #3D445F;
	margin-bottom: 25px;
}
.career-inner-head .job-info{
	margin-bottom: 0px;
}
.career-inner-con h3{
	color: #FFF;
font-family: Sora;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: 130%; /* 28.6px */
margin-bottom: 20px;
}
.career-inner-con p , .career-inner-con li{
	color: #FFF;
font-family: Sora;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 27px */
margin: 0;
}
.career-inner-con ul{
	margin: 0;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.career-inner-con {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.job-inner-sec {
    padding: 50px 0px 0px 0px;
}
.job-inner-sec hr{
	    border-color: #3D445F;
    opacity: 1;
    margin: 50px 0px 0px 0px;
}
.accordion{
    --bs-accordion-bg:#1E263D:
}
.accordion-item{
    background: #1E263D;
    margin-top:14px;
    border:0;
}
.accordion-button:not(.collapsed){
    background: #1E263D;
    color: #BBB;
    border:0;
}
.accordion-body {
    text-align: left;
    color: #BBB;
}
button.accordion-button.collapsed {
    color: #BBB;
}
.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 11L8 5L14 11'/%3e%3c/svg%3e");
  transform:none;
}