@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;700;900&display=swap');



body, html {
    height: 100%;
  }
  
  .container {
    top: 30%;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
.link  {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .studio {
    background: #11172B!important;    
  }

  .store {
    background: #212529!important;    
  }
  
  .creative {
    background: #64caaa!important;    
  }

  .rental {
    background: #AD8C32!important;    
  }
  
  body {
      background: #11172B;
    }

	.st0{display:none; fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
	.st1{fill:#FFFFFF;}

  .responsive {
    margin-top: 10%;
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .col {
    position: relative;
    background: #caaa64;
    float: left;
    width: 50%;
    color: #ccc;
    text-align: center;  
    height: 50%;
    vertical-align: middle;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 0;
  }
  
  .col.two, .col.three {
    background: #eaeaea;
  }
  
  a:link, a:visited, a:active {
    color: white;
    text-decoration:none;
}
ul {
    padding: 0;
}    

ul li {
    position: relative;
    display: inline-block;
    overflow:hidden;
}
ul li:hover, ul li:focus {
    	outline: none;
}
ul li a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 3vw;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
}
ul li a.light:before{
    position: absolute;
    top: 100%;
    content: attr(title);
    color:#333;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
ul li a.dark:before{
    position: absolute;
    top: 100%;
    content: attr(title);
    color: #caaa64;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}


svg {
    fill: #fff;
}  

.logo {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
@media (min-width: 768px) {
    .logo {
        width: 30%;
    }

    
}

@media (min-width:481px)  { 
    .col {
      letter-spacing: 1rem;
    }
}


.studio:hover svg {
    fill: #caaa64!important;
}  

ul li:hover a, ul li:focus a {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}  

/* Sweep To Top */
.hvr-sweep-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .hvr-sweep-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
    color: white;
  }
  .hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }