/*
Theme Name: C2 Developer Zone
Author: Team C2 Developer Zone
Version: 0.2
Author URI: https://c2developerzone.com/
Description : 
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: #494949;
    font-family: "Nunito", sans-serif;
    background: #fff;
}
p, span {
    color: #494949;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
	font-weight: 400;
	line-height: 25px;
}
a {
  color: #fff;
  text-decoration: none;
    font-family: "Nunito", sans-serif;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #07132b;
  font-family: "Nunito", serif;
}
a.theme-btn {
    margin: 2rem auto 0.5rem;
    display: inline-flex;
    color: #ffffff;
    padding: 0.8rem 1.4rem 0.8rem 1.4rem;
    border-radius: 10px;
    border: solid 2px rgb(255 255 255);
    transition: 0.3s ease;
    background: linear-gradient(91deg, rgb(71 87 154) 11%, rgb(73 188 141) 127%);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-size: 14px;
}
a.theme-btn:hover {
    background: linear-gradient(91deg, rgb(73 188 141) 11%, rgb(71 87 154) 127%);
     box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
section{
  position:relative;
}
.pd{
  padding: 0;
}
.pd-left{
  padding-left:0;
}
.pd-right{
  padding-right:0;
}
.owl-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 2rem 0 0;
}
button.owl-prev, button.owl-next {
  border-radius: 100px;
  width: 44px;
  height: 44px;
  background: #47579a !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 33px !important;
  position: relative;
  border: solid 3px #ffffff !important;
  box-shadow: 0 0 0 2px #47579a;
}
button.owl-prev span, button.owl-next span {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 5px;
    font-weight: 400;
    color: #ffffff;
    font-size: 32px;
}

/*Inner Banner*/

section.inner-banner-sec {
  max-height: 350px;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('assets/img/inner-bg.jpg');
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
section.inner-banner-sec h1 {
  color: #fff;
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px){
section.inner-banner-sec {
    max-height: 220px;
}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(91deg, rgb(71 87 154) 11%, rgb(73 188 141) 127%);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: background: linear-gradient(91deg, rgb(73 188 141) 11%, rgb(71 87 154) 127%);
  color: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
   transform: translateY(-2px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*Topbar Sec*/

section.topbar-sec {
    padding: 10px 0;
    background: #4C4AB2;
    width: 90%;
    margin: auto;
    border-radius: 0 0 20px 20px;
}
.topbar-left a {
    padding: 2px 5px;
    display: inline-block;
    margin-right: 8px;
    font-family: "Monda", sans-serif;
}
.topbar-left a img {
    margin-right: 5px;
    height: 20px;
}
.topbar-left a:first-child {
    border-right: solid 1px #fff;
    padding-right: 16px;
}
.social-link {
    text-align: right;
}
.social-link a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4c4ab2;
    border: solid 1px #fff;
    margin: 0 3px;
    background: #fff;
    border-radius: 7px;
    font-size: 20px;
}
.topbar-left {
    display: flex;
    align-items: center;
    height: 100%;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
    background: #ffffff;
    position: relative;
    width: 100%;
    box-shadow: 0px 3px 34px -17px hsl(228.43deg 36.89% 44.12% / 26%);
	top:0;
}
.header-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.2rem;
}
#header.header-scrolled, #header.header-inner-pages {
position:fixed;
  width: 100%;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}
#header .logo img {
  width: 118px;
}
.header-right {
    display: flex;
    align-items: center;
}
.search-button {
    border-radius: 100px;
    padding: 15px 28px 15px 28px;
    display: flex;
	 transition: all 0.4s ease;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    background: linear-gradient(91deg, rgb(71 87 154) 11%, rgb(73 188 141) 127%);
    font-size: 15px;
}
.search-button:hover {
    background: linear-gradient(91deg, rgb(73 188 141) 11%, rgb(71 87 154) 127%);
   	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	transform: translateY(-2px);
}
.search-button i {
    background: #00DCED;
    width: 49px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 39px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #4c4b5a;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: "Nunito", serif;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: #49bb8d;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ea1826;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 9px 20px;
    text-transform: none;
    color: #13192b;
    letter-spacing: 0.2px;
    font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
button.mob-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 100px;
    position: relative;
    border: none;
    margin-left: 0.7rem;
	background: linear-gradient(128deg, rgb(71 87 154) 42%, rgb(73 188 141) 131%);
}
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
    z-index: 999;
    position: relative;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
 button.mob-nav-btn {
    position: relative;
    z-index: 999;
	border: solid 2px #3d4d6a;
}

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #49bb8d;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}



