@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Rajdhani:wght@600&family=Roboto:wght@300&display=swap');
*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #D7DAE0;
    font-size: 1em;
}
body {    
    background-color: #1D1F23;  
}
h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3em;
    line-height: 1.15;
    letter-spacing: -.02em;
    -webkit-font-smoothing: antialiased;
}
h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3em;
    line-height: 1.15;
    letter-spacing: -.02em;
    -webkit-font-smoothing: antialiased;
}
h3 {
    font-family: 'Rajdhani', sans-serif;
    font-style: normal;
    font-size: 1.5em;
    line-height: 1.15;
    letter-spacing: -.02em;
    -webkit-font-smoothing: antialiased;
}
a {
    color: #58AEFF;
}
a:hover {
    color: #E06C75;
}
/* width */
::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f121;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #58AEFF;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #d1626b;
}
::-webkit-scrollbar-thumb:active {
    background: #e7757e;
}
.home {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/images/bg_portfolio.png");
    background-attachment: fixed;
    background-position: center;
}
/* Preloader */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000a2;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 999;
    transition: 1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.preloader span{
    font-family: 'Rajdhani', sans-serif;
    margin-top: 10px;
}
.loader{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    background:conic-gradient(violet, indigo, blue, green, yellow, orange, red);
    animation: 2s rotate linear infinite;
}
.loader:before {
    position: absolute;
    content: '';
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    background: #1d1f237a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.loader:after {
    position: absolute;
    content: '';
    z-index: -3;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: inherit;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    border-radius: 50%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* NAV Menu */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.navbar .navbar-limit{
    width: 100%;
    top: 0;
    left: 0;
    height: 80px;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1900px;
    z-index: 2;
    margin: 0 auto;
}
.navbar h2{
    font-size: 4vw;
    cursor: default;
    user-select: none;
    margin: auto 0;
}
.navbar h2 span {
    font-family: 'Rajdhani', sans-serif;
    color: #58AEFF;
    opacity: 0;
    overflow: hidden;
    transition: 0.5s; 
}
.navbar h2:hover span {
    opacity: 100%;
}
.nav-active {
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #d7dae011;
    background-color: #1d1f2362;
}
.nav-list {
    list-style: none;
    display: flex;
}
  
.nav-list li {
    letter-spacing: 3px;
    margin-left: 10px;
}

.nav-list li a {
    text-decoration: none;    
    padding: 8px 18px;
    border-bottom: 2px solid transparent;
    transition: 0.5s;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    color: #D7DAE0;
}
.nav-list li a:hover{    
    background-color: #1d1f237c;
    border-bottom: 2px solid #58AEFF;
}
.nav-list li a:active{
    border-bottom: 2px solid #E06C75;
}
  
.mobile-menu {
    display: none;
    cursor: pointer;
}
  
.mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
}
  
@media (max-width: 800px) {
    .nav-list {
        position: absolute;
        top: 1vh;
        right: 0;
        width: 50vw;
        height: 98vh;
        padding-top: 10vh;      
        flex-direction: column;
        align-items: center;
        justify-content: baseline;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        background-color: #282c34f3;
        z-index: 2;
        border-bottom-left-radius: 10px;
        border-top-left-radius: 10px;
        border-left: 2px solid #4a505e;
        border-right: 5px solid #58AEFF;
        box-shadow: 0 0 40px #1D1F23;
    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
      margin-bottom: 15px;
    }
    .nav-list li a {
        width: 46vw;
        display: block;
        text-align: center;
        padding: 20px 20px;
    }
    .mobile-menu {
        position: relative;
        display: block;
        z-index: 3;
    }
}
  
.nav-list.active {
    transform: translateX(0);
}
  
@keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
  
.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}
  
.mobile-menu.active .line2 {
    opacity: 0;
}
  
.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
}

.center-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    user-select: none;
    filter: drop-shadow(0 0 20px #00000080);
}
.center-info .image-home {
    position: relative;
    display: inline-block;
    margin: auto;
    width: 50%;
    height: 50%;
    aspect-ratio: 1/1;
    max-width: 220px;
    max-height: 220px;
    border-radius: 50%;
    opacity: 0;
    transition: 1s;
}
.center-info .image-home > * {
    pointer-events: none;
}
.center-info .image-home img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    transition: 1s;
}

