html {
    scroll-behavior: smooth;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Lato", 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #333;
    background-color: white;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track #FBE604*/
  ::-webkit-scrollbar-track {
    background: #ccc;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #656565;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #FBE604;
  }

#container {
    align-content: center;
    text-align:center;
    display: table;
    /*transform: scale(0.92);*/
}
/*
h1 {
    font-family: "Aileron Ultralight";
}*/

.header {
    padding: 40px; /* some padding */
    text-align: center; /* center the text */
    background: #ccc; /* orange background */
    color: #fcac17; /* white text color */
    display: table-cell;
  }
  
  /* Increase the font size of the <h1> element */
  .header h1 {
    font-size: 10px;
    line-height:10px;
  }

  .header p {
     color: #333;
  }

.block {
    background-color: white;
    /*border: 1px solid green;*/
    color: #333;
    text-align: center;
    top: 0vh;
    left: 0vh;
    width: 100%;
    height: auto;
    min-height: 60vh;
    list-style-type: none;
    box-sizing: border-box;
    overflow:hidden; 
    position: relative;
    margin: 0;
    padding: 0;
    margin-bottom: 8%;
    padding-left: 4%;
    padding-right: 4%;
}


#company {
    margin-top: 0vh;
    padding-top: 10vh;
}

#company .description-text{
    left: -40vw;
    opacity: 0;
    transition: 1s;
}

#company div {
    float:left;
}

#product-overview div {
    float:left;
}

.block .description {
    /*border: 1px solid blue;*/
    width: 40%;
    height: 100%;
    list-style-type: none;
    box-sizing: border-box;
    align-content: center;
    padding: 4% 5%;
    position: relative;
    overflow: hidden;
    transition: 1s ease-in-out;
}

.block .content {
    /*border: 1px solid brown;*/
    width: 60%;
    height: 100%;
    list-style: none;
    box-sizing: border-box;
    padding: 0vh 2.5% 5vh;
    overflow: hidden !important;
    transition: 1s ease-in-out;
}

@media (max-width:1279px) { 
    .block {
        height: 150vh;
    }

    .block .description {
        width: 100%;
        height: 35%;
        overflow: visible;
    }
    
    .block .content {
        width: 100%;
        height: 50%;
    }

    #company {
        margin-top: 0vh;
        padding-top: 0vh;
    }

    #company .slider {
        width: 90vw !important;
        height: 50vh !important;
    }

    #company .slider .slide {
        min-height: 30vh;
        height: 30vh !important;
    }
} 

#company .description{
    margin-top: -5vw;
}

#portfolio {
    padding-top: 1vw;
    margin-top: 3vw;
}

#portfolio .description {
    float: right;
    opacity: 0;
    transition: 1s ease-in-out;
}

#portfolio .content {
    float: right;
    opacity: 0;
    transition: 1s ease-in-out;
}

#company .slider {
    right: -60vw;
}

#product-overview .content {
    padding: 0;
    width: 54%;
    height: 40vw;
}

#product-overview .block .content {
    transition: 2s ease-in-out;
    opacity: 0;
}

.logo-full {
    /*border: 2px solid red;*/
    position: relative;
    background: url(../images/logos/logo_full3.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 12vw;
    z-index: 1;
    left: -40vw;
    transition: 1s;
    opacity: 0;
}



@media (max-width:1279px) { 
    /*.logo-full {
        width: 100%;
        min-width: 100%;
        height: 30vh;
        background-size: auto 100%;
    }*/

    #company .button {
        position: absolute;
        top: 250% !important;
        left: 0;
        z-index: 2;
        margin-left: 30%;
        margin-right: 30%;
        width: 40%;
    }
}



.description .description-text {
    margin-top: 2vh;
    margin-bottom: 2vh;
    /*border: 1px solid red;*/
    width: 100%;
    line-height: 5.5vh;
    position: relative;
    z-index: 1;
    color: #333;
    text-align: justify;
    font-weight: 400;
    font-size: 2.8vh;
}

