@font-face {
    font-family: 'icomoon';
    src:  url('icomoon/fonts/icomoon.eot?gkfq19');
    src:  url('icomoon/fonts/icomoon.eot?gkfq19#iefix') format('embedded-opentype'),
      url('icomoon/fonts/icomoon.ttf?gkfq19') format('truetype'),
      url('icomoon/fonts/icomoon.woff?gkfq19') format('woff'),
      url('icomoon/fonts/icomoon.svg?gkfq19#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }

  @font-face {
    font-family: 'Futura';
    font-weight: 400;
    src: url(assets/font/Futura.ttc);
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    
    /* Enable Ligatures ================ */
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    font-feature-settings: "liga";
    -webkit-font-variant-ligatures: discretionary-ligatures;
    font-variant-ligatures: discretionary-ligatures;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-facebook:before {
    content: "\ea90";
  }
  .icon-instagram:before {
    content: "\ea92";
  }
  .icon-twitter:before {
    content: "\ea96";
  }
  .icon-youtube:before {
    content: "\ea9d";
  }
  .icon-vimeo:before {
    content: "\eaa0";
  }
  .icon-linkedin2:before {
    content: "\eaca";
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Futura', cursive;
}

body{
    background-color: #000 !important;
    color: #FFF !important;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.text-black .nav-link{
    color: #000 !important;
}

.navbar {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 100;
}
.nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 12em;
}

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url(assets/hero.jpg);
    background-size: cover;
    background-position: center;
    color: #FFF;
}
.hero-2{
    height: 100vh;
    background-image: url(assets/hero-2.jpeg);
    background-size: cover;
    background-position: top;
    color: #FFF;
}
.centered-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    padding: 0 1em;
    height: 100vh;
    margin: auto;
}
.centered-text h2 {
    font-size: 1.5em;
}
.hero-3{
    height: 100vh;
    background-image: url(assets/hero-3.jpeg);
    background-size: cover;
    background-position: center;
    color: #FFF;
}
.hero-3:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}
.hero-4{
    height: 100vh;
    background-image: url(assets/hero-4.jpg);
    background-size: cover;
    background-position: center;
    color: #FFF;
}

h1{
    font-size: 70px !important;
    letter-spacing: .1em;
    line-height: 115%;
}
h3{
    font-size: 30px !important;
    letter-spacing: .1em;
    line-height: 140%;
}
h4, p, ul li{
    font-size: 16px;
    letter-spacing: .1em;
    line-height: 25px;
    margin-bottom: 0 !important;
}

#navbarInside{
    background-color: rgba(255, 255, 255, 0.9) !important;
}
#navbarInside .navbar-dark .navbar-nav  .nav-link,
#navbarInside .navbar-brand{
color: #000;
}

.navbar-brand{
    font-size: 2em !important;
}
.navbar-brand:hover{
    color: unset;
}
.navbar-dark .navbar-nav .nav-link{
    color: #FFF;
}
.nav-link,
.navbar-brand{
color: #FFF;
}
.nav-link:hover{
    color: #FFF;
}
.active{
    color: #FFF !important;
}

.top-section{
    margin-top: 8em;
}

a.button-primary{
    color: #FFF;
    border: 1px solid #FFF;
    padding: 1em 2em;
    font-size: 1.2em;
    letter-spacing: .2em;
    transition: all .3s ease-in;
}
a.button-primary:hover{
    text-decoration: none;
    color: #000;
    cursor: pointer;
    background-color: #FFF;
}

hr{
    border: none;
    width: 100%;
    height: 1.5px;
    background-color: #FFF;
}

.films{
    margin-top: 5em !important;
    margin-bottom: 3em !important;
    border: 1px solid #FFF
}
.inside-films{
    padding: 15px;
}
.film{
    position: relative;
    height: 200px;
    padding: 0;
}
.film.reel{
    position: relative;
    height: auto;
    padding: 0;
}
.film .descripcion-film{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
    height: auto;
    overflow: auto;
    margin: auto;
    width: 90%;
    min-width: 50px;
}
.film:hover .descripcion-film{
    opacity: 1;
    cursor: pointer;
}
.film img{
    transition: all .3s ease-in-out;
}
.film:hover img{
    opacity: .65;
}
.film .descripcion-film p a{
    color: #FFF;
}
.film .descripcion-film p a:hover{
text-decoration: none;
}
.film .descripcion-film p:before{
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #FFF;
    margin-top: 10px;
    margin-left: -50px;
}
.film .descripcion-film p:after{
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #FFF;
    margin-top: 10px;
    margin-left: 10px;
}


.social span{
    color: #FFF;
    padding: 1em;
}
.social:hover{
    text-decoration: none !important;
}

.desc-list{
    list-style: none;
}
.desc-list li{
    padding-left: 20px;
}
.desc-list li:before{
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #FFF;
    margin-top: 10px;
    margin-left: -20px;
}
.film-title{
    padding-left: 3em !important;
}
.film-desc{
    padding: 3em !important;
}


.stills{
    width: 97% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-top: -20px;
}
.still{
    margin: 0 !important;
    padding: 0 !important;
}
.still img:hover{
    cursor: pointer;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9); 
  }
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 80%;
  }
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #FFF !important;
    font-size: 40px !important;
    font-weight: bold;
    transition: 0.3s;
  }
  .close:hover,
  .close:focus {
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
  }
  

  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }

.contact{
    padding-top: 15%;
}
.contact a{
    color: #FFF;
}
.contact a:hover{
    color: #FFF;
    text-decoration: none;
}
footer{
    background-color: #2B2B2B;
    color: #A0A5A6;
}
footer a.social span{
    color: #A0A5A6 !important;
}

@media screen and (max-width: 480px){
    .navbar-dark .navbar-toggler-icon {
        background-image: url(assets/menu-icon.png) !important;
    }
    .navbar-toggler{
        border: none !important;
        outline: none !important;
    }

    h1{
        font-size: 50px !important;
    }

    h3{
        font-size: 24px !important;
    }

    p, a, ul li{
        font-size: 14px;
    }

    .container.films{
        width: 100%;
    }
    .films{
        border: none;
    }

    .hide-mobile{
        display: none;
    }

    .container.menu{
        padding: 0 !important;
    }

    .navbar-dark .navbar-brand,
    .navbar-dark .navbar-nav .nav-link{
        color: #FFF !important;
    }

    #navbarInside{
        background-color: #000 !important;
    }
    #navbarInside .nav-link,
    #navbarInside .navbar-brand{
    color: #FFF;
    }

    .fixed-top,
    .fixed-bottom{
        position:  relative!important;
    }

    .text-right.footer-icons{
        text-align: center !important;
    }

    .hero-film iframe{
        height: 220px;
    }

    .modal-content {
        top: 30%;
    }
    .stills{
        width: 90% !important;
        max-width: 90% !important;
    }
    .top-section{
        margin-top: 0em;
    }

    .text-right.footer-icons{
        padding-top: 1rem;
    }

    #still-4,
    #still-5{
        width: 100% !important;
    }

    .navbar-nav {
        background-color: #2B2B2B;
    }
    .navbar-nav li:nth-child(3) {
        display: none;
    }
    .navbar-toggler {
        margin-left: auto;
    }
}

@media screen and (min-width: 1300px){
    .top-section-2{
        margin-top: 1em;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px){
    .film{
        height: 170px;
    }
}
@media screen and (max-width: 991px) and (min-width: 768px){
    .film{
        height: 125px;
    }
}
@media screen and (max-width: 767px) and (min-width: 576px){
    .film{
        height: 95px;
    }
}
@media screen and (max-width: 360px){
    .film{
        height: 170px;
    }
}