.center-info .image-home img.logo-img {
    opacity: 1;
    z-index: 2;
}
.center-info .image-home img.me-img {
    opacity: 0;
    z-index: 1;
}
.center-info .image-home:hover {
    border: 6px solid #58AEFF;
}
.center-info .image-home:hover img.logo-img {
    opacity: 0;
    background-color: #00000080;
}
.center-info .image-home:hover img.me-img {
    opacity: 1;
}
.center-info h1 {
    font-size: 3vw;
    font-weight: 600;
    transition: 0.5s;
}
.center-info a{
    display: flex;
    padding: 6px 20px;
    padding-left: 6px;
    text-decoration: none;
    border: 2px solid #D7DAE0;
    border-radius: 25px;
    margin: auto;
    margin-top: 10px;
    white-space: nowrap;
    text-align: center;
    align-items: center;
    align-content: center;
    color: #D7DAE0;
    transition: 0.5s;
}
.center-info a:hover{
    color: #58AEFF;
    border: 2px solid #58AEFF;
    background-color: #1d1f2362;
}
.center-info a:active{
    border: 2px solid #E06C75;
    background-color: #1d1f2362;
    color: #E06C75;
}
.center-info .play-image {
    margin-right: 10px;
    filter: grayscale(75%) brightness(1.5);
    transition: 0.5s;
}
.center-info a:hover .play-image {
    filter: grayscale(0) brightness(1);
}
.center-info a:active .play-image {
    filter: grayscale(75%) brightness(1.5);
}
.center-info p {
    margin: 0 auto;
    font-size: 1.4vw;
}
.center-info span {
    color: #58AEFF;
    font-family: 'Rajdhani', sans-serif;
}
.video-div {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-div video{
    width: 100%;
    position: relative;    
}
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(29,31,35,1) 2%, rgba(29,31,35,0.8) 6%, rgba(29,31,35,0) 19%);
}
.back-video {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    margin: 0 auto;
}
.video-div video {
    opacity: 30%;
}

/** Portfolio **/
.portfolio {
    padding: 2em;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-image: url("/images/bg_portfolio.png");
    background-attachment: fixed;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portfolio > p,
.about > p,
.contact > p{    
    font-size: 0.8em;
    text-shadow: 0px 0px 10px #1d1f2371;
    color: #636d83;
    font-size: 1.2em;
    padding-bottom: 15px;
}
.nav-portfolio {
    list-style: none;
    display: flex;
    align-content: center;
    justify-content: center;
    padding-bottom: 30px;
}
  
.nav-portfolio li {
    letter-spacing: 3px;
    margin-left: 2px;
    margin-right: 2px;
}

.nav-portfolio li a {
    text-decoration: none;    
    padding: 4px 12px;
    padding-top: 6px;
    border-bottom: 2px solid transparent;
    transition: 0.5s;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.6em;
    background-color: #262930;
    color: #D7DAE0;
    white-space: nowrap;
}
.nav-portfolio .active-menu {
    background-color: #E06C75;
}
.nav-portfolio li a:hover {
    background-color: #58aeff7e;
}
.portfolio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 90%;
    max-width: 1600px;
}
.collapse-item {
    visibility: collapse;
    width: 0;
    height: 0;
    padding: 0;
}
.portfolio-item {
    flex: 1;
    position: relative;
    flex-basis: 15%;
    height: auto;
    max-width: 15%;
    display: flex;
    margin: 5px;
    border-radius: 10px;
    overflow: hidden;
    transition: 1s;
    user-select: none;
}
.portfolio-item img{
    width: 100%;
    height: 100%;
    transition: 1s;
}
.portfolio-item .text-info{    
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 148, 237, 0.781);
    opacity: 0;
    padding: 10px;
    font-size: 0.8em;
    transition: 1s;
}
.portfolio-item .text-info h3{    
    font-size: 1.2em;
    text-shadow: 0px 0px 10px #1d1f2371;
}
.portfolio-item .text-info p{    
    font-size: 0.8em;
    text-shadow: 0px 0px 10px #1d1f2371;
    padding-bottom: 0;
}
.portfolio-item a {
    text-decoration: none;
    display: inline-block;
    border: 2px solid #fff;
    padding:  5px 10px;
    border-radius: 50px;
    margin-top: 50px;    
    margin: 4% auto;
    width: 60%;
    transition: 0.5s;
    color: #D7DAE0;
}
.portfolio-item a:hover{
    border: 2px solid #58AEFF;
    background-color: #1d1f2362;
    color: #58AEFF;
    width: 90%;
}
.portfolio-item .text-info:hover,
.portfolio-item .text-info:focus{
    opacity: 100;
}
.portfolio-item .text-info:hover,
.portfolio-item .text-info:focus{
    transform: scale(1.1);
}
.portfolio-item:hover img {
    transform: scale(1.05);
} 

