@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
@import url("https://allfont.net/allfont.css?fonts=lucida-console");

* {
    margin: 0;
    padding: 0;
    /*outline: 1px solid red;*/
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

body {
    /*To make scrollbar transparent*/
    /*overflow: overlay;*/
    scrollbar-width: none; /* Also needed to disable scrollbar Firefox */
    -ms-overflow-style: none;  /* Disable scrollbar IE 10+ */
    overflow-y: scroll;
}
body::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
}

@-moz-document url-prefix() { /* Disable scrollbar Firefox */
    html {
        scrollbar-width: none;
    }
}

.progress-container {
    width: 100%;
    height: 6px;
    position: fixed;
    top: 0;
    z-index: 1;
    background: transparent;
}

.progress-bar {
    width: 0%;
    height: 6px;
    background-color: #8A9EC5;
}

#banner {
    text-align: center;
    color: white;
    padding: 100px;
    background-image: url("images/banner2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#banner-img {
    margin-top: -50px;
    margin-bottom: 50px;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 50px 100px rgba(50,50,93,.15),
                0 15px 35px rgba(50,50,93,.2),
                0 5px 15px rgba(0,0,0,.12);
}

#banner-img:hover {
    filter: grayscale(50%);
}

#back-button {
    position: absolute;
    top: 10px;
    left: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #FFF;
    font-size: 35px;
}

#back-button:hover {
    color: #999;
}

.top {
    width: 25px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: none;
    border: 0;
    padding: 0;
    outline: none;
    cursor: pointer;
}

#card-1 {
    margin-top: -100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: 80%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 50px 100px rgba(50,50,93,.15),
                0 15px 35px rgba(50,50,93,.2),
                0 5px 15px rgba(0,0,0,.12);
    margin-bottom: 60px;
    overflow: hidden;
    min-height: 360px;
}

#card {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: 80%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 50px 100px rgba(50,50,93,.15),
                0 15px 35px rgba(50,50,93,.2),
                0 5px 15px rgba(0,0,0,.12);
    margin-bottom: 60px;
    overflow: hidden;
}

#img-card {
    display: block;
    position: relative;
    width: 40%;
}

/*Firefox Only - To make card imgs bigger*/
@-moz-document url-prefix() {
    #img-card {
        display: block;
        position: relative;
        width: 70%;
    }
  }

#card-content > h3 {
    margin-bottom: 30px;
    font-weight: lighter;
    font-size: 25px;
}

#card-content {
    padding: 40px;
    text-align: justify;
    width: 100%;
}

#card-content > p {
    line-height: 27px;
}

/*Modal Box*/

#img-row {
    padding-top: 40px;
    display: inline-flex;
    width: 100%;
}

.row > .column {
    display: flex;
}
  
.row:after {
    content: "";
    display: table;
    clear: both;
}

#lb-imgs {
    width: 95%;
    border-radius: 3px;
}

#open-img {
    width:100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#hs-video {
    height: 550px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.column {
    float: left;
    width: 25%;
    display: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /*overflow: auto;*/
    background-color: rgba(0,0,0,0.75);
}

.modal-content {
    position: absolute;
    padding: 10px;
    width: 75%;
    margin: auto;
    z-index: 998;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
}

.modal-content {
    animation-name: down;
    animation-duration: 0.5s;
}

