@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');



@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}

.container-fluid,
.row {
    animation: transitionIn 0.75s
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

img {
    /*display: block;*/
    max-width: 100%;
    height: auto;
}

#mainLogo:hover {

    color: grey;
}

.padding {
    padding-bottom: 2rem;
}

.video_vrare {
    /*aspect-ratio: 800/480;*/
    /* max-width: 700px; */
    width: 100%;

    @media (min-width: 767px) {
        /*    !* CSS that should be displayed if width is equal to or less than 847px goes here *!*/
        width: 100%;
        /*    height: 250px;*/
    }
}

.welcome {
    width: 95%;
    margin: 0 auto;
    padding-top: 1rem;
}

.welcome hr {
    border-top: 2px solid #b4b4b4;
    width: 95%;
    margin-top: .3rem;
    margin-bottom: 1rem;
}

ul.centered {
    list-style-type: none !important;
    text-align: center;
    list-style-position: inside;
}

#hi {
    text-shadow: 4px 4px white;
}


.card {
    width: 90%;
    box-shadow: 0 0 5px #888;
}

.youtube_frame {
    width: 64vw;
    height: 48vw;
}

p.card-text {
    font-size: smaller !important;
}

li.list-group-item {
    font-size: smaller !important;
}

.card-img-top#team {
    object-fit: cover;
    width: 100%;
    height: 250px !important;
}

#jumbo {
    font-size: small !important;
}

.navbar {
    padding: .8rem;
}

.navbar-nav li {
    padding-right: 20px;
}

.nav-link {
    font-size: 1.1em !important;
}

.carousel-inner img {
    width: 100%;
    height: 100% !important;
}

.jumbotron {
    padding: 1rem;
    border-radius: 0;
}


.social a {
    font-size: 3.5em;
    padding: 3rem;
}


#navbar a.nav-link:hover {

    color: gray !important;

}

i#foot {
    color: #343A40;
}

i.fa-twitter#foot:hover {
    color: #1DA1F2 !important;
}

i.fa-google#foot:hover {
    color: orangered !important;
}

i.fa-facebook#foot:hover {
    color: blue !important;
}

i.fa-linkedin#foot:hover {
    color: #04009a !important;
}

i.fa-github#foot:hover {
    color: black !important;
}


/*---Media Queries --*/
@media (max-width: 992px) {
    #rhytm {
        width: 40%;
    }

}

@media (max-width: 768px) {
    .card {
        width: 85%;
        margin-left: 1.5cm;
    }

    #main2 {

        margin-left: 0cm !important;
    }

    #rhytm {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .card {
        width: 65%;
        margin-left: 1.6cm;
    }

    #main2 {

        margin-left: 0cm !important;
    }

    div#pubrow {
        margin-right: 2.6cm;
    }

    #rhytm {
        width: 80%;
    }

    #gif {
        width: 100%
    }
}

/*---Firefox Bug Fix --*/
.carousel-item {
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

/*--- Fixed Background Image --*/
figure {
    position: relative;
    width: 100%;
    height: 60%;
    margin: 0 !important;
}

.fixed-wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#fixed {
    background-image: url('img/mac.png');
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}





/*
  Extra small (xs) devices (portrait phones, less than 576px)
  No media query since this is the default in Bootstrap
  
  Small (sm) devices (landscape phones, 576px and up)
  @media (min-width: 576px) { ... }
  
  Medium (md) devices (tablets, 768px and up)
  @media (min-width: 768px) { ... }
  
  Large (lg) devices (desktops, 992px and up)
  @media (min-width: 992px) { ... }
  
  Extra (xl) large devices (large desktops, 1200px and up)
  @media (min-width: 1200px) { ... }
  */