/* :root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", lato, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", lato;
  --nav-font: "Raleway", lato;
} */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2c4964;
  --white_color: #ffffff;
  --accent-color: #336aea;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #2c4964;
  --nav-hover-color: #336aea;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2c4964;
  --nav-dropdown-hover-color: #336aea;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Open Sans", sans-serif;

}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
  color: #1a1a1a;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #336aea;

}

.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);

}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: normal;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 33px 0 0 !important;
    padding: 7px 14px !important;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #747474;
    font-size: 18px;
    padding: 0 2px;

    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }



  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    /* transition: all 0.3s ease-in-out 0s; */
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-out;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #747474;

    font-weight: 500;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: white;
    background-color: #336aea;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.footer {
  color: #121111;
  background-color: #121111 !important;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 45px;
  margin-right: 6px;

  width: auto;
}

.footer .footer-about .logo span {
  color: var(--white_color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 16px;

  color: var(--white_color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* border: 1px solid 
  color-mix(in srgb, #ffffff, transparent 50%); */
  font-size: 16px;
  color:
    color-mix(in srgb, #ffffff, transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
  background-color: #201F1F;
}

.footer .social-links a:hover {
  color: white;
  border-color: #336aea;
  background-color: #336aea;
}

.footer h4 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: white;

}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;

}

.footer .footer-links ul li:first-child {
  padding-top: 0;

}

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  line-height: 1;


}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;

}

.footer .copyright {
  /* padding-top: 25px; */
  padding-bottom: 25px;
  display: flex;
  gap: 52%;
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--white_color);

}

.elementor-widget-container {
  color: var(--white_color);
}

.footer .credits {
  font-size: 13px;

}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 58px;
  bottom: 47px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 32px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 34px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

#slider {
  padding: 0px 0px !important;
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  float: left;
  display: flex !important;
  align-items: center;
}

.footer {
  background: #000;
  background-size: auto 100%;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/********** harsh css ***********/
.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: #336aea;

}

.header .cta-btn,
.header .cta-btn:focus {
  color: #ffffff;
  border: 1px solid #336aea;
  font-size: 17px;
  padding: 8px 25px;

  margin: 0 0 0 30px;
  font-weight: 500;
  background: #336aea;
  border-radius: 5px;

}


.header .cta-btn:hover {
  background: #ffffff;
  border-color: #336aea;
  color: #336aea;
  /* transform: scale(1.05); 
  transition: all 0.3s ease-in-out;  */
}


.carousel-caption h5 {
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  text-align: left;
  display: inline-block;
  float: left;
  padding: 30px 100px;
  border-radius: 15px;

}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  max-width: 100%;
}

@keyframes moveUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
    /* Start lower */
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    /* Move up */
  }
}

h5 {
  display: inline-block;
  animation: moveUp 1s ease-in forwards;
}

.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 115%;
  visibility: visible;
}

.Accounts {
  font-size: 20px;

  color: #797979;
}

.Accounts strong {

  color: #797979;
}

.col-lg-6.content.d-flex.flex-column.aos-init.aos-animate {
  justify-content: center;
}

.about-three-wrapper.ptb-100 {
  padding: 70px 0;


}

.about-three-wrapper .about-three-img {
  position: relative;
}



/* .about-three-wrapper .about-three-img .about-img-overlay::after {
  content: "";
  position: absolute;
  left: -9%;
  top: -37px;
  height: 100%;
  width: 100%;
  border-width: 8px;
  border-style: solid;
  transform: rotateY(0);
  transform-origin: right;
  z-index: -1;
  transition: all 1s ease;
  opacity: 1;
  visibility: visible;
  color: #336aea;
} */

.about-three-wrapper .about-three-img .about-img-overlay {
  position: relative;
  max-width: 100%;
  /* top: 70px; */
  margin: 0 0 0 0;
  width: 500px;
  border-radius: 10px;
}

span.banner-text {
  color: #336aea;
}

.about-three-wrapper .about-three-img .experience-wrapper {
  background-color: white;
  /* box-shadow: -40px 24px 60px rgba(5, 30, 54, 0.04); */
  border-radius: 15px;
  backdrop-filter: blur(2px);
  position: absolute;
  right: 5px;
  bottom: -34px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px;
  ;
  align-items: center;
  gap: 11px;
  padding: 20px;
}

h3.money {
  color: black;
  font-size: 37px;
  line-height: 48px;
  margin-bottom: 30px;

  font-weight: 700;
}

span.plan {
  font-weight: 700;
  color: #336aea;
}




p.service1 {}



.read-more-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: ;
  text-decoration: none;
  color: white;
  background-color: #336aea;
  border: 2px solid #336aea;
  transition: all 0.3s ease-in-out;
  cursor: pointer;

  border-radius: 5px;
  margin: 25px 0 0 0;
}

/* Hover Effect */
.read-more-btn:hover {
  background-color: white;
  color: #336aea;
  border-color: #336aea;

}







.year {
  color: #336aea;
  border-left: 1px solid rgba(128, 128, 128, 0.5019607843);
  padding-left: 16px;

  font-size: 24px;
}

h2.fourty {
  color: #336aea;
  font-weight: 600;
  font-size: 40px;
}






/* services  csss */
/* 

.section-services {
 
	background-color: #e4e4e475;
	color: #202020;
	padding-top: 115px;
    padding-bottom: 120px;
}
.section-services .header-section {
	margin-bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: anchor-center;
}
.section-services .header-section .title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
 
}
.section-services .header-section .title:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: 
color-mix(in srgb, var(--default-color), transparent 60%);
    left: 44%;
    right: 79px;
    bottom: 1px;
}
.section-services .header-section .title:after {
    content: "";
    position: absolute;
    display: block;
    width: 138px;
    height: 3px;
    background: #336aea;
    left: 33%;
    right: 0;
    bottom: 0;
    
}
.section-services .header-section .description {
	font-size: 14px;
    color: #282828;
}
.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
}
.section-services .single-service .content {
	position: relative;
	z-index: 20;
}
/* .section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #ff4500;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
} 
.section-services .single-service:hover .circle-before {
	width: 100%;
	height: 100%;
	transform: none;
	border: 0;
	border-radius: 0;
	opacity: 1;
}
.section-services .single-service .icon {
	display: inline-block;
	margin-bottom: 43px;
    width: 70px;
    height: 70px;
    background-color: #ff4500;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}
.section-services .single-service:hover .icon {
	background-color: #fff;
	color: #ff4500;
}
.section-services .single-service .title {
    margin-bottom: 35px;
	font-weight: 700;
    font-size: 23px;
    transition: color .3s;
 
}
.section-services .single-service:hover .title {
	color: #fff;
}
.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}
.section-services .single-service:hover .description {
	color: #fff;
}
.section-services .single-service a {
	position: relative;
	font-size: 18px;
    color: red;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
 
}
.section-services .single-service:hover a {
	color: #fff;
}
.section-services .single-service:hover a:after {
	background-color: #fff;
}
 */




section {
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-header h3 {
  font-size: 36px;
  color: #413e66;
  text-align: center;
  font-weight: 700;
  position: relative;

}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}


.box svg path {
  fill: black !important;
  transition: fill 0.3s ease;
}

.box:hover svg path {
  fill: #336aea !important;
}



#services {
  padding: 60px 0 40px 0;
}

#services .box {
  padding: 43px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0;
  /* margin: 0 10px 40px 10px; */
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  max-width: 100%;
  max-height: 100%;
}

#services .box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 16px 24px rgba(67, 77, 90, 0.4);


}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#services .icon .service-icon {
  font-size: 36px;
  line-height: 1;
}

#services .title {
  font-weight: 700;
  /* margin-bottom: 15px; */
  font-size: 25px;
  margin-top: 20px;
}

#services .title a {
  color: #000000;

  font-size: 19px !important;
}

#services .box:hover .title a {
  color: #336aea;
}

#services .box:hover .title a:hover {
  text-decoration: none;
}

#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}



.slide-container {
  max-width: 1320px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
}

/* .card{
  background-color: #FFF;
  border: none !important;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #336aea;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070F4;
}
.name{
  font-size: 24px;
  font-weight: 500;
  color: #000000;
 
  margin-top: 21px;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #336aea;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.button:hover{
  background: #336aea;
}
.swiper-navBtn{
  color: #336aea;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #336aea;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 38px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
} */
@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
}

.content p.description {
  text-align: left;
}

.button a {
  color: white;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #336aea;
  opacity: 0.5;
}

.card.swiper-slide.swiper-slide-active {
  border-radius: 28px;
}

.card.swiper-slide.swiper-slide-next {
  border-radius: 28px;
}

.card.swiper-slide {
  border-radius: 28px;
}

.card-content {
  border: 1px solid #c9c9c9b0 !important;
}

.fa-arrow-right:before {
  content: "\f061";
  margin-right: 9px;
}