@keyframes down
{
    from
    {
        top: 0px;
    }
    to
    {
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@keyframes up
{
    from
    {
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    to
    {
        top: -60%;
    }
}

.close {
    color: #fff;
    position: absolute;
    text-align: center;
    top: -20px;
    right: -20px;
    padding: 6px;
    width: 30px;
    font-size: 20px;
    height: 30px;
    background-color: #111;
    border-radius: 50%;
}

.close:hover, .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#caption {
    text-align: center;
    padding-top: 10px;
    color: white;
}

img.hover-shadow {
    transition: 0.3s;
    cursor: pointer;
}
  
.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
                0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

footer {
    margin-top: 70px;
}

footer > p {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 50px;
    font-size: 13px;
}

#code {
    width: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

/*######################## Mobile Version ##########################################*/

@media screen and (max-width: 1100px) {

    @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
    @import url("https://allfont.net/allfont.css?fonts=lucida-console");
    
    * {
        margin: 0;
        padding: 0;
        /*outline: 1px solid red;*/
        font-family: 'Lato', sans-serif;
        scroll-behavior: smooth;
    }

    body {
        /*To make scrollbar transparent*/
        /*overflow: overlay;*/
        scrollbar-width: none; /* Also needed to disable scrollbar Firefox */
        -ms-overflow-style: none;  /* Disable scrollbar IE 10+ */
        overflow-y: scroll;
    }
    body::-webkit-scrollbar {
        width: 0px;
        background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
    }
    
    @-moz-document url-prefix() { /* Disable scrollbar Firefox */
        html {
            scrollbar-width: none;
        }
    }

    .progress-container {
        display: none;
    }
    
    .progress-bar {
        display: none;
    }
    
    #banner {
        text-align: center;
        color: white;
        padding: 0px;
        background-image: url(images/banner2.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 325px;
        padding-top: 110px;
    }
    
    #banner-img {
        margin-top: -50px;
        margin-bottom: 50px;
        height: 200px;
        width: 200px;
        border-radius: 50%;
        border: 4px solid white;
        box-shadow: 0 50px 100px rgba(50,50,93,.15),
                    0 15px 35px rgba(50,50,93,.2),
                    0 5px 15px rgba(0,0,0,.12);
    }

    #back-button {
        position: absolute;
        top: 10px;
        left: 15px;
        letter-spacing: 2px;
        text-decoration: none;
        color: #FFF;
        font-size: 35px;
    }

    #back-button:hover {
        color: #FFF;
    }

    .top {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
        display: none;
    }
    
    #card-1 {
        margin-top: -100px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        width: 90%;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 50px 100px rgba(50,50,93,.15),
                    0 15px 35px rgba(50,50,93,.2),
                    0 5px 15px rgba(0,0,0,.12);
        margin-bottom: 50px;
        overflow: hidden;
    }
    
    #card {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        width: 90%;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 50px 100px rgba(50,50,93,.15),
                    0 15px 35px rgba(50,50,93,.2),
                    0 5px 15px rgba(0,0,0,.12);
        margin-bottom: 50px;
        overflow: hidden;
    }
    
    #img-card {
        display: none;
        position: relative;
        width: 40%;
    }
    
    #card-content > h3 {
        margin-bottom: 30px;
        font-weight: lighter;
        font-size: 25px;
        text-align: center;
    }
    
    #card-content {
        padding: 40px;
        text-align: justify;
        width: 100%;
    }
    
    #card-content > p {
        line-height: 27px;
    }
    
    /*Modal Box*/
    
    #img-row {
        padding-top: 30px;
        display: grid;
        width: 100%;
    }
    
    .row > .column {
        display: flex;
    }
      
    .row:after {
        content: "";
        display: table;
        clear: both;
    }
    
    #lb-imgs {
        width: 400%;
        border-radius: 3px;
    }
    
    #open-img {
        width:100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    #hs-video {
        height: 320px;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .column {
        float: left;
        width: 25%;
        display: none;
    }
    
    .modal {
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        /*overflow: auto;*/
        background-color: rgba(0,0,0,0.75);
    }
    
    .modal-content {
        position: absolute;
        padding: 10px;
        width: 65%;
        margin: auto;
        z-index: 998;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: rgba(0,0,0,0.6);
        border-radius: 10px;
    }
    
    .modal-content {
        animation-name: down;
        animation-duration: 0.5s;
    }
    
    @keyframes down
    {
        from
        {
            top: 0px;
        }
        to
        {
            top: 50%;
            left: 50%;
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }
    }
    
    .close {
        color: #fff;
        position: absolute;
        text-align: center;
        top: -20px;
        right: -20px;
        padding: 6px;
        width: 30px;
        font-size: 20px;
        height: 30px;
        background-color: #111;
        border-radius: 50%;
    }
    
    .close:hover, .close:focus {
        color: #999;
        text-decoration: none;
        cursor: pointer;
    }
    
    .mySlides {
        display: none;
    }
    
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -50px;
        color: white;
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .next {
        right: 0px;
        border-radius: 3px 0 0 3px;
    }
    
    .prev:hover, .next:hover {
        background-color: transparent;
    }
    
    #caption {
        text-align: center;
        padding-top: 10px;
        color: white;
    }
    
    img.hover-shadow {
        transition: 0.3s;
        cursor: pointer;
    }
      
    .hover-shadow:hover {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
                    0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    
    footer {
        margin-top: 5px;
    }
    
    footer > p {
        text-align: center;
        padding-top: 0px;
        padding-bottom: 30px;
        font-size: 13px;
    }
    
    #code {
        width: 20px;
        margin-right: 5px;
        vertical-align: middle;
    }
}