@font-face {
    font-family: 'Inter';
    src: url('../../Fonts/Inter-VariableFont_slnt\,wght.ttf');
  }


  body a {
    font-family: Inter , sans-serif !important;
  }
.sticky-top {
    background-color: #1c2e4d;
}
.navbar ul li a{
    color: white;
}
.hamburger .hamburger-box {
    color: white;
}
.flex-end{
    justify-content: end;
}
.color-navi-blue , body p{
    font-family: Inter , sans-serif !important;
    color: #1c2e4d;
}
.color-navi-blue2{
    color: #772066 !important;
    font-family: Inter , sans-serif !important;

}
.color-orange{
    color: #e37f20;
}
.color-navi-blue3{
    color: #52bad7;
}

.b-900{
    font-weight: 900 !important;
}
.flex-center{
    justify-content: center;
}
.flex-start{
    justify-content: start;
}
.w-90{
    width: 90%;
}
.text-start{
    text-align: start;
}
.btn_1{
    background: #3cd2f2;
    color: white;
    font-size: 16px;
}

.btn_2{
    transition: all ease-in-out 0.3s;
    font-size: 16px;
    background: white;
    border: solid 1px #3cd2f2;
    color:#3cd2f2;
}
.btn_2:hover{

    transition: all ease-in-out 0.3s;

    background: #3cd2f2;
    color: white;
    font-size: 16px;
}
/* card deising */
.home_card {
    position: relative;
    width: 100%;
    height: min-content;
    cursor: pointer;
}
.home_card:hover .card__front {
    transform: rotateX(180deg);
}
.home_card:hover .card__back {
    transform: rotateX(360deg);
}
.card__front, .card__back {
    z-index: 20;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    height: 250px;
    backface-visibility: hidden;
    transition: 800ms transform ease;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.card__front {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1c2e4d;
    color: white;
    transform: rotateX(0deg);
    width: 100%;
}
.card__front p {
    color: white;

}
.card__back {
    background: white;
    color: lightsalmon;
    top: 0;
    position: absolute;
    transform: rotateX(180deg);
    width: 100%;
}

.card__back p , .card__back small {
    color: black;
}
.home_card p, .home_card small {
    font-family: sans-serif;
    font-weight: bold;
}
.home_card p {
    font-size: 24px;
}
.home_card small {
    font-size: 14px;
}


@media (max-width: 576px) {
    .header {
        margin-top: 66px;
    }
    .mr-lg-5 {
        margin: 0;
    }
    .mr-md-5 {
        margin: 0;
    }
    .contact_lg{
        display: none;
    }
    .contact_sm{
        display: block;
    }
 }
 @media (min-width: 576px) {
    .header {
        margin-top: 66px;
    }
    .mr-lg-5 {
        margin: 0;
    }
    .mr-md-5 {
        margin: 0;
    }
    .contact_lg{
        display: block;
    }
    .contact_sm{
        display: none;
    }
 }
/*
@media (min-width: 768px) {

}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}
@media (min-width: 1400px) {

 } */

 .timeline ul {
    padding: 50px 0;
  }
  h1 , h2 ,h3 ,h4 ,h5 h6 {
    font-family: Inter , sans-serif;
  }
  .timeline ul li {
    list-style-type: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 50px;
    background: #ecf7ff;
    color: #1c2e4d;
    font-family: Inter , sans-serif !important;
  }

  .timeline ul li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ecf7ff;
    z-index: 1;
  }

  .timeline ul li div {
    position: relative;
    bottom: 0;
    width: 400px;
    padding: 15px;
    background: #ecf7ff;
  }

  .timeline ul li div::before {
    content: "";
    position: absolute;
    bottom: 7px;
    color: #ecf7ff;
    width: 0;
    height: 0;
    border-style: solid;
  }

  .timeline ul li:nth-child(odd) div {
    left: 45px;
  }

  .timeline ul li:nth-child(odd) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #ecf7ff transparent transparent;
  }

  .timeline ul li:nth-child(even) div {
    left: -439px;
  }

  .timeline ul li:nth-child(even) div::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #ecf7ff;
  }

  time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
  }


  /* EFFECTS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

  .timeline ul li::after {
    transition: background 0.5s ease-in-out;
  }

  .timeline ul li.in-view::after {
    background: #1c2e4d;
  }

  .timeline ul li div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  .timeline ul li:nth-child(odd) div {
    transform: translate3d(200px, 0, 0);
  }

  .timeline ul li:nth-child(even) div {
    transform: translate3d(-200px, 0, 0);
  }

  .timeline ul li.in-view div {
    transform: none;
    visibility: visible;
    opacity: 1;
  }


  /* GENERAL MEDIA QUERIES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

  @media screen and (max-width: 900px) {
    .timeline ul li div {
      width: 250px;
    }
    .timeline ul li:nth-child(even) div {
      left: -289px;
      /*250+45-6*/
    }
  }

  @media screen and (max-width: 600px) {
    .timeline ul li {
      margin-left: 20px;
    }
    .timeline ul li div {
      width: calc(100vw - 91px);
    }
    .timeline ul li:nth-child(even) div {
      left: 45px;
    }
    .timeline ul li:nth-child(even) div::before {
      left: -15px;
      border-width: 8px 16px 8px 0;
      border-color: transparent #1c2e4d transparent transparent;
    }
  }


  /* EXTRA/CLIP PATH STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .timeline-clippy ul li::after {
    width: 40px;
    height: 40px;
    border-radius: 0;
  }

  .timeline-rhombus ul li::after {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }

  .timeline-rhombus ul li div::before {
    bottom: 12px;
  }

  .timeline-star ul li::after {
    clip-path: polygon(
      50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%
    );
  }

  .timeline-heptagon ul li::after {
    clip-path: polygon(
      50% 0%,
      90% 20%,
      100% 60%,
      75% 100%,
      25% 100%,
      0% 60%,
      10% 20%
    );
  }

  .timeline-infinite ul li::after {
    animation: scaleAnimation 2s infinite;
  }

  @keyframes scaleAnimation {
    0% {
      transform: translateX(-50%) scale(1);
    }
    50% {
      transform: translateX(-50%) scale(1.25);
    }
    100% {
      transform: translateX(-50%) scale(1);
    }
  }





  .footer{
    background-color: #1c2e4d;
  }