.clients {
    width: 100%;
    height: 80px;
    margin-top: 50px;
    display: flex;
    position: relative;
}

.slider{
    width: 80%;
    height: 100px;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
}
.slider .text-clients{
    width: 100%;
}
.slider .text-clients h3{
    color: #636d83;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.logo-slider {
    height: 60px;
    min-height: 60px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-left: 2px solid #262930;
    border-right: 2px solid #262930;
    border-radius: 10px;
}

.logo-slider .logo-slide-track {
    -webkit-animation: logo-scroll 40s linear infinite;
    animation: logo-scroll 40s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(150px * 14);
}

.logo-slider .slide {
    height: 50px;
    width: 150px;
}
.logo-slider .slide img {
    transition: 1s;
    transform: scale(0.8);
    opacity: 0.8;
}
.logo-slider .slide:hover img {
    transform: scale(1.1);
    filter: brightness(1.5);
    opacity: 1;
}

@-webkit-keyframes logo-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-150px * 7));
        transform: translateX(calc(-150px * 7));
    }
}

@keyframes logo-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-150px * 7));
        transform: translateX(calc(-150px * 7));
    }
}

/** About **/
.about {
    padding: 2em;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-color: #282C34;
    background-image: url("/images/bg_about.png");
    background-attachment: fixed;
    background-position: center;
}

.about .div-line {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #4a505e28;
}

.about .about-box {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
}

