/* Experience card settings */

@media only screen and (max-width: 967px) {
  .experience-card {
  width: 80vw;
  height: 40vw;
  }
} 

@media only screen and (min-width: 992px) {
  .experience-card {
    width: 450px;
    height: 225px;
  }
}

@media only screen and (min-width: 1200px) {
  .experience-card {
    width: 500px;
    height: 250px;
  }
}


/* Font settings */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.5;
  }
   


  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    }
  


.experience-card {
  padding: 1.5rem;
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.experience-card:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.experience-card:hover:before {
  opacity: 1;
}
.experience-card:hover .info {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.experience-card:hover {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.experience-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
.experience-card img {
  border-radius: 15px;
  height: 100%;
  width:100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;

}
.experience-card .info {
  height: 100%;
  width: 100%;
  position: relative;
  top: 10px;
  right: 10px;
  z-index: 3;
  color: white;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.5s;
  transition: 0.5s;

}
.experience-card .info h1 {
  margin: 0px;

}
.experience-card .info p {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 8px;
  text-decoration: none;
  
}

.experience-card a {
  width: 100%;
  height: 100%;
  text-decoration: none;
}




.blackiconcolor {color:black;
}



/* header links settings */
.bg-semitransparent {
  background-color: rgba(255,255,255,0.63) !important;
}

.navbar {
  width: 100%;
}

/* .navbar-toggler {
  width: 50px;
  height: 50px;
  color: rgba(0,0,0,0.5);
} */



.dropdown:hover .dropdown-menu {

  display: block;

}

.homelink:hover {
  text-decoration: none;
}

.nav-link {
  color: rgba(0,0,0,.50)
}

.nav-link:hover {
  /* background-color: rosybrown; */
  color: rgba(0,0,0,0.8);
}

.nav-link a .active {
  color: #ffffff !important;
  background:#f1d74c !important;
}

.nav-link.h5.px-2.active {
  color: rgba(0, 0, 0, 0.747);
  /* background:#8d8d8d52 !important; */

}
.nav-link.myLinkedDropdown.active {
  color: rgba(0, 0, 0, 0.747);
  /* background:#8d8d8d52 !important; */

}

header {
  background-color: #ffffff;
  width: 100%;
}

.hide-menu {
  overflow-x: hidden;
  /* Disable horizontal scroll */
  padding-top: 60px;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 250px;
  height: 100%;
  -webkit-transform: translate3d(300px, 0, 0);
  -moz-transform: translate3d(300px, 0, 0);
  -o-transform: translate3d(300px, 0, 0);
  -ms-transform: translate3d(300px, 0, 0);
  transform: translate3d(300px, 0, 0);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.hide-menu ul li a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: rgba(0,0,0,.50);
  display: block;
}
.hide-menu a.btn-close-link {
  color: rgba(0, 0, 0, 0.5);
}
.hide-menu i.close-btn {
  position: absolute;
  top: 8px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.show-menu {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.navbar-toggler {
  height: auto;
  width: auto;
}
.navbar-toggler i {
  font-size: 1.6rem;
  color: #676767;
}

#overlay {
  position: fixed;
  /* Sit on top of the page content */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.49);
  /* Black background with opacity */
  z-index: 80;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
  transition: all 0.25s ease-in;
}











.fixed-bottom {
  background-color: rgba(255, 255, 255, 0.2);
}