@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 75px 0 70px;
    overflow: hidden;
}
.theme-heading-sec {
  margin-bottom: 1.8rem;
}
.theme-heading-sec h2 {
    text-transform: capitalize;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    letter-spacing: -0.3px;
	line-height:40px;
	word-spacing:-0.5px;
}
.theme-heading-sec h5 {
    color: #47579a;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
@media screen and (max-width: 600px) {
.theme-heading-sec h2 {
    font-size: 1.75rem;
    line-height: 35px;
    letter-spacing: 0px;
}
	p, span {
    font-size: 17px;
    line-height: 26px;
}
}

/*Banner*/

#demo {
    background: linear-gradient(51deg, rgba(55, 52, 169, 1) 24%, rgba(255, 255, 255, 1) 127%);
    position: relative;
    /* overflow: hidden; */
        background: #f6f6f8a6;
}
div#demo:before {
  background: #38ae91;
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -13rem;
  left: -8rem;
  border-radius: 100%;
  filter: blur(50px);
  opacity: 0.3;
}
div#demo:after {
  width: 350px;
  height: 350px;
  position: absolute;
  top: -108px;
  left: -102px;
  background: #f9f9fa;
  font-weight: 700;
  content: "";
  border-radius: 100%;
  border: solid 71px #47579a14;
}
.carousel-inner{
  position: relative;
  z-index: 1;
}
.carousel-item {
    padding: 0rem 0 0rem;
    height: 90vh;
}
div#demo .container-fluid {
  padding: 0;
}
.banner-heading {
    padding-left: 0rem;
    padding-right: 0.5rem;
    margin-top: 0rem;
}
.banner-heading a.theme-btn {
  margin: 0;
}
.banner-heading h1 {
    font-size: 53px;
    font-weight: 700;
    letter-spacing: 0.05px;
    line-height: 60px;
    text-transform: capitalize;
    padding-left: 0px;
    word-spacing: -5px;
    margin-bottom: 0;
}
.banner-heading h1 span {
    color: #ee0d0d;
    display: block;
}
.banner-heading p {
    line-height: 25px;
    margin: 1.3rem 0 2rem;
    letter-spacing: 0.3px;
}
.ban-col{
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
}
.banner-rt-col {
    position: relative;
    padding: 2rem 0 0 1rem;
}
.banner-rt-col img {
    width: 95%;
    margin-left: auto;
    display: table;
}
.carousel-indicators {
    justify-content: center;
    margin-right: 7%;
    margin-left: 7%;
}
.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  margin-right: 4px;
  margin-left: 4px;
  opacity: .5;
  border-radius: 100%;
  border: solid 5px #ffffff;
  box-shadow: 0px 0px 0px 1px #b4b5b5;
  background: #b4b5b5;
}
.carousel-indicators .active {
  opacity: 1;
  box-shadow: 0px 0px 0px 1px #39af91;
  background: #39af91;
}
.carousel-control-next, .carousel-control-prev {
    width: 3%;
}
@media screen and (max-width: 600px) {
.carousel-item {
    padding: 0rem 0 4rem;
    height: auto;
}
.banner-heading {
    margin-top: 2rem;
    text-align: center;
}
.banner-heading h1 {
    font-size: 40px;
    line-height: 47px;
}
}


/*About Section*/

section.about-sec {
  padding-bottom: 5rem;
}
section.about-sec:after {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 20px;
  right: -128px;
  background: #ffffff;
  font-weight: 700;
  content: "";
  border-radius: 100%;
  border: solid 62px #47579a1c;
}
.about-img{
  position: relative;
}
.about-img img {
    width: 96%;
    margin-top: -2.2rem;
}
section.about-sec p {
    margin: 0;
}
.row.exp-row {
    padding: 1.8rem 0 1.2rem;
}
.abt-exp {
  border: solid 1px #ddd;
  border-radius: 10px;
  padding: 1.3rem;
  display: flex;
  gap: 12px;
	height: 100%;
}
.abt-exp img {
    height: 40px;
    margin-right: 0.5rem;
}
.exp-content h6 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.exp-content p {
  margin: 0;
}

@media screen and (max-width: 600px) {
	section.about-sec {
    padding-bottom: 4rem;
    padding-top: 3rem;
}
	section.about-sec:after {
		display:none;
	}
	.about-img img {
    margin-bottom: 3rem;
}
.abt-exp {
    margin-bottom: 0.6rem;
}
}

/*Service Sec*/

section.service-sec .theme-heading-sec {
  margin-bottom: 3rem;
}
.srv-carousel {
    margin-top: 1rem;
}
.service-course-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.service-head {
  position: absolute;
  bottom: 27px;
  z-index: 1;
  width: 76%;
  left: 50%;
  transform: translateX(-50%);
}
.service-head h4 {
  color: #fff;
  font-size: 23px;
  letter-spacing: -0.2px;
  margin: 1rem 0 1rem;
}
.service-head img {
  width: 60px !important;
  filter: brightness(0) invert(1);
}
.service-head-slide {
    position: relative;
    z-index: 1;
    background: #fff;
    bottom: 0;
    width: 93%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
}
.service-head-slide h4 {
  font-weight: 600;
  letter-spacing: -0.3px;
  font-size: 22px;
}
.service-course-wrapper:hover .service-head-slide {
  opacity: 1;
  bottom: 50px;
}
.service-head-slide p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}
section.service-sec .theme-btn {
  margin: 0;
}