.about .about-box .about-flex-box {
    flex: 1;
    position: relative;
    flex-basis: 48%;
    height: auto;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    background-color: #1d1f237c;
    margin: 5px;
    border-radius: 10px;
    overflow: hidden;
    user-select: none;
    align-items: center;
    align-content: center;
    transition: 0.5s;
    border-top: 2px solid #1d1f237c;
}
.about .about-box .about-flex-box:hover {
    border-top: 2px solid #58AEFF;
}
.about .about-box .about-flex-box .text-box {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    background-color: #1d1f237c;
    min-height: 180px;
    transition: 0.5s;
    padding-left: 10px;
    padding-right: 10px;
}
.about .about-box .about-flex-box .text-box p {
    color: #9ea9c0;
}
.about .about-box .about-flex-box img {
    margin: 20px auto;
    border-radius: 50%;
    border: 8px solid #58AEFF;
    transition: 0.5s;
    filter: grayscale(75%);
}
.about .about-box .about-flex-box:hover img {
    border: 8px solid #E06C75;
    filter: grayscale(0%);
}
.about .about-box .about-flex-box:hover {
    transition: inherit;
    background-image: url("/images/bg_contact.png");
    background-attachment: fixed;
    background-position: center;
}
.about .about-box .about-flex-box:hover .text-box {
    background-color: #1d1f239c;
}
.about .about-box .about-flex-box p {
    padding: 10px;
    margin-bottom: 20px;
}
.about .services {
    display: flex;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #58aeff10;
    background-image: url("/images/bg_contact.png");
    background-attachment: fixed;
    background-position: center;
    max-width: 1560px;    
    border-radius: 10px;
}
.about .services h3 {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 20px;
}
.about .services .text {
    display: flex;
    align-items: center;
    padding-right: 10px;
}
.about .demo-reel-box {
    display: flex;
    flex-direction: row;
    width: auto;
    margin: 0 auto;
    align-items: flex-start;
    align-content: flex-start;
}
.about .demo-reel-box .text-demo {
    display: flex;
    margin: auto;
    text-align: right;
    margin-right: 10px;
}
.about .demo-reel-box .text-demo {
    margin: auto;
    text-align: right;
    margin-right: 10px;
}
.about .demo-reel-box .text-demo span {
    position: relative;
    bottom: 3px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2em;
}
.about .demo-reel-box .btn-demo {
    display: flex;
    margin: 0 auto;
    text-align: left;
    margin-left: 10px;
    align-items: center;
    align-content: center;
}
.about .demo-reel-box .btn-demo a{
    display: flex;
    padding: 6px 20px;
    padding-left: 6px;
    text-decoration: none;
    border: 2px solid #D7DAE0;
    border-radius: 25px;
    white-space: nowrap;
    text-align: center;
    align-items: center;
    align-content: center;
    color: #D7DAE0;
    transition: 0.5s;
}
.about .demo-reel-box .btn-demo a:hover{
    color: #58AEFF;
    border: 2px solid #58AEFF;
    background-color: #1d1f2362;
}
.about .demo-reel-box .btn-demo a:active{
    border: 2px solid #E06C75;
    background-color: #1d1f2362;
    color: #E06C75;
}
.about .demo-reel-box .btn-demo img {
    margin-right: 10px;
    filter: grayscale(75%) brightness(1.5);
    transition: 0.5s;
}
.about .demo-reel-box .btn-demo a:hover img {
    filter: grayscale(0) brightness(1);
}
.about .demo-reel-box .btn-demo a:active img {
    filter: grayscale(75%) brightness(1.5);
}
.about .software-skills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
}
.about .software-skills div {
    margin-left: 8px;
    margin-right: 8px;
    filter: grayscale(75%);
    transition: 0.5s;
}
.about .software-skills div:hover {
    filter: grayscale(0%);
}
.about .software-skills div:hover img {
    transition: 1s;
}
.about .software-skills div:hover img {
    transform: scale(1.15);
}
.software-skills .tooltip {
    border: none;
}
.about .p-programing {
    margin: auto;
    max-width: 1400px;
}

/* Contact */
.contact {
    padding: 2em;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-color: #262930;
    background-image: url("/images/bg_contact.png");
    background-attachment: fixed;
    background-position: center;
}
.contact iframe {
    margin: 30px auto;
    height: 460px;
    width: 60vw;
    border-radius: 10px;
    overflow: hidden;
}
.contact .div-line {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 20px;
    border-bottom: 2px solid #4a505e28;
}
.contact a {
    text-decoration: none;
}
.contact a img {
    position: relative;
    top: 4px;
}


/* Credits */
.credits {
    padding: 2em;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-color: #E06C75;
    background-attachment: fixed;
    background-position: center;
    border-bottom: 5px solid #282C34;
    box-shadow: 0 0 20px #e06c764f;
}

.credits .content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.credits .content div {
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credits .content div p {
    color: #D7DAE0;
}

.credits .content div > a {
    position: relative;
    top: 3px;
    text-decoration: none;
    filter: brightness(6);
    margin-right: 10px;
}
.credits .content div > a:hover{
    filter: brightness(2);
    filter: inherit;
}
.credits .content .tooltip{
    border: none;
    color: #1D1F23;
}
.credits .div-line {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;    
    border-top: 1px solid #d1626b;
    border-bottom: 1px solid #e7757e;
}
.credits .description {
    font-size: 0.8em;
    opacity: 0.8;
    color: #fdc4c9;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #58AEFF;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.5s;
    font-size: 0.8em;
    text-decoration: none;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #58AEFF transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.text-info .tooltiptext {
    visibility: hidden;
    width: 80px;
    margin-left: -40px;
    color: #9ea9c0;
    background-color: #282C34;
}
.text-info .tooltiptext::after{
    margin-top: -1px;
    border-color: #282C34 transparent transparent transparent;
}


/* Video Popup */
.mediabox-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 999;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: mediabox;
    animation-name: mediabox;
}

