/*==========================================================================
    Reset
  ========================================================================== */

  html, body, div, span, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  abbr, address, cite, code,
  del, dfn, em, img, ins, kbd, q, samp,
  small, strong, sub, sup, var,
  b, i,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, figcaption, figure, 
  footer, header, hgroup, menu, nav, section, summary,
  time, mark, audio, video {
      margin:0;
      padding:0;
      border:0;
      outline:0;
      font-size:100%;
  }

/*==========================================================================
    Global
  ========================================================================== */

@font-face {font-family: "Agenor-Regular"; src: url("../fonts/agenor-regular.woff2") format("woff2");}

:root {
    --yellow: #ffc400;
    --white: #ffffff; 
    --black: #171817;
    --deepblack: #000000;
}

* {
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'jaf-domus', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    background: var(--black);
}

a {
    color: var(--yellow);
}

a, a:hover, a:visited {
    text-decoration: none;
}

.btn {
    font-family: Agenor-Regular;
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    background-color: var(--yellow);
    margin: 40px 0;
    padding: 20px 40px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
}

.btn:hover {
    animation: wiggle 0.5s;
    animation-iteration-count: 1;
    color: var(--black);
}

ul {
    list-style: none;
}

section {
    width: 100%;
    padding: 0 20px;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    
}

.container::after {
  content: "";
  clear: both;
  display: table;
}

#yellow {
    background-color: var(--yellow);
    padding: 80px 20px;
    text-align: center;
}

.left {
    float: left;
}

 .right {
    float: right;
}

span {
    color: var(--yellow);
}