@media screen and (max-width: 600px) {
	section.service-sec {
    padding-bottom: 20px;
}
	section.service-sec .theme-heading-sec {
    margin-bottom: 1.3rem;
}
	section.service-sec .theme-btn {
    margin: 7px 0 0;
}
}



/*Quote Sec*/

section.quote-sec {
  margin-bottom: -22rem;
  background: #ffffff;
  padding-top: 0;
}
section.quote-sec:after {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 10px;
  left: -128px;
  background: #ffffff;
  font-weight: 700;
  content: "";
  border-radius: 100%;
  border: solid 62px #47579a1c;
}
section.quote-sec .container {
  max-width: 65% !important;
  background: #ffffff;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  background-image: url(assets/img/quotes-bg.jpg);
  background-size: 634px;
  background-position: right bottom;
  background-repeat: no-repeat;
}
section.quote-sec .theme-heading-sec {
  margin-bottom: 3.8rem;
  text-align: center;
}
.form-wrapper {
    padding: 0 2rem 0 1rem;
}
.form-group {
    padding: 0 7px;
}
.form-control {
    border: 1px solid #e8ecef;
    border-radius: 8px;
    max-height: 54px;
    height: 100vh;
}
textarea.form-control {
  height: auto;
  max-height: unset;
}
input.form-submit-btn {
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-size: 15px;
    background: linear-gradient(91deg, rgb(71 87 154) 11%, rgb(73 188 141) 127%);
}

@media screen and (max-width: 600px) {
section.quote-sec .container {
    max-width: 92% !important;
}
section.quote-sec img {
    width: 94%;
    margin: 0 auto 2rem;
    display: table;
}
section.quote-sec.form-wrapper {
    padding: 0 1rem 0 1rem;
}
}

/*Footer Top*/

footer.footer-top {
  padding: 23rem 0 7rem;
  position: relative;
  overflow: hidden;
  background-color: #1e243d;
  background-image: url(assets/img/footer-bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
}
footer#footer-top-sec {
    padding: 5rem 0 8rem;
}
.footer-middle {
  padding: 0 4rem;
  border-left: solid 1px rgb(255 255 255 / 22%);
  border-right: solid 1px rgb(255 255 255 / 22%);
}
.logo-wrap {
  padding-right: 1.8rem;
}
.logo-wrap img {
  width: 105px;
}
.footer-contact-wrapper p {
    position: relative;
    color: #cbd0e3;
    font-size: 14px;
    padding-left: 1.8rem;
}
.footer-contact-wrapper p i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #49bc8d;
  font-size: 17px;
}
.footer-wrapper h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 400;
}
ul.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.footer-nav li {
    display: inline-block;
    width: calc(100% / 2 - 5px);
}
ul.footer-nav li a {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    color: #cbd0e3;
    font-size: 14px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
	letter-spacing: 0.2px;
}
ul.footer-nav a:before {
    content: "\F285";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 14px;
    top: 0px;
    color: #49bc8d;
}
.logo-wrap p {
    color: #cbd0e3;
    font-size: 15px;
    margin: 1rem 0 1.7rem;
    line-height: 25px;
}
.footer-contact-wrapper {
  padding-left: 1.8rem;
}


/*Footer Bottom*/

footer.footer-bottom {
    padding: 0;
    margin-top: -84px;
    position: relative;
}
footer.footer-bottom .container {
  padding: 29px 0;
  border-top: solid 1px rgb(255 255 255 / 22%);
}
footer.footer-bottom .row {
    align-items: center;
}
.social-link {
    text-align: left;
}
.logo-wrap .social-link a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #353458;
    border: solid 1px rgb(255 255 255);
    margin: 0 1px;
    font-size: 15px;
}
.logo-wrap .social-link a:hover {
    background: #49bb8d;
    border: solid 1px #49bb8d;
    color: #fff;
}
.copyright-txt p {
  color: #cbd0e3;
  font-size: 14px;
  margin: 0;
}
.copyright-txt p a {
  color: #49bb8d;
  text-transform: uppercase;
}
footer.footer-bottom ul {
    margin: 0;
    padding: 0;
}
footer.footer-bottom ul li {
    list-style: none;
    display: inline-block;
    margin-right: 18px;
}
footer.footer-bottom ul li a{
  color:#353458;
  font-size: 14px;
}
footer.footer-bottom ul li a:hover {
    color: #ea1826;
}
p.dev-by {
  margin: 0;
  text-align: right;
  color: #cbd0e3;
  font-size: 14px;
  font-weight: 500;
}
p.dev-by a {
  color: #49bb8d;
}
.footer-contact-wrapper p a {
  color: #cbd0e3;
}
footer.footer-top .container {
    position: relative;
    z-index: 999;
}
@media screen and (max-width: 600px) {
	section.quote-sec {
    margin-bottom: -25rem;
}
	.logo-wrap {
    padding-right: 0;
    text-align: center;
}
	.copyright-txt {
    text-align: center;
}
footer.footer-bottom .container {
    padding: 16px 15px;
}
    p.dev-by {
        text-align: center;
        margin: 5px 0 0;
        font-size: 15px;
    }
.footer-middle {
    padding: 1.4rem 1rem;
    border: solid 1px #ffffff38;
    margin: 1.5rem 0;
    border-right: none;
    border-left: none;
}
.logo-wrap p {
    font-size: 17px;
}
ul.footer-nav li a, .footer-contact-wrapper p, .footer-contact-wrapper p a, .copyright-txt p a, .copyright-txt p {
    font-size: 15px;
}
	p.dev-by a {
    font-size: 15px;
    letter-spacing: 0.2px;
}
	.social-link {
    text-align: center;
}
.logo-wrap .social-link a {
    padding-top: 3px;
}
}