@-webkit-keyframes mediabox {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mediabox {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.mediabox-content {
    max-width: 860px;
    display: block;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.mediabox-content iframe {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
    height: 480px !important;
    border: none !important;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.mediabox-hide {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: mediaboxhide;
    animation-name: mediaboxhide;
}

@-webkit-keyframes mediaboxhide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes mediaboxhide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.mediabox-close {
    position: absolute;
    top: 0;
    cursor: pointer;
    bottom: 528px;
    right: 0px;
    margin: auto 0;
    width: 24px;
    height: 24px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAMvSURBVHja7Js9aBRBFMd/d1lPY6FiJVjY+Fkoxl7wA1Q0prQRS6tgoZV2MWIRRVHUUq3U+JnESrS2sBXBzipREWMlATXwt8gFznC5nd15M7Nn8uC45nZnfr/dY96+N1uTxFKOOks8lgUU/H2t4tJqIQUcAiaBGeBymcECRgO4B/wBPgJ9zkdKcvkclfRL/8ZtSTXH40N+GpLGF8zth6Q9Lse7DHCsDXxVJLSDLyQhb4B+Sb/VOVJJ6ATfKqGvrIDjDvCpJLjAz8d0JwmLDTBQAD62hIakiYJzm5a021VAfwn4WBLKwLdK2JUnIJP0XX4RSoIP/Hy8W3jeepv1dL3nmjwI3DLOExrAU2DA8zwb8xKhGeCuwYQtJTSAZwbwAHdcEqFM0mPZhO/foSHppdFcrraby2IDV0FCcPi8PCClhCjwLplgCgkrDeGv5I3pcjViSogK7yogloTo8EUEhJaQBL6oAGsJ9yVtkrRD0qsU8JKolagKZ8AD4ETFymFXgPOAQpXE5mMWOAk86XZ4n6pwlSSUhvcti1dBghe8RV8gpYQRX3irxkgKCSPABV94y85QTAlm8NatsRgSTOGBUnmAS57w3KiA0Ro3gHOW8KEEAOwE3hvfXWubFauu6A6vCND07OmW9viq5vpsGT3AtRAN2XoA+BfAwQBiTweoNpMZw48BRwKuAoPN7zNVWwZjwAfpO9S7DN5cQmYAPw4cTvAsYPJ3qHcpvNmdUO9ieBMJZQT0AhMVgfeWUC8BP87cjjHfuA6sATY0c4c0EgpUUHslvTaq3l5aUL1N1oarAnxSCVWBTyYhJvyw41XJJI3GkpAH/yYyfHQJi01gdUL4qBKqCh9NQrtBx4wGvGi0XS6T9MhoTkN5AtZVDN5awlTePsGfwDfPjGwYGDKu3s4Cp4BRz/N8cskED0iaqciVt7wTvkra5roKlJEQGt5HwhdJ24vmAUUkDEV+VyCT9NBxbp/bXXnXTNBFQmz4IhI6wrs+C+zvICEVvIuEKUlbrZ4G97WRkBq+k4RJSVusd4ntlfSheVudrQh8q4SbmntH6K2kzSF3if1Xsfzq7LKAJR5/BwCdAQBJn4egPgAAAABJRU5ErkJggg==') no-repeat;
    background-size: 24px 24px;
    -webkit-background-size: 24px 24px;
    -moz-background-size: 24px 24px;
    -o-background-size: 24px 24px;
}

.mediabox-close:hover {
    opacity: 0.5;
}

@media all and (max-width: 768px) and (min-width: 10px) {
    .mediabox-content {
        max-width: 90%;
    }
}

@media all and (max-width: 600px) and (min-width: 10px) {
    .mediabox-content iframe {
        height: 320px !important;
    }

    .mediabox-close {
        bottom: 362px;
    }
}

@media all and (max-width: 480px) and (min-width: 10px) {
    .mediabox-content iframe {
        height: 220px !important;
    }

    .mediabox-close {
        bottom: 262px;
    }
}

/* Resolution Adjustements */
@media (min-width: 800px) {
    .navbar h2 {
        font-size: 2.5vw;
    }
}

@media (min-width: 1000px) {
    .navbar h2 {
        font-size: 2vw;
    }
}
@media (min-width: 1400px) {
    .about .about-box .about-flex-box {
        flex-direction: row;
        padding: 0;

    }
    .about .about-box .about-flex-box img {
        margin-left: 20px;
    }
    .about .about-box .about-flex-box .text-box {
        top: 0;
        margin: 0;
        margin-left: 20px;
        min-height: 200px;
        align-items: center;
        align-items: center;
    }
    .about .about-box .about-flex-box .text-box h3 {
        padding-top: 30px;
    }
    .about .about-box .about-flex-box .text-box p {
        margin-top: 10px;
    }
}
@media (min-width: 800px) {
    .about .about-box .about-flex-box .text-box {
        min-height: 200px;
    }
}

@media (min-width: 1800px) {
    .portfolio-item {
        flex-basis: 15%;
        max-width: 15%;
        background-color: aqua;
    }
    .navbar h2 {
        font-size: 1.5vw;
    }
}
@media (min-width: 2100px) {
    .navbar h2 {
        font-size: 1.1vw;
    }
}
@media (max-width: 1000px) {
    .portfolio-item {
        flex-basis: 20%;
        max-width: 20%;
        background-color: aqua;
    }
    .center-info h1 {
        margin-top: 10px;
        font-size: 3vw;
    }
    .center-info p {
        font-size: 1.6vw;
    }
    .navbar .nav-list a {
        font-size: 0.8em;
    }
}
@media (max-width: 800px){
    .about .about-box {
        flex-direction: column;
        padding: 0;

    }
    .about .about-box .about-flex-box {
        flex-basis: 90%;
        max-width: 90%;
    }
}
@media (max-width: 600px){
    .portfolio-item {
        flex-basis: 30%;
        max-width: 30%;
        background-color: aquamarine;
    }
    .contact iframe {
        margin: 30px auto;
        height: 460px;
        width: 80vw;
    }
    .center-info .image-home {
        width: 26%;
        height: 26%;
    }
    .center-info .image-home img {
        width: 100%;
        height: 100%;
    }
    .center-info .image-home:hover img {
        width: 100%;
        height: 100%;
        border-width: 4px !important;
    }
    .center-info h1 {
        margin-top: 10px;
        font-size: 1.2em;
    }
    .center-info a {
        margin-top: 10px;
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .center-info p {
        visibility: collapse;
        margin: 0;
        padding: 0;
        height: 0;
        font-size: 0.6vw;
    }
    .nav-portfolio li a {
        font-size: 0.5em;
    }
    .credits .content div p {
        font-size: 0.7em;
    }
    .about .demo-reel-box {
        display: flex;
        flex-direction: column;
    }
    .about .demo-reel-box .text-demo {
        margin: auto;
        margin-bottom: 5px;
        text-align: center;
    }
    .about .demo-reel-box .btn-demo {
        margin: auto;
        text-align: center;
        min-height: 50px;
    }
    .about .services {
        flex-direction: column;
    }
    .about .services h3 {
        margin: auto;
    }
    .about .services .text {
        display: flex;
        align-items: center;
    }
}
@media (max-width: 400px){
    .portfolio-item {
        flex-basis: 40%;
        max-width: 40%;
        background-color: aquamarine;
    }
    .center-info p {
        visibility: collapse;
        padding: 0;
        margin: 0;
    }
    .center-info h1 {
        visibility: collapse;
        margin-top: 0;
        padding: 0;
    }
    .center-info a {
        margin-top: 0;
        padding-top: 3px;
        padding-bottom: 3px;
        font-size: 0.7em;
    }
    .center-info .image-home {
        border: 4px solid #58AEFF;
        width: 24%;
        height: 24%;
    }
    .nav-portfolio li a {
        font-size: 0.4em;
        padding-left: 6px;
        padding-right: 6px;
    }
    .about .demo-reel-box .btn-demo {
        font-size: 0.8em;
    }
}
@media (max-width: 380px){
    .portfolio-item {
        flex-basis: 80%;
        max-width: 80%;
        background-color: aquamarine;
    }
    .navbar h2 {
        visibility: collapse;
    }
}

@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}