/*==========================================================================
    Columns
  ========================================================================== */

  [class*="col-"] {
  float: left;
  padding: 15px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


/*==========================================================================
    Typography
  ========================================================================== */

h1 {
        
    font-size: 60px;
  }

h2 {
    font-family: Agenor-Regular;
    font-size: 40px;
    margin: 30px 0;
}

h3 {
    font-family: Agenor-Regular;
    font-size: 20px;
    margin:30px 0;
}


/*==========================================================================
    Header
  ========================================================================== */

header {
    width: 100%;
    height: 100px;
    padding: 40px;
    overflow: hidden;
    position: fixed;
    z-index: 99;
}

.active {
    background: rgba(23, 24, 23, 0.8);
    padding: 20px 40px;
}

.dropdown {
    height: 100vh;
    background: rgba(23, 24, 23, 0.8);
    border-bottom: 3px solid var(--yellow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bubble-logo {
    background: url('../img/corker_bubble.svg') no-repeat; 
    background-size: auto;
    width: 50px;                    
    height: 50px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin: auto;
    display: block;
}

.bubble-logo:hover {
    transform: scale(0.8);
}

nav {
    float: right;
    overflow: hidden;
}

nav ul {
    float: right;
    margin: 12px 20px 0 0;
}

nav ul li {
    display: table-cell;
    vertical-align: middle;
    float:left;
}

nav ul li a {
    display: block;
    padding: 10px;
    margin: 0 50px 0 0;
    
}

nav ul li a:hover {
    color: var(--white);
    border-bottom: 3px solid var(--yellow);
}

nav .btn {
    font-size: 12px;
    padding: 10px 0;
    display: block;
    margin: 0;
    text-align: center;
    width: 150px;
}

.hamburger {
    display: none;
    color: var(--yellow);
    font-size: 30px;
    float: right;
    margin-top: -7px;
}

/*==========================================================================
    Banner
  ========================================================================== */

video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 10px solid var(--yellow);
}

.banner-overlay {
    position: relative;
}

.banner-overlay h1 {
    background: url('../img/corker_logo.svg') no-repeat; 
    background-size: auto;
    text-align: center; 
    width: 685px;                    
    height:  100px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin: auto;
    animation: fade-in-down 2.0s;
    animation-iteration-count: 1;
}

.banner-overlay p {
    font-size: 35px;
    margin-top: 10%;
    margin-bottom: 50px;
    max-width: 900px;
}

.banner-overlay img {
    transform: rotate(5deg);
    border-radius: 10px;
    margin-bottom: 20px;
}

.banner-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.section-banner {
    background-image: url(../img/footer_banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.section-banner h2 {
    font-size: 100px;
    animation: fade-in-down 2.0s;
    animation-iteration-count: 1;
}

.section-banner p {
    margin-top: 0;
}

.message-banner {
    background: var(--black);
    height: 100vh;
    border-bottom: none;
}


/*==========================================================================
    Services
  ========================================================================== */

.intro {
    padding: 40px;
    display: block;
}

.company-image {
    overflow: hidden;
    padding: 50px;
}

.company-image img {
    width: 100%;
    border-radius: 10px;
}

.service-list{
    padding: 100px 40px;
}

.service-list li {
    position: relative;
    padding: 30px 0 0px 0;
    display: block;
    border-bottom: 3px solid var(--deepblack);
}

.service-list li a {
    font-family: Agenor-Regular;
    font-size: 40px;
    color: var(--white);
    display: block;
}

.service-list li a::after {
    display: block;
    width: 28px;
    height: 16px;
    background: url('../img/arrow.svg') no-repeat;
    content: "";
    float: right;
    margin-top: 20px;
}

.service-container {
    opacity: 0.0;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    display: block;
    padding-top: 10px;
    margin-bottom: 0px;
}

.service-list li:hover {
    border-bottom: 3px solid var(--yellow);
}

.service-list li:hover a {
    color: var(--yellow);
}

.service-list li:hover .service-container {
    opacity: 1.0;
    margin-bottom: 30px;
}

.service-bubble {
    position: absolute;
    top: -20px;
    left: 70%;
    width: 245px;
    height: 190px;
    border-radius: 10px;
    transform: rotate(12deg);
    opacity: 0.0;
    overflow: hidden;
}

.service-bubble img {
    width: 100%;
}

.service-list li:hover .service-bubble {
    transform: rotate(8deg);
    opacity: 1.0;
}

.service-block {
    display: block;
}

.service-block:hover {
    transform: scale(1.03);
}

.service-block img {
    width: 100%;
}

.contact-block {
    padding: 40px;
}

.contact-block h2 {
    margin: 30px 0 10px 0;
}

/*==========================================================================
    Video Container
  ========================================================================== */

.video-container {
    max-width: 1700px;
    margin: 0 auto;
}

/*==========================================================================
    Studio
  ========================================================================== */

#studio {
    padding-bottom: 100px;
}

.studio-gallery {
    margin: 100px 0;
    text-align: center;
}

.gallery {
    overflow: hidden;
}

.gallery img {
    width: 100%;
}

.gallery img:hover {
    transform: scale(1.1);
}


/*==========================================================================
    Client
  ========================================================================== */

#client {
    padding: 200px 50px 200px 50px;
}

#client p {
    display: block;
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
    padding-bottom: 50px;
}

.client-logo {
    display: block;
    margin: 0 auto;
    padding-bottom: 50px;
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/*==========================================================================
    Form
  ========================================================================== */

form p {
    font-family: Agenor-Regular;
    font-size: 20px;
    margin:30px 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: white;
  border-bottom: 2px solid var(--yellow);
  transition: background-color 5000s ease-in-out 0s;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
     -webkit-appearance: none;
     border-radius: 0;
}

input, textarea {
    width:  100%;
    padding: 20px 20px 30px 20px;
    margin-bottom: 20px;
    background: var(--black);
    border: none;
    border-bottom: 2px solid var(--yellow);
    color: var(--white);
    font-size: 20px;
}

textarea {
    font-family: 'jaf-domus', sans-serif;
    background: var(--deepblack);
    margin-top: 10px;
}

select {
    color: var(--black);
    width: 100%;
    padding: 20px;
    background: var(--yellow);
    border: none;
    border-radius: 10px;
    -webkit-appearance:none;
}


/*==========================================================================
    Footer
  ========================================================================== */

footer {
    background-image: url(../img/footer_banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 10px solid var(--yellow);
    padding: 60px 40px;
}

.footer-info {
    
}

.footer-info h4 {
    background: url('../img/corker_logo.svg') no-repeat; 
    background-size: auto; 
    width: 250px;                    
    height:  100px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.footer-info h3 {
    width: 100%;
    font-size: 14px;
    float: left;
}

.footer-info a {
    float: left;
    font-size: 26px;
    display: block;
    margin-right: 60px;
    padding-bottom: 20px;
}

.footer-info a:hover {
    color: var(--white);
    border-bottom: 3px solid var(--yellow);
}

.address {
    
}

/*==========================================================================
    Animations
  ========================================================================== */

@keyframes wiggle {
  from, to { transform: scale(1, 1); }
  25% { transform: scale(0.9, 1.1); }
  50% { transform: scale(1.1, 0.9); }
  75% { transform: scale(0.95, 1.05); }
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*==========================================================================
    Media Queries
  ========================================================================== */

@media (max-width: 1500px) {
    .col-3 {width: 50%;}
}

@media (max-width: 1024px) {

    .banner {height: 90vh;}
    .section-banner {height: 60vh;}
    .intro {margin-top: 40px;}
    .company-image {margin-top: 40px; border-radius: 10px;}
    .gallery {padding: 50px;}
    .section-banner h2 {font-size: 40px;}
    .col-1 {width: 100%%;}
    .col-2 {width: 100%;}
    .col-3 {width: 100%;}
    .col-4 {width: 100%;}
    .col-5 {width: 100%;}
    .col-6 {width: 100%;}
    .col-7 {width: 100%;}
    .col-8 {width: 100%;}
    .col-9 {width: 100%;}
    .col-10 {width: 100%;}
    .col-11 {width: 100%;}
    .col-12 {width: 100%;}
}


@media (max-width: 800px) {

    .hamburger {display: block;}
    nav {width: 100%;}
    nav ul {margin: 0; width: 100%;}
    nav ul li {width: 100%; text-align: center;}
    nav ul li a {margin: 0; padding: 40px; color: var(--white); border-bottom: 3px solid var(--yellow);}
    nav .btn {width: 100%; margin-top: 40px; padding: 20px;}
    .active {padding: 40px;}
    .bubble-logo {width: 30px; height: 30px;}
    .banner-overlay h1 {width: 350px;}
    .banner-overlay img {width: 245px; margin-top: 250px;}
    .banner p {font-size: 16px;}
    .message-banner {height: 80vh;}
    .intro {padding: 0px; margin-top: 0px;}
    .company-image {padding: 0px;}
    .service-bubble {display: none;}
    .service-container {opacity: 1.0; margin-bottom: 30px;}
    .service-list {padding: 0 0 60px 0;}
    .service-list li {border-bottom: 3px solid var(--yellow);}
    .service-list li a {font-size: 26px;}
    #showreel {padding: 20px;}
    .studio-gallery {margin: 0px;}
    .gallery {padding: 10px 0;}
}