/*Why Choose Sec*/

section.why-choose-sec {
    background: linear-gradient(162deg, rgb(31 37 63) 11%, rgb(255 255 255) 127%);
    padding-bottom: 80px;
    background-image: url(assets/img/why-choose.jpg);
    background-size: cover;
    background-position: center;
}
section.why-choose-sec .theme-heading-sec {
  text-align: center;
  width: 42%;
  margin: auto;
  margin-bottom: 5.5rem;
}
section.why-choose-sec .theme-heading-sec h2{
  color: #fff;
}
section.why-choose-sec  .theme-heading-sec h5 {
  color: #49bc8d;
}
.why-us-wrapper {
    border: solid 1px #FFFFFF50;
    background: rgb(37 44 111 / 74%);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 10px;
	height: 100%;
}
.why-img {
  -webkit-mask-image: url(assets/img/why-shape.svg);
  width: 98px;
  height: 98px;
  -webkit-mask-repeat: no-repeat;
    background: linear-gradient(135deg, rgb(77 52 151) 11%, rgb(188 73 184) 127%);
  margin: -5.3rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img img {
  width: 55px;
  filter: brightness(0) invert(1);
}
.why-us-wrapper h4 {
    color: #fff;
    margin: 0.8rem 0 0.7rem;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.why-us-wrapper p {
  margin: 0;
  color: #b3bdd1;
}

@media screen and (max-width: 600px) {
    section.why-choose-sec {
        padding-bottom: 90px;
        padding-top: 66px;
    }
	section.why-choose-sec .theme-heading-sec h2 {
    color: #fff;
    margin-bottom: 0;
}
.why-us-wrapper {
    padding: 2rem 1.5rem;
    margin: 1.8rem;
}
section.why-choose-sec .theme-heading-sec {
    width: 100%;
    margin-bottom:4rem;
}
	.why-img {
		margin: -5rem auto 1rem;
	}
}






/*Blog*/

.blog-sec .theme-heading-sec {
  margin-bottom: 3.8rem;
  text-align: center;
}
.blog-img img {
	width:100%;
    max-height: 270px;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}
.blog-date {
  display: flex;
  gap: 19px;
}
.blog-wrapper {
    box-shadow: 0 0 20px rgba(0, 0, 0, .07);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin: 0.7rem 0;
}
.blog-head {
  padding: 1.5rem 2rem;
}
.blog-date p i {
    margin-right: 4px;
    color: #7282c9;
}
.blog-head h4 {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.2px;
    font-weight: 600;
    margin-bottom: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
a.blog-btn {
    color: #47579a;
    text-transform: capitalize;
    letter-spacing: 0px;
    font-size: 16px;
    margin-top: 0;
    display: inline-block;
    font-family: "Nunito", serif;
    font-weight: 500;
}
.blog-date p {
    margin-bottom: 8px;
    font-size: 14px;
}
.blog-sec a.theme-btn {
  margin: 2.5rem auto 0;
  display: table;
}
@media screen and (max-width: 600px) {
.blog-wrapper {
    margin: 0.7rem 0;
}
}
/*Contact Us*/

.address-sec .theme-heading-sec {
  text-align: center;
  width: 55%;
  margin: 0 auto 3.5rem;
}
.add-wrapper {
  padding: 2rem 2rem 1.2rem 6rem;
  border: solid 1px #ede4e4b0;
  position: relative;
  border-radius: 15px;
  /* box-shadow: 0px 3px 34px -17px hsl(228.43deg 36.89% 44.12% / 30%); */
  background: #fff;
}
.add-wrapper h3 {
    font-weight: 700;
    font-size: 24px;
    color: #47579a;
}
.add-wrapper p a {
    color: #616161;
}
.add-wrapper img {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 44px;
}
section.form-sec {
  background-image: url(assets/img/contact_bg.webp);
  background-position: top right;
  background-position-x: right;
  background-position-y: top;
  background-color: #edf0f5;
  background-size: cover;
  padding: 75px;
}
section.form-sec .form-wrapper {
  padding: 0 5rem 0 0;
}
section.map-sec, section.map-sec .col-lg-12 {
  padding: 0;
}
iframe {
    filter: grayscale(1);
    margin-bottom: -7px;
}
@media screen and (max-width: 600px) {
	
.address-sec .theme-heading-sec {
    width: 99%;
    margin: 0 auto 2.5rem;
}
.add-wrapper {
    margin: 0.5rem;
}
	
    section.form-sec {
        background-position-y: bottom;
        background-size: 150%;
        padding: 52px 30px 18px;
        background-repeat: no-repeat;
    }
section.form-sec .form-wrapper {
    padding: 0 0rem 0 0;
    text-align: center;
}
section.form-sec input.form-submit-btn {
    margin: auto;
    display: table;
}
}

/*About Us Page*/

.abt-rt-col {
    display: flex;
    align-items: center;
    padding-left: 1.3rem;
}
section.achievement-sec {
    background: #47579a;
}
.achievement-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
}
.achievement-ic {
    width: 112px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    position: relative;
    padding-left: 15px;
    margin-bottom: 2px;
    z-index: 2;
}
.achievement-ic:before, .achievement-ic:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color:#1f2a57;
    -webkit-clip-path: path("M13.3648 23.689C12.3113 18.0885 13.5019 11.7494 18.6938 9.40012C35.1267 1.96429 68.7714 -9.44147 82.3112 14.0815C100.548 45.7649 138.846 59.5402 82.3112 87.5508C66.122 95.5719 56.2138 98.9992 50.3168 99.8059C42.2525 100.909 34.515 87.5508 26.3756 87.5508H13.8433C10.9933 87.5508 8.2154 86.3499 6.50037 84.0737C-12.7867 58.4757 17.3824 45.0461 13.3648 23.689Z");
    clip-path: path("M13.3648 23.689C12.3113 18.0885 13.5019 11.7494 18.6938 9.40012C35.1267 1.96429 68.7714 -9.44147 82.3112 14.0815C100.548 45.7649 138.846 59.5402 82.3112 87.5508C66.122 95.5719 56.2138 98.9992 50.3168 99.8059C42.2525 100.909 34.515 87.5508 26.3756 87.5508H13.8433C10.9933 87.5508 8.2154 86.3499 6.50037 84.0737C-12.7867 58.4757 17.3824 45.0461 13.3648 23.689Z");
    z-index: -2;
}
.achievement-ic:after {
    background-color: #fff;
    top: 2px;
    left: 10px;
    z-index: -1;
}
.achievement-ic img {
    width: 54px;
}
.achievement-txt h3, .achievement-txt h5 {
    color: #fff;
}
.achievement-txt h3 {
    font-weight: 700;
    font-size: 34px;
}

button.accordion-button {
    background: #ffffff;
    font-family: "Nunito", serif;
    font-size: 26px;
    font-weight: 700;
    padding: 15px 0 15px;
    border-bottom: dashed 1px gray;
}
.accordion-button:not(.collapsed) {
    color: #47579a;
    background-color: #ffffff;
    box-shadow: none;
}
.accordion-item {
    border: none;
}
.accordion-body {
    padding: 25px 0 0px;
}
.accordion-body p {
    line-height: 26px;
}

.client-logo-sec .theme-heading-sec {
    text-align: center;
    margin-bottom: 4rem;
}
.client-carousel .owl-item img {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
}
.client-carousel .item {
    text-align: center;
    background: #f8f4fb;
    padding: 12px;
}

.what_makes_us_different ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.what_makes_us_different ul li b {
    color: #2a3b80;
    display: block;
}
.what_makes_us_different ul li {
    margin-top: 0.4rem;
}


section.core-sec {
    padding-top: 4rem;
    background: linear-gradient(180deg, rgba(230, 235, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
section.core-sec .theme-heading-sec {
    text-align: center;
    margin-bottom: 3rem;
}
section.core-sec .theme-heading-sec h2 {
    margin-bottom: 0.6rem;
}
section.core-sec ul {
    padding: 0;
    margin: 0;
}
section.core-sec ul li {
    display: inline-block;
    width: calc(100% / 3 - 26px);
    text-align: center;
    border: solid 1px #e7e3ff;
    margin: 9px 8px;
    vertical-align: top;
    height: 100vh;
    max-height: 207px;
    padding: 1.3rem 2rem;
    background: #fff;
    border-radius: 8px;
}
section.core-sec ul li strong {
    display: block;
    color: #2a3b80;
    font-size: 19px;
    margin-bottom: 0.3rem;
}

.mission-col{
    padding: 1rem 2rem 0 10rem;
}
.mission-lt{
	display:flex;
	align-items:center;
}
.mission-rt img {
    display: table;
    margin-left: auto;
}


section.client-logo-sec {
    padding-top: 2rem;
}
@media screen and (max-width: 1400px) {
	section.core-sec ul li {
    max-height: 170px;
}
}
@media screen and (max-width: 1200px) {
section.core-sec ul li {
    padding: 1.3rem 0.9rem;
}
}
@media screen and (max-width: 992px) {
section.core-sec ul li {
    width: calc(100% / 2 - 26px);
}
}
@media screen and (max-width: 767px) {
	.achievement-ic img {
    width: 52px;
}
section.core-sec ul li {
    width: calc(100% / 1 - 26px);
	max-height: unset;
	height:auto;
}
section.mission-sec {
    padding-top: 3rem;
}	
.mission-col{
    padding: 1rem 1rem 0 1rem;
}
section.achievement-sec {
    padding: 40px 0;
}
    .achievement-box {
        display: block;
        text-align: center;
        margin: 1.2rem 0;
    }
.achievement-ic {
    margin: 0 auto 15px;
}
}

/*Service Details*/

.into-img {
    background: #efefef;
    height: 100%;
    width: 96%;
}
.srv-intro-rt-col {
    display: flex;
    align-items: center;
}
.intro-srv ul{
    margin: 0 0 0.5rem;
    padding: 0;
    list-style: none;
}
.intro-srv li {
    position: relative;
    padding-left: 1.3rem;
    padding-bottom: 0.3rem;
}
.intro-srv ul li:before {
    content: "\F280";
    font-family: 'bootstrap-icons';
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
	color: #2a3b80;
}
section.srv-why-sec {
    position: relative;
    padding-bottom: 30px;
}
section.srv-why-sec:after {
    /* background-image: url(https://wordpress.themeholy.com/webteck/wp-content/uploads/2024/02/service_bg_2.jpg); */
    width: 85%;
    height: 400px;
    position: absolute;
    top: 0;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    border-radius: 22px;
    background-color: #08142c;
}
section.srv-why-sec .container {
    position: relative;
    z-index: 1;
    padding: 0 3.8rem;
}
.why-choose-srv-dtls p {
    color: #b0b2b8;
}
.why-srv-box {
    border: solid 1px #dddddd;
    border-radius: 15px;
    padding: 1.5rem 2.5rem 0.5rem;
    text-align: center;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, .06);
    background: #fff;
    height: 100%;
}
.row.why-list-row {
    margin-top: 6rem;
}
.srv-why-sec .theme-heading-sec h2 {
    color: #fff;
}
.img-sec {
    width: 88px;
    height: 88px;
    background: #47579a;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -4.5rem auto 1.2rem;
}
.img-sec img {
    filter: brightness(0) invert(1);
    width: 42px;
}
.why-srv-box h4 {
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
}
section.provide-srv-sec {
    padding-top: 50px;
}
.provide-srv-tab .nav-tabs {
    border: none;
    justify-content: center;
}
.provide-srv-tab button {
    background: #141d38;
    border-radius: 0 !important;
    padding: 14px 26px;
    color: #fff;
    border: none !important;
    border-right: solid 1px #ffffff26 !important;
    font-size: 0.98rem;
}
.provide-srv-tab button.active {
    background: #47579a !important;
    border: none !important;
    color: #fff !important;
}
.provide-srv-tab div#myTabContent {
    width: 90%;
    margin: 3.5rem auto 0;
}
.prov-srv-col .theme-heading-sec {
    text-align: center;
    margin-bottom: 3rem;
}
.provide-srv-cont ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.provide-srv-cont ul li {
    position: relative;
    padding: 0 0 0.6rem 1.5rem;
}
.provide-srv-cont ul li:before {
    content: "\F633";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    font-size: 18px;
    font-weight: 600;
    top: 1px;
    color: #47579a;
}
.offer-rt-col {
    display: flex;
    align-items: center;
    padding-left: 2rem;
}
.process-sec .theme-heading-sec {
    text-align: center;
    margin-bottom: 3rem;
}
.process-box {
    box-shadow: 0px 10px 15px rgba(8, 14, 28, .06);
    background: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    width: 94%;
    margin: auto;
    border: solid 1px #684df41f;
}
.process-box h4 {
    font-size: 21px;
    font-weight: 600;
}
.process-row .line-col{
	position:relative;
}
.process-row .line-col:after {
    content: "";
    background-image: url(assets/img/process_line.svg);
    width: 66%;
    height: 70px;
    position: absolute;
    top: 64%;
    right: -3rem;
    background-size: 659px;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    z-index: -1;
}
.process-row .line-col:nth-child(even):after {
   transform: translateY(-50%) scale(-1);
	    top: 51%;
}
.process-row .line-col:last-child:after {
   display:none;
}
.postid-7 footer.footer-top {
  padding:0;
}
section.process-sec {
    padding-top: 30px;
}

@media screen and (max-width: 600px) {
.into-img {
    width: 100%;
}
.srv-intro-rt-col {
    padding-top: 1.5rem;
}
	.srv-intro-rt-wrapper .theme-heading-sec,
	.srv-intro-rt-wrapper .theme-heading-sec h2{
    margin-bottom: 1rem;
}
	section.srv-intro-sec {
    padding-bottom: 30px;
}
section.srv-why-sec:after {
    width: 100%;
    height: 715px;
    border-radius: 0;
}
section.srv-why-sec .container {
    padding: 0 1.5rem;
}
.srv-why-sec .theme-heading-sec {
    text-align: center;
}
.why-choose-srv-dtls p {
    text-align: center;
}
.why-srv-box {
    height: auto;
    margin-bottom: 1.2rem;
}
.why-srv-box .img-sec {
    width: 85px;
    height: 85px;
    margin: -3.5rem auto 0.8rem;
}
.why-srv-box .img-sec img {
    width: 48px;
}
.row.why-list-row {
    margin-top: 4rem;
}
.provide-srv-tab .nav-tabs li button {
        width: 100%;
        border: solid 1px rgb(255 255 255 / 13%) !important;
    }
.provide-srv-tab .nav-tabs li {
    width: 100%;
}
	.provide-srv-tab div#myTabContent {
    width: 100%;
    margin: 2.5rem auto 0;
}
.offer-rt-col {
    padding-left: 15px;
    padding-top: 1.5rem;
}
.provide-srv-cont .theme-heading-sec {
    margin-bottom: 1rem;
}
section.provide-srv-sec {
    padding-bottom: 40px;
}
section.process-sec {
    padding-top: 0;
}
.process-box {
    padding: 2rem 2.5rem;
    margin: 0 auto 1.3rem;
}
.process-row .line-col:after{
	display:none;
}
}



/*Blog Details */

.blogSingle-content h1 {
    color: #07132b;
    font-family: "Nunito", serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.4px;
}
.blogSingle-content img {
    border-radius: 15px;
    margin: 0rem 0 1.5rem;
    width: 100%;
    max-height: 380px;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
.blogSingle-content p {
    color: #4a5262;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300 !important;
}
p.singleDate span {
    margin: 0 7px 0 4px;
    font-size: 15px;
}
p.singleDate i {
    font-size: 14px;
}
.blogSingle-content h2 {
    color: #07132b;
    font-family: "Nunito", serif;
    border-bottom: dashed 1px hsl(0deg 0% 69.03% / 58%);
    margin: 1.5rem 0 1.2rem;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    background: #f9f9f9;
    padding: 9px 10px;
}
.blogSingle-content h5 {
    color: #07132b;
    font-family: "Nunito", serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.2px;
}
.blogSingle-content ul {
    padding: 0;
    margin: 0;
}
.blogSingle-content li {
    list-style: none;
    color: #3d4149;
    font-size: 15px;
    line-height: 25px;
    font-weight: 300 !important;
    padding-left: 1.5rem;
    position: relative;
    padding-bottom: 4px;
    line-height: 25px;
}
.blogSingle-content a {
    color: #47579a;
}
.blogSingle-content ul li:before {
    content: "\F1D3";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px;
    color: #47579a;
}

.sidebarBlog {
    margin-bottom: 30px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, .07);
}
.sidebarBlog ul{
  margin:0;
  padding: 0;
}
.sidebarBlog li {
    display: flex;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #e8ecef;
}
.recentImg {
    width: 100%;
    height: 100px;
    max-width: 100px;
}
.recentImg img {
    max-width: 134px;
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}
.sidebarBlog li a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    max-height: 2.6em;
    margin-bottom: .5em;
    font-size: 16px;
    font-weight: 600;
    color: #07132b;
    font-family: "Nunito", serif;
}
.sidebarBlog li a:hover {
    color: #47579a;
}
.recentTitle {
    padding-left: 1.2rem;
}
.recentTitle span {
    font-size: 13px;
    letter-spacing: -0.2px;
    color: #677289;
}
.recentTitle i {
    margin-right: 3px;
}
.sidebarBlog li:last-child {
    border: none;
    padding-bottom: 0;
}
ul#dz-search-results li.list-group-item a {
    color: #475d9a;
}
ul#dz-search-results {
    position: absolute;
    top: 117px;
    z-index: 99;
}
input#dz-search-input {
    background: #f4f2fb;
    border-radius: 8px;
    margin-bottom: 22px;
}
button.search-submit {
    display: none;
}
.sidebarBlog h4 {
    background: #47579a;
    padding: 12px 13px;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

/* 404 Page */
section.error-inner-page {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(153deg, rgb(52 69 141) 0%, rgb(133 196 159) 100%);
}
/*section.error-inner-page:after {
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 71%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 100%;
    filter: blur(5rem);
}*/
.error-col {
    display: flex;
    align-items: center;
}
.error-wrapper {
    padding: 0 6rem 0 1rem;
}
.error-wrapper h2 {
    font-size: 4rem;
    color: #fff;
    font-weight: 600;
}
.error-wrapper p{
    color: #fff;
}

/*Contact Form*/

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.4em 0.5em;
    border: 1px solid #00a0d2;
    font-size: 15px;
}

