
*,*:before, *:after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.navbar{
    padding: 0 10px;
    z-index: 1;
    width: 100%;
}
.nav-item{
    padding: 10px 18px;
    font-size: 17px;
    text-transform: uppercase;
    cursor: default;
}
.nav-link{
    padding: 0;
    color: white!important;
}
.nav-item .nav-link:before,
.nav-item .nav-link:after{
    position: absolute;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #FFF;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

.nav-item .nav-link:before{
    top: 5px;
    transform: translateY(-10px);
}

.nav-item .nav-link:after{
    bottom: 5px;
    transform: translateY(10px);
}

.nav-item .nav-link:hover:before,
.nav-item .nav-link:hover:after{
    opacity: 1;
    transform: translateY(0px);
}


.abril{
    font-family: 'Abril Fatface', cursive;
}
.font-93{
    font-size: 93px;
}
.font-40{
    font-size: 40px;
}

.blue-bg{
    background-color: #00acc1;
}
.bg-darkblue{
    background-color: #00616F;
}

.text-white{
    color: white;
}
.text-black{
    color: black;
}

.padding5{
    padding: 5px;
}
.padding80{
    padding: 80px 0;
}
.padding40 {
    padding: 40px 15px;
}
.margin-b-40{
    margin-bottom: 40px;
}

.main-container {
    min-height: 118vh; /* will cover the 100% of viewport */
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 193px; /* height of your footer */
}

.main {
    height: 700px;
    background-repeat: no-repeat;
    background-image: url(./bg.jpg);
    background-size: cover;
    background-position: center;
}

.service-container{
    position: absolute;
    top: 4px;
    height: 97%;
    background: #00000070;
    width: 98%;
    left: 6px;
    transition: 0.4s all;
}
.service-container:hover{
    background: #000000d6;
}
.btn-animation{
    transition: 0.5s all;
    text-decoration: none!important;
}
.btn-animation:hover{
    background-color: #00616F;
    color: white!important;
    border: 2px solid #00616F;
}
.btn-animation--bluebg{
    transition: 0.5s all;
    text-decoration: none!important;
}
.btn-animation--bluebg:hover{
    background-color: white;
    color: #00616F!important;
    border: 2px solid white;
}
.service-text{
    top: 58px;
    position: relative;
}
.bg-cover{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#movie{
    background-image: url(./movie-dark.jpg);
}
#social{
    background-image: url(./social-dark.jpg);
}
#web{
    background-image: url(./webdesign-dark.jpg);
}
#branding{
    background-image: url(./packaging-dark.jpg);
}
#contact {
    background-image: url(./contact.jpg);
}

.white-border{
    border: 2px solid white;
}
.black-border{
    border: 2px solid black;
}
.border-link{
    display: block;
    padding: 10px;
    text-align: center;
    width: 176px;
    text-transform: uppercase;
    margin: 0 auto;
}

.ref-img{
    transition: 0.4s all;
}
.ref-img:hover{
    box-shadow: -1px -1px 12px black;
}
.link{
    color: white;
}

.link:hover{
    color: #000000;
    text-shadow: 1px 1px 3px #d4d2d2;
    text-decoration: none;
}

.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
}

.list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    justify-content: space-evenly;
    width: 100px;
    margin: 0 auto;
}

iframe{
    height: 710px;
}

@media screen and (max-width: 1024px) {
    .font-93 {
        font-size: 57px;
    }
}
@media screen and (max-width: 992px) {
    #movie, #social, #web, #branding{
        height: 300px;
    }
}
@media screen and (max-width: 768px) {
    .font-93{
        font-size: 45px;
    }
    .padding80{
        padding: 40px 0;
    }
    .main-container {
        padding-bottom: 339px;
    }
}
@media screen and (max-width: 576px) {
    .main-container {
        padding-bottom: 339px;
    }
    iframe{
        height: 740px;
    }
    .service-text {
        top: 15px;
    }
    .service-container {
        top: 0px;
        height: 100%;
        width: 100%;
        left: 0px;
    }
}
