@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Source+Sans+Pro:wght@400;600;700;900&display=swap");

.ff-source {
  font-family: "Source Sans Pro", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  /* =============================FONT-SIZE============================= */
  --font-12: 12px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-28: 28px;
  --font-35: 35px;
  --font-36: 36px;
  --font-48: 48px;
  /* ========================================COLOR======================================== */
  --color-black: #000000;
  --color-light-black: #4d4d4d;
  --color-light-black-07: #bcbbb9;
  --color-white: #ffffff;
  --color-red: #c2190e;
  --color-4B4B4B: #4b4b4b;
  --color-838383: #838383;
  --color-FAFAFA: #fafafa;
  --color-gray: #bfbfbf;
}

/* Media-queries-start */

@media (max-width: 992px) {
  :root {
    --font-14: 13px;
    --font-15: 14px;
    --font-16: 15px;
    --font-18: 16px;
    --font-20: 17px;
    --font-35: 24px;
    --font-36: 27px;
    --font-48: 30px;
  }
}

@media (max-width: 576px) {
  :root {
    --font-14: 12px;
    --font-15: 13px;
    --font-16: 14px;
    --font-18: 14px;
    --font-20: 14px;
    --font-35: 23px;
    --font-36: 24px;
    --font-48: 25px;
  }
}

/* Media-queries-end */
/*===================== font-size===================== */

/*====================== FONT SIZE CLASS START====================== */
.fs-12 {
  font-size: var(--font-12) !important;
}

.fs-14 {
  font-size: var(--font-14) !important;
}

.fs-15 {
  font-size: var(--font-15) !important;
}

.fs-16 {
  font-size: var(--font-16) !important;
}

.fs-18 {
  font-size: var(--font-18) !important;
}

.fs-20 {
  font-size: var(--font-20) !important;
}

.fs-28 {
  font-size: var(--font-28) !important;
}

.fs-35 {
  font-size: var(--font-35) !important;
}

.fs-36 {
  font-size: var(--font-36) !important;
}

.fs-48 {
  font-size: var(--font-48) !important;
}

/*====================== FONT SIZE CLASS END====================== */

/*====================== FONT-weight SIZE CLASS START====================== */
.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/*====================== FONT-weight SIZE CLASS END====================== */

/*====================== COLOR  CLASS START====================== */

.text-white {
  color: var(--color-white) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.text-red {
  color: var(--color-red) !important;
}

.text-4B4B4B {
  color: var(--color-4B4B4B) !important;
}

.text-light-black {
  color: var(--color-light-black) !important;
}

.text-light-black-07 {
  color: var(--color-light-black-07) !important;
}

.text-color-838383 {
  color: var(--color-838383) !important;
}

.bg-color-black {
  background-color: var(--color-black) !important;
}

.bg-color-white {
  background-color: var(--color-white) !important;
}

.bg-color-red {
  background-color: var(--color-red) !important;
}

.bg-color-FAFAFA {
  background-color: var(--color-FAFAFA) !important;
}

/*====================== COLOR  CLASS END====================== */

/*====================== COMMON TEXT CLASS START====================== */
.main-heading {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-48);
  color: var(--color-black);
  font-weight: 600;
}

.heading {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-35);
  color: var(--color-black);
  font-weight: 600;
}

.sub-heading {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-20);
  color: var(--color-black);
  font-weight: 400;
}

.main-para {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-18);
  color: var(--color-black);
  font-weight: 600;
}

.para {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-16);
  color: var(--color-light-black-07);
  font-weight: 400;
}

.sub-para {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-15);
  color: var(--color-light-black-07);
  line-height: 27px;
  font-weight: 400;
}

.extra-small-text {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-14);
  color: var(--color-black);
  font-weight: 400;
}

/*====================== COMMON TEXT CLASS START====================== */
/* OPACITY START */
.opacity-07 {
  opacity: 0.7;
}

/* OPACITY END */