/* .row.gy-4.jhmehta {
  display: flex;
  gap: 8%;
} */

.footerpage {
  display: flex;
  gap: 60px;
}

.progress-bar {
  width: 25%;
  height: 3px;
  background: #adadad;
  /* border-radius: 3px; */
  overflow: hidden;
  margin: 14px 0 14px 0;
}

.progress {
  width: 41%;
  height: 100%;
  background: #336aea;
}

h2.heading {}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.84);
}

.single-service:hover {
  background: #ff4500;
}










.wrapper {

  text-align: center;

}

.wrapper h1 {
  font-family: 'Yatra One', cursive;
  font-size: 48px;
  color: #fff;
  margin-bottom: 25px;
}

.our_team {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 56px;
}

.our_team .team_member {
  width: 250px;
  margin: 5px;
  background: #fff;
  padding: 20px 10px;
}

.our_team .team_member .member_img {
  background: #ff4500;
  max-width: 190px;
  width: 100%;
  height: 190px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 3px;
  position: relative;
  cursor: pointer;
}

.our_team .team_member .member_img img {
  width: 100%;
  height: 100%;
}

.our_team .team_member h3 {

  font-size: 19px;
  line-height: 18px;
  /* letter-spacing: 2px; */
  margin: 15px 0 0px;

}

.our_team .team_member span {
  font-size: 14px;


}

.our_team .team_member p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
}

.our_team .team_member .member_img .social_media {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.65);
  width: 95%;
  height: 95%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
  transition: all 0.5s ease;
}

.our_team .team_member .member_img .social_media .item {
  margin: 0 10px;
}

.our_team .team_member .member_img .social_media .fab {
  color: #ff4500;
  font-size: 20px;
}

.our_team .team_member .member_img:hover .social_media {
  transform: scale(1);
}

div#audit {
  margin-top: 47px;
}



.title {
  text-align: center;
  text-transform: capitalize;
  color: #726a95;
  margin: 10px 0;
  position: relative;
}



.team-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.member {
  flex: 1 1 250px;
  margin: 20px;
  text-align: center;
  padding: 20px 10px;
  cursor: pointer;
  max-width: 300px;
  transition: all 0.3s;
  /* border: 1px solid #bdbdbd5c; */
  box-shadow: 0 10px 29px 0 rgb(103 109 126 / 24%);
  background: rgb(255, 255, 255);
  height: 100%;
}

.member:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
}

.member img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  margin: 0 auto;
}

.member h2 {
  font-size: 24px;
  color: #336aea;
  margin: 15px 0;

}

.member p {
  font-size: 16px;
  color: #838383;
  line-height: 1.6;

}

.title a {
  font-size: 24px !important;
}





.box {
  background: #fff;
  transition: all 0.1s ease-in-out;
}

.box:hover {
  transition: all 0.1s ease-in-out;
}

.box.iconcolor1 {
  transition: all 0.1s ease-in-out;
}

.box .iconcolor2 {
  transition: all 0.1s ease-in-out;
}

.box:hover .iconcolor1 {
  fill: #fff;
  transition: all 0.1s ease-in-out;
}

.box:hover .iconcolor2 {
  fill: #000;
  transition: all 0.1s ease-in-out;
}






.box {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.box.show {
  opacity: 1;
  transform: scale(1);
}

@keyframes move_wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1)
  }

  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55)
  }

  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1)
  }
}

