body {
  background-color: #173049;
  font-family: "MagistralC";
  color: #ffff;
  overflow-y: scroll;
}

::-webkit-scrollbar {
  display: none;
}

.background {
  background-color: #173049;
  background-image: url("../assets/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  min-height: 23rem;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-400%, rgba(23, 48, 73, 0)), color-stop(96%, #173049));
  background-image: linear-gradient(to bottom, rgba(23, 48, 73, 0) -400%, #173049 96%);
}

.nav-container {
  margin: 0 1.5rem;
  font-size: 1.1rem;
  z-index: 2;
}

.nav-container .nav-icon {
  width: 1.2rem;
}

.nav-container .nav-linkk {
  color: white;
  margin-right: 2rem;
}

.nav-container .nav-linkk:hover {
  color: #bd004b;
  text-decoration: none;
}

.nav-container .activated {
  color: #bd004b !important;
  text-decoration: none;
  border-bottom: 3px solid #bd004b;
}

.nav-container .dropDown {
  color: white;
  font-size: 1.1rem;
}

.nav-container .dropdown-item:hover {
  background-color: #25425f4d;
}

.nav-container .button {
  background-color: #bd004b;
  color: #ffffff;
  border-radius: 0.3rem;
  width: 7rem;
  height: 2.5rem;
  border: none;
  font-size: 1.1rem;
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

.nav-container .button:hover {
  opacity: 0.5;
}

.nav-container .button:focus {
  outline: none;
}

.line-shape1 {
  position: absolute;
  top: -32rem;
  left: -2rem;
  width: 97%;
  z-index: 0;
}

.line-shape2 {
  position: absolute;
  top: -70rem;
  left: 0rem;
  width: 91%;
  z-index: 0;
}

.page-intro {
  text-align: center;
  padding: 5% 0;
}

.page-intro .page-intro-details {
  line-height: 2rem;
  color: #b8c3cb;
}

.img-card {
  width: 100%;
  height: 17.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem;
  position: relative;
  margin-bottom: 3rem;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  cursor: pointer;
}

.img-card:hover {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

.sm-card-container {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 102%;
}

.sm-card-container .card {
  /* margin-right: 1rem; */
  background-color: transparent;
  border-radius: 0.5rem;
  width: 21rem;
  height: 14rem;
}

.sm-card-container .card-container {
    margin-right: 1rem;
    transition: all .2s;
    /* transition: transform 0.26s ease; */
}

.sm-card-container .card-container:hover{
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.sm-card-container .card-container:hover .card-caption {
  display: block;
}

.sm-card-container .card-caption {
  display: none;
}

.sm-card-container .card-container:hover {
  transform: scale(1.08);
  z-index: 1;
}

.sm-card-container .card-container:hover .card img {
  border-radius: 0.25rem 0.25rem 0 0;
}

.sm-card-container .card-container .card-caption {
  height: 130px;
  background-color: #304c67;
  border-radius: 0 0 0.25rem 0.25rem;
}

.sm-card-container .card-container .card-caption .card-caption-anchor {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sm-card-container .card-container .card-caption .circle-border {
  border:1px solid #bd004b;    
  width:38px;
  height:38px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  cursor: pointer;
}

.sm-card-container .card-container .card-caption .card-caption-anchor:hover .circle-border{
  background-color: #bd004b;
}

.sm-card-container .card-container .card-caption .card-caption-anchor:hover .card-caption-anchor-word{
  color: #ffffffd8;
}

.sm-card-container .card:hover .hide {
  display: block;
}

.sm-card-container .card img {
  border-radius: 0.25rem;
  height: auto;
  width: 100%;
  height: 100%;
}

.sm-card-container .badge-top {
  background-color: #e42a74;
  padding: 0.2rem 0.5rem;
  position: absolute;
  top: 0.8rem;
  left: 0.7rem;
  color: #ffff;
  cursor: pointer;
}

.sm-card-container .btns {
  position: absolute;
  top: 10.5rem;
  left: 0.7rem;
}

.sm-card-container .paragraph {
  position: absolute;
  top: 8.5rem;
  left: 0.7rem;
  color: #fff;
}

.sm-card-container .hide {
  display: none;
}

hr {
  border: .5px solid #2c4864;
  width: 95%;
  margin: 2rem auto;
  -webkit-box-shadow: 5px 1px 10px #2c4864;
          box-shadow: 5px 1px 10px #2c4864;
  display: none;
}

@media (max-width: 1024px) {
  .sm-card-container .card {
    width: 18rem !important;
    height: 12rem !important;
  }
  .sm-card-container .paragraph {
    top: 3.5rem !important;
  }
  .sm-card-container .btns {
    top: 6.5rem !important;
  }
}

@media (max-width: 768px) {
  .sm-card-container .card {
    width: 16rem !important;
    height: 12rem !important;
  }
}

@media (max-width: 426px) {
  .sm-card-container {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .sm-card-container .card {
    width: 12rem !important;
  }
  .img-card {
    width: 63% !important;
    margin-bottom: 0 !important;
    margin: auto !important;
  }
  .section-title {
    margin-top: 1rem !important;
    text-align: center !important;
  }
  hr {
    display: block;
  }
}

.scrolling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}

.page-footer {
  margin-top: 9%;
  padding: 0;
  background-color: #25425f;
}

.page-footer .container-fluid {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.0001rem 3rem;
  -ms-grid-columns: (minmax(220px, 1fr))[1];
      grid-template-columns: repeat(1, minmax(220px, 1fr));
}

.page-footer .footer-copyright {
  background-color: #173049;
  padding: 1rem 0;
  color: white;
}

.page-footer .activated {
  color: #bd004b !important;
  text-decoration: none;
  border-bottom: 3px solid #bd004b;
}

.page-footer .nav-linkk {
  color: white;
  margin-right: 2rem;
}

.page-footer .nav-linkk:hover {
  color: #bd004b;
  text-decoration: none;
}
/*# sourceMappingURL=media.css.map */


/* --------------- owl-slider ---------------- */
.cards-container {
  height:300px;
  margin-left:3rem ;
}

.cards-container .owl-item{
  height: 160px;
}

.cards-container .card-container:hover .item {
  height:350px;
}

.cards-container .owl-item:hover{
  height: 350px;
}

.cards-container .card-img{
  border-radius: .25rem;
}

.card-container:hover .card-img{
  border-radius: .25rem .25rem 0 0;
}

.cards-container .owl-prev span, .cards-container .owl-next span {
  color: #FFF;
}

.cards-container .owl-prev span:hover, 
.cards-container .owl-next span:hover {
  color: #8199A3;
}

.cards-container .owl-prev, .cards-container .owl-next {
  position: absolute;
  top: 0;
  height: 100%;
}

.cards-container .owl-prev {
  left: 7px;
}

.cards-container .owl-next {
  right: 7px;
}

.cards-container button:focus, .cards-container button:active {
  outline: none;
}

.cards-container .slider-arrow{
  color: #ffff;
  height: 5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 3rem; */
  z-index: 10;
}

.cards-container .card-container {
    transition: all .2s;
}

.cards-container .card-container:hover{
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.cards-container .card-container:hover .card-caption {
  display: block;
}

.cards-container .card-caption {
  display: none;
}

.cards-container .card-container:hover {
  transform: scale(1.08);
  z-index: 1;
}

.cards-container .card-container:hover .progress{
  display: none;
}

.cards-container .card-container:hover .card img {
  border-radius: 0.25rem 0.25rem 0 0;
}

.cards-container .card-container .card-caption {
  height: 130px;
  background-color: #304c67;
  border-radius: 0 0 0.25rem 0.25rem;
}

.cards-container .card-container .card-caption .card-caption-anchor {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-container .card-container .card-caption .circle-border {
  border:1px solid #bd004b;    
  width:38px;
  height:38px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  cursor: pointer;
}

.cards-container .card-container .card-caption .card-caption-anchor:hover .circle-border{
  background-color: #bd004b;
}

.cards-container .card-container .card-caption .card-caption-anchor:hover .card-caption-anchor-word{
  color: #ffffffd8;
}

.cards-container .item:hover .hidden {
  opacity: 1;
}

.cards-container .item .hidden {
  opacity: 0;
}

.cards-container .owl-nav button{
  width: 50px;
  height: 100px;
  top: 8%;
}

@media screen and (max-width:1200px){
  .cards-container .owl-nav button{
    top: 5%;
  }
}

@media screen and (max-width:992px){
  .cards-container{
    margin-left:0;
  }

  .cards-container .owl-nav button{
    top: 20%;
  }
}

@media screen and (max-width:768px){
  .cards-container .owl-nav button{
    top: 10%;
  }
}

@media screen and (max-width:576px){
  .cards-container .owl-nav button{
    top: 1%;
  }
}

@media screen and (max-width:425px){
  .cards-container .owl-nav button{
    top: 10%;
  }
}

@media screen and (max-width:375px){
  .cards-container .owl-nav button{
    top: 5%;
  }
}

.cards-container .owl-nav .owl-next{
  background-image: linear-gradient(to right, rgba(255,0,0,0),#173049) !important;
  right:-1%;
}

.cards-container .owl-nav .owl-prev{
  background-image: linear-gradient(to left, rgba(255,0,0,0),#173049) !important;
  left:-1%;
}

.cards-container .visible{
  height: 150px;
}
/* .cards-container .owl-dots {
  bottom: -40px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
}
.cards-container .owl-dot {
  background-color: #6fc3df;
  border-radius: 50%;
  height: 1rem;
  margin: 0 5px;
  opacity: 0.5;
  transition: opacity 0.3s;
  width: 1rem;
}
.cards-container .owl-dot:hover, .cards-container .owl-dot.active {
  opacity: 1;
} */
/* --------------- end of owl-slider ---------------- */



