/**
* Template Name: Rapid
* Template URL: https://bootstrapmade.com/rapid-multipurpose-bootstrap-business-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --button-font-size: clamp(12px, 1.2vw, 16px);
  --button-padding: 0.625em 2em;
  --color-primary: #204297;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #204297;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #1A3573;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

h1,
h2 {
  font-weight: 600;
}

.red{
  color:red;
}
.green{
  color:green;
}
.roundimg
{
  border-radius: 15px;
  filter: drop-shadow(8px 8px 10px gray);
}
.link {
  cursor:pointer;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #204297;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #39c0e7;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.parallax{
    background-image:url("/public/images/web-design-team.jpg");
    min-height:600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
}
.parallaxService{
    background-image:url("/public/images/Service.jpg");
    min-height:600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
}
.parallaxProduct{
    background-image:url("/public/images/Product.jpg");
    min-height:600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
}
.parallax5{
    background-image:url("/public/images/AdobeStock_85464803.jpeg");
    min-height:600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
}

#header.header-scrolled {
  background: #fff;
  height: 80px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo img {
  max-height: 70px;
}

#header .social-links {
  margin: 0 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header .social-links a {
  color: #F5F7FA;
  transition: 0.3s;
  line-height: 0;
  margin-left: 15px;
  padding: 10px 0 10px 15px;
}

#header .social-links a:hover {
  color: #dec439;
}

#header.header-scrolled .social-links a {
  color: #444444
}

/*--------------------------------------------------------------
# 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 0 10px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 650;
  color: #F5F7FA;
  white-space: nowrap;
  transition: 0.3s;
}

.header-scrolled .navbar a {
  color: #444444
}

.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: #dec439;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 400;
}

.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: #204297;
}

.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 
*/
.mobile-nav-toggle {
  color: #204297;
  font-size: 48px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 43, 70, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 24px;
  color: #204297;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

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

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #204297;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*#hero {
  width: 100%;
  height: 95vh;
  background: url("/public/images/dcsBackground.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;*/
#hero {
    position: relative;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    background: transparent
}

/*.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 95vh;
    object-fit: cover;
    z-index: -1;
}*/

.hero-video {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1,
#hero h1 span {
    color: #ffffff;
}

#hero .intro-info h1 {
  color: #F5F7FA;
  margin-bottom: 30px;
  font-size: 70px;
  font-weight: 750;
}

@media (max-width: 576px) {
  #hero .intro-info h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  #hero .intro-info h1 {
    font-size: 60px;
  }
}

#hero .intro-info h1 span {
  color: #dec439;
}

#hero .intro-info .btn-get-started,
#hero .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #dec439;
  color: #fff;
}

#hero .intro-info .btn-get-started:hover,
#hero .intro-info .btn-services:hover {
  background: #ab8207;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/*--------------------------------------------------------------
About Us Section
--------------------------------------------------------------*/

.page-header {
    padding-top: 140px;
    padding-bottom: 40px;
}

.page-header h1 {
    font-weight: 700;
    color: #204297;
}

.page-header .page-subtitle {
    font-size: 20px;
    color: #204297;
    max-width: 850px;
    margin: 0 auto;
}

.about {
    padding: 50px 0;
}

.about h2 {
    text-align: center;  
    font-weight: 700;
    margin-bottom: 10;
    color: #204297;
}

.about h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #e5c62f;
    margin: 18px auto 0;
}

.about h3 {
    font-weight: 700;
    color: #000;
}

.about p,
.about li {
    color: #333;
    font-size: 17px;
    line-height: 1.7;
}

.about ul {
    margin-bottom: 25px;
}

#ourTeam .card {
    cursor: pointer;
}

#ourTeam .card-title {
    color: #000;
}

/* About Page CTA Section
--------------------------------*/
#aboutCTA.about-cta {
    background: linear-gradient(135deg, #1f4699 0%, #12316f 50%, #0b1f4d 100%);
    padding: 80px 0;
    color: #ffffff;
}

