/*
:root {
    --first-color: #ff6e6e;
    --second-color: #f80000;
    --third-color: #ff4e6f;
    --forth-color: #242068;
}
*/
:root {
    --first-color: #0f3f67;
    --second-color: #107fb6;
    --third-color: #cee3ea;
    --forth-color: #242068;
}
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body {
    font-size: 15px;
    font-weight: 400;
    color: #707070;
    overflow-x: auto;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Titillium Web', sans-serif;
    overflow-x: hidden;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-left: 10px;
    padding-right: 10px;
}
.row {
    margin-left: -10px;
    margin-right: -10px;
}
.row>* {
    padding-left: 10px;
    padding-right: 10px;
}
ol,ul {
    padding: 0px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: var(--first-color);
}
.default-padding {
    padding: 30px 60px;
}
.light-background {
    background: #f5f5f5;
}
.page-head {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.page-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--second-color);
    text-transform: uppercase;
    margin-bottom: 3px;
}
.page-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
}
/*************button*************/
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.btn.primary-btn:hover {
}
.btn.primary-btn {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, var(--second-color), var(--first-color));
    padding: 6px 20px;
    border: 0px;
}
.btn.primary-btn:hover{
    background: linear-gradient(45deg, var(--first-color), var(--second-color));
    box-shadow: 0px 2px 10px -1px rgba(0,0,0,.3);
}
.btn.searctg-btn {
    position: absolute;
    top: 4px;
    right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    background: var(--first-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    z-index: 4;
}
.btn.default-border-btn {
    font-size: 13px;
    font-weight: 400;
    color: var(--first-color);
    background: transparent;
    border: 1px solid var(--first-color);
    border-radius: 30px;
    padding: 3px 15px;
    margin: 0px 5px 5px 0px;
}
.btn.default-border-btn:hover {
	background: var(--first-color);
	color: #fff;
}
.btn.secondary-btn {
    position: relative;
    background: linear-gradient(45deg, #000, var(--second-color));
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 7px 20px;
    border: 0px;
    transition: .5s all;
}
.btn.secondary-btn:hover {
    box-shadow: 0px 2px 10px -1px rgba(0,0,0,.3);
    transform: translateY(-5px);
    background: linear-gradient(45deg, var(--second-color), #000);
}
.btn.third-btn {
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(45deg, var(--third-color), var(--second-color));
    color: #fff;
    border: 0px;
    padding: 7px 20px;
    transition: .5s all;
}
.btn.third-btn:hover {
    box-shadow: 0px 2px 10px -1px rgba(0,0,0,.3);
    transform: translateY(-5px);
    background: linear-gradient(45deg, var(--second-color), var(--third-color));
}
/*************top-header************/
.top-header {
    position: relative;
    width: 100%;
    background: transparent;
    padding: 0px 60px;
    height: 42px;
    z-index: 9;
}
.topbar-content {
    position: relative;
    display: flex;
    align-items: center;
}
.topbar-menu {
    position: relative;
    display: flex;
    margin-bottom: 0px;
}
.topbar-menu > li {
    position: relative;
}
.topbar-menu > li > a {
    position: relative;
    display: flex;
    padding: 10px 10px 10px 0px;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
}
.topbar-menu > li > a::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 1px;
    background: #f5f5f5;
}
.topbar-menu > li:last-child > a::before {
    display: none;
}
.topbar-menu > li:last-child > a {
    margin-right: 0px;
    padding-right: 0px;
}
.icon {
    margin-right: 7px;
}
/*************header************/
.header {
    position: sticky;
    left: 0px;
    right: 0px;
    width: 100%;
    top: 42px;
    z-index: 999;
    padding: 0px 60px;
    border: #fff;
}
.header.sticky-header {
    background: #fff;
    top: 0px;
    box-shadow: 0px 2px 10px -2px rgb(0 0 0 / 20%);
}
.logo {
    padding: 10px 0px;
    margin-right: 10px;
}
.logo a {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #000;
}
.logo a span {
    color: #ff6e6e;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 13px !important;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.nav-link:hover {
    color: var(--first-color);
}
.dropdown-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: 1000;
    display: block;
    min-width: 200px;
    padding: 0px;
    margin: 0;
    font-size: 15px;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ededed;
    border-radius: 0px;
    box-shadow: 0px 2px 10px -2px rgb(0 0 0 / 10%);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: .6s all;
}
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}
.auto-left {
    left: auto;
    right: 0px;
}
.scndlevel-left {
    left: auto !important;
    right: 100%;
}
.dropdown.active .nav-link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 30%;
    border: 10px solid;
    border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0px -1px 1px rgba(0,0,0,.1));
    z-index: 1002;
}
.sub-dropdown {
    position: relative;
}
.sub-dropdown.active .dropdown-item {
    color: var(--first-color);
    box-shadow: 0px 0px 10px -3px rgba(0,0,0,.2);
}
.sub-dropdown .icon-arror-toggle  {
    float: right;
}
.sub-dropdown.active .icon-arror-toggle {
    transform: rotate(90deg);
}
.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 200px;
    background: #fff;
    display: block;
    box-shadow: 2px 0px 10px -2px rgb(0 0 0 / 20%);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: .7s all;
}
.dropdown-submenu.active {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}
.nav-subitem {
    position: relative;
}
.nav-sublink {
    position: relative;
    display: block;
    padding: 6px 10px;
    color: #000;
}
.nav-subitem .nav-sublink.sub-nav-link {
    padding-left: 30px;
}
/**************home-slider************/
.banner-container-bg {
    position: relative;
    background-image: url(../image/abstract-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 70px 60px;
}
.banner-bg-left {
    left: -283px;
    top: -115px;
    width: 615px;
    height: 370px;
}
.banner_backbg {
    position: absolute;
    display: inline-block;
}
.banner-bg-right {
    right: -270px;
    bottom: 0;
    width: 930px;
}
.home-banner-wrapper {
    position: relative;
    display: flex;
}
.home-banner-item {
    position: relative;
    width: 50%;
}
.image-item img {
    max-width: 100%;
}
.home-banner-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
.home-banner-innerbox {
    position: relative;
    padding-right: 30px;
}
.banner-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 0px;
}
.banner-title {
    color: #000;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.search-box {
    position: relative;
    margin-bottom: 30px;
}
.search-box #search_home {
    color: #7b7b7b;
    font-weight: 500;
    height: Calc(23px + 18px + 3px);
    border-radius: 30px;
    font-size: 15px;
}
.popular-items {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}
.poptitle {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    width: 140px;
}
.popl-items {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
}
.popl-items li {
	display: inline-block;
	flex-shrink: 0;
}
.banner-button a {
    display: inline-block;
    margin: 0px 5px 5px 0px;
}
.cursor {
    font-weight: 200;
  display: inline-block;
    background: #000;
  width: 3px;
    line-height: 40px;
  animation: blink 1s infinite;
}
.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #000; }
  49% { background-color: #000; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #000; }
}

/*================breadcrumb-section==============*/
#breadcrumb-bg {
    position: relative;
    background: linear-gradient(45deg, var(--second-color), var(--first-color));
    padding: 30px 55px;
}
.breadcrumb-content {
    position: relative;
    text-align: center;
    display: flex;
    flex-grow: 1;
    flex-basis: auto;
}
.breadcrumb-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.breadcrumb-links {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    margin-left: auto;
}
.breadcrumb-links > li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    padding: 0px 15px;
}
.breadcrumb-links > li > a {
    position: relative;
    display: flex;
    color: #fff;
}
.breadcrumb-links > li > a::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 2px;
    width: 2px;
    height: 18px;
    background: #ddd;
    transform: rotate(15deg);
}
/***************swiper-slider*********/
.swiper-pagination-bullet {
    width: 15px;
    height: 8px;
    border-radius: 0px;
    transition: .5s all;
}
.swiper-pagination-bullet-active {
    width: 30px;
    background: var(--second-color);
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    margin-bottom: -10px;
}
/***********custome-form*************/
.form-group {
    margin-bottom: 20px;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ff6e6e;
    outline: 0;
    box-shadow: none;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--second-color);
    background-color: var(--second-color);
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}
.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: var(--second-color);
    border-color: var(--second-color);
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: var(--second-color);
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #adb5bd;
    outline: 0;
    box-shadow: none;
}
.input-group {
    flex-wrap: nowrap;
}
.input-icon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 35px;
    height: 100%;
    background: var(--second-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--second-color);
    font-size: 15px;
    color: #fff;
}
.floating-label {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}
.floating-input,
.floating-select {
    font-size: 14px;
    padding: 7px 4px 4px 40px;
    display: block;
    width: 100%;
    height: 38px;
    background-color: #fff;
    border: 1px solid var(--second-color);
}
.floating-textarea {
    font-size: 14px;
    padding: 7px 4px 4px 10px;
    display: block;
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 1px solid var(--second-color);
}
.floating-input:focus,
.floating-select:focus, .floating-textarea:focus {
    outline: none;
}

.regist_leftside label, .custome_form label {
    color: #555;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    background: #fff;
    pointer-events: none;
    left: 40px;
    top: 8px ;
    margin-bottom: 0px;
    font-weight: 500;
    transition: 0.2s ease all;
}

.floating-input:focus ~ label,
.floating-input:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 14px;
    color: var(--second-color);
}

.floating-select:focus ~ label,
.floating-select:not([value=""]):valid ~ label {
    top: -10px;
    font-size: 14px;
    color: var(--second-color);
}
.floating-textarea ~ label {
    left: 10px;
}
.floating-textarea:focus ~ label,
.floating-textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 14px;
    color: var(--second-color);
}

.floating-input:focus ~ .bar:before,
.floating-input:focus ~ .bar:after,
.floating-select:focus ~ .bar:before,
.floating-select:focus ~ .bar:after,
.floating-textarea:focus ~ .bar:before,
.floating-textarea:focus ~ .bar:after {
    width: 50%;
}
.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow-x: hidden;
}
.floating-input:focus ~ .highlight,
.floating-select:focus ~ .highlight, .floating-textarea:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
    from {
        background: #5264ae;
    }
    to {
        width: 0;
        background: transparent;
    }
}
.form-control {
    display: block;
    width: 100%;
    height: calc(20px + 16px + 2px);
    padding: 5px 8px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 0px;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--second-color);
    outline: 0;
    box-shadow: none;
}
label {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #000000;
}
label sup {
    color: red;
}
/*************client-logo************/
.client-logo-section {
    position: relative;
    padding: 15px 60px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.client-logo-item {
    position: relative;
}
.client-logo-item img {
    max-width: 100%;
	height: auto !important;
	width: auto !important;
}
.client-logo-item .image-item {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-logo-carousel .swiper-slide{
	width: 170px;
	height: auto;
}
	
#logoMarqueeSection {	
    max-width: 1920px !important;	
    margin: 0 auto;	
}	
.logoMarqueeSection > div > div {	
    padding-top: 0;	
    padding-bottom: 0;	
    min-height: 0;	
}	
.marquee-wrapper {	
    display: flex;	
    white-space: nowrap;	
    width: 100%;	
    overflow: hidden;	
}	
.marquee-slider {	
    display: flex;	
    width: 100%;	
    white-space: nowrap;	
    position: relative;	
    transform: translate3d(0%, 0, 0);	
    animation-name: marquee;	
    animation-timing-function: linear;	
    animation-iteration-count: infinite;	
    animation-duration: 57s;	
}	
.marquee-slider a {	
    display: flex;	
    justify-content: center;	
    align-items: center;	
    width: 150px;	
    height: auto;	
    white-space: nowrap;	
    margin-right: 70px;	
}	
.marqueelogo {	
    max-width: 100% !important;	
}	
.marquee-wrapper:hover .marquee-slider {	
    animation-play-state: paused !important;	
}	
@keyframes marquee {	
    0% {	
        transform: translate3d(0%, 0, 0);	
    }	
    100% {	
        transform: translate3d(-100%, 0, 0);	
    }	
}

/************service-section************/
.service-item {
    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    height: Calc(100% - 15px);
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px -1px rgb(0 0 0 / 20%);
    transition: .5s all;
}
.service-item:hover {
    transform: translateY(-10px);
}
.service-info {
    position: relative;
    text-align: center;
}
.service-img {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-img img {
    max-width: 100%;
    height: 100%;
    width: 100%;
}
.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}
.service-info p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
}
/************about-section***********/
.about-background {
    position: relative;
    background: rgba(255,255,255,.8) url(../image/service-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: color-burn;
}
.about-image {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 15px;
	padding: 60px;
}
.about-image img {
    max-width: 100%;
}
.list {
    display: block;
    margin-bottom: 20px;
}
.list > li {
    display: flex;
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 7px;
}
.list-icon {
    margin-right: 7px;
    color: var(--third-color);
}
/************choose-us*************/
.choose-image {
    position: relative;
}
.image01 {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    width: 300px;
    height: 370px;
    border-radius: 5px;
}
.image01 img {
    width: 100%;
    max-width: 100%;
    height: 100%;
}
.image02 {
    position: absolute !important;
    overflow: hidden;
    top: 35%;
    right: 35%;
    width: 300px;
    height: 370px;
    border-radius: 5px;
}
.image02 img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.image-effect:hover {
    box-shadow: 0px 2px 10px -1px rgba(0,0,0,.3);
}
.image-effect {
	position: relative;
	overflow: hidden;
    transition: .5s all;
}
	.image-effect::before {
		background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0.0) 100%
  );
		content: "";
		display: block;
		height: 100%;
		left: -75%;
		position: absolute;
		top: 0;
		transform: skewX(-25deg);
		width: 50%;
	}

	.image-effect:hover::before,
	.image-effect:focus::before  {
			animation: shine 0.85s;
		}
	@keyframes shine {
		100% {
			left: 125%;
		}
	}
.item-list {
    position: relative;
    display: block;
}
.item-list > li {
    position: relative;
    display: flex;
    font-size: 15px;
    font-weight: 400;
    border-radius: 4px;
    color: #7b7b7b;
    margin: 10px 0px;
    transition: .5s all;
}
.step-count {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: white;
    /* border: 1px solid var(--second-color); */
    border-radius: 50%;
    font-size: 17px;
    font-weight: 600;
    color: var(--second-color);
    box-shadow: 0px 0px 10px -3px rgb(0 0 0 / 30%);
}
.step-count-content {
    position: relative;
    width: Calc(100% - 40px);
    padding-left: 15px;
}
.step-count-content .sm-subtitle {
    margin-bottom: 5px;
}
.step-count-innerbox {
    position: relative;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.sm-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: #423f3f;
}
/*************resent-work***************/
.project-item {
    position: relative;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    height: Calc(100% - 15px);
    margin-bottom: 15px;
}
.project-image {
    position: relative;
    width: 100%;
    height: 282px;
    overflow: hidden;
}
.project-image::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
}
.project-image::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0px;
    width: 100%;
    height: 120px;
    transform: rotate(15deg) scale(1.2);
    background: #2e2e2e;
    z-index: 0;
    transition: .5s all;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
.project-item:hover .project-image::before {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}
.project-image img {
    max-width: 100%;
    height: 100%;
    width: 100%;
}
.project-overlayer {
    position: absolute;
    bottom: -100%;
    padding: 15px;
    left: 0px;
    width: 100%;
    transition: .5s all;
}
.project-item:hover .project-overlayer {
    bottom: 0px;
}
.project-title {
    display: block;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.project-title:hover {
    color: var(--first-color);
}
.invest-txt {
    font-size: 17px;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 10px;
}
.proj-icon {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: var(--second-color);
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
}
/***************Testimonial*************/
.testimonial-background {
    position: relative;
    background: url(../image/business-int.jpg), linear-gradient(60deg,#f80000, #000000);
    background-blend-mode: color-burn;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 70px 60px;
}
.testimonial-container {
    position: relative;
    height: auto;
    width: 100%;
}
.testimonial-item {
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 0px 10px -3px rgb(0 0 0 / 20%);
}
.testi_image-item {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}
.testi_image-item img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.testim-text {
    font-size: 16px;
    font-weight: 500;
    color: #707070;
    margin-bottom: 15px;
}
.profl-name-degree {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.quote-icon {
    position: relative;
    font-size: 40px;
    line-height: 20px;
    margin-bottom: 10px;
    color: var(--second-color);
}
.profl-name-degree-info {
    position: relative;
    width: Calc(100% - 70px);
    padding-left: 15px;
}
.name-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--third-color);
    margin-bottom: 3px;
}
.degree-text {
    font-size: 15px;
    font-weight: 500;
    color: #707070;
    margin-bottom: 0px;
}
.testimonial-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}
.testimonial-wrapper .swiper-slide {
    height: 330px;
}
.testimonial-wrapper .swiper-slide.swiper-slide-visible.swiper-slide-active {
    transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) scale(1.2) !important;
}
/***************************/
.off_project-item {
    position: relative;
    width: 100%;
    height: Calc(100% - 15px);
    margin: 10px 10px 30px;
    padding: 15px;
    background: #fff;
}
.off_project-item-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.off_project-item-img img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    transition: .5s all;
}
.off_project-item:hover .off_project-item-img img {
    transform: scale(1.1);
}
.off_project-content {
    position: relative;
    padding: 10px;
}
.off_project-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.off_project-name:hover {
    color: var(--second-color);
}
.off_project-content p {
    font-size: 16px;
    font-weight: 600;
    color: #6b6b6b;
    margin-bottom: 0px;
}
/************counter***************/
.counter-block-elements {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}
.counter-block {
    position: relative;
    width: 25%;
    padding: 0px 10px;
}
.counter-innerbox {
    position: relative;
    padding: 20px;
}
.counter-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.counter-icon {
    width: 60px;
    position: relative;
    height: 60px;
}
.counter-icon img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.counter-no {
    position: relative;
    padding-left: 15px;
    width: Calc(100% - 60px);
    font-size: 45px;
    font-weight: 700;
    color: #000;
}
.counter-content {
    font-size: 17px;
    font-weight: 600;
    color: #3f3f3f;
    line-height: 23px;
}
/************working-process************/
.wrkproc-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--third-color);
    margin-bottom: 10px;
}
.light-text {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.wrk-process-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.wrk-process-lftside {
    position: relative;
    padding: 30px 60px;
    width: 50%;
    background: rgba(0,0,0,.7) url(../image/business-int.jpg);
    background-blend-mode: color-burn;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.wrk-process-rghtside {
    position: relative;
    display: flex;
    width: 50%;
    padding: 30px 60px;
    background: var(--third-color);
}
.video-element {
    position: relative;
    margin: 50px 0px;
}
.video-button {
    position: relative;
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #212529;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border: 5px solid #fff;
    color: var(--third-color);
    margin: 0px auto;
    transition: .5s all;
}
.video-button:hover {
    background: #fff;
}
.wrk-process-innerbox {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
/*************blog-section**************/
.recent_post-item {
    position: relative;
    background: #fff;
    width: 100%;
    height: Calc(100% - 30px);
    margin-bottom: 30px;
}
.recent_post-item-img {
    height: 250px;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.recent_post-item-img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    transition: .5s all;
}
.recent_post-item:hover .recent_post-item-img img {
    transform: scale(1.2);
}
.recent_post-content {
    position: relative;
    width: 85%;
    margin: 0px auto 0px;
    text-align: center;
    background: #fff;
}
.post-inner-content {
    position: relative;
    background: #f5f5f5;
    padding: 25px 20px;
    margin: -70px 0px 15px;
    transition: .5s all;
}
.post-name {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.post-date {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.recent_post-item:hover .post-inner-content {
    background: var(--first-color);
}
.recent_post-item:hover .post-name {
    color: #fff;
}

/************scroll-top************/
.scroll-top-Button {
    position: fixed;
    right: 15px;
    bottom: 75px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--first-color);
    z-index: 99;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 30%);
}
.scroll-top-Button:hover {
    color: #fff;
}
/*===============social-icons=============*/
.social_media_icons {
    margin-bottom: 10px;
 	display: block;
    align-items: center;
}
.social_media_icons li {
    display: inline-block;
}
.social_media_icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px;
    font-size: 15px;
    color: #000;
    width: 25px;
    text-align: center;
    height: 30px;
    line-height: 31px;
    background: transparent;
    border-radius: 50% ;
    padding: 0px;
}
.social_media_icons li a.facebook{
    /*background: #4a639f; */
    color: #4a639f;
}
.social_media_icons li a.facebook:hover{
    color: #5271b3;
}
.social_media_icons li a.twitter{
    /*background: #59c8ff;  */
    color: #59c8ff;
}
.social_media_icons li a.twitter:hover{
    color: #58d1ff; 
}
.social_media_icons li a.google-plus{
    /*background: #D73D32;  */
    color: #fff;
}
.social_media_icons li a.google-plus:hover{
    color: #e64035; 
}
.social_media_icons li a.youtube{
    /*background: #cc181e;  */
    color: #cc181e;
}
.social_media_icons li a.youtube:hover{
    color: #eb1a21; 
}
.social_media_icons li a.pinterest{
    /*background: #cb2027;  */
    color: #fff;
}
.social_media_icons li a.pinterest:hover{
    color: #e32229; 
}
.social_media_icons li a.instagram{
    /*background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); */
    color: #dc2743;
}
.social_media_icons li a.instagram:hover{
    /*background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); */
	color: #bc1888;
}
.social_media_icons li a.linkedin {
    /*background: #107dfd; */
    color: #107dfd;
}
.social_media_icons li a.linkedin:hover {
    color: #0a6ee4;
}
.social_media_icons li a.whatsapp {
    /*background: #00c00e;*/
    color: #00c00e;
}
.social_media_icons li a.whatsapp:hover {
    color: #00b60d;
}
/***********cookies**********/
.cookie-elements {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding: 15px 60px;
    box-shadow: 0px -3px 10px -2px rgb(0 0 0 / 20%);
}
.cookie-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-content {
    position: relative;
    display: flex;
    align-items: center;
}
.cookie-txt {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}
.cookie-accpt-button {
    margin-left: 15px;
}
/*********footer*********/
.footer {
    position: relative;
    background: #fff;
}
.top-footer {
    position: relative;
    padding: 20px 60px;
}
.footer-elements {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0px -7px;
}
.footer-block {
    position: relative;
    width: 20%;
    padding: 0px 7px;
    margin-bottom: 15px;
}
.footer-logo {
    width: 100px;
    position: relative;
    height: auto;
    margin-bottom: 15px;
}
.footer-logo img {
    max-width: 100%;
}
.footer-head {
    position: relative;
    margin-bottom: 10px;
}
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 0px;
}
.footer-link {
    position: relative;
    display: block;
    margin-bottom: 0px;
}
.footer-link li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #ddd;
    margin-bottom: 7px;
}
.footer-link li a {
    color: #424242;
}
.footer-link li a:hover {
    color: var(--second-color);
}
.footer-add-items {
    position: relative;
    display: block;
    margin-bottom: 0px;
}
.footer-add-items li {
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #424242;
    margin-bottom: 7px;
    display: flex;
}
.footer-icon {
    margin: 5px 7px 0px 0px;
    color: var(--second-color);
    font-size: 17px;
}
.footer-add-items li a {
    color: #424242;
    display: block;
}
.downl_app-item {
    position: relative;
    display: flex;
    margin: 0px 0px;
}
.downl_app-item a {
    display: inline-block;
    width: 110px;
    height: 35px;
    margin-right: 5px;
}
.downl_app-item a img {
    max-width: 100%;
    height: 100%;
    width: 100%;
}
.bottom-footer {
    position: relative;
    padding: 10px 0px;
    border-top: 1px solid #ddd;
}
.bttm-fotter-elements {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-images {
    position: relative;
    margin-bottom: 0px;
}
.footer-images li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.footer-images li a {
    display: block;
    width: 90px;
    height: auto;
}
.footer-images li a img {
    max-width: 100%;
}
.copyright-block {
    position: relative;
}
.copyright-txt {
    font-size: 15px;
    font-weight: 400;
    color: #424242;
    margin-bottom: 0px;
}
.middle-footer {
    position: relative;
    padding: 20px 60px;
    border-top: 1px dashed #555;
}
.city-list {
    position: relative;
    display: block;
    margin: 10px 0px;
    text-align: center;
}
.city-list > li {
    position: relative;
    display: inline-block;
}
.city-list > li > a {
    position: relative;
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    padding-right: 10px;
    margin-right: 10px;
}
.city-list > li > a::before {
    content: "";
    position: absolute;
    right: 0px;
    width: 1px;
    height: 100%;
    background: #333;
}
.city-list > li:last-child > a::before {
    display: none;
}
.footer-address {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}
.address-title {
    font-size: 23px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.f-addtxt {
    font-size: 15px;
    font-weight: 400;
    color: #424242;
    margin-bottom: 0px;
}
.fot-descrip-box {
    font-size: 14px;
    font-weight: 400;
    color: #424242;
}
.main-navbarcollapse {
    display: flex;
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}
.top-resp-head {
    display: none;
}
.goback, .subgoback, .toggle-close  {
    display: none;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.talk-us {
    background-color: var(--second-color);
    position: relative;
}
.talk-us h4 {
    font-size: 25px;
    text-transform: capitalize;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
}
.talk-us .btn-custom {
    float: right;
    font-size: 18px;
    background-color: #fff;
    color: var(--second-color);
    padding: 13px 38px 10px;
}

.pricing-wrapper {
    border-radius: 5px;
    text-align: center;
}
.pricing-wrapper .pricing-header {
    position: relative;
    background: linear-gradient(45deg, var(--second-color), var(--first-color));
    border-radius: 5px 5px 0 0;
    padding: 45px 0;
    overflow: hidden;
    padding: 25px 0;
}
.pricing-wrapper .promotion {
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;
    color: #000;
}
.pricing-wrapper .rate {
    padding: 22px 0;
}
.pricing-wrapper .rate span {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}
.pricing-wrapper .rate span.price {
    font-size: 23px;
    font-weight: 400;
    color: #FFFFFF;
}
.pricing-wrapper .sign {
    font-size: 16px;
    padding: 7px 30px;
}
.pricing-wrapper .bottom {
    box-shadow: 0 10px 10px #e8e8e8;
    background-color: #fff;
}

ul.pricing-detail {
}

ul.pricing-detail li {
    font-size: 14px;
    color: #6a6a6a;
    border-bottom: 1px dotted var(--second-color);
    padding-bottom: 10px;
    padding-top: 15px;
}

span.saveings {
    font-size: 14px;
    line-height: 58px;
    color: #000;
}

span.saveings .bold {
    font-size: 18px;
    font-weight: 600;
}

ul.pricing-detail li:last-child {
    /* margin-bottom: 0; */
    /* padding-bottom: 0px; */
}


/***** Service Page ***/

/*=============== Services-details  ============*/
.ser_det_background{
	background-image: url(../image/service-main-bg.jpg);
	width: 100%;
	min-height: 580px;
	background-repeat: no-repeat;
	background-size: cover;
}
.ser_det_bg_layer{
	background-image: linear-gradient(75deg, rgba(15, 63, 103, 0.5) 10%, rgba(16, 127, 182, 0.5)) !important;
	position: relative;
	width:100%;
	height: 580px;
	padding: 0 60px;
}
.sec-layer-content {
    position: relative;
    padding-top: 90px;
    color: #fff;
	}
.sec_layer-sidebar{
	position: sticky;
	top:0;
	z-index: 1;
    background-color: #e0e0e0;
	box-shadow: 0px 0px 7px #000;
	border-radius: 4px;
	border:2px solid #007bff;
}
.sec_layer-sidebar .form-header h3 {
	background-image: linear-gradient(75deg, rgba(15, 63, 103, 0.88) 10%, rgba(16, 127, 182, 0.88)) !important;
    background-color: #007bff;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
}
.sidebar-form form{
	padding: 10px;
}
.sidebar-form form p{
	color: #000;
	font-size: 12px;
	font-weight: 700;
	padding: 8px 0px;
}
.ser_banner-header h1{
	color: #fff;
	font-size: 35px;
}
.ser_banner-header h2{
	color: #fff;
	font-size: 25px;
}
.ser_banner-header h4{
	color: #fff;
	font-size: 18px;
}
.ser_banner-header h5{
	display: inline-block;
	background: linear-gradient(45deg, #000, var(--second-color));
	margin-top: 10px;
	padding: 5px 15px;
	color: #fff;
	font-size: 18px;
}
.ser_banner-header ul {
    margin-top: 20px;
}
ul.check-list li {
    padding-left: 0px;
    text-align: justify;
}
/*
ul.check-list li:before {
    position: absolute;
    left: 0px;
    font-size: 18px;
    content: "\f00c";
    font-family: "FontAwesome";
    color: var(--forth-color);
}
*/
.check-list.item-list .step-count {
    height: 25px;
    width: 25px;
    font-size: 15px;
}
.check-list.item-list .step-count-content p {
    margin-bottom: 0;
}
.ser_banner-header ul.check-list li {
    color: #fff;
    font-size: 16px;
}
.ser_banner-header ul.check-list li:before {
	margin-right: 10px;
}
.ser_detail-tabs{
	background-color: #fff;
    box-shadow: 0px 0px 7px #b8b8b8;
    border-radius: 4px;
}
.ser_detail-tabs .nav-tabs .nav-item.show .nav-link, .ser_detail-tabs .nav-tabs .nav-link.active{
	border:0px;
	background-image: linear-gradient(75deg, rgba(15, 63, 103, 0.88) 10%, rgba(16, 127, 182, 0.88)) !important;
    color: #fff !important;
}
.ser_detail-tabs .nav-tabs .nav-link:focus, .ser_detail-tabs .nav-tabs .nav-link:hover{
	border:0px;
	background-image: linear-gradient(75deg, rgba(15, 63, 103, 0.88) 10%, rgba(16, 127, 182, 0.88)) !important;
    color: #fff !important;
}
.ser_detail-tabs .nav-tabs{
	border:0px;
	border-radius: 4px !important;
	justify-content: center;
}
.ser_detail-tabs .nav-tabs li a {
    padding: 15px 25px !important;
    display: inline-block !important;
    text-align: center !important;
    background: #fff !important;
    color: #666666 !important;
    font-size: 14px !important;
    border: none !important;
    font-weight: 600 !important;
    border-radius: 0px !important;
}
.ser_det-boxes {
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    background-color: #fff;
}

.sidebar-form {}
.sidebar-form .form-wrap {
    position: relative;
}
.sidebar-form .form-wrap svg {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 17px;
    color: #1a1a1a;
}
.sidebar-form .form-wrap .form-control {
	margin-top: 5px;
	margin-bottom: 10px;
    border: 0;
    text-transform: capitalize;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    padding-left: 35px;
}
.services-detail-tab {
    position: sticky;
    display: flex;
    top: 60px;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0px;
    background: #fff;
    z-index: 99;
    padding: 20px 60px 10px;
}
.faq-block {
    padding: 10px 0;
}
.faq-header {
    display: block;
    background: var(--second-color);
    color: var(--second-color);
    line-height: normal;
    z-index: 9;
    border: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    background-color: #FFF;
    margin: 0;
    padding: 10px 15px;
}
.faq-content {
    padding: 10px 20px;
    border: 1px solid var(--second-color);
}


.easy-step-cl {
    border-radius: 4px;
    padding: 13px 0px;
	background-color: #f6f6f6;
    height: auto;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}
.easy-step-cl img {
    border-radius: 50%;
    max-width: 100%;
    border: 3px solid #1A2C79;
    padding: 10px;
    box-shadow: 0px 0px 10px #1A2C79;
}
.easy-step-cl h4 {
    font-size: 18px;
    font-weight: 600;
    padding-top: 10px;
}
.ser-overview h3{
	font-size: 23px;
	padding: 5px 0px;
}
.sec_divider {
    width: 25%;
    height: 4px;
    background-image: linear-gradient(75deg, #1A2C79 10%, #e80566) !important;
    margin-bottom: 30px;
}
.easy-step-cl:hover h4{
	color: #1A2C79;
}
.requirements .step-count {
    width: 25px;
    height: 25px;
    font-size: 15px;
}

@keyframes spin {
  50% {
    -webkit-transform:rotateY(180deg);
    transform:rotateY(-180deg);
  }
}
/* 3d */
.easy-step-cl img {
  perspective: 800px;
  -webkit-perspective: 800px;
  -webkit-transform-orgin:right center;
  
  @include disableTapHighlightColor();
}

  .easy-step-cl:hover img{
    animation-name:spin;
    animation-iteration-count:infinite;
    animation-duration:1.2s;
    animation-timing-function:ease-in;
  }

.advantages-cl {
    border: 2px solid #bcbaba;
	box-shadow: 0px 0px 5px #bcbaba;
    padding: 17px 5px;
	color: #000;
	font-weight: 600;
	font-size: 13px;
    height: 65px;
    margin-bottom: 20px;
}
.advantages-cl:hover{
	background-color: #bcbaba;
	color: #fff;
	border:2px solid #fff;
}


/********************************************
********************************************
********* Curor Hover Effect Start *********
********************************************
********************************************/


@media (max-width: 959px) {
    #custom-cursor,
    #custom-cursor-pilot {
        display: none;
    }
}
@media (min-width: 960px) {
    #custom-cursor,
    #custom-cursor-pilot {
        height: 0px;
        left: -100px;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: -100px;
        width: 0px;
        z-index: 1000000000000000;
    }
    #custom-cursor.loaded-cursor,
    #custom-cursor-pilot.loaded-cursor {
        opacity: 1;
        left: 0px;
        top: 0px;
    }
    #custom-cursor > span,
    #custom-cursor-pilot > span {
        border-radius: 50%;
        display: block;
        height: 20px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate3d(-50%, -50%, 0);
        transition: all 250ms ease-in;
        width: 20px;
    }
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor > span,
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor-pilot > span {
        transition: all 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    #custom-cursor.basic-style span:first-child,
    #custom-cursor-pilot.basic-style span:first-child,
    #custom-cursor.async-style span:first-child,
    #custom-cursor-pilot.async-style span:first-child,
    #custom-cursor.accent-style span:first-child,
    #custom-cursor-pilot.accent-style span:first-child {
        opacity: 0.1;
    }
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor.basic-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.basic-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor.async-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.async-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor.accent-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.accent-style span:first-child {
        height: 60px;
        opacity: 0.35;
        width: 60px;
    }
    #custom-cursor.basic-style span:last-child,
    #custom-cursor-pilot.basic-style span:last-child {
        opacity: 0;
    }
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor.basic-style span:last-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.basic-style span:last-child {
        height: 0;
        opacity: 0;
        width: 0;
    }
    #custom-cursor.async-style:not([data-cursor^="icon-"]) span:last-child,
    #custom-cursor-pilot.async-style:not([data-cursor^="icon-"]) span:last-child {
        height: 0;
        opacity: 0;
        width: 0;
    }
    #custom-cursor.diff-style span:first-child,
    #custom-cursor-pilot.diff-style span:first-child {
        opacity: 1;
    }
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor.diff-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.diff-style span:first-child {
        height: 60px;
        width: 60px;
    }
    #custom-cursor {
        transition: transform 80ms ease-out, box-shadow 60ms ease-out, opacity 0ms 300ms;
    }
    #custom-cursor.diff-style {
        mix-blend-mode: difference;
    }
    #custom-cursor.accent-style span:first-child {
        opacity: 0.35;
    }
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor {
        transition: transform 150ms ease-out, opacity 0ms 300ms;
    }
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor {
        mix-blend-mode: normal;
        transition: transform 200ms ease-out, box-shadow 200ms ease-out, opacity 0ms 300ms;
    }
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor span:first-child {
        height: 90px;
        opacity: 0.35;
        width: 90px;
    }
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor span:last-child {
        background-color: transparent;
        height: 0px;
        opacity: 0;
        width: 0px;
    }
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor[data-cursor="icon-light"] span:first-child,
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor[data-cursor="icon-accent"] span:first-child {
        opacity: 0.95;
    }
    body:not(.disable-hover) [data-cursor="icon-diff"]#custom-cursor {
        mix-blend-mode: difference;
    }
    body:not(.disable-hover) [data-cursor="icon-diff"]#custom-cursor span:first-child {
        opacity: 1;
    }
    body:not(.disable-hover) [data-cursor="icon-diff"]#custom-cursor::after {
        mix-blend-mode: difference;
    }
    #custom-cursor-pilot.basic-style,
    #custom-cursor-pilot.accent-style,
    #custom-cursor-pilot.diff-style {
        display: none;
    }
    #custom-cursor-pilot.async-style {
        transition: transform 310ms ease-out, opacity 0ms 330ms;
    }
    #custom-cursor-pilot.async-style > span:first-child {
        height: 6px;
        opacity: 1;
        width: 6px;
    }
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.async-style > span:first-child,
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor-pilot.async-style > span:first-child {
        height: 0;
        opacity: 0;
        width: 0;
    }
}
#custom-cursor.link-only:not([data-cursor="pointer"]):not([data-cursor^="icon-"]) span:first-child,
#custom-cursor.link-only:not([data-cursor="pointer"]) span:last-child,
#custom-cursor-pilot.link-only:not([data-cursor="pointer"]) span {
    height: 0 !important;
    opacity: 0 !important;
    width: 0 !important;
}

@media (min-width: 960px) {
    #custom-cursor.basic-style span:first-child,
    #custom-cursor-pilot.basic-style span:first-child,
    #custom-cursor.async-style span:first-child,
    #custom-cursor-pilot.async-style span:first-child {
        background-color: #303133;
    }
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor.basic-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.basic-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor.async-style span:first-child,
    body:not(.disable-hover) [data-cursor="pointer"]#custom-cursor-pilot.async-style span:first-child {
        background-color: var(--second-color);
    }
    #custom-cursor.accent-style span:first-child,
    #custom-cursor-pilot.accent-style span:first-child {
        background-color: var(--second-color);
    }
    #custom-cursor.diff-style span:first-child,
    #custom-cursor-pilot.diff-style span:first-child {
        background-color: #ffffff;
    }
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor span:first-child {
        background-color: #303133;
    }
    body:not(.disable-hover) [data-cursor^="icon-"]#custom-cursor::after {
        color: #ffffff;
    }
    body:not(.disable-hover) [data-cursor="icon-light"]#custom-cursor span:first-child {
        background-color: #ffffff;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.075);
    }
    body:not(.disable-hover) [data-cursor="icon-light"]#custom-cursor::after {
        color: #303133;
    }
    body:not(.disable-hover) [data-cursor="icon-accent"]#custom-cursor span:first-child {
        background-color: var(--second-color);
    }
    body:not(.disable-hover) [data-cursor="icon-accent"]#custom-cursor::after {
        color: #ffffff;
    }
    body:not(.disable-hover) [data-cursor="icon-diff"]#custom-cursor span:first-child {
        background-color: #ffffff;
    }
    #custom-cursor-pilot.async-style > span:first-child {
        background-color: var(--second-color);
    }
}

/********************************************
********************************************
********* Curor Hover Effect End *********
********************************************
********************************************/

/********************************************
************** 404 Page Start ***************
********************************************/

.page404 {
    background-image: url(../images/not-f-bg.jpg);
    background-size: cover;
    padding: 150px 0;
    text-align: center;
}
.page404 h2{
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 20px 0 10px;
}
.page404 p{ text-align: center;}
.search-form{
  position: relative;
  max-width: 370px;
  margin: 30px auto;
}
.search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #0c65ed;
  color: #fff;
  outline: 0;
  border: 0;
  border-radius: 4px;
  height: 30px;
  width: 30px;
  padding-top: 3px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.search-form .form-control {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #0c65ed;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 45px;

}
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder{
  color: #1a1a1a;
}
.page404 .btn-custom{
  background-color: #0c65ed;
  color: #fff;
  padding: 11px 30px 10px;
  display: inline-block;
  margin-top: 20px;
}
.page404 .btn-custom:hover{
  background-color: #1a1a1a;
}
.cbg{
  background-color:  #ccc
}


/********************************************
************** 404 Page End ***************
********************************************/

/********************************************
************** Blog Page Start ***************
********************************************/

.default-block {
    position: relative;
    background: #fff;
    margin-bottom: 15px;
}
.blogdet-block {
    position: relative;
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}
.postdet-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.postdet-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.blog-post-details {
    position: relative;
    padding: 15px 15px;
}
.post-categ-list {
    position: relative;
    display: block;
    margin-bottom: 5px;
}
.post-categ-list li {
    position: relative;
    display: inline-block;
}
.post-categ-list li a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--second-color);
    border: 1px solid var(--second-color);
    padding: 3px 10px;
    border-radius: 30px;
    line-height: normal;
    margin: 0px 5px 5px 0px;
    transition: .5s all;
}
.post-categ-list li a:hover {
    background: var(--second-color);
    color: #fff;
}
.page-heading {
    position: relative;
    margin-bottom: 20px;
}
.post-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.post-more-infoList {
    position: relative;
    margin-bottom: 10px;
    display: block;
}
.post-more-infoList > li {
    display: inline-block;
    position: relative;
    margin: 0px 10px 5px 0px
}
.post-more-infoList > li > a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
}
.more-dropdown-menu {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0px;
    background: #fff;
    box-shadow: 0px 0px 10px -2px rgb(0 0 0 / 20%);
    min-width: 125px;
    display: block;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: .5s all;
}
.more-dropdown:hover .more-dropdown-menu {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}
.more-dropdown-menu > li {
    position: relative;
}
.more-dropdown-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 8px;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
}
.more-dropdown-menu > li > a:hover {
    color: var(--second-color);
    background: #f5f5f5;
}
.more-dropdown-menu > li .social_media_icons {
    margin-bottom: 0px;
    padding: 5px 7px;
}

.post-content {
    position: relative;
    border-top: 1px solid #ddd;
    padding: 10px 0px;
}
.content-detail-box {
    position: relative;
    padding: 15px 15px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    background: #fff;
}
.abt-authore-block {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.authore-profile {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #f5f5f5;
}
.authore-profile img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.authore-info {
    position: relative;
    width: Calc(100% - 70px);
    padding-left: 15px;
}
.flex-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    flex-basis: auto;
}
.rate-stars {
    position: relative;
    margin-bottom: 10px;
}
.rate-stars span {
    font-size: 14px;
    color: #fda300;
}
.rating-text {
    font-size: 14px;
    font-weight: 600 !important;
    color: #41464b !important;
}
.authore-name {
    font-size: 17px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0px;
}

.post_comments {
    position: relative;
}
.comment_item {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}
.comment_profile {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* background: #ddd; */
    /* padding: 5px; */
    overflow: hidden;
}
.comment_profile img {
    max-width: 100%;
    width: 100%;
    height: 100%;
	border-radius: 50%;
}
.comment_content {
    width: Calc(100% - 70px - 15px);
    position: relative;
    padding: 15px 15px;
    margin-left: 15px;
    border: 1px solid #ddd;
}
.comment_content::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: auto;
    height: auto;
    background: transparent;
    border: 10px solid;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(-1px 0px 0px #ddd);
    z-index: 1;
}
.comment_content h5 {
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 7px;
}
.comment_content h5 span a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}
.comment_subitem {
    position: relative;
    display: flex;
    margin-bottom: 10px;
    margin-left: 40px;
}
.comment_subprofile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    overflow: hidden;
}
.comment_subprofile img {
    max-width: 100%;
    width: 100%;
    height: 100%;
	border-radius: 50%;
}
.comment_subcontent {
    width: Calc(100% - 40px - 15px);
    position: relative;
    padding: 15px 15px;
    margin-left: 15px;
    border: 1px solid #ddd;
}
.comment_subcontent::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -16px;
    width: auto;
    height: auto;
    background: transparent;
    border: 8px solid;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(-1px 0px 0px #ddd);
    z-index: 1;
}
.comment_subcontent .authore-name {
    font-size: 14px;
}
.comment_subcontent h5 {
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 7px;
}
.post_date {
    font-size: 12px;
    color: #6c757d;
    margin-left: 10px;
}
.readmore {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--primary-color);
    transition: .3s all;
}
.readmore:hover {
    transform: translateX(15px);
    color: var(--primary-color);
}
.post-views-link {
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    background: #ffffff;
    border-radius: 50%;
    margin: 3px 0px;
    font-size: 14px;
    color: #000;
    border: 2px solid #ddd;
}
.post-views-link:hover, .post-views-link.active {
    background: var(--first-color);
    color: #fff !important;
    border-color: var(--first-color);
}
.post_view_no {
    position: absolute;
    top: -7px;
    right: -8px;
    width: 15px;
    background: red;
    height: 15px;
    line-height: 16px;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    font-weight: 700;
}

.resent-post-list {
    position: relative;
}
.resent-post-item {
    position: relative;
    padding: 15px 0px;
    display: flex;
    border-bottom: 1px dashed #ddd;
    transition: .5s all;
}
.resent-post-item:last-child {
    border: 0px;
}
.resent-post-img {
    position: relative;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 0px;
}
.resent-post-img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.resent-post-info {
    width: Calc(100% - 60px);
    padding-left: 15px;
}
.resent-post-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    line-height: normal;
}
.post-date-time {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}
.resent-post-item:hover .resent-post-title {
    color: var(--first-color);
    text-decoration: underline;
}
.post-video {
    position: relative;
    width: 100%;
}
.post-video img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.play_button {
    position: absolute;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--second-color);
    background: var(--second-color);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    margin: 0px auto;
    left: 0;
    right: 0;
    top: 40%;
}
.play_button::after,
.play_button::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid rgb(242 146 9 / 80%);
}
.play_button::before {
    animation: ripple 2s linear infinite;
}
.play_button::after {
    animation: ripple 2s linear 1s infinite;
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
.play_button:hover {
	color: #fff;
}
/*tag-list*/
.popular-tag-list {
    position: relative;
    margin-bottom: 0px;
}
.popular-tag-list li {
    position: relative;
    display: inline-block;
}
.popular-tag-list li a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #707070;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 0px 5px 5px 0px;
    transition: .5s all;
}
.popular-tag-list li a:hover {
    background-color: var(--second-color);
    color: #fff;
}