.description #radio-panel-container {
    margin-top: 6vh;
    margin-bottom: 50vh;
    /*border: 1px solid red;*/
    position: relative;
    width: 12vw;
    margin-right: 21vw;
    cursor: pointer;
    float: left;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 2s ease-in-out;
    right: -40vw;
}

.description .radio-button-container {
    padding-left: 1vw;
    padding-right: 1vw;
    box-sizing: border-box;
    width: 20%;
    border: 1px solid white;
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
}

.radio-button-container input {
    position: absolute;
    cursor: pointer;
    opacity: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 3vh;
    width: 3vh;
    background-color: #ccc;
    border-radius: 50%;
  }

.radio-button-container:hover input ~ .checkmark {
    background-color: #FBE604;
  }
  
  .radio-button-container input:checked ~ .checkmark {
    background-color: #656565;
  }
  

  #radio-right-button {
    box-sizing: border-box;
    width: 20%;
    width: 2vw;
    height: 4vh;   
    z-index: 3;
    transition: 0.5s;
    background-size: cover;
    background-position: center;
    background: url(../images/buttons/arrow_right.png);
    background-size: cover;
    background-position: center;
    overflow: auto;
  }

  #radio-right-button:hover {
      transform: scale(1.2);
  }

  .block #project-bg {
    position: absolute;
    width: 0;
    height: 40vh;
    top: 24vh;
    left: 49vw;
    background-color: #FBE604;
    z-index: 2;
    transition: 2s ease-out;
    opacity: 0;
}

#portfolio-panel {
    float:left;
}


#portfolio-panel #portfolio-title {
    position: absolute;
    top: 30vh;
    z-index: 4;
    left: 0vw;
    /*border: 1px solid red;*/
    color:white;
    font-size: 4vh;
    font-weight: 700;
    text-align: left;
    width: auto;
    background-color: #FBE604;
    opacity: 0;
    transition: 2s ease-out;
}

#portfolio-panel #portfolio-line {
    position: absolute;
    z-index: 3;
    top: 31vh;
    border: 1px solid white;
    background-color: white;
    width: 23vw;
    position: absolute;
    left: 7vw;
    transition: 2s ease-out;
    opacity: 0;
}


#portfolio-panel #portfolio-name {
    position: absolute;
    top: 34vh;
    margin-top: 1vh;
    left: 0vw;
    /*border: 1px solid red;*/
    font-size: 6vh;
    font-weight: 700;
    text-align: left;
    height: 30vh;
    width: 30vw;
    transition: 2s ease-out;
    opacity: 0;
    z-index: 3;
}

#project-preview {
    top: 0px;
    left: 0px;
    padding:0px;
    width: 0%;
    height: 70vh;
    background-color: #ccc;
    z-index: 1;
    position: relative;
    transition: 1s ease-in-out;
    float: right;
}

#project-preview:hover {
    cursor: zoom-in;
    transform: scale(1.1);
}

#portfolio .content {
    float:left;
}

#project-preview-overlay {
    top: 0px;
    left: 0px;
    padding:0px;
    width: 100%;
    height: 100%;
    background: #333;
    z-index: 2;
    position: absolute;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

#products-menu {
    position: relative;
    margin-left: 2vw;
    margin-right: 2vw;
}

#products-navbar {
    height: auto;
    opacity: 0;
    margin-bottom: 0 !important;
    transition: 2s ease-in-out;
    min-height: 0 !important;
}

#products-navbar h1 {
    position: relative;
    /*border: 1px solid black;*/
    font-size: 5.52vh;
    font-weight: 700;
    z-index: 5;
    opacity: 0;
    transition: 1s ease-in-out;
    margin-bottom: 0.5vw;
    margin-top: 1vw;
}

#products-navbar .products-list {
    position: relative;
    background-color: #fff;
    /*border: 2px solid black;*/
    color: #333;
    text-align: center;
    top: 0px;
    left: 0px;
    list-style-type: none;
    box-sizing: border-box;
}