#aboutCTA h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

#aboutCTA .cta-underline {
    width: 50px;
    height: 3px;
    background: #e5c62f;
    margin: 0 auto 25px auto;
}

#aboutCTA p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    max-width: 950px;
    margin: 0 auto 20px auto;
}

#aboutCTA .cta-btn {
    display: inline-block;
    background: #e5c62f;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 4px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#aboutCTA .cta-btn:hover {
    background: #ffffff;
    color: #1f4699;
    text-decoration: none;
}

#about {
  padding: 70px 0;
  background: #ffffff;
  position: relative;
  z-index: 3;
}

#about .row {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

#about h2 {
  color: #204297;
}

#about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #dec439;
  margin: 18px auto 0;
  border-radius: 10px;
}

#about h4 {
  color: #444444;
}

#about p {
  color: #555555;
}

/*--------------------------------
Partners Section
--------------------------------*/
#partners {
  padding: 85px 0;
  background: #ffffff;
  position: relative;
  z-index: 3;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

#partners h2 {
  color: #204297;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

#partners h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #dec439;
  margin: 18px auto 0;
  border-radius: 10px;
}

#partners .partners-subtitle {
  color: #555555;
  max-width: 760px;
  margin: 25px auto 45px auto;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

#partners .partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

#partners .partner-card {
  background: #f5f7fa;
  border: 1px solid #e0e6ef;
  border-radius: 14px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: 0.3s ease;
}

#partners .partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(32, 66, 151, 0.14);
  border-color: #dec439;
}

#partners .partner-card img {
  max-width: 180px;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  #partners .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone */
@media (max-width: 576px) {
  #partners .partners-grid {
    grid-template-columns: 1fr;
  }

  #partners .partner-card {
    min-height: 125px;
  }
}

/*--------------------------------
Clients Section
--------------------------------
#clients {
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 3;
}

#clients h2 {
  color: #444444;
}

#clients .swiper-wrapper {
  height: unset;
}

#clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #204297;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #204297;
}*/

#clients {
  padding: 90px 0;
  background: linear-gradient(135deg, #10245c 0%, #204297 55%, #132b6f 100%) !important;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

#clients .container {
  position: relative;
  z-index: 1;
}

#clients h2 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

#clients h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #dec439;
  margin: 18px auto 0;
  border-radius: 10px;
}

#clients .clients-subtitle {
  color: #f5f7fa;
  max-width: 760px;
  margin: 0 auto 45px auto;
  font-size: 18px;
  line-height: 1.6;
}

#clients .clients-slider {
  background: rgba(255, 255, 255, 0.96);
  padding: 45px 40px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

#clients .swiper-wrapper {
  height: unset;
}

#clients .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

#clients .swiper-slide img {
  max-height: 110px;
  width: auto;
  opacity: 1;
  transition: 0.3s ease;
}

#clients .swiper-slide img:hover {
  transform: scale(1.08);
}
/*--------------------------------
Contact Section
--------------------------------*/
#contact {
  padding: 90px 0;
  background: #f5f7fa;
  position: relative;
  z-index: 3;
}

#contact h2 {
  color: #204297;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

#contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #dec439;
  margin: 18px auto 0;
  border-radius: 10px;
}

#contact .contact-intro {
  color: #555555;
  max-width: 720px;
  margin: 25px auto 40px auto;
  font-size: 18px;
  line-height: 1.6;
}

#contact .contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 45px;
  box-shadow: 0 18px 45px rgba(32, 66, 151, 0.12);
  border-top: 5px solid #dec439;
}

#contact .contact-info-box {
  background: linear-gradient(135deg, #10245c 0%, #204297 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 35px;
  height: 100%;
}

#contact .contact-info-box h3 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

#contact .contact-info-box p {
  color: #f5f7fa;
  margin-bottom: 15px;
  font-size: 16px;
}