/* ACCORDIAN START */
.accordion-custom-btn::before {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-right: 8px;
  content: "";
  background-image: url(../img/svg/Group\ 27740.svg) !important;
  background-repeat: no-repeat;
  background-size: 2rem;
  transition: all 0.2s ease-in-out;
}

.accordion-custom-btn:not(.collapsed)::before {
  background-image: url(../img/svg/Group\ 27740.svg) !important;
  transform: rotate(180deg);
}

.accordion-c.accordion-custom-btn:hover::before {
  box-shadow: 2px 2px 2px black;
}

.accordion-buttons::after {
  background-image: none;
}

.accordion-buttons:not(.collapsed)::after {
  background-image: none;
}

.accordion-buttons:not(.collapsed) {
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

/* ACCORDIAN END */

.br-20 {
  border-radius: 20px !important;
}

/* cursor-pointer CLASS START */

.cursor-pointer {
  cursor: pointer;
}

/* cursor-pointer CLASS END */

/* LINE-HIEGHT CLASS START */
.line-h-166 {
  line-height: 166%;
}

.line-height-154 {
  line-height: 154%;
}

/* LINE-HIEGHT CLASS END */
@media (min-width: 1600px) {
  .container-xll {
    max-width: 1400px !important;
  }
}

@media (min-width: 576px) {
  .w-sm-100 {
    width: 100%;
  }
}

/* custom  navbar dropdown menu and sub  menu */

.sign-in_btn {
  background-color: var(--color-red) !important;
  font-size: var(--font-15) !important;
  color: var(--color-white) !important;
  border-radius: 22px;
  font-weight: 600;
  font-family: "Poppins" !important;
  flex-wrap: nowrap !important;
}

.sign-in_btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.sign-in_btn:hover {
  background-color: var(--color-red) !important;
  opacity: 0.9;
}

.accordain-btn-active {
  color: var(--color-red) !important;
}

.navbar-nav li:hover>ul.dropdown-menu {
  display: block;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-menu {
  padding-bottom: 0px;
  padding-top: 0px;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}

/* rotate caret on hover */
.dropdown-menu>li>a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
}

.dropdown a {
  font-weight: 500;
  font-size: var(--font-16);
  color: var(--color-black);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--color-black);
}

.dropdown li a:hover {
  background-color: var(--color-red) !important;
}

.dropdown a:hover {
  color: var(--color-white);
}

.dropdown-toggle::after {
  border-top: 0px;
}

.nav-accordian-item {
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}

.nav-accordian-btn a:hover {
  color: var(--color-red) !important;
  background-color: var(--color-white) !important;
}

@media (max-width: 992px) {
  .dropdown li a:hover {
    background-color: var(--color-white) !important;
  }

  .dropdown a:hover {
    color: var(--color-red);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .logo-set {
    max-width: 140px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .logo-set {
    max-width: 180px !important;
  }
}

.dropdown-menu a {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  min-width: 200px !important;
  white-space: normal;
}

.dropdown-toggle::after {
  display: block;
}

.list-unstyled a {
  text-transform: capitalize;
  white-space: normal;
  width: 100% !important;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(128, 128, 128, 0.562);
}

.dropdown-menu li:nth-last-child(1) {
  border-bottom: none !important;
}

.dropdown-item:focus {
  background-color: unset !important;
}

.nav-hover {
  transition: all 0.3s ease-in-out;
}

.nav-hover:hover {
  color: var(--color-red) !important;
}

.nav-accordian-btn::after {
  background-image: none !important;
  content: "+";
  color: black !important;
}

.nav-accordian-btn:not(.collapsed)::after {
  background-image: none !important;
  content: "-";
  transform: rotate(0deg) !important;
  color: black !important;
}

@media (max-width: 992px) {
  .sign-in_btn {
    margin-right: 16px;
  }
}

/* SCROLL TOP CSS START */
#scroll {
  position: fixed;
  left: 10px;
  bottom: 7px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: white;
  box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.09);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #c2190e;
}

#scroll:hover {
  background-color: #c2190e;
  opacity: 1;
  box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.09);
}

#scroll:hover span {
  border-bottom-color: white;
}

/* SCROLL TOP CSS END */

.audio-document-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 0px rgba(54, 48, 116, 0.3);
  border-radius: 20px;
  padding: 15px;
}

.bold-black-text {
  color: var(--color-black);
  font-size: var(--font-16);
  font-weight: 500;
}

.border-bottom-1-grey {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-parent {
  width: 130px;
}

.interview-img-style {
  width: 137px !important;
  height: 125px;
}

.bg-audio-documnet-image {
  background-image: url("../img/png/audio-document-bg-image.png") !important;
  height: 37vh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.active-tab-btn {
  border: 1px solid var(--color-red);
  color: var(--color-red);
  background: var(--color-white);
}

.player {
  display: flex;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 8px;
}

#pButton {
  height: 40px;
  width: 40px;
  background: #000000;
  box-shadow: inset 10px 10px 15px rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 25px;
  color: #bdbdbd;
  float: left;
  outline: none;
  border: none;
  position: relative;
  cursor: pointer;
}

#pButton svg {
  width: 10px;
  color: white;
}

#pButton:hover {
  color: white;
}

#mButton {
  display: none;
  font-size: 20px;
  margin: 12px 0 13px 0;
  color: #bdbdbd;
  width: 34px;
  background-color: #424242;
  float: left;
  outline: none;
  border: none;
  cursor: pointer;
}

#mButton:hover {
  color: white;
}

#start-time,
#duration {
  float: left;
}

#volume-bar {
  display: none;
  background-color: #757575;
  height: 10px;
  float: left;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100px;
  margin-top: 19px;
  margin-left: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

#volume-bar:hover .range2 {
  background-color: #32cd32;
}

#volume-bar:hover .knob2 {
  background-color: #fff;
}

#volume-bar:hover .knob2:active {
  box-shadow: inset 0 0 0 1px #9e9e9e, inset 0 0 0 2px white;
  background: #ffffff;
  /* Old browsers */
  background: -moz-radial-gradient(center,
      ellipse cover,
      #ffffff 0%,
      #e1e1e1 22%,
      #f1f1f1 53%,
      #f6f6f6 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center,
      ellipse cover,
      #ffffff 0%,
      #e1e1e1 22%,
      #f1f1f1 53%,
      #f6f6f6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center,
      #ffffff 0%,
      #e1e1e1 22%,
      #f1f1f1 53%,
      #f6f6f6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F6F6F6',
      GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.unset-transform-translate {
  transform: unset !important;
}

.time {
  font-size: var(--font-16) !important;
  color: rgba(0, 0, 0, 0.7) !important;
  font-weight: 400;
}

@media (min-width: 1800px) {
  .form-parent {
    width: 250px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .bg-audio-documnet-image {
    height: 40vh;
  }
}

@media (max-width: 576px) {
  .bg-audio-documnet-image {
    height: 40vh;
    /* background-size: unset !important; */
    background-image: url(../img/png/audio-document-bg-image-2.png) !important;
  }
}

.bg-audio {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  box-shadow: 0px 0px 0px rgba(54, 48, 116, 0.3);
  border-radius: 20px;
}

.h-400 {
  height: 400px;
  overflow: auto;
}

.border-top-1px {
  border-top: 1px solid #000000;
}

/* width */
.audio-scroll-edit::-webkit-scrollbar {
  width: 11px;
}

/* Track */
.audio-scroll-edit::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 10px;
}

/* Handle */
.audio-scroll-edit::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 14px;
}

/* Handle on hover */
.audio-scroll-edit::-webkit-scrollbar-thumb:hover {
  background: black;
}

/* carsould css and overlay card */

.custom-user-text {
  background-color: var(--color-red);
  border-radius: 50%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 35px;
  color: var(--color-white);
}

.custom-user-text:hover {
  background-color: var(--color-red);
  opacity: 0.8;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .custom-user-text {
    background-color: var(--color-red);
    border-radius: 50%;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 26px;
    color: var(--color-white);
  }
}