.tags-list {
    position: relative;
    display: block;
    margin: 10px 0px 0px;
}
.tags-list li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 5px 0px;
}
.btn.tag-button {
    display: flex;
    justify-content: center;
    width: auto;
    align-items: center;
    height: 28px;
    background-color: var(--forth-color);
    border-radius: 3px 4px 4px 3px;
    border-left: 1px solid var(--forth-color);
    margin-left: 14px;
    position: relative;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 10px 0 10px;
    transition: .5s all;
}
.btn.tag-button:before {
    content: "";
    position: absolute;
    display: block;
    left: -14px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 14px solid var(--forth-color);
    transition: .5s all;
}
.btn.tag-button:after {
    content: "";
    background-color: white;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    left: -4px;
    top: 10px;
}
.btn.tag-button:hover {
    background-color: var(--first-color);
    border-left: 1px solid var(--first-color);
}
.btn.tag-button:hover::before {
    border-right: 14px solid var(--first-color);
}
/*Pagination*/
.pagination-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}
.pagination-list > li {
    position: relative;
}
.pagination-list > li > a {
    position: relative;
    display: flex;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    align-items: center;
    justify-content: center;
}
.pagination-list > li > a.active {
    color: var(--second-color);
}
.pagination-list > li > a span {
    margin-left: 10px;
    margin-right: 10px;
}
.pagination-list > li:first-child > a span {
    margin-left: 0px;
}
.pagination-list > li:last-child > a span {
    margin-right: 0px;
}


.sidebar-block {
    position: relative;
    margin-bottom: 15px;
    background: #fff;
}
.sidebar-profile {
    position: relative;
    padding: 15px;
    background: var(--forth-color);
    width: 100%;
}
.profile-head {
    position: relative;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.profile-head h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}
.duration-text {
    font-size: 14px;
    font-weight: 400;
    color: #212529;
    margin-bottom: 5px;
}
.duration-text span {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    margin-left: 7px;
}
.sprofile-inner-content {
    position: relative;
    text-align: center;
    border-top: 1px dashed var(--first-color);
    padding: 10px 0px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.profile-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px auto;
}
.profile-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.user-name {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}
.user-id {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--third-color);
    margin-bottom: 5px;
}
.social-detail {
    position: relative;
    margin-top: 15px;
}
.social-detail p {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.sidebar-head {
    position: relative;
    padding: 8px 15px;
    background: var(--first-color);
}
.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}
.sidebar-content {
    position: relative;
    padding: 15px 15px;
}

/********************************************
************** Blog Page End ***************
********************************************/

/********************************************
*********** About Story Page Start ************
********************************************/

.light_bg {
    background: rgb(0 51 108 / 5%);
}

