/* FooterComponent.css */

/* Center the social media icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style the social media icons */
.social-icons li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: black;
  color: black;
  transition: background-color 0.1s ease, color 0.1s ease;
  margin: 0 8px;
}

/* On hover, change the background and color */
.social-icons li a:hover {
  background-color: blue;
  color: white;
  transform: scale(1.1);
  /* Add a slight scale effect on hover */
}


.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

/* Adjust the font size for the play icon */
.play-icon svg {
  font-size: 30px;
  /* Adjust the size as needed */
}

/* Style the video popup */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Semi-transparent black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure the popup appears on top of other elements */
}

/* Style the video popup content */
.video-popup-content {
  position: relative;
  padding: 20px;
  max-width: 800px;
  /* Adjust the maximum width of the video popup */
  width: 100%;
  max-height: 90vh;
  /* Adjust the maximum height of the video popup */
  overflow: hidden;
}

/* Style the close button */
.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}


.custom-font {
  color: #4745e5;
  font-family: "Lato", sans-serif;
  font-size: 38px;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

/* Header CSS */
.header-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo-header img {
  width: 200px;
  /* Adjust the logo size */
}

.logo-header h3 {
  font-size: 18px;
  margin-left: 10px;
}

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

.menu li {
  margin-left: 20px;
}

.menu li:first-child {
  margin-left: 0;
}

.menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #6221d2;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu a:after {
  content: "";
  width: 0;
  height: 2px;
  border: 0px;
  margin: 0px;
  background: #6221d2;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu a:hover {
  color: #6221d2;
  /* Change the color on hover */
}

.menu a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  background: #6221d2;
}


.left-align {
  justify-content: flex-end;
}

.service-one-style {
  list-style-type: none;
  border-radius: 15px;
  background-color: white;
  border:3px double #337AB7;
  padding:25px;
  width:1100px;
  max-width: 90%;
}

.service-one-style li svg {
  color:orange;
  padding-right:0.4rem;
}


.service-one-style li strong {
  color:#337AB7;
}

.custom-section-flat{
  width: 100%;
  padding: 50px 0 120px;
  position: relative;
  clear: both;
}

.cta_highlighter {
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .service-one-style {
    width: 100%;
  }


  div#popover-credentialing,
  div#popover-reporting,
  div#popover-consulting,
  div#popover-medical-billing {  
    max-width: calc(100% - 40px);
  }

  .service-one-style {
    width:100%;
    max-width: 100%;
  }


}

@media (max-width: 480px){
  .logo-header img {
    width: 100px;
  }

  .menu a {
    margin-left:50px;
  }

}

