/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#205dea !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, .6); */
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 900px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: transparent;
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    /* background: var(--bs-secondary); */
    transition: .8s;
}

.carousel-control-next {
    width:60px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: transparent;
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    /* background: var(--bs-secondary); */
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: #205dea;
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: #205dea;
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background:#205dea;
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}
.page-header2 {
    background: linear-gradient(rgba(0, 0, 0, -2), rgba(0, 0, 0, .6)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header2 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header2 .breadcrumb-item,
.page-header2 .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}
/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background:#205dea;
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: #205dea;
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: 5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/
.tabs-features {
	width: 100%;
}

.tabs-features .nav-link {
	position: relative;
	z-index: 0;
	padding: 5px 0 5px 20px;
	border-radius: 35px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	cursor: pointer;
	color: #262f3c;
	transition: .22s;
}

.tabs-features .nav-link::before {
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
	margin-top: 5px;
	top: .5em;
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 17px;
	border-radius: 35px;
	background: #205dea;
	transition: none;
}

.tabs-features .nav-item {
	border: 1px solid transparent;
}

.tabs-features .nav-item + .nav-item {
	margin-top: 5px;
}

.tabs-features .tab-content {
	position: relative;
	z-index: 1;
	background-position: center center;
	background-size: cover;
	max-width: 100%;
	flex-shrink: 0;
}

.tabs-features .tab-content::before {
	content: '';
	display: block;
	padding-bottom: 56.35104%;
}

.tabs-features .tab-pane {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	background-position: center center;
	background-size: cover;
	border-radius: 4px;
	box-shadow: 0 2px 10px 0 rgba(75, 81, 91, 0.15);
}

.tabs-features * + .nav-tabs,
.tabs-features * + .navigation-custom {
	margin-top: 15px;
}

.tabs-features .tabs-features-aside + .tab-content {
	margin-top: 30px;
}

@media (max-width: 767.98px) {
	.tabs-features {
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}
	.tabs-features .nav-link::before {
		transition: .22s;
	}
	.tabs-features .tab-content {
		background: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.tabs-features .tab-content {
		margin-left: -50px;
		margin-right: -50px;
	}
}

@media (min-width: 768px) {
	.tabs-features .nav-tabs {
		padding-left: 5px;
	}
	.tabs-features .nav-item + .nav-item {
		margin-top: 10px;
	}
	.tabs-features .tab-content {
		max-width: 866px;
		flex-grow: 1;
	}
	.tabs-features .tab-pane {
		top: 6.2%;
		left: 13.9%;
		right: 13.4%;
		bottom: 12%;
		border-radius: 0;
		box-shadow: none;
	}
}

@media (min-width: 992px) {
	.tabs-features {
		position: relative;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		margin-right: -40px;
	}
	.tabs-features .tabs-features-aside {
		width: 28%;
		padding-top: 15px;
		max-width: 340px;
		flex-shrink: 0;
		flex-grow: 1;
	}
	.tabs-features .tabs-features-aside + .tab-content {
		margin-top: 0;
		margin-left: 20px;
	}
}

@media (max-width: 1199.98px) {
	.tabs-features .nav-link.active::before {
		background: #16b6d2;
	}
}

@media (min-width: 1200px) {
	.tabs-features .nav-tabs {
		padding-left: 20px;
	}
	.tabs-features .tabs-features-aside {
		max-width: 370px;
	}
	.tabs-features .nav-link::after {
		content: '';
		position: absolute;
		top: 50%;
		transform: translate3d(0, -50%, 0);
		left: 100%;
		width: 300px;
		border-bottom: 1px solid #ebebeb;
		opacity: 0;
		visibility: hidden;
	}
	.tabs-features .nav-link.active {
		padding-top: 18px;
		/* padding-bottom: 18px; */
		margin: 7px 0;
		background: #ebebeb;
	}
	.tabs-features .nav-link.active::before {
		opacity: 0;
		visibility: hidden;
		transition: .11s;
	}
	.tabs-features .nav-link.active::after {
		opacity: 1;
		visibility: visible;
		transition: .11s;
	}
	.tabs-features * + h3,
	.tabs-features * + .heading-3 {
		margin-top: 24px;
	}
	.tabs-features * + .nav-tabs,
	.tabs-features * + .navigation-custom {
		margin-top: 50px;
	}
}

@media (min-width: 1600px) {
	.tabs-features {
		margin-right: -100px;
	}
}

@media (min-width: 768px) {
	.tabs-line .nav-item {
		transform: translate3d(0, 0, 0);
		will-change: transform;
	}
	.tabs-line .nav-link {
		position: relative;
		font-size: 19px;
	}
	.tabs-line .nav-link span {
		position: relative;
		display: inline-flex;
		padding: 12px 2px 13px;
		margin-bottom: -1px;
	}
	.tabs-line .nav-link span::after {
		content: '';
		position: absolute;
		right: 0;
		left: auto;
		bottom: 0;
		height: 3px;
		width: 0;
		transition: .33s;
		background: #16b6d2;
	}
	.tabs-line .nav-link.active span::after {
		left: 0;
		right: auto;
		width: 100%;
	}
	.tabs-line * + .nav-tabs {
		margin-top: 25px;
	}
	.tabs-line .tabs-line-toggle + .nav-tabs {
		margin-top: 0;
	}
	* + .tabs-line_1 {
		margin-top: 20px;
	}
	.tabs-horizontal.tabs-line .nav-tabs {
		border: 0;
		border-bottom: 1px solid #ebebeb;
	}
	.tabs-horizontal.tabs-line .nav-item {
		display: inline-block;
		margin-bottom: -1px;
	}
	.tabs-horizontal.tabs-line .nav-item:not(:last-child) {
		margin-right: 52px;
	}
	.tabs-horizontal.tabs-line * + .tab-content {
		margin-top: 30px;
	}
	.tabs-horizontal.tabs-line.tabs-line_1 .nav-tabs {
		text-align: left;
		border-bottom: 0;
	}
	.tabs-horizontal.tabs-line.tabs-line_1 .nav-link span {
		padding-bottom: 8px;
	}
	.tabs-vertical {
		display: flex;
		align-items: flex-start;
	}
	.tabs-vertical .nav-tabs {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
	.tabs-vertical .nav-item {
		border: 0;
		width: 100%;
		text-align: left;
	}
	.tabs-vertical .nav-link.active {
		background-color: transparent;
	}
	.tabs-vertical .tab-content {
		flex-grow: 1;
	}
	.tabs-vertical.tabs-line {
		align-items: stretch;
		margin-left: -35px;
	}
	.tabs-vertical.tabs-line > * {
		margin-left: 35px;
	}
	.tabs-vertical.tabs-line .nav-tabs {
		flex-shrink: 0;
		max-width: 50%;
		min-width: 200px;
	}
	.tabs-vertical.tabs-line .nav-tabs-outer {
		position: relative;
		flex-shrink: 0;
		max-width: 50%;
		min-width: 200px;
	}
	.tabs-vertical.tabs-line .nav-tabs-outer .nav-tabs {
		width: 100%;
		max-width: 100%;
	}
	.tabs-vertical.tabs-line .nav-item {
		padding-right: 10px;
		border-bottom: 1px solid #d7d7d7;
		cursor: default;
	}
	.tabs-vertical.tabs-line .nav-item:first-child .nav-link span {
		padding-top: 0;
	}
	.tabs-vertical.tabs-line .nav-item + .nav-item {
		margin-top: 8px;
	}
	.tabs-vertical.tabs-line .tab-content {
		margin-top: 0;
	}
	.tabs-vertical.tabs-line-1 .nav-tabs {
		width: 32%;
	}
	.tabs-vertical.tabs-line-1 .nav-tabs-outer {
		width: 32%;
	}
	.tabs-vertical.tabs-line-1 .nav-tabs-outer .nav-tabs {
		width: 100%;
	}
}

@media (min-width: 992px) {
	.tabs-horizontal.tabs-line .nav-link span {
		padding-bottom: 16px;
	}
	.tabs-vertical.tabs-line {
		margin-left: -50px;
	}
	.tabs-vertical.tabs-line > * {
		margin-left: 50px;
	}
	.tabs-vertical.tabs-line .nav-tabs {
		width: 370px;
		min-width: 370px;
		border-bottom: 0;
	}
	.tabs-vertical.tabs-line .nav-tabs-outer {
		width: 370px;
		border-bottom: 0;
	}
	.tabs-vertical.tabs-line .nav-tabs-outer .nav-tabs {
		width: 100%;
	}
	.tabs-vertical.tabs-line .nav-link span {
		padding: 15px 2px;
	}
}

@media (min-width: 1200px) {
	.tabs-line .nav-link {
		font-size: 22px;
	}
	.tabs-vertical.tabs-line {
		margin-left: -90px;
	}
	.tabs-vertical.tabs-line > * {
		margin-left: 90px;
	}
	.tabs-vertical.tabs-line .nav-item + .nav-item {
		margin-top: 11px;
	}
}


.box-modern {
	padding: 25px 15px;
	border-radius: 7px;
	box-shadow: -1px 9px 18px 0px rgba(75, 81, 91, 0.1);
	background: #ffffff;
	text-align: center;
}

.box-modern-title {
	font-family: Muli, sans-serif;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0;
	color: #262f3c;
}

.box-modern-media {
	position: relative;
	padding: 20px 0;
	font-size: 60px;
	line-height: 1;
	min-height: 1.3em;
	width: 1.9em;
	margin-left: auto;
	margin-right: auto;
}

.box-modern-circle-1,
.box-modern-circle-2 {
	position: absolute;
	border-radius: 50%;
}

.box-modern-circle-1 {
	left: 0;
	bottom: 15px;
	width: 1.016em;
	height: 1.016em;
	background: rgba(96, 145, 248, 0.15);
}

.box-modern-circle-2 {
	top: 10px;
	right: 10px;
	width: 0.44em;
	height: 0.44em;
	background: rgba(255, 241, 124, 0.15);
}

.box-modern_alternate .box-modern-circle-1 {
	top: 15px;
	bottom: auto;
}

.box-modern_alternate .box-modern-circle-2 {
	top: auto;
	bottom: 10px;
}

.box-modern_alternate-1 .box-modern-circle-1 {
	right: 10px;
	left: auto;
}

.box-modern_alternate-1 .box-modern-circle-2 {
	right: auto;
	left: auto;
}

.box-modern-icon {
	position: relative;
	z-index: 2;
	right: -5%;
	font-size: inherit;
	color: #6090f7;
	opacity: .7;
}

.box-modern-sm .box-modern-media {
	width: 1.7em;
}

.box-modern-sm .box-modern-icon {
	opacity: 1;
}

* + .box-modern-text {
	margin-top: 12px;
}

@media (max-width: 575.98px) {
	.box-modern {
		max-width: 370px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 768px) {
	.box-modern {
		padding: 45px 10px;
	}
	.box-modern-title {
		font-size: 22px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.box-modern {
		padding-left: 9px;
		padding-right: 9px;
	}
}

@media (min-width: 1200px) {
	.box-modern {
		padding-top: 50px;
		padding-bottom: 60px;
	}
	.box-modern-media {
		font-size: 85px;
	}
	.box-modern-title {
		font-size: 24px;
	}
	.box-modern-text {
		font-size: 14px;
		line-height: 24px;
	}
	* + .box-modern-text {
		margin-top: 24px;
	}
	.box-modern-sm .box-modern-media {
		font-size: 64px;
	}
	.box-modern-sm .box-modern-title {
		font-size: 22px;
	}
	.box-modern-sm .box-modern-text {
		font-size: 14px;
	}
}

@media (min-width: 1600px) {
	.box-modern-title {
		font-size: 26px;
	}
	.box-modern-text {
		font-size: 17px;
	}
}
.row-flex > [class*="col-"] {
	display: -ms-flexbox;
	display: flex;
}

.row-flex > [class*="col-"] > * {
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.box-veronika {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	border: 2px solid #eaeced;
	border-top: 0;
	text-align: left;
	cursor: default;
	margin-top: 60px;
	color: #fff;
}

.box-veronika p {
	letter-spacing: .05em;
}
.box-veronika__title{
color: yellow;
}

.box-veronika:hover,
.box-veronika:hover .box-veronika__icon-outer::before,
.box-veronika:hover .box-veronika__icon-outer::after {
	border-color: #ccc;
}

.box-veronika:hover .box-veronika__icon,
.box-veronika:hover .box-veronika__title {
	color: #ffff00;
}

.box-veronika,
.box-veronika__icon-outer::before,
.box-veronika__icon-outer::after,
.box-veronika__icon,
.box-veronika__title {
	transition: .33s;
}

.box-veronika__inner {
	position: relative;
	overflow: hidden;
	padding-top: 20px;
	margin-bottom: 10px;
}

.box-veronika__icon-outer {
	display: block;
	position: relative;
	margin: 0 40px -20px auto;
	width: 90px;
	text-align: center;
}

.box-veronika__icon-outer::before, .box-veronika__icon-outer::after {
	content: '';
	position: absolute;
	top: 0;
	border-bottom: 2px solid #eaeced;
	width: 100vw;
}

.box-veronika__icon-outer::before {
	left: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.box-veronika__icon-outer::after {
	right: 0;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.box-veronika__icon {
	position: relative;
	display: inline-block;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	font-size: 30px;
	line-height: 1;
	background: linear-gradient(0deg, transparent, transparent);
	background: -webkit-linear-gradient(0deg, #ffff00, #ffff00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #3a7bd5;
}

.box-veronika__main {
	padding: 30px 25px;
}

.box-veronika__icon-sm {
	font-size: 22px;
}

.box-veronika__icon-md {
	font-size: 35px;
}

@media (max-width: 767px) {
	.box-veronika {
		max-width: 370px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 576px) {
	.box-veronika__title {
		max-width: 95%;
	}
}

@media (min-width: 992px) {
	.box-veronika__main {
		padding: 35px 20px;
	}
}

@media (min-width: 1200px) {
	.box-veronika__inner {
		top: -25px;
		padding-top: 25px;
	}
	.box-veronika__main {
		padding: 30px 50px;
	}
	.box-veronika__icon {
		font-size: 50px;
	}
	.box-veronika__icon-sm {
		font-size: 28px;
	}
	.box-veronika__icon-md {
		font-size: 45px;
	}
}

.sevices-w3layouts p.w-text {
    margin-top: 1em;
}
.sevices-w3layouts-row {
    margin-top: 4em;
}
.sevices-w3layouts-grids {
    padding: 3em 1.5em;
    width: 22.5%;
    position: relative;
    transition: .5s all;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    overflow: hidden;
    text-align: center;
    box-shadow: -10px 12px 20px rgba(158, 156, 156, 0.59);
}
.sevices-w3layouts-grids.sevices-w3layouts-mdl {
    margin: 0 2.3em;
}
.sevices-w3layouts-grids.sevices-w3layouts-mdl1 {
    margin-right: 2.5em;
}
.sevices-w3layouts-grids h5 {
    font-size: 1.8em;
    text-transform: capitalize;
    letter-spacing: .5px;
    color: #000000;
}
.sevices-w3layouts-img h6 {
    font-size: 1.7em;
    text-transform: capitalize;
    letter-spacing: .8px;
    padding: 1em 0;
    color: #ffffff;
}
.sevices-w3layouts-img p {
    font-size: 12px!important;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: #ffffff!important;
    display: inline-block;
    padding: 0 10px;
    margin: 0!important;
    border-bottom: 1px solid #fff;
}
.sevices-w3layouts-grids p {
	margin-top: 1em;
	font-size:15px;
	line-height:1.8em;
	color:#676565;
}
.sevices-w3layouts-row .social-icons {
    margin: 1em 0 0;
}
.sevices-w3layouts-img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
	transition: .7s all;
	-webkit-transition: .7s all;
	-moz-transition: .7s all;
}
.c1{
	background: #008cff; /* Old browsers */
	
	background: -moz-linear-gradient(45deg, #008cff 1%, #81a7ee 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #008cff 1%,#81a7ee 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #008cff 1%,#81a7ee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008cff', endColorstr='#81a7ee',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.c2{
	background: #01d6f2; /* Old browsers */
	background: -moz-linear-gradient(45deg, #01d6f2 2%, #58bdec 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #01d6f2 2%,#58bdec 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #01d6f2 2%,#58bdec 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#01d6f2', endColorstr='#58bdec',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.c3{
	background: #3a7bd5; /* Old browsers */
	background: -moz-linear-gradient(45deg, #3a7bd5 2%, #86b6fa 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #3a7bd5 2%,#86b6fa 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #3a7bd5 2%,#86b6fa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a7bd5', endColorstr='#86b6fa',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.c4{
	background: #03a9f4; /* Old browsers */
	background: -moz-linear-gradient(45deg, #03a9f4 2%, #5fcdff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #03a9f4 2%,#5fcdff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #03a9f4 2%,#5fcdff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03a9f4', endColorstr='#5fcdff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.sevices-w3layouts-img i {
    color: #fff;
    font-size: 3em;
    margin-top: 1em;
}
.sevices-w3layouts-grids:hover div.sevices-w3layouts-img {
	top:100%;
}
/* Default styles for large screens (4 items in a row) */
.sevices-w3layouts-grids {
    width: 22.5%;
}

/* Medium devices (tablets, 768px and up) - 2 items in a row */
@media (max-width: 991.98px) {
    .sevices-w3layouts-grids {
        width: 48%; /* Adjusted to fit 2 items per row with some margin */
       
    }
    .sevices-w3layouts-grids.sevices-w3layouts-mdl,
    .sevices-w3layouts-grids.sevices-w3layouts-mdl1 {
        margin: 2em 0;
    }
}

/* Small devices (phones, less than 768px) - 1 item per row */
@media (max-width: 767.98px) {
    .sevices-w3layouts-grids {
        width: 100%;
        padding: 2em 1em;
    margin-bottom: 2em;
    }
    .sevices-w3layouts-grids h5 {
        font-size: 1.5em;
    }
    .sevices-w3layouts-img h6 {
        font-size: 1.4em;
    }
    .sevices-w3layouts-img p {
        font-size: 10px!important;
        letter-spacing: 2px;
    }
    .sevices-w3layouts-grids p {
        font-size: 14px;
    }
    .sevices-w3layouts-row {
        margin-top: 2em;
    }
    .sevices-w3layouts-img i {
        font-size: 2.5em;
    }
    .sevices-w3layouts-grids.sevices-w3layouts-mdl,
    .sevices-w3layouts-grids.sevices-w3layouts-mdl1 {
		margin-top: 0em ;
    }
}
/*
* Blurb icon fill
*/
.blurb-icon-fill .icon {
	position: relative;
	width: 100px;
	height: 100px;
	font-size: 60px;
	line-height: 100px;
	color: #ffffff;
	background: #205dea;
	border-radius: 50%;
	margin: 10px auto;
}

.blurb-icon-fill .icon:before {
	position: relative;
	z-index: 1;
}

.blurb-icon-fill .icon > span {
	position: absolute;
	top: -3px;
	right: -25px;
	z-index: -1;
	font-size: 40px;
	font-weight: 900;
	line-height: 1;
	color: #f5f5f7;
}

.blurb-icon-fill .exeption {
	color: #828590;
}

.blurb-icon-fill * + .title {
	margin-top: 15px;
}

.blurb-icon-fill * + .exeption {
	margin-top: 8px;
}

@media (min-width: 1200px) {
	.blurb-icon-fill .icon {
		width: 130px;
		height: 130px;
		font-size: 90px;
		line-height: 130px;
	}
	.blurb-icon-fill .icon > span {
		top: -8px;
		right: -41px;
		font-size: 60px;
	}
	.blurb-icon-fill * + .title {
		margin-top: 30px;
	}
	.blurb-icon-fill * + .exeption {
		margin-top: 17px;
	}
}

.img-bordered {
	border-radius: 6px;
}

* {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .cjfw1 {
    display: flex;
    width: 100%;
    padding: 20px;
  }

  .left-side {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    gap: 10px;
	margin-right: 10px;
  }

  .left-side div {
    flex: 1 1 45%; /* 每个div占据一半减去gap的空间 */
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
	box-shadow: 0 4px 8px 0 rgba(0, 102, 255, 0.1);
	cursor: pointer;
  }
 

  .left-side img, .left-side h3 {
    width: 100%;
    max-width: 100px; /* 控制图标大小 */
    height: auto;
	margin: 10px auto;
  }

  .right-side {
    width: 50%;
    position: relative;
  }

  .carousel {
    width: 100%;
    overflow: hidden;
    height: 400px; /* 确保轮播图有固定高度 */
  }

  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }

  .carousel-item {
    min-width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .carousel-item.active {
    opacity: 1;
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片填充整个轮播项 */
  }

  /* 轮播控制按钮 */
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  /* 响应式设计 - 小屏幕（移动设备） */
  @media (max-width: 768px) {
    .cjfw1 {
      flex-direction: column; /* 左右两侧内容垂直排列 */
      padding: 10px;
    }

    .left-side {
      width: 100%;
      gap: 5px;
    }

    .left-side div {
      flex: 1 1 48%; /* 每个div占据一半减去gap的空间 */
      padding: 10px;
    }

    .right-side {
      width: 100%;
      margin-top: 10px;
    }

    .carousel {
      height: 300px; /* 减少轮播图的高度 */
    }

    .carousel-control {
      padding: 8px;
    }
  }

  /* 响应式设计 - 中等屏幕（平板设备） */
  @media (min-width: 769px) and (max-width: 1024px) {
    .left-side {
      width: 40%;
    }

    .right-side {
      width: 60%;
    }

    .carousel {
      height: 350px; /* 调整轮播图的高度 */
    }
  }

  /* 响应式设计 - 大屏幕（桌面设备） */
  @media (min-width: 1025px) {
    .left-side {
      width: 45%;
    }

    .right-side {
      width: 55%;
    }

    .carousel {
      height: 450px; /* 增加轮播图的高度 */
    }
  }

  /* 调整字体大小 */
  @media (max-width: 768px) {
    .left-side h3 {
      font-size: 16px;
    }

    .carousel-control {
      font-size: 24px;
    }
  }

  @media (min-width: 769px) {
    .left-side h3 {
      font-size: 18px;
    }

    .carousel-control {
      font-size: 32px;
    }
  }

  

  .cpjs4 {
    display: flex;
    width: 100%;
    padding: 20px;
	background-image: url(../img/app-bg.jpg);
	background-size: cover;  /* 让背景图片覆盖整个容器 */
    background-position: center;  /* 让背景图片居中 */
    background-repeat: no-repeat;  /* 防止背景图片重复 */
  }

  /* 左边的大 div */
  .left-section {
    width: 30%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 20px;
	margin-right: 10px;
    text-align: center;
  }

  .left-section img {
	margin-top: 10px;
    width: 200px;
    height: 200px;
    object-fit: contain; /* 确保图标不会变形 */
  }
  .left-section h6 {
	margin-top: 20px;
   
  }

  .left-section h3 {
    margin-top: 10px;
  }

  /* 右边的大 div */
  .right-section {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* 右边的小 div */
  .right-section .small-div {
    flex: 1 1 30%; /* 每个小 div 占据 30% 的宽度 */
    min-width: 200px; /* 设置最小宽度，防止在小屏幕上过窄 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
  }
  .right-section .small-div:hover {
	background-color: #f5f5f7;
	cursor: pointer;
  }

  .right-section .small-div img {
    width: 80px;
    height: 80px;
    object-fit: contain; /* 确保图标不会变形 */
  }

  .right-section .small-div h6 {
    margin-top: 10px;
  }

  /* 响应式设计 - 小屏幕（移动设备） */
  @media (max-width: 768px) {
    .cpjs4 {
      flex-direction: column; /* 左右两侧内容垂直排列 */
      padding: 10px;
    }

    .left-section {
      width: 100%;
      margin-bottom: 10px;
    }

    .right-section {
      width: 100%;
    }

    .right-section .small-div {
      flex: 1 1 48%; /* 每个小 div 占据一半减去gap的空间 */
      min-width: 150px;
    }
  }

  /* 响应式设计 - 中等屏幕（平板设备） */
  @media (min-width: 769px) and (max-width: 1024px) {
    .left-section {
      width: 40%;
    }

    .right-section {
      width: 60%;
    }

    .right-section .small-div {
      flex: 1 1 48%; /* 每个小 div 占据一半减去gap的空间 */
      min-width: 180px;
    }
  }

  /* 响应式设计 - 大屏幕（桌面设备） */
  @media (min-width: 1025px) {
    .left-section {
      width: 30%;
    }

    .right-section {
      width: 70%;
    }

    .right-section .small-div {
      flex: 1 1 30%; /* 每个小 div 占据 30% 的宽度 */
      min-width: 200px;
    }
  }