:root {
  /* --primary_clr: #1b5079; */
--primary_clr:#091540; ; 
    --secondary_clr: #ED254E;
    --light_clr1: #dee7ef;
    --teritary_clr: #ffcc00;
}

@font-face {
  font-family: "raleway";
  src: url("../fonts/Raleway/Raleway.ttf");
}

body {
  min-height: 100vh;
  font-family: "raleway";
}

footer {
  position: relative;
}

/* topnav */
.topnav {
  font-family: raleway;
  line-height: 1.5;
  font-weight: 500;
  vertical-align: basel;
  background-color: #0063af;
  color: white;
}
img {
  max-width: 100%;
  object-fit: cover;
}

.topnav p {
  margin-top: 2px;
  margin-bottom: 2px;
}

/* header css */
header {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.dropdown {
  position: relative;
}
/* dropdown underline */
.dropdown::after {
  content: "";
  bottom: 0px;
  left: 50%;
  position: absolute;
  height: 3px;
  width: 0%;
  background-color: red;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.dropdown:hover::after,
.dropdown:focus::after,
.dropdown:active::after {
  left: 0;
  width: 100%;
}

/* dropdown arrow */
.dropdown-toggle::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  color: red;
  z-index: 9;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown:focus .dropdown-toggle::after,
.dropdown:active .dropdown-toggle::after {
  opacity: 1;
  top: 100%;
}

/* footer css */
.footer_mdl {
  background-color:  var(--primary_clr);
  color: aliceblue;
  font-size: 16px;
  font-family: raleway;
  padding-top: 1vh;
}

.text-reset {
  text-decoration: none;
}

.icons {
  color: #e31d23;
}

#contactForm {
  margin-bottom: 20px;
}

.IDX_card:nth-of-type(2n) {
  transform: scale(1.1);
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.5);
}

.card-body {
  padding: 1.82rem;
}

.IDX_card .card-title {
  color: var(--secondary_clr);
  font-weight: 600;
  font-size: 30px;
  line-height: 2.2rem;
}
.card-title.primary_heading{
  font-size: 1.25rem;
}
.AgeDuration {
  background: #fff;
  color: #000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  
  margin-top: 26px;
  padding: 10px;
}

.card_topImg {
  object-fit: cover;
  height: 174px;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

/* button css */
.wrapper {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  height: auto;
  margin-top: 75px;
}

.card_btn {
  width: 100%;
  /* max-height: 50px; */
  padding: 20px;
  background: var(--secondary_clr);
  border-style: none;
  color: white;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: raleway;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 10px;
  overflow: hidden;
  transition: all 0.5s;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  text-transform: capitalize;
}

.card_btn span {
  position: absolute;
  display: block;
}

.card_btn span:nth-child(1) {
  height: 3px;
  width: 200px;
  top: 0px;
  left: -200px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), var(--secondary_clr));
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span1 2s linear infinite;
  animation-delay: 1s;
}

@keyframes span1 {
  0% {
    left: -200px;
  }

  100% {
    left: 200px;
  }
}

.card_btn span:nth-child(2) {
  height: 70px;
  width: 3px;
  top: -70px;
  right: 0px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    var(--secondary_clr)
  );
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span2 2s linear infinite;
  animation-delay: 2s;
}

@keyframes span2 {
  0% {
    top: -70px;
  }

  100% {
    top: 70px;
  }
}

.card_btn span:nth-child(3) {
  height: 3px;
  width: 200px;
  right: -200px;
  bottom: 0px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), var(--secondary_clr));
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  animation: span3 2s linear infinite;
  animation-delay: 3s;
}

@keyframes span3 {
  0% {
    right: -200px;
  }

  100% {
    right: 200px;
  }
}

.card_btn span:nth-child(4) {
  height: 70px;
  width: 3px;
  bottom: -70px;
  left: 0px;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0), #f6e58d); */
  background: linear-gradient(
    to left top,
    var(--secondary_clr) 50%,
    rgba(0, 0, 0, 0) 50%
  );
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  animation: span4 2s linear infinite;
  animation-delay: 4s;
}

@keyframes span4 {
  0% {
    bottom: -70px;
  }

  100% {
    bottom: 70px;
  }
}

.card_btn:hover {
  transition: all 0.5s;
  background-color: #ffb300;
  /* transform: rotate(-3deg) scale(1.1); */
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
}

.card_btn:hover span {
  animation-play-state: paused;
}

