@import url('https://fonts.googleapis.com/css?family=Convergence');

body{
    font-family: 'Convergence';
}

:root {
    --mainColor: #6aa5e7;
  }


.tooltip > .tooltip-inner {
    color: #ffda0b;
    font-weight: bold;
}

.white-line{
    background-color: white;
}

/* @media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{  display:block; opacity: 0;  visibility: hidden; transition:.5s; margin-top:0;  }
	.navbar .nav-item:hover .nav-link{ color: #fff;  }
	.navbar .dropdown-menu .fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
	.navbar .dropdown-menu .fade-up{ top:180%;  }
    .navbar .nav-item:hover .dropdown-menu{ transition: .5s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
} */

/* Link Effect */
.a-href {
    background:
       linear-gradient(
         to right,
         var(--mainColor) 0%,
         var(--mainColor) 5px,
         transparent 5px
       );
      background-repeat: repeat-x;
        background-size: 200% 100%;
    color: #fff;
    padding-left: 10px;
    text-decoration: none;
    transition: all 0.5s ease-out;
  }
  
.a-href:hover {
    background:
        linear-gradient(
            to right,
            var(--mainColor) 0%,
            var(--mainColor) 5px,
            transparent
        );
    color: #aaa;
    background-position:right bottom;
    text-decoration: none;
}

/* BAckground colors */
.bg-faded{
    background-color: rgba(0, 0, 0, 0.37);
}

.bg-black{
    background-color: rgb(33, 38, 53);
}

.bg-Carousel{
    background-color: #111;
}

/* Carousel */
.img-fluid{
  display: block;
  margin: auto;
  height: 500px;
  object-fit: cover;
}

.carousel-caption{
  opacity:0;
  transition:500ms ease-in-out;
}
.carousel-item:hover .carousel-caption{
  opacity:1;
}

/* FOOTER STUFF */
.footer {
    position: relative ;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #aaa; 
    text-align: left;
    background: #333;
}

.footer h3{ 
    color: white;
}

.footer-contact p { 
    word-wrap: break-word; 
}

.footer-contact p a { 
    color: #aaa; 
    border-bottom: 
    1px dashed #666; 
}

.footer-contact p a:hover, .footer-contact p a:focus { 
    color: #fff; 
    border-color: #aaa; 
}

.footer-social a { 
    display: inline-block; 
    margin-right: 20px; 
    margin-bottom: 8px; 
    color: #777; 
    border: 0; 
}

.footer-social a:hover, .footer-social a:focus { 
    color: #aaa; 
    border: 0; 
}

.footer-social i { 
    font-size: 24px; 
    vertical-align: middle; 
}

/* Parallax Background */
.parallax {
    /* The image used */
    background-image: url("../Asset/WEBDEV.png");
  
    /* Set a specific height */
    height: 500px;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
  }
  
  .caption span.border {
    background-color: #111;
    color: #fff;
    padding: 18px;
    font-size: 25px;
    letter-spacing: 10px;
  }

  /* HR DESIGN */
.fancy{
    height: 30px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-width: 2px 0 0 0;
    border-radius: 20px;
}

.fancy:before {
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-width: 0 0 2px 0;
    border-radius: 20px;
    }


/* CARD DESIGN */
.card-image {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.cardLink {
    -webkit-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cardLink:hover {
    -webkit-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wrapperCard {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    }

.card {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#2C3E50), to(#200b5c));
    background-image: linear-gradient(0deg, #2C3E50 0%, white 100%);
    width: 650px;
    height: auto;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.card-image {
    height: 350px;
    -o-object-fit: cover;
        object-fit: cover;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-meta {
    font-size: 0.6875em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card-meta:before {
    content: '';
    height: 1px;
    width: 30px;
    background-color: #fff;
    position: relative;
    display: block;
    margin-bottom: 10px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
    -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-text {
    color: #FFF;
    background-color: rgba(17, 17, 17, 0.65);
    position: absolute;
    padding: 20px;
    z-index: 10;
    height: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-title {
    margin: 8px 0;
    font-weight: 300;
    font-size: 1.875em;
}

.card a:hover .card-text {
    background-color: rgba(17, 17, 17, 0.86);
}
.card a:hover .card-meta:before {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card a:hover .card-image {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Pretty link */
.pretty{
    color: rgb(161, 161, 161);
}

.pretty:hover{
    color: rgba(243, 168, 168, 0.856);
    text-decoration: none;
}