.waveWrapper {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.waveWrapperInner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
  bottom: -1px;
  background-image: linear-gradient(to top, #86377b 20%, #27273c 80%);
}

.bgTop {
  z-index: 15;
  opacity: 0.5;
}

.bgMiddle {
  z-index: 10;
  opacity: 0.75;
}

.bgBottom {
  z-index: 5;
}

i.bi.bi-geo-alt.flex-shrink-0 {
  color: #ffffff;
  background: var(--accent-color);
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3sease-in-out;
  margin-right: 9px;
  padding: 17px;

}

i.bi.bi-telephone.flex-shrink-0 {
  color: #ffffff;
  background: var(--accent-color);
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3sease-in-out;
  margin-right: 9px;
  padding: 17px;

}




.page-title .heading {
  padding: 90px 0 90px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background-image: url(../img/inner-banner-1.jpg);
}

p.inner-text {
  font-size: 40px;

  color: white;
  font-weight: 700;
}










.cursor {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  z-index: 111;
  border: 2px solid #336aea;
  transition: all 0.2s ease-out;
  animation: moveCursor1 .5s infinite alternate;
  overflow: hidden;
}

.expand {
  background: transparent;
  animation: moveCursor2 .5s forwards;
  border: 2px solid #336aea;
  overflow: hidden;
}

@keyframes moveCursor1 {
  from {
    transform: scale(1);
    overflow: hidden;
  }

  to {
    transform: scale(.8);
    overflow: hidden;
  }
}

@keyframes moveCursor2 {
  0% {
    transform: scale(1);
    overflow: hidden;
  }

  50% {
    transform: scale(2.5);
    overflow: hidden;
  }

  100% {
    transform: scale(1);
    opacity: 0;
    overflow: hidden;
  }
}

.our_firm_exp {
  background-color: #336aea;
  padding: 50px;
}

.our_firm_exp h3 {
  margin-bottom: 15px;
}

.our_firm_exp ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.our_firm_exp ul li {
  background: url(../img/bullet-point.svg) 0px 0px no-repeat;
  padding-left: 30px;
  background-size: 22px;
  padding-bottom: 8px;
}

.our_firm {
  background-color: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 15px 0px 0px 15px;
}

.our_exp {
  background-color: #336aea;
  padding: 30px;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 0px 15px 15px 0px;
}

.our_exp p,
.our_exp h3,
.our_exp ul li {
  color: #fff;
}

.our_firm_exp .col.p-0 {
  padding: 0px;
}

.our_firm_exp .our_exp ul li {
  background: url(../img/bullet-point2.svg) 0px 0px no-repeat;
  padding-left: 30px;
  background-size: 22px;
  padding-bottom: 8px;

}

.leadership_box {
  margin: 30px 0px;
}

.leadership_box_inner .media {
  padding: 30px;
  background: #f5f8fd;
  border-radius: 15px;
  margin: 20px 0px;
  display: flex;

  align-items: center;
  gap: 25px;
  flex-wrap: unset;

}

.media .media-body {
  display: block;
  max-width: 100%;
}

.iconbox {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0rem 5rem;
}

.media i {
  color: #ffffff;
  background: var(--accent-color);
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3sease -in-out;
  margin-right: 9px;
  padding: 17px;
}

.leadership_box_inner h3 {
  font-size: 22px;
}

.leadership_box_inner h6 {
  color: #000;
  font-size: 17px;
}

.leadership_box_inner p {
  text-align: justify;
}

.col_box {
  padding: 50px;
}

.con_main .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* border: 1px solid 
  color-mix(in srgb, #ffffff, transparent 50%); */
  font-size: 16px;
  color:
    color-mix(in srgb, #ffffff, transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
  background-color: #201F1F;
}

.con_main h2 {
  margin-bottom: 20px;
}

.con_main .social-links a:hover {
  color: white;
  border-color: #336aea;
  background-color: #336aea;
}

.con_main {
  margin: 50px 0px;
}

.col_box_left {
  padding: 30px;
  background: #f5f8fd;
  border-radius: 15px;
}

.col_box_right iframe {
  border-radius: 15px;
}


i.bi.flex-shrink-0 {
  color: #ffffff;
  background: var(--accent-color);
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3sease -in-out;
  margin-right: 9px;
  padding: 17px;
}

.fwt {
  color: #fff;
}

h6.fwt {
  color: #fff;
}

.about-img-overlay.aos-init.aos-animate {
  width: 95%;
}


body {
  overflow-x: hidden;
}

.leadership_box_inner .media img {
  border: 1px solid #3269e9;
  border-radius: 100%;
}


.custom-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  border-top: 1px solid rgb(236, 236, 236);
  padding-top: 15px;
}


.media1 ul li {
  background: url(../img/bullet-point.svg) 0px 0px no-repeat;
  padding-left: 30px;
  background-size: 22px;
  padding-bottom: 8px;
  list-style: none;
}

.media1 {
  padding: 30px;
  background: #f5f8fd;
  border-radius: 15px;
  margin: 20px 0px;
  /* display: flex; */
  align-items: center;
  gap: 25px;
  flex-wrap: unset;
}

.media1 .media-body {
  display: block;
  max-width: 100%;
}

.media1 i {
  color: #ffffff;
  background: var(--accent-color);
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3sease -in-out;
  margin-right: 9px;
  padding: 17px;
}

.media1 img {
  border: 1px solid #3269e9;
  border-radius: 100%;
}

.media-body ul {
  margin: 0px !important;
  padding: 0px !important;
}
.partnerp{
  padding-top: 10px;
}

#last-updated{
  padding-top: 10%;
  color: white;
}