#contact .contact-info-box a {
  color: #dec439;
  font-weight: 700;
  text-decoration: none;
}

#contact .contact-info-box a:hover {
  color: #ffffff;
}

#contact .form-control {
  border-radius: 8px;
  padding: 13px 15px;
  border: 1px solid #d8dee9;
  margin-bottom: 16px;
}

#contact .form-control:focus {
  border-color: #204297;
  box-shadow: 0 0 0 0.2rem rgba(32, 66, 151, 0.15);
}

#contact textarea.form-control {
  min-height: 140px;
}

#contact .contact-submit {
  background: #dec439;
  color: #ffffff;
  border: none;
  padding: 13px 34px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

#contact .contact-submit:hover {
  background: #ab8207;
}

/*--------------------------------
Services Section
--------------------------------*/
#services {
  padding: 60px 0 40px 0;
}

#services h2 {
  color: #204297 !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

#services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #dec439 !important;
  margin: 18px auto 0;
  border-radius: 10px;
}

#services p {
  color: #555555;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100%;
}

#services .box:hover {
  transform: scale(1.1);
}

#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 i {
  font-size: 36px;
  line-height: 0;
}

#services .icon-img-parent {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

#services .icon-img {
  display: inline-block;
  padding: 5px;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;justify-content: center;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #204297;
}

#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}
.service-img-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}
/*--------------------------------
 Why Us Section
--------------------------------*/
#why-us {
  padding: 60px 0;
}

@media (max-width: 991px) {
  #why-us .why-us-content {
    padding-top: 30px;
  }
}

#why-us .why-us-content .features {
  margin: 0 0 15px 0;
  padding: 0;
}

#why-us .why-us-content .features i {
  font-size: 36px;
  float: left;
}

#why-us .why-us-content .features h4 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 56px;
  color: #204297;
  margin-bottom: 5px;
}

#why-us .why-us-content .features p {
  font-size: 16px;
  margin-left: 56px;
  color: #F5F7FA;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #F5F7FA;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #8a87b6;
}

#practicalIT,
#WhoWeHelp {
    background: transparent;
    position: relative;
    z-index: 3;
}

#PainPoints,
#ValueBenefits {
    background: #f5f7fa;
    position: relative;
    z-index: 3;
}

#practicalIT h3,
#practicalIT p,
#practicalIT li,
#WhoWeHelp h3,
#WhoWeHelp p,
#WhoWeHelp li {
    color: #444444;
}

/*--------------------------------
Solution CTA Section
--------------------------------*/
#solution-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #10245c 0%, #204297 55%, #132b6f 100%);
  position: relative;
  z-index: 3;
  overflow: hidden;
  text-align: center;
}

#solution-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(222, 196, 57, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 30%);
  z-index: 0;
}

#solution-cta .container {
  position: relative;
  z-index: 1;
}

#solution-cta h2 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
}

#solution-cta h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #dec439;
  margin: 18px auto 0;
  border-radius: 10px;
}

#solution-cta p {
  color: #f5f7fa;
  font-size: 18px;
  line-height: 1.7;
  max-width: 950px;
  margin: 0 auto 20px auto;
}

#solution-cta .btn-solution-cta {
  display: inline-block;
  background: #dec439;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 10px;
}

#solution-cta .btn-solution-cta:hover {
  background: #ab8207;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #2d2b46;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 991px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #204297;
  border: 3px solid #204297;
}

/* Features Section
--------------------------------*/
#features {
  padding: 80px 0;
}

#features h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Contact Page - What Happens Next CTA
--------------------------------*/
#contact-next-steps {
  background: #204297;
  padding: 90px 0;
  margin-top: 60px;
  color: #ffffff;
  width: 100%;
}

#contact-next-steps h2 {
  color: #ffffff !important;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

#contact-next-steps .section-underline {
  width: 60px;
  height: 4px;
  background: #e3c52b;
  margin: 0 auto 25px auto;
  border-radius: 2px;
}

#contact-next-steps p {
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 22px auto;
}

#contact-next-steps .contact-next-btn {
  display: inline-block;
  margin-top: 15px;
  background: #e3c52b;
  color: #ffffff !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

#contact-next-steps .contact-next-btn:hover {
  background: #ffffff;
  color: #204297 !important;
  text-decoration: none;
}

/* Team Section
--------------------------------*/
#team {
  padding: 60px 0;
}

#DCS-Modal .row div .clearfix div h2::after {
  margin:0px;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

#team .member .member-info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  padding: 15px 0;
  background: rgba(29, 28, 41, 0.6);
}

#team .member .member-info-content {
  transition: margin 0.2s;
  height: 36px;
  transition: height 0.4s;
}

#team .member:hover .member-info {
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  height: 70px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #204297;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}



/* Pricing Section
--------------------------------*/
#pricing {
  padding: 80px 0;
}

@media (max-width: 991px) {
  #pricing {
    padding-bottom: 30px;
  }
}

#pricing .card {
  border: 0;
  border-radius: 0px;
  box-shadow: 0 3px 0px 0 rgba(65, 62, 102, 0.08);
  transition: all 0.3s ease-in-out;
  padding: 36px 0;
  position: relative;
}

@media (max-width: 991px) {
  #pricing .card {
    margin-bottom: 50px;
  }
}

#pricing .card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background-color: #204297;
  transition: 0.5s;
}

#pricing .card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08);
}

#pricing .card:hover:after {
  width: 100%;
}

#pricing .card .card-header {
  background-color: white;
  border-bottom: 0px;
  -moz-text-align-last: center;
  text-align-last: center;
}

#pricing .card .card-title {
  margin-bottom: 16px;
  color: #535074;
}

#pricing .card .card-block {
  padding-top: 0;
  text-align: center;
}

#pricing .card .list-group-item {
  border: 0px;
  padding: 6px;
  color: #204297;
  font-weight: 300;
}

#pricing .card h3 {
  font-size: 64px;
  margin-bottom: 0px;
  color: #535074;
}

#pricing .card h3 .currency {
  font-size: 30px;
  position: relative;
  font-weight: 400;
  top: -30px;
  letter-spacing: 0px;
}

#pricing .card h3 .period {
  font-size: 16px;
  color: #6c67a3;
  letter-spacing: 0px;
}

#pricing .card .list-group {
  margin-bottom: 15px;
}

#pricing .card .btn {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: #5f5b96;
  border-radius: 0;
  padding: 10px 24px;
  letter-spacing: 1px;
  border-radius: 3px;
  display: inline-block;
  background: #204297;
  color: #fff;
}

#pricing .card .btn:hover {
  background: #1A3573;
}

.get-support-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #dec439;
  border: none;
}

#contactSubmitForm .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contactSubmitForm .error-message br+br {
  margin-top: 25px;
}

#contactSubmitForm .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contactSubmitForm .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contactSubmitForm .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*#footer {
  padding: 0 0 30px 0;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding-top: 15px;
  padding: 60px 0 30px 0;
  background: #f5f8fd;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #204297;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #535074;
}

#footer .footer-top .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #204297;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #1A3573;
  color: #fff;
}

@media (max-width: 574px) {
  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #204297;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #696592;
}

#footer .footer-top .footer-links ul a:hover {
  color: #204297;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border: 1px solid #d9dde6;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #204297;
  border: 1px solid #204297;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #1A3573;
}

#footer .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#footer .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .error-message br+br {
  margin-top: 25px;
}

#footer .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#footer .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#footer .php-email-form input,
#footer .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#footer .php-email-form input:focus,
#footer .php-email-form textarea:focus {
  border-color: #204297;
}

#footer .php-email-form input {
  padding: 10px 15px;
}

#footer .php-email-form textarea {
  padding: 12px 15px;
}