.zoom {
  /* padding: 50px; */
  transition: transform 0.2s;
  /* Animation */
  /* width: 200px;
    height: 200px;
    margin: 0 auto; */
}

.IDX_card {
  max-width: 20rem;
  margin: auto;
  max-height: 38rem;
}

.IDX_card:hover img {
  transform: scale(1.3);
}

@import url("https://fonts.googleapis.com/css?family='Source Sans Pro',sans-serif");

.about_us {
  margin: 0;
  padding: 0;
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: raleway;
}

.about_content h1 {
  font-size: 47px;
  color: #065ea9;
  font-weight: 800;
  font-family: CURSIVE;
}

.about_content p {
  font-size: 75%;
  line-height: 150%;
  color: #333;
  text-shadow: none;
  font-family: raleway;
}

.slide_about {
  position: relative;
  /* padding: 25vh 10%; */
  padding: 0;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  /* box-shadow: 0 -1px 10px rgba(0, 0, 0, .7); */
  transform-style: inherit;
  overflow: hidden;
}

.img_about {
  position: absolute;
  top: 50%;
  left: 35%;
  width: 320px;
  height: 240px;
  transform: translateZ(0.25px) scale(0.75) translateX(-94%) translateY(-100%)
    rotate(2deg);
  padding: 10px;
  border-radius: 5px;
  background: rgba(240, 230, 220, 0.7);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.img_about:last-of-type {
  transform: translateZ(0.4px) scale(0.6) translateX(-104%) translateY(-40%)
    rotate(-5deg);
}

.slide_about:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.7);
}

.title_about {
  text-align: JUSTIFY;
  width: 50%;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  padding: 2rem 3rem;
}

.slide_about:nth-child(2n + 1) .title_about {
  margin-left: 0;
  margin-right: auto;
}

.slide_about:nth-child(2n) .title_about {
  margin: 50px 50px 0 auto;
}

@media (min-width: 991px) {
  .slide_about:nth-child(2n) .title_about {
    margin: 130px 50px 0 auto;
  }
}

.slide_about,
.slide_about:before {
  background: 50% 50% / cover;
}

.header_about {
  text-align: center;
  font-size: 175%;
  color: #e31d23;
}

#slide2_about {
  z-index: 2;
  /* background-image: linear-gradient(rgb(255 255 255 / 92%), #fdfdfdde 90%), url('../img/1.jpg'); */
  background-attachment: fixed;
}

/* @import url(https://pro.fontawesome.com/releases/v5.11.2/css/all.css); */

:root {
  --user-button-circle: rgba(0, 0, 0, 0.025);
  --user-button-cardborder: rgba(255, 255, 255, 0.25);
  --user-button-text: #323133;
  --user-button-shadow: rgba(0, 0, 0, 0.1);
}

#user-button {
  z-index: 1000;
  bottom: 1rem !important;
  right: 1rem !important;
  color: var(--user-button-text);
  transition: 1s 0s ease-out;
  -webkit-animation: slide 3s ease-out forwards;
  animation: slide 3s ease-out forwards;
}

@-webkit-keyframes slide {
  0%,
  50% {
    opacity: 0;
    display: block !important;
  }

  100% {
    opacity: 1;
    display: block !important;
  }
}

@keyframes slide {
  0%,
  50% {
    opacity: 0;
    display: block !important;
  }

  100% {
    opacity: 1;
    display: block !important;
  }
}

.card-img,
.card-img-top {
  min-height: 188px;
  max-height: 188px;
  transition: all 0.3s ease;
}

#user-button .u-card {
  border-radius: 100%;
  box-shadow: 0 0 1rem -0.25rem var(--user-button-shadow),
    inset 0 0 1rem -0.75rem var(--user-button-shadow);
}

#user-button .u-main {
  cursor: pointer;
  --user-button-background: var(--user-button-main, #ec87c0);
}

#user-button .u-main img {
  height: 100%;
  width: 100%;
}

#user-button .u-main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  transition: 0s 4s;
}

#user-button .u-icons {
  position: relative;
  z-index: 950;
  transform: translate(-50%, -50%);
  background: var(--user-button-circle);
  box-shadow: 0 0 0 0.125rem var(--user-button-cardborder);
  border-radius: 100%;
  transition: 0.25s;
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#user-button .u-icons a {
  color: inherit;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
}

#user-button .u-icons a div {
  padding: 0.5rem;
  transition: 0s;
}

#user-button .u-icons a[href="https://twitter.com/zed_dash"]
{
  position: relative;
}