#products-navbar .products-list .product {
    position: relative;
    /*border: 2px solid brown;*/
    width: auto;
    padding-top: 1.84vw;
    padding-bottom: 3.68vh;
    padding-left: 0.92vw;
    width: 12.5%;
    height: 6.44vw;
    line-height: 1.84vw;
    list-style: none;
    box-sizing: border-box;
    margin: 0 auto;
    float: left;
    font-size: 1.242vw;
    font-weight: 600;
    text-align: left;
    background-color: rgba(0, 0, 0, 0);
    z-index: 4;
}

#products-menu #product-marker {
    position: absolute;
    transition: 1s ease-out;
    left: -20vw;
    top: -0.46vw;
    padding: 0vw;
}

#products-menu #product-marker p {
    color: white;
    position: absolute;
    z-index: 2;  
    top:-0.644vw;
    left: 0.92vw;
    font-size: 1.196vw;
    font-weight: 500;
    background-color: #FBE604;
}

#products-menu #product-marker .marker-bg {
    position: absolute;
    width: 11.04vw;
    height: 6.44vw;
    z-index: 1;
    background-color: #FBE604;
}

#product-marker .marker-bg .marker-line{
    border: 0.1vh solid white;
    background-color: white;
    width: 7.36vw;
    position: absolute;
    top: 0.644vw;
    right: 0;
}

#product-marker:hover {
    cursor: pointer;    
}

.product:hover {
    cursor: pointer;
}

/*.product:hover #product-marker{
    left: +100vw;
}*/

#products-navbar .description {
    width: 100%;   
    padding: 0;
}

@media (max-width:1279px) { 
    #products-navbar h1 {
        position: relative;
        /*border: 1px solid black;*/
        font-size: 5vh;
    }

    #products-navbar .products-list .product {
        width: 50%;
        font-size: 2vw;
        height: 6.44vw;
        line-height: 1.84vw;
    }
    

    
}

#product-overview .description {
    padding-left: 3.68vw !important;
    padding-right: 2.76vw !important;
    padding-top: 1vw !important;
}

#product-description-panel {
    /*border: 1px solid brown;*/
    position: relative;
    width: 100%;
    height: 12vw;
}

#product-description-bg {
    position: relative;
    width: 1;
    z-index: 1;
    height: 100%;
    background-color: #FBE604;
    transition: 1s ease-out;
}

#product-title {
    position: absolute;
    top: 1.5vw;
    z-index: 3;
    left: -1.84vw;
    /*border: 1px solid red;*/
    color:white;
    background-color: #FBE604;
    font-size: 1.38vw;
    font-weight: 700;
    text-align: left;
    width: auto;
    opacity: 0;
    transition: 1s ease-out;
}

#product-line {
    position: absolute;
    z-index: 2;
    top: 1.656vw;
    border: 1px solid white;
    background-color: white;
    width: 26.22vw;
    position: absolute;
    right: 0;
    transition: 1s ease-out;
    opacity: 0;
    left: -1.84vw;
}


#product-name {
    position: absolute;
    top: 3.22vw;
    left: -1.84vw;
    /*border: 1px solid red;*/
    font-size: 2.3vw;
    font-weight: 700;
    text-align: left;
    height: auto;
    width: 95%;
    transition: 1s ease-out;
    opacity: 0;
    z-index: 2;
}

#product-description {
    list-style-type: disc;
    position: absolute;
    top: 12vw;
    width: 95%;
    height: auto;
    z-index: 2;
    /*border: 1px solid black;*/
    transition: 1s ease-out;
    opacity: 0;
    left: 0vw;
    margin-bottom: 0; 
    margin-top: 0.5vw;
}

#button-details {
    margin-top: 9vw;
}

#product-description li {
    position: relative;
    text-align: left;
    font-size: 1.196vw;
    font-weight: 400;
    line-height: 1.564vw;
    left: -0.92vw;
    width: 100%;
    height: auto;
    /*border: 1px solid orange;*/
}

li + li {
    margin-top: 0.5vw;
}

#product-overview .button {
    margin-left: 2vw;
}

#product-overview .description {
    width: 46%;
}

@media (max-width:1279px) { 
    #product-overview .description {
        width: 100%;
    }

    #product-overview .content {
        width: 100%;
    }


}

 .footer {
    background: #656565;
    height: 10vh;
 }











  




  