/* Portfolio Css*/

.gal .image-popup img {
    width: 100%;
    max-height: 250px;
    height: 100vh;
    object-fit: cover;
}
.gal .image-popup {
    width: calc(100% / 4 - 15px);
    display: inline-block;
    vertical-align: top;
    border: solid 1px #dfd9e9;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    padding: 10px;
    background: #f6f1ff;
    margin: 7px 5px;
}
a.image-popup span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #07132b;
    font-family: "Nunito", serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0.8rem 0 0;
    text-transform: capitalize;
}

/*Portfolio Listing*/

.portfolio-container {
    text-align: center;
	margin:0.7rem 0;
	box-shadow:0px 4px 11px 2px hsl(0deg 4% 47% / 19%);
}
.portfolio-container a {
    color: #47579a;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    letter-spacing: -0.2px;
}
.portfolio-container img {
    max-height: 250px;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.port-listing-title {
    background: #ffffff;
    width: 90%;
    margin: -1rem auto 0;
    position: relative;
    padding: 0.9rem 0 11px;
    border-radius: 15px;
}
.port-listing-title h4 {
    font-size: 22px;
    margin-bottom: 1px;
    font-weight: 700;
    letter-spacing: -0.2px;
}
@media screen and (max-width: 992px){
	.gal .image-popup {
    width: calc(100% / 3 - 15px);
}
}
@media screen and (max-width: 767px){
	    .gal{
        text-align:center;
    }
    .gal .image-popup {
        width: calc(100% / 2 - 14px);
        margin: 7px 4px;
    }
.gal .image-popup img {
    max-height: 180px;
}
	a.image-popup span {
    -webkit-line-clamp: 2;
    font-size: 16px;
    margin: 0.8rem 0 0;
    line-height: 20px;
}
section.inner-banner-sec h1 {
    font-size: 42px;
}
}  


/* Spinner off*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.banner-heading a {
    color: #475a99;
}
.banner-heading a.theme-btn {
    color: #fff !important;
}
a:hover {
    text-decoration: none !important;
}
.intro-srv a {
    color: #47579a;
}
.intro-srv a:hover {
    color: #111010;
}
.who_we_are a {
    color: #47579a;
}
.who_we_are a:hover {
    color: #111010;
}



.flux-box {
    background: #fff;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 5px;
    padding: 20px 25px 25px;
    position: relative;
    overflow: hidden;
}

.flux-box:before {
    background: linear-gradient(90deg, #CFA2E8, #637FEA);
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
}

.flux-box h3 {
    margin: 0;
    padding: 0 0 0.8rem;
    font-size: 24px;
}

.flux-box p {
    text-align: justify;
    padding-bottom: 0rem;
}

.hangerLine {
    position: relative;
    padding: 3rem 0 0rem;
}

.hangerLine:before {
    content: "";
    width: 100%;
    height: 3px;
    left: 0px;
    top: 8px;
    background-image: radial-gradient(
        ellipse at center,
        #2F57EF 0,
        rgba(255, 255, 255, 0) 70%
    );
    position: absolute;
}

.flux-box-col {
    position: relative;
}

.flux-box-col::before {
    content: "";
    width: 3px;
    height: 32px;
    background-image: linear-gradient(#2F57EF, rgba(255, 255, 255, 0));
    left: 50%;
    bottom: 100%;
    position: absolute;
    transform: translateX(-50%);
}

.flux-box-col::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid #2F57F0;
    border-radius: 100%;
    left: 50%;
    bottom: calc(100% + 28px);
    transform: translateX(-50%);
    background: #f9f9ff;
}

.hangerLine .flux-box-col:nth-child(even) {
    padding-top: 40px;
}

.flux-box-col:nth-child(even)::before {
    height: 96px;
    bottom: 87%;
}

@media screen and (max-width: 992px) {

    .hangerLine {
        padding: 2rem 0 0rem;
    }

    .hangerLine .flux-box-col:nth-child(even) {
        padding-top: 0px;
    }

    .flux-box {
        max-height: 320px;
        height: 100vh;
        margin: 1.2rem 0;
    }

    .flux-box-col:nth-child(even)::before {
        height: 55px;
        bottom: 99%;
    }

    .flux-box-col::after {
        width: 20px;
        height: 20px;
        bottom: calc(100% + 11px);
    }
}