.heading-content {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.time_block_line {
    position: relative;
    
}
.time_block_line:before {
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 2px;
    left: 50%;
    top: 0;
    margin-left: -1px;
    background: linear-gradient(
45deg
, transparent, #d4d4d4, transparent);
}
.timing_item {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.timing_date {
    position: relative;
    z-index: 1;;
    margin-left: calc( 50% - 15px);
    margin-right: 50px;
}
.timing_content {
    position: relative;
    z-index: 1;
    padding: 23px 30px;
    border-left: 4px solid var(--first-color);
    width: 100%;
    max-width: 345px;
    box-shadow: 7px 5px 30px 0 rgb(72 73 121 / 15%);
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
    transition: 0.4s;
}
.timing_item:hover .timing_content, .timing_item:hover .timing_date2 h5{
    transform: translateX(5px);
}
.timing_item:hover .timing_date h5, .timing_item:hover .timing_content2{
    transform: translateX(-5px);
}
.timing_item:hover ._date_divide, .timing_item:hover ._date_divide2 {
    box-shadow: 0px 0px 10px 3px rgb(173 181 189 / 58%);
}
.timing_date h5 {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 100%;
    color: #002d5f;
    padding-right: 50px;
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
    transition: 0.3s;
}

.timing_date2 {
    position: relative;
    z-index: 1;;
    margin-right: calc( 50% - 15px);
    margin-left: 50px;
}
.timing_content2 {
    position: relative;
    z-index: 1;
    padding: 23px 30px;
    border-right: 4px solid var(--second-color);
    text-align: right;
    width: 100%;
    max-width: 345px;
    box-shadow: 7px 5px 30px 0 rgb(72 73 121 / 15%);
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
    transition: 0.4s;
}
.timing_date2 h5 {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 100%;
    right: auto;
    padding-left: 50px;
    font-size: 24px;
    font-weight: 700;
    color: var(--first-color);
    line-height: 20px;
    white-space: nowrap;
    transition: 0.3s;
}
._date_divide, ._date_divide2 {
    position: relative;
    left: 0px;
    right: 0px;
    top: 0;
    width: 32px;
    text-align: center;
    background: #fff;
    line-height: 33px;
    height: 32px;
    border: 1px solid #adb5bd;
    border-radius: 50%;
}
._date_divide::after {
    content: "";
    width: 200px;
    height: 2px;
    background: var(--second-color);
    position: absolute;
    top: 15px;
    /* left: 27px; */
    z-index: -1;
}
._date_divide2::after {
    content: "";
    width: 200px;
    height: 2px;
    background: var(--first-color);
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: -1;
}
._date_divide svg, ._date_divide2 svg {
    font-size: 18px;
    color: var(--second-color);
}
.timing_content2 h5, .timing_content h5 {
    font-size: 17px;
    font-weight: 700;
    color: #002d5f;
    margin-bottom: 10px;
}
.timing_content2 p, .timing_content p {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0px;
}
.row_reverse{
    flex-direction: row-reverse;
}

/********************************************
*********** About Story Page End ************
********************************************/

/*======================contact-us====================*/
.address_item {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
    box-shadow: 0px 2px 8px #ddd;
    border-radius: 5px;
    border-top: 3px solid #002d5f;
    transition: .3s all;
}
.address_item:hover {
    background: linear-gradient(0deg, rgb(53 235 238 / 30%) 30%, #ffffff 70%);
}
.address_icon svg {
    font-size: 30px;
    color: #6204ee;
}
.address_icon {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding: 0px 0px 6px;
}
.address_icon::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: linear-gradient(45deg, #35edee, #002d5f);
    margin: 10px auto 0px;
}
.address_content {
    position: relative;
    text-align: center;
}
.address_content p {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 5px;
}
.address_content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #0075f2;
    margin-bottom: 5px;
}
.contact_form label {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
}
.contact_form label sup {
    color: red;
    font-size: 16px;
}
.custom_block {
    position: relative;
    /* padding: 20px; */
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 8px #e9ecef;
}
.custom_img img {
    max-width: 100%;
    width: 100%;
}
.contact_form {
    padding: 30px;
    background: rgb(98 3 238 / 7%);
    height: 100%;
}

/*============================Teams=======================*/
.team_item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.team_profile img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    transition: .7s all;
}
.team_item:hover .team_profile img{
    transform: scale(1.2);
}
.team_profile {
    width: 100%;
    height: 276px;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #ddd;
}
.team_infor {
    position: relative;
    text-align: center;
    padding: 20px 20px;
    margin: -65px 12px 0px;
    background: #e6f5ef;
    border-radius: 5px;
    transition: .3s all;
}
.team_item:hover .team_infor {
    box-shadow: 0px 6px 10px #ececec;
    background: var(--first-color);
}
.team_infor h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.team_infor h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 15px;
    text-transform: capitalize;
    font-style: italic;
}
.team_infor p {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}
.team_media_icons li {
    display: inline-block;
}
.team_media_icons {
    display: block;
    margin-bottom: 0px;
}
.team_media_icons li a {
    display: inline-block;
    margin: 0px 15px 5px 0px;
    font-size: 17px;
    color: var(--second-color);
    transition: .3s all;
}
.team_media_icons li a:hover{
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.appointment-form {
    background: var(--second-color);
    padding: 30px 50px;
}
textarea.form-control {
    min-height: calc(3.5em + .75rem + 2px);
}

/*==========================support===================*/

.support_item {
    position: relative;
    margin-bottom: 20px;
    padding: 20px 15px;
    background: #002d5f;
    border-radius: 5px;
    transition: .5s all;
}
.support_item:hover {
    background: rgb(92 37 238);
    box-shadow: 0px 6px 16px -2px rgb(92 35 238 / 40%);
}
.support_logo img {
    width: 100%;
    max-width: 100%;
}
.support_logo {
    margin: 0px auto 15px;
    width: 100px;
}
.support_content h5 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.support_content p {
    font-size: 16px;
    font-weight: 500;
    color: #dee2e6;
}
.support_content {
    text-align: center;
}
.knowledge_item {
    display: flex;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0px 6px 15px 0px #ddd;
    padding: 15px 20px;
    border-radius: 5px;
    background: #f7f7f7;
    transition: .5s all;
}
.knowledge_content h5 {
    font-size: 19px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.knowledge_content p {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0px;
}
.knowledge_img img {
    max-width: 100%;
    width: 100%;
}
.knowledge_img {
    width: 100px;
    margin-right: 15px;
}
.knowledge_item:hover {
    background: #fff;
    transform: translateY(-10px);
}
.knowlesge_categ_block {
    position: relative;
    margin-bottom: 30px;
}
.Kn_category_title a {
    display: block;
    font-size: 23px;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 17px;
    text-transform: capitalize;
}
.kn_categ_list li {
    display: flex;
    margin-bottom: 5px;
}
.kn_categ_list li a {
    display: inline-block;
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
}
.kn_categ_list li:hover a{
    color: var(--primary-color);
}
.kn_categ_list {
    display: block;
    margin-bottom: 0px;
}
.categ_icon {
    font-size: 18px;
    margin-right: 10px;
    color: var(--second-color);
}
.categ_numb {
    font-size: 20px;
    color: #adb5bd;
    margin-left: 7px;
}

.knowledbase .post-more-infoList {
    border-top: 1px solid #ddd;
}
.knowledbase .post-categ-list {margin-bottom: 15px;}
.knowledbase .post-categ-list li a {display: inline;}


/***********media-query**********/
@media only screen and (max-width: 687px){
	body {
        overflow-x: hidden;
    }
    .top-header {
        height: 25px;
        padding: 0px 0px;
    }
    .logo {
        padding: 0px;
    }
    .logo a {
        font-size: 22px;
    }
    .topbar-socialicons {
        display: none;
    }
    .top-resp-head {
        position: relative;
        margin-left: auto;
        /*display: block;*/
    }
    .topbar-menu > li > a {
        position: relative;
        display: flex;
        padding: 5px 5px 5px 0px;
        margin-right: 5px;
        font-size: 8px;
        font-weight: 600;
        color: #000;
    }
	.header {
        position: sticky;
        left: 0px;
        right: 0px;
        width: 100%;
        top: 25px;
        z-index: 999;
        padding: 0px 0px;
        border: #fff;
    }
    .main-navbarcollapse {
        position: fixed;
        display: block;
        top: 0px;
        bottom: 0px;
        width: 318px !important;
        left: -330px;
        background: #fff;
        z-index: 99999;
        padding: 10px 15px;
        overflow-x: hidden;
        box-shadow: 5px 0px 13px -7px rgb(0 0 0 / 10%);
        overflow-y: auto;
        transition: .5s all;
    }
    .main-navbarcollapse.active {
        left: 0px;
    }
    .dropdown-menu {
        display: block;
        position: fixed !important;
        width: 320px !important;
        background: #fff;
        height: 100%;
        margin-top: 0px !important;
        top: 0px !important;
        left: -390px !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto !important;
        transition: .5s all !important;
    }
    .dropdown-menu.active {
        left: 0px !important;
    }
    .dropdown-submenu {
        position: fixed;
        display: block;
        top: 0px;
        bottom: 0px;
        width: 318px !important;
        left: -330px;
        background: #fff;
        z-index: 99999;
        overflow-x: hidden;
        box-shadow: 5px 0px 13px -7px rgb(0 0 0 / 10%);
        overflow-y: auto;
        transition: .5s all;
    }
    .dropdown-submenu.active {
        left: 0px !important;
    }
    .navbar-toggler {
        padding: 0px;
        font-size: 17px;
        color: #000;
        margin-left: 10px;
    }
    .toggle-close {
        position: absolute;
        background: #f9041c;
        font-size: 17px;
        border: 0px;
        top: 0px;
        right: 0px;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
        color: #fff;
        display: block;
        z-index: 9;
    }
    .goback, .subgoback {
        position: relative;
        padding: 5px 10px;
        display: block;
        font-size: 15px;
        color: #f9041c;
    }
    .icon-arror-toggle {
        margin-left: auto;
    }
    .nav-link {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .dropdown-toggle::after {
        float: right;
        margin-left: auto;
    }
    /*********page-content*********/
    #breadcrumb-bg {
        padding: 15px 0px;
    }
    .breadcrumb-title {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .home-banner-wrapper {
        flex-wrap: wrap;
    }
    .banner-container-bg {
        padding: 60px 0px 20px;
        height: auto;
    }
    .banner-bg-left {
        width: 420px;
        height: 221px;
    }
    .banner-bg-right {
        right: -10px;
        bottom: -20px;
        width: 351px;
    }
    .page-title, .wrkproc-title {
        font-size: 25px;
    }
    .home-banner-content {
        flex-wrap: wrap;
    }
    .home-banner-item {
        width: 100%;
    }
    .home-banner-innerbox {
        padding: 0px;
    }
	.services-detail-tab.default-padding {
		display: none;
	}
	.ser_det_bg_layer {
		height: 100%;
		padding: 0 5px;
	}
	.sec-layer-content {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.sec_layer-sidebar {
		margin-top: 30px;
	}
    .image-item {
        position: relative;
        width: 100%;
        height: 300px;
    }
    .image-item img {
        max-width: 100%;
        height: 100%;
        width: 100%;
    }
    .banner-subtitle {
        font-size: 23px;
    }
    .banner-title {
        font-size: 27px;
        margin-bottom: 10px;
    }
    .cursor {
        line-height: 26px;
    }
    .search-box {
        margin-bottom: 15px;
    }
    .search-box #search_home {
        height: Calc(17px + 15px + 2px);
    }
    .btn.searctg-btn {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }
    .client-logo-section {
        padding: 15px 0px;
    }
    .default-padding {
        padding: 15px 0px;
    }
    .about-element-wrapper {
        position: relative;
        overflow-x: hidden;
    }
    .choose-element-wrapper {
        position: relative;
        overflow-x: hidden;
        height: 100%;
        width: 100%;
        overflow-y: hidden;
    }
    .project-image {
        height: auto;
    }
    .off_project-item-img {
        height: auto;
    }
    .off_project-item {
        padding: 10px;
    }
    .counter-block {
        width: 50%;
    }
    .counter-innerbox {
        padding: 10px;
    }
    .counter-icon {
        width: 50px;
        height: 50px;
    }
    .counter-no {
        position: relative;
        padding-left: 10px;
        width: Calc(100% - 50px);
        font-size: 30px;
        font-weight: 700;
        color: #000;
    }
    .image02 {
        top: 35%;
        right: 35%;
        width: 230px;
        height: 270px;
    }
    .wrk-process-lftside {
        padding: 20px 0px;
        width: 100%;
    }
    .wrk-process-rghtside {
        width: 100%;
        padding: 20px 0px;
    }
	    .wrk-process-wrapper {
        overflow-x: hidden;
    }
    .testi_image-item {
        width: 50px;
        height: 50px;
    }
    .profl-name-degree-info {
        width: Calc(100% - 50px);
        padding-left: 10px;
    }
    .quote-icon {
        font-size: 30px;
    }
    .testim-text {
        font-size: 14px;
    }
    .name-text {
        font-size: 15px;
    }
    .degree-text {
        font-size: 13px;
    }
    .recent_post-item-img {
        height: auto;
    }
    .social_media_icons li a {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px 0px;
        font-size: 13px;
        color: #000;
        width: 25px;
        text-align: center;
        height: 25px;
    }
	.marquee-slider a {	
        margin-right: 10px;	
    }
    /*******footer******/
    .cookie-elements {
        padding: 15px 0px;
    }
    .top-footer, .middle-footer {
        padding: 15px 0px;
    }
    .footer-block {
        width: 100%;
    }
    .footer-icon {
        margin-top: 0px;
    }
	.talk-us .btn-custom {
		float: none;
	}
}