#footer .php-email-form button[type=submit] {
  background: #204297;
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#footer .php-email-form button[type=submit]:hover {
  background: #1A3573;
  cursor: pointer;
}

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

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

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #535074;
  font-size: 15px;
}

#footer .credits {
  text-align: center;
  font-size: 14px;
  padding-top: 4px;
  color: #8582a8;
}

#footer .credits a {
  color: #204297;
}

#footer .credits a:hover {
  color: #1A3573;
}

/* Helper Classes */
.padding-top-100 {
  padding-top: 100px;
}

.padding-top-80 {
  padding-top: 80px;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #204297;
  --bs-btn-border-color: #204297;

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1A3573;
  --bs-btn-hover-border-color: #1A3573;

  --bs-btn-focus-shadow-rgb: 32, 66, 151;

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #152B5E;
  --bs-btn-active-border-color: #152B5E;

  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #204297;
  --bs-btn-disabled-border-color: #204297;
}

.card {
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.btn-fluid {
  font-size: var(--button-font-size);
  padding: var(--button-padding);
}

.get-support-btn:hover,
.get-support-btn:active, 
.get-support-btn:focus {
  background: #ab8207;
  color: #fff;
}

#services .card-title {
  display: flex;
  align-items: center;
}

/* Element defaults */
/* Smooth scrolling for anchor links, accounts for navbar */
html {
  scroll-padding-top: 80px;
}
section {
  padding: 20px 20px;
}
section:nth-of-type(odd) {
  background-color: #F6F8FB;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
  color: #444444;
  font-size: 14px;
  position: relative;
  z-index: 3;
  border-top: 1px solid #e2e8f0;
}

#footer .footer-main {
  padding: 60px 0 40px 0;
  background: #ffffff;
}

#footer h5 {
  color: #204297;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

#footer h5::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #dec439;
  margin-top: 12px;
  border-radius: 10px;
}

#footer p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 22px;
}

#footer a {
  display: block;
  color: #444444;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

#footer a:hover {
  color: #204297;
  padding-left: 4px;
}

#footer .footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

#footer .footer-contact-line i {
  color: #dec439;
  font-size: 17px;
}

#footer .footer-contact-line a {
  margin-bottom: 0;
  color: #204297;
  font-weight: 600;
}

#footer .footer-contact-line a:hover {
  color: #ab8207;
  padding-left: 0;
}

#footer .social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

#footer .social-links a {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  border-radius: 50%;
  background: #204297;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

#footer .social-links a i {
  font-size: 18px;
}

#footer .social-links a:hover {
  background: #dec439;
  color: #ffffff;
  padding-left: 0;
  transform: translateY(-3px);
}

#footer .footer-cta {
  display: inline-block;
  background: #dec439;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 0;
  line-height: 1.4;
}

#footer .footer-cta:hover {
  background: #ab8207;
  color: #ffffff;
  padding-left: 18px;
  transform: translateY(-2px);
}

#footer .copyright-wrap {
  background: #f5f7fa;
  border-top: 1px solid #e2e8f0;
  padding: 20px 0;
}

#footer .copyright {
  text-align: center;
  color: #555555;
  font-size: 14px;
}

#footer .copyright strong {
  color: #204297;
}

/* Mobile */
@media (max-width: 768px) {
  #footer .footer-main {
    padding: 45px 0 30px 0;
  }

  #footer h5 {
    margin-top: 12px;
  }

  #footer .social-links {
    justify-content: flex-start;
  }
}

section {
  padding: 20px 20px;
}

h1 {
  color: #204297;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
/* Default underline for all h1s */
h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: #dec439;
    border-radius: 999px; /* rounded ends */
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

h2 {
  color: #204297;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
/* Default underline for all h2s */
h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #dec439;
    border-radius: 999px; /* rounded ends */
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* Remove underline from certain headers with this class */
.no-underline::after {
    content: none;
}