#user-button .u-icons a[href="https://twitter.com/zed_dash"]:before
{
  content: "Middle Click";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  font-family: raleway;
  white-space: pre;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease-in;
  background: #fffc;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

#user-button .u-icons a[href="https://twitter.com/zed_dash"].show:before
{
  opacity: 1;
  transition: 0.25s ease-out;
}

#user-button .u-icons a[href="https://twitter.com/zed_dash"] div
{
  color: #1da1f2;
}

#user-button .u-icons a[href="https://codepen.io/z-"] div
{
  background: black;
  color: white;
}

#user-button .u-icons a.u-random div {
  position: relative;
  top: -1px;
  -webkit-animation: diespin 2s linear infinite;
  animation: diespin 2s linear infinite;
}

@-webkit-keyframes diespin {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes diespin {
  0% {
    transform: rotate(0deg);
  }

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

#user-button .u-icons a.u-random:not(:hover) div {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

#user-button .u-icons > * {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--singlecolour);
  border-radius: 100%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.25s -0.05s;
}

#user-button .u-icons > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#user-button .u-icons > *:hover,
#user-button .u-icons > *:focus-within {
  background: var(--hcolour);
}

#user-button .u-icons > *:first-child:nth-last-child(1):nth-child(1),
#user-button .u-icons > *:first-child:nth-last-child(1) ~ *:nth-child(1) {
  left: 25%;
  top: 25%;
}

#user-button .u-icons > *:first-child:nth-last-child(2):nth-child(1),
#user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(1) {
  left: 37.5%;
  top: 18.75%;
}

#user-button .u-icons > *:first-child:nth-last-child(2):nth-child(2),
#user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(2) {
  left: 18.75%;
  top: 37.5%;
}

#user-button .u-icons > *:first-child:nth-last-child(3):nth-child(1),
#user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(1) {
  left: 50%;
  top: 15.625%;
}

#user-button .u-icons > *:first-child:nth-last-child(3):nth-child(2),
#user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(2) {
  left: 25%;
  top: 25%;
}

#user-button .u-icons > *:first-child:nth-last-child(3):nth-child(3),
#user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
  left: 15.625%;
  top: 50%;
}

#user-button .u-icons > *:first-child:nth-last-child(4):nth-child(1),
#user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(1) {
  left: 62.5%;
  top: 18.75%;
}

#user-button .u-icons > *:first-child:nth-last-child(4):nth-child(2),
#user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(2) {
  left: 37.5%;
  top: 18.75%;
}

#user-button .u-icons > *:first-child:nth-last-child(4):nth-child(3),
#user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(3) {
  left: 18.75%;
  top: 37.5%;
}

#user-button .u-icons > *:first-child:nth-last-child(4):nth-child(4),
#user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(4) {
  left: 18.75%;
  top: 62.5%;
}

#user-button:hover .u-icons,
#user-button:focus-within .u-icons {
  width: 300% !important;
  height: 300% !important;
}

.dark {
  background: #232223;
  color: white;
}

@media (prefers-color-scheme: dark) {
  :not(.light) {
    background: #232223;
    color: white;
  }
}

.credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}

.options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 800px;
  max-width: 900px;
  width: calc(100% - 100px);
  height: 400px;
  margin: auto;
}

@media screen and (max-width: 718px) {
  .options {
    min-width: 520px;
  }

  .options .option:nth-child(5) {
    display: none;
  }
}

@media screen and (max-width: 638px) {
  .options {
    min-width: 440px;
  }

  .options .option:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 558px) {
  .options {
    min-width: 360px;
  }

  .options .option:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 478px) {
  .options {
    min-width: 280px;
  }

  .options .option:nth-child(2) {
    display: none;
  }
}

.options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #e6e9ed));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option:nth-child(1) {
  --defaultBackground: #ed5565;
}

.options .option:nth-child(2) {
  --defaultBackground: #fc6e51;
}

.options .option:nth-child(3) {
  --defaultBackground: #ffce54;
}

.options .option:nth-child(4) {
  --defaultBackground: #2ecc71;
}

.options .option:nth-child(5) {
  --defaultBackground: #5d9cec;
}

.options .option:nth-child(6) {
  --defaultBackground: #ac92ec;
}

.options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
  /*&:active {
        transform:scale(0.9);
    }*/
}

.options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black,
    inset 0 -120px 120px -100px black !important;
}

.options .option.active .label {
  bottom: 20px;
  left: 20px;
}

.options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}

.options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
}

.options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}

.options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}

.options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}

.options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
}

.options .option .label .info > div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

.options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}

.options .option .label .info .sub {
  transition-delay: 0.1s;
}

.title-default-textPrimary-left {
  text-transform: capitalize;
  font-family: cursive;
  text-align: left;
  font-weight: 600;
  /* color: #fff; */
  margin: 15px;
  margin-bottom: 45px;
  color: #0063af;
}

.primary_heading {
  color: var(--primary_clr);
  font-weight: 600;
  text-transform: capitalize;
}

.heading_divider {
  position: relative;
}

.heading_divider::after {
  position: absolute;
  content: "";
  width: 8%;
  height: 3px;
  border-radius: 5px;
  background-color: var(--primary_clr);
  left: 0;
  bottom: -10px;
}

.text-cursive {
  font-family: cursive;
}

.welcome_section img {
  border: 10px solid whitesmoke;
  border-radius: 15px;
  box-shadow: 0 5px 8px 5px rgba(0, 0, 0, 0.1);
  height: 232px;
  object-fit: contain;
  object-position: center 0%;
}

.welcome_section p {
  text-align: justify;
  color: black;
  font-weight: 500;
}

.featureCard img {
  transition: all 0.3s ease;
  width: 82px;
  margin-top: -33px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.featureCard:hover img {
  /* transform: rotate(10deg); */
  transform: translate(-50%, -10px) ;
}

/* inner page breadcrumb area */

/* breadcrumb */
.breadcrumb-area {
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-repeat: no-repeat;
  background-color: #000;
  /* background-image: linear-gradient(45deg, #96ef8aa6, #96ef8aa6, #87ef7d, #5affa4, #45d594, #87ef7d, #96ef8aa6, #96ef8aa6) !important; */
  background-image: linear-gradient(
    45deg,
    #0063af,
    #4289fc,
    #6ca1f7,
    #7badfc,
    #758fb8,
    rgb(135, 175, 190),
    #709bbd,
    #729ec0,
    #0063af,
    rgb(42, 204, 253)
  ) !important;
  background-attachment: fixed;
  background-position: left;
  background-size: 300%;
  transition: all 0.8s ease-in-out;
  animation: animateGradient 20s infinite alternate;
}

.breadcrumb-area img {
  position: absolute;
  top: 0;
  object-fit: fill;
  width: 100%;
  object-position: 50% 62%;
  left: 0;
  z-index: 0;
  mix-blend-mode: multiply;
  height: 100%;
}
@keyframes animateGradient {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

.breadcrumb {
  display: inline-block;
  -ms-flex-wrap: wrap;
  flex-wrap: unset;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: unset;
  border-radius: 0;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 15px;
  padding-left: 10px;
  color: #ddd;
  content: "|";
}

.breadcrumb-title h1 {
  font-size: 48px;
  margin-bottom: 25px;
  line-height: 1;
  color: #fff;
  margin-top: 138px;
}

.breadcrumb-title p {
  margin-bottom: 0;
  color: #777;
  font-size: 16px;
}

.breadcrumb > .active {
  color: #fffc !important;
  font-weight: 500;
}

.breadcrumb-wrap {
  text-align: center;
  position: relative;
  font-family: "Nunito", sans-serif;
}

.breadcrumb-wrap.text-left {
  text-align: center !important;
}

:is(.breadcrumb-wrap) :is(h1, h2, h3, h4, h5, h6) {
  font-style: normal;
  font-weight: 800;
}

.breadcrumb-wrap a {
  text-decoration: none;
}
p {
  line-height: 30px;
}
li{
  line-height: 30px; 
}
/* .nav-item.active .nav-link  {
  color: #ffffff !important;
  border-bottom: 1px solid #fff;
} */
.nav-item .dropdown-item.active,  .nav-item .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #091540;
}
@media(min-width: 1024px){
  :is(.homeBaner_slideContainer) :is(.bannerTaglLine, .bannerDescription, .bannerAnchorTag) {
    font-size: 20px!important;
  }
}
@media(max-width: 768px){
  .dropdown-menu.show {
    width:100%!important;
  }
}
@media(max-width: 425px){
  .breadcrumb-area {
    min-height: 0px;
  }
  .breadcrumb-area img {
    height: 55%;
  }
  .breadcrumb-title h1 {
    font-size: 29px;}
    .contact_info{
      display:none!important;
    }
}