* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  
   font-family: "Dosis", sans-serif;
   font-family: "Source Sans 3", sans-serif;
*/
body {
  background: #ffffff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--s-black);
  font-family: "Source Sans 3", sans-serif;
}

a {
  text-decoration: none;
  background: transparent;
  color: var(--s-black);
  transition: 0.4s all ease;
}

a:hover {
  color: #fff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  color: var(--s-black);
  font-weight: 400;
  font-family: "Dosis", sans-serif;
}

p {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 0rem;
  color: var(--s-black);
}

section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.site-btn {
  padding: 13px 30px 13px 30px;
  font-weight: 700;
  background-color: #00AEEF;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid #00AEEF;
  color: var(--s-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  transition-duration: 0.3s;
  font-family: "Dosis", sans-serif;
}
.site-btn:hover {
  border-color: var(--s-white);
  background-color: var(--s-white);
  color: var(--s-black);
}
.revSite-btn {
  background-color: #00AEEF;
  color: var(--s-white);
}
.revSite-btn:hover{
  background-color: var(--s-black);
  color: var(--s-white);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-primary);
  color: var(--s-primary);
}
.titleBar {
  position: relative !important;
  margin-bottom: 20px;
}
.titleBar span {
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--s-primary);
  display: block;
  position: relative;
}
.titleBar h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--s-black);
  margin-bottom: 20px;
}
.titleBar p {
  font-size: 17px;
  color: var(--s-black);
  margin-bottom: 0;
}
.iconbg {
  background: var(--s-primary);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
:root {
  --s-primary: #1eb8e6;
  --s-secondary: #282828;
  --s-third: #FBF4EA;
  --s-white: #ffffff;
  --s-black: #101719;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary) !important;
}
.text-s-secondary {
  color: var(--s-secondary) !important;
}
.text-s-white {
  color: var(--s-white) !important;
}
.bg-s-white {
  background-color: var(--s-white) !important;
}
.text-s-black {
  color: var(--s-black) !important;
}
.bg-s-black {
  background-color: var(--s-black) !important;
}

/*************************************/
/***     Header CSS Start Here     ***/
/*************************************/
/* Sticky Header CSS Start */
header {
  transition: all 0.5s linear;
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: none;
}
header .header-scrolled {
  background-color: var(--s-black);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
}
.header-scrolled .nav-link {
  /* color: var(--s-black) !important; */
  color: white;
}
/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.dropdown-item:hover {
  background-color: var(--s-primary);
  color: var(--s-white);
}
@media (min-width: 992px) {
  .dropdown-hover:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header {
  background-color: transparent;
  color: white;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  padding: 15px 0;
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: white;
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}

/*************************************/
/***     Banner CSS Start Here     ***/
/*************************************/
/* Banner Section Start Here */
.Mainbanner {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  z-index: 0;
  background-color: #012d3f;
}
#banner {
  width: 100%;
  height: 750px;
  min-height: 750px;
  display: block;
  border-radius: 0px;
}
#banner .container .row {
  height: 750px;
  min-height: 750px;

}
#banner .banner-text {
  position: relative;
  z-index: 2;
  margin-bottom: 110px;
}
#banner .banner-text h5 {
  display: block;
  margin-bottom: 15px;
  color: var(--s-white);
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
}
#banner .banner-text h2 {
  font-size: 65px;
  display: block;
  margin-bottom: 20px;
  color: var(--s-white);
  font-weight: 600;
}
#banner .banner-text h2 span {
  color: var(--s-primary);
}
#banner .banner-text p {
  margin-bottom: 35px;
  color: var(--s-white);
  font-size: 22px;
}

/* Special Medical Box */
.about-section {
  background-color: #f8f9fa;
}
.spicalOverlay {
  border: 1px;
  border-radius: 10px;
  position: relative;
}
.about-card {
  color: white;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  position: relative;
}
.specialBox-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}
.arrow-btn {
  position: relative;
  font-size: 32px;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--s-primary);
  border-radius: 0px 10px 10px 0px;

}
.arrow-btn:hover{
  background-color: #1cadda;
}
.SpecialcontactBox{
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: start;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  color: var(--s-black);
  border: 1px solid transparent;
  transition: all.3s;
}
.SpecialcontactBox:hover{
  border: 1px solid var(--s-primary);
}
.SpecialcontactBox:hover div{
  color: var(--s-primary);
}
.contact-icon {
  font-size: 24px;
  color: var(--s-primary);
}

/* Services Section */
.servicesBox{
  border: 1px solid #ebebeb;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.servicesImage{
  position: relative;
}
.servicesImage img{
  height: 200px;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.servicesImage::after{
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.servicesBox:hover .servicesImage::after{
  background-color: #1eb7e68c;
  transition: all 0.3s ease-in-out;
}
.servicesBody{
  text-align: center;
  padding: 20px;
  padding-top: 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.servicesBox:hover .servicesBody{
  padding-top: 40px;
}
.link-icon
{
  width: 66px;
  height: 66px;
  display: block;
  z-index: 1;
  opacity: 0;
  position: absolute;
  left: 50%;
  margin-left: -33px;
  top: -150px;
  transition: all 0.3s ease-in-out;
}
.servicesBox:hover .link-icon{
  opacity: 1;
  top: -33px;
}

/* Make an appointment */
.bg-custom-blue {
  background-color: #1eb8e6;
  position: relative;
  overflow: hidden;
}
.bg-custom-blue img.bg-hallway {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.form-label {
  font-size: 15px;
  font-weight: 700;
  color: white;
  width: 70px;
}
.form-control,
.form-control::placeholder {
  font-size: 15px;
  color: white !important;
  background: transparent !important;
  border-radius: 50px !important;
  padding: 15px;
  width: 100%;

}
.appointment input[type=date] {
  width: 100%;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255 255 255 / 0.5);
  /* border-color: white !important; */
  background: transparent !important;
  color: white !important;
}
.input-group-text {
  background: transparent !important;
  border: none !important;
  color: white !important;
  font-size: 14px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.btn-request {
  background: white;
  color: #1eb8e6;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  padding: 15px;
  border: none;
  white-space: nowrap;
}
.btn-request:hover,
.btn-request:focus {
  background: #f8f9fa;
  color: #1eb8e6;
}

/* Testimonial Section */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}
.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.testimonial-text {
  max-width: 800px;
}
.testimonial-text p{
  font-size: 20px;
}
.testimonial-author {
  margin-top: 10px;
  font-weight: bold;
  color: white;
}
.testimonial-role {
  font-weight: normal;
  color: #bbb;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #888;
  margin: 0 5px;
}
.carousel-indicators .active {
  background-color: #ff69b4;
}


/* Gallery Section Start Here */
.gallerySlider {
  overflow: hidden;
  width: 100%;
  display: block;
}

/* Footer Section Start Here */
footer {
  background-color: var(--s-primary);
  position: relative;
  padding-top: 25px;
}

/* footer:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: #222222f5;
          z-index: 0;
        } */
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-white);
}

.footer-box p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--s-white);
}

.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-white);
  text-transform: uppercase;
}

.footer-box ul li {
  margin-bottom: 0.5rem;
}

.footer-box ul li a {
  font-size: 15px;
  color: var(--s-white);
}

.footer-box ul li a:hover {
  color: var(--s-secondary);
  letter-spacing: 1px;
}

.footer1stRow {
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #2525251e; */
}

.socialmediaicon ul li a i {
  background-color: var(--s-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-primary);
  transition: 0.3s;
  border-radius: 2px;
}

.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-secondary);
  color: var(--s-white);
}

.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}

.copyRight {
  border-top: 1px solid #ffffff5b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Back To Top CSS Start Here */
.button {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--s-primary);
  overflow: hidden;
  border-radius: 30px;
  color: var(--s-primary);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.btn-txt {
  z-index: 1;
}

.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--s-primary);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.button:hover {
  box-shadow: 1px 1px 200px var(--s-white);
  color: #fff;
  border: none;
}

.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}




/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage p {
  margin-bottom: 20px;
}

.innerServicesImage img {
  height: 420px;
  object-fit: cover;
}



/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner {
  background-image: url(https://morrowfinancial.biz/wp-content/uploads/2025/06/inner-pages.jpeg);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerPagesBanner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #00000083;
}
.innerpage-title {
  position: relative;
  z-index: 2;
  margin-top: 0px;
}
.innerpage-title h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin: 0 5px;
}
.breadcrumb-content ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin-right: 5px;
}
.list li {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--s-black);
}
.list li i {
  font-size: 15px;
  color: var(--s-black);
  font-weight: 500;
  margin-right: 5px;
}
/* Our Team Section Start here */
.ourTeam
{
  background-color: #fff;
}
.td-single-team-member
{
  margin-bottom: 30px;
  display: inline-block;
  transition: .3s;
}
.td-member-image {
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: .3s;
}
.social-icon{
  position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    transition: .3s;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
  background-color: var(--s-secondary);
  transition: .3s;
}
.social-icon ul li {
  margin: 0 5px;
  width: 35px;
  height: 35px;
  background: var(--s-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.social-icon ul li a i
{
  font-size: 16px;
  color: var(--s-white);
  transition: .3s;
}
.social-icon ul li:hover a i
{
  color: var(--s-secondary);
}
.td-member-content
{
  background: var(--s-primary);
  padding: 20px;
  margin-top: -10px;
  transition: .3s;
}
.td-member-content h3
{
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--s-white);
  transition: .3s;

}
.td-member-content h5
{
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--s-white);

}
.td-member-image a img
{
  transform: scale(1);
  transition: .3s;
}
.td-single-team-member:hover .td-member-image a img
{
  transform: scale(1.1);
  transition: .3s;
}
.td-single-team-member:hover .social-icon
{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.aboutImage img{
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/* ourMission */
.ourMission{
    background-color: var(--s-primary);
  }
  .valueBox {
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 3em 2.5em 3em 2.5em;
    background-color: #f5fbfb;
  }
  .valueBox h4 {
    color: var(--s-primary);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;
  }
  .valueBox p {
    color: var(--s-black);
  }






  /*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage p
{
  margin-bottom: 20px;
}
.innerServicesImage img
{
  height: 400px;
  object-fit: cover;
}








/*======================================================
             Responsive CSS STart Here
========================================================*/
/* 767px Start Here */
@media (max-width:991px){
    section{
      padding: 50px 0;
    }
    .top-section 
    {
      display: none;
    }
    .bottom-header{
      padding-left: 15px;
      padding-right: 15px;
    }
    .navbar-nav
    {
      align-items: self-start !important;
      border-top: 1px solid #bc8f8f;
      margin-top: 10px;
      padding: 8px 0;
    }
    .bottom-header nav .navbar-nav .nav-item .nav-link {
      font-size: 15px;
      padding: 3px 2px;
      margin: 0px 0; 
      color: var(--s-secondary);
    }
    .header-btn
    {
      display: none;
    }
    .bottom-header .navbar-brand img {
      width: 100px !important;
    }
    .site-btn {
      padding: 15px 30px 15px 30px;
      font-size: 14px;
    }
    .titleBar h3{
      font-size: 25px;
      
    }
    .titleBar span{
      font-size: 13px;
      letter-spacing: 1px;
    }
    .titleBar span::before {
      top: 16.5px;
    }
    .titleBar span::after{
      top: 16.5px;
    }
    .titleBar p{
      font-size: 15px;
    }
    p{
      font-size: 14px;
    }
   /* Banner */
   .Mainbanner
   {
     padding: 0;
   }
   #banner{
     border-radius: 0;
   }
   #banner::before
   {
     border-radius: 0;
   }
   #banner .banner-text h2{
     font-size: 40px;
   }
   #banner .banner-text h5{
     font-size: 12px;
   }
   #banner .banner-text p{
     font-size: 15px;
   }
   #banner{
     min-height: 500px;
     height: 500px;
   }
   #banner .container .row {
     min-height: 500px;
     height: 500px;
   }
  
  /* knowledgeCenter */
   .knowledgeCenterStart {
    background-image: url(https://morrowfinancial.biz/wp-content/uploads/2025/06/bg.jpeg);
    padding: 100px 0;
    background-position: 0% 40%;
    background-attachment: fixed;
  }
  .knowledge-content h3{
    font-size: 35px;
  }
  .tabsSection{
    margin: 0;
  }
  .nav-tabs .nav-item .nav-link {
    font-size: 13px;
    padding: 9px 10px;
  }
  .tab-pane p {
    font-size: 15px;
  }
  
  /* Counter */
  .counter-icon {
    position: absolute;
    top: 2%;
    right: auto;
  }
  
  /* Testimonial */
  .testimonial-box{
    padding: 30px;
    height: 280px;
  }
  .td-name-designation h2{
    font-size: 25px;
  }
  .td-name-designation p{
    font-size: 13px;
  }
  .td-testimonial-description p{
    font-size: 15px;
  }
  .testi-image{
    height: 280px;
  }
  
    /* About Sectioon */
    .subpara {
      padding-left: 0px;
    }
    .list li {
      font-size: 14px;
    }
  
    .aboutImage img {
      width: 100%;
      height: 400px;
    }
  
    /* Inner Services */
    .innerPagesBanner {
      height: 250px;
      padding-bottom: 30px;
    }
    .innerpage-title h2 {
      font-size: 32px;
      line-height: 35px;
      margin-bottom: 10px;
    }
    .content-box p{
      font-size: 12px;
    }
    .content-box h5{
      font-size: 15px;
    }
    .contactUSPage{
      background-color: #e6e6e6;
      box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
      padding: 30px 8px !important; 
      border-radius: 15px;
      margin: 0;
      border-radius: 10px !important;
    }
  }