@media (min-width:768px) {
  .h-500 {
    height: 500px;
  }
}

.flip {
  transform: rotateX(359deg);
  transition: all 1s;

}

.flip span {
  border-bottom: 4px solid red;
}

.fliping span {
  border-bottom: 4px solid red;
}

.fade:not(.show) {
  opacity: unset;
}

.slick-next,
.slick-prev {
  display: none !important;
}

/* 
/*Vertical Flip*/
/* .verticalFlip {
  display: inline;
  text-indent: 8px;
}

.verticalFlip div {
  animation: vertical 8s ease-in-out 3.9s;
  color: var(--color-white) !important;
  opacity: 1;
  overflow: hidden;
}

.verticalFlip div:nth-child(2) {
  animation-delay: 5s;
  -ms-animation-delay: 5s;
  -webkit-animation-delay: 5s;
} */

/*Vertical Flip Animation*/
/* @keyframes vertical {
  0% {}

  5% {
    transform: rotateX(180deg);
  }

  10% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(0px);
    transform: rotateX(360deg);
  }
}*/


.overflow-x-hidden {
  overflow-x: hidden !important;
}


.position-absoulte {
  position: absolute;
}

.flip-text-animation p {
  animation: verticals 10s linear infinite -0.9s;
  color: var(--color-white);
  opacity: 0;
  overflow: hidden;
  top: 0;
}

.flip-text-animation p:nth-child(2) {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -ms-animation-delay: 2s;
}



/*Vertical Flip Animation*/
/* @-moz-keyframes verticals {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
    -moz-transform: rotateX(180deg);
  }

  10% {
    opacity: 1;
    -moz-transform: translateY(0px);
  }

  25% {
    opacity: 1;
    -moz-transform: translateY(0px);
  }

  80% {
    opacity: 1;
    -moz-transform: translateY(0px);
  }

  100% {
    opacity: 0;
  }
} */

@keyframes verticals {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
    transform: rotateX(180deg);
  }

  10% {
    opacity: 1;
    transform: translateY(0px);
  }

  25% {
    opacity: 1;
    transform: translateY(0px);
  }

  30% {
    opacity: 0;
    transform: translateY(0px);
  }

  80% {
    opacity: 0;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
  }
}

/* 
@-ms-keyframes verticals {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
    -ms-transform: rotateX(180deg);
  }

  10% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }

  25% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }

  30% {
    opacity: 0;
    -ms-transform: translateY(0px);
  }

  80% {
    opacity: 0;
    -ms-transform: translateY(0px);
  }

  100% {
    opacity: 0;
  }
} */




@media (min-width: 1200px) {
  .home-section-adjust {
    min-height: 100vh !important;
    display: flex;
    flex-direction: column;
  }
}


.slide {
  height: unset !important;
  width: unset !important;
}

.carousel-caption {
  position: absolute !important;
  top: 10px;
  left: 10px;
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
  color: #fff !important;
  text-align: unset !important;
}

.expition-slide.slide {
  width: 100% !important;
}


@media (min-width: 992px) {
  .iframe-youtube-adjust {
    min-height: 70vh;
  }
}

@media (min-width: 576px) and (max-width: 991.9px) {
  .iframe-youtube-adjust {
    min-height: 50vh;
  }
}

@media (max-width:576px) {
  .iframe-youtube-adjust {
    min-height: 30vh;
  }
}

.read-more-button{
  padding: 0;
  color: var(--color-red);
  border: 0 none;
  outline: 0 none;
  background-color: transparent;
}

.read-more-button:hover{
    color: var(--color-red);
  text-decoration: underline;
  background-color: transparent;
}

    .no-hover:hover {
        background-color: transparent !important;
        border: none;
        outline: none;
    }

    .no-hover:focus {
        background-color: transparent !important;
        border: none;
        outline: none;
    }


    .page-item.active .page-link{
      background-color: var(--color-red);
      border-color: var(--color-red);
      
    }


