@font-face {
  font-family: 'mediasans';
src: url('../61dda8782d6530778e4343c5_mediasanssemicondensed-bold.woff2') format('woff2'), /* Super Modern Browsers */
     url('../61dda8782d6530778e4343c5_mediasanssemicondensed-bold.woff') format('woff'), /* Pretty Modern Browsers */
}
@font-face {
  font-family: 'sfpro-light';
src: url('../61dda8ac2d6530d8d9434405_SFProDisplay-Light.woff2') format('woff2'), /* Super Modern Browsers */
     url('../61dda8ac2d6530d8d9434405_SFProDisplay-Light.woff') format('woff'), /* Pretty Modern Browsers */
}
@font-face {
  font-family: 'sfpro-light-ita';
src: url('../SFPRODISPLAYLIGHTITALIC.woff2') format('woff2'), /* Super Modern Browsers */
     url('../SFPRODISPLAYLIGHTITALIC.woff') format('woff'), /* Pretty Modern Browsers */
}
@font-face {
  font-family: 'sfpro-med';
src: url('../61dda8ad0965b81fb8c985ba_SFProDisplay-Medium.woff2') format('woff2'), /* Super Modern Browsers */
     url('../61dda8ad0965b81fb8c985ba_SFProDisplay-Medium.woff') format('woff'), /* Pretty Modern Browsers */
}

*{
    margin: 0;
    padding: 0;
    font-family: 'sfpro-light', sans-serif;
    box-sizing: border-box;
    font-weight: 100;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #fff;
    color: #333;
}
h1{
    font-family: 'mediasans',sans-serif;
    letter-spacing: 0.1rem;
}
h3{
    font-family: 'mediasans',sans-serif;
    letter-spacing: 0.1rem;
}
p .highlight{
    font-weight: 500;
    color: #e5044f;
}
#header{
    width: 100%;
    height: 0;
    /* background-color: #fff;
    background-image: url(../images/home-bg-nl.jpg);
    background-size: contain;
    background-repeat: no-repeat; */
    padding-top: 56%;
    text-align: center;
}
#bgvid { 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: -100;
    background: url(../images/home-bg-nl.jpg) no-repeat;
    background-size: contain;
}
.container{
    padding: 10px 12%;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255,255,255,0.95);
    width: 100%;
    padding: 0 70px;
    z-index: 1000000;
}

.logo{
    position: relative;
    width: 180px;
    margin-left: 7%;
}

nav ul{
    position: relative;
    align-items: center;
    padding: 0 6%;
}
nav ul li{
    position: relative;
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    position: relative;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #e5044f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.choose-lang{
    font-size: 14px;
}
.header-text{
    margin-top: 25%;
}
.header-text p{
    max-width: 500px;
    font-size: 16px;
    line-height: 24px;
}
.header-text h3{
    margin-top: 19%;
    font-size: 28px;
}
.header-text h1 span{
    font-weight: 600;
}
.centerimg{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 57vh;
    align-self: center;
    justify-self: center;
}
/* -----------about--------------- */
#about{
    padding: 80px 0;
    color: #333;
    background-color: #fff;
}
#about p{
    text-align: justify;
}
.row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis: 25%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 20px;
}
.about-col-2{
    flex-basis: 70%;
}

.sub-title{
    font-size: 30px;
    font-weight: 500;
}

#about .sub-title{
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    color: #333;
}
#about .sub-title::before{
    content: '';
    position: absolute;
    width: 65%;
    height: 3px;
    top: 125%;
    left: 0;
    background-color: #e5044f;
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-family: 'sfpro-med';
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #e5044f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after{
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    font-family: 'sfpro-med';
    color: #e5044f;
    font-size: 13px;
    display: block;
    padding: 0;
    margin: 5px 0 0 10px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}
.row .skill-col{
    float: left;
    width: 45%;
    margin-right: 5%;
}
.skill-subject{
    font-size: 0.8em;
    padding-bottom: 15px;
    text-transform: uppercase;
}
.progress-bar{
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 15px;
    margin-bottom: 20px;
}
.progress-line{
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #e5044f;
    border-radius: 15px;
    top: -1px;
}
.progress-line::after{
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    top: 50%;
    left: 100%;
    transform: translate(-50%,-50%);
    background-color: #e5044f;
}


/* -------portfolio----------- */
#portfolio{
    padding: 50px 30px;
    background-color: #fff;
    /* margin-bottom: 100px; remove when 'Load More' button is visible */
}
#portfolio p{
    color: #333;
    text-align: justify;
}
#portfolio .sub-title{
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}
#portfolio .sub-title::before{
    content: '';
    position: absolute;
    width: 65%;
    height: 3px;
    top: 125%;
    left: 0;
    background-color: #e5044f;
}
.project-details{
    background: #fff;
}
.project-details p{
    color: #333;
    font-size: 0.9em;
    text-align: justify;
}
.project-details .sub-title{
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 55px;
}
.project-details .sub-title::before{
    content: '';
    position: absolute;
    width: 65%;
    height: 3px;
    top: 125%;
    left: 0;
    background-color: #e5044f;
}
.project-details h3{
    color: #333;
    margin-bottom: 15px;
}
#portfolio p.commentarski{
    color: #e5044f;
    font-style: italic;
    font-size: 0.8em;
}
#portfolio .work p{
    text-align: center;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 12px;
    margin-top: 20px;
}
.work{
    position: relative;
    overflow: hidden;
    display: none;
    border-radius: 7px;
    box-shadow: 2px 2px 4px #bbb;
}
.work:nth-child(1),
.work:nth-child(2),
.work:nth-child(3),
.work:nth-child(4),
.work:nth-child(5),
.work:nth-child(6),
.work:nth-child(7),
.work:nth-child(8){
    display: inline-block;
}
.work img{
    width: 100%;
    display: block;
    border-radius: 7px;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(51,51,51,0.8), #333);
    position: absolute;
    border-radius: 5px;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}
#portfolio .layer p{
    color: #fff;
}
.layer h3{
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.layer a{
    margin-top: 20px;
    text-decoration: none;
    font-size: 30px;
    line-height: 40px;
    border: 2px solid #e5044f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
}
.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
}
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #333;
    /*box-shadow: 0 0 10px rgba(255, 255, 255, 1);*/
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #e5044f;
    background: #fff;
    transition: background 0.5s;
}
.btn:hover{
    background: #e5044f;
    color: #fff;
    border: 1px solid #e5044f;
    cursor: pointer;
}

/* ---------portfolio detail pages---------- */
.project-details{
    padding: 40px 30px;
}
.project-details-left{
    flex-basis: 50%;
    padding-bottom: 5%;
}
.project-details-right{
    flex-basis: 50%;
    padding-left: 5%;
}
.project-image-div{
    width: 100%;
    background-color: #061524;
}
.project-image-div img{
    width: 100%;
}
.project-image-div img.p-c-bar{
    margin-bottom: -10px;
}
.heroimage{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    align-self: center;
    justify-self: center;
}

#itson-packaging-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/itson-packaging/itson-packaging-img002.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.41%; /* (img-height in px / img-width in px * container-width in %) */
}
#itson-packaging-section-1{
    padding: 0;
    height: 750px;
    background-image: url(../images/itson-packaging/itson-packaging-img004.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#itson-packaging-section-2{
    padding: 0;
    height: 750px;
    background-image: url(../images/itson-packaging/itson-packaging-img003.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#itson-packaging-section-3{
    padding: 0;
    height: 750px;
    background-image: url(../images/itson-packaging/itson-packaging-img005.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.section-parent{
    padding: 0;
    height: 750px;
    width: 100%;
}

#itson-packaging-section-4{
    padding: 0;
    height: 750px;
    background-image: url(../images/itson-packaging/itson-packaging-img006.jpg);
    background-size: cover;
    background-position: center;
}

#itsonvideoDiv {
    width: 100%;
    max-width: 2880px;
    margin: auto;
    display: block;
    position: relative;
}

#itsonvideo{
    width: 100%;
    height: auto;
}

#power-classes-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/power-classes/power-classes-img001.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.41%; /* (img-height in px / img-width in px * container-width in %) */
}
#power-classes-video {
    width: 100%;
}
#power-classes-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/power-classes/power-classes-img003.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#power-classes-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/power-classes/power-classes-img002.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#power-classes-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/power-classes/power-classes-img005.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#power-classes-section-4{
    padding: 0;
    height: 0;
    background-image: url(../images/power-classes/power-classes-img004.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#power-classes-section-4b{
    padding: 0;
    height: 0;
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#power-classes-section-4{
    padding: 0;
    height: 0;
    background-image: url(../images/power-classes/power-classes-img006.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}

#itson-catalog-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/itson-catalogue/itson_catalog_img1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.41%; /* (img-height in px / img-width in px * container-width in %) */
}

#pana-redesign-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/Panasonic-redesign/panasonic-redesign-img001.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.41%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-redesign-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/Panasonic-redesign/panasonic-redesign-img003.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 47%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-redesign-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/Panasonic-redesign/panasonic-redesign-img002.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 47%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-redesign-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/Panasonic-redesign/panasonic-redesign-img004.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 47%; /* (img-height in px / img-width in px * container-width in %) */
    margin-bottom: 20px;
}
#pana-redesign-section-4{
    padding: 0;
    height: 0;
    background-image: url(../images/Panasonic-redesign/panasonic-redesign-img009.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}

#pana-partnerships-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/pana-partnerships/pana-partnerships-img001.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.41%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-partnerships-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/pana-partnerships/pana-partnerships-img002.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-partnerships-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/pana-partnerships/pana-partnerships-img003.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-partnerships-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/pana-partnerships/pana-partnerships-img004.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-partnerships-section-4{
    padding: 0;
    height: 0;
    background-image: url(../images/pana-partnerships/pana-partnerships-img005.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-partnerships-section-5{
    padding: 0;
    height: 0;
    background-image: url(../images/pana-partnerships/pana-partnerships-img006.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#pana-partnerships-section-6{
    padding: 0;
    height: 0;
    background-image: url(../images/pana-partnerships/pana-partnerships-img007.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}

#parkrunbornem-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/parkrunbornem/parkrunbornem-img001.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.41%; /* (img-height in px / img-width in px * container-width in %) */
}
#parkrunbornem-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/parkrunbornem/parkrunbornem-img002.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#parkrunbornem-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/parkrunbornem/parkrunbornem-img003.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#parkrunbornem-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/parkrunbornem/parkrunbornem-img004.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}

#blaupunkt-packaging-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img001.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.41%; /* (img-height in px / img-width in px * container-width in %) */
}
#blaupunkt-packaging-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img003.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 18.4%; /* (img-height in px / img-width in px * container-width in %) */
}
#blaupunkt-packaging-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img004.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#blaupunkt-packaging-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img005-nl.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%;
}
#blaupunkt-packaging-section-4{
    padding: 0;
    height: 0;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img006.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#blaupunkt-packaging-section-5{
    padding: 0;
    height: 0;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img007.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#blaupunkt-packaging-section-6{
    padding: 0;
    height: 0;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img008.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#blaupunkt-packaging-section-7{
    padding: 0;
    height: 0;
    background-image: url(../images/blaupunkt-packaging/blaupunkt-packaging-img009.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}

#retrorunner-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/retrorunner/retrorunner-img001.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 44.37%; /* (img-height in px / img-width in px * container-width in %) */
}
#retrorunner-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/retrorunner/retrorunner-img003.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 51.48%; /* (img-height in px / img-width in px * container-width in %) */
}
#retrorunner-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/retrorunner/retrorunner-img004.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 17.14%; /* (img-height in px / img-width in px * container-width in %) */
}
#retrorunner-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/retrorunner/retrorunner-img005.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 40.95%; /* (img-height in px / img-width in px * container-width in %) */
}
#retrorunner-section-4{
    padding: 0;
    height: 0;
    background-image: url(../images/retrorunner/retrorunner-img006.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 41.08%; /* (img-height in px / img-width in px * container-width in %) */
}
#retrorunner-section-5{
    padding: 0;
    height: 0;
    background-image: url(../images/retrorunner/retrorunner-img007.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 34.56%; /* (img-height in px / img-width in px * container-width in %) */
}
#retrorunner-section-6{
    padding: 0;
    height: 0;
    background-image: url(../images/retrorunner/retrorunner-img008.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 49.32%; /* (img-height in px / img-width in px * container-width in %) */
}

#logo-animations-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/logofolio/logo-animaties-nl.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 22.5%; /* (img-height in px / img-width in px * container-width in %) */
}

#logofolio-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/logofolio/logofolio-img001-nl.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 22.5%; /* (img-height in px / img-width in px * container-width in %) */
}

#logo-works{
    background: #f6f6f6;
}
.logo-col{
    flex-basis: 25%;
}
.logo-video-col{
    flex-basis: 31%;
    margin: 1.15%;
    padding: 2%;
    border: 1px solid #d6d6d6;
}
.logo-video-col video{
    width: 100%;
    height: auto;
}
.logo-col img{
    width: 100%;
}

#eneloop-chargerpacks-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/eneloop-chargerpacks/eneloop-chargerpacks-img001.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 40%; /* (img-height in px / img-width in px * container-width in %) */
}
#eneloop-chargerpacks-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/eneloop-chargerpacks/eneloop-chargerpacks-img003.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 55%; /* (img-height in px / img-width in px * container-width in %) */
}
#eneloop-chargerpacks-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/eneloop-chargerpacks/eneloop-chargerpacks-img004.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 56%; /* (img-height in px / img-width in px * container-width in %) */
}
#eneloop-chargerpacks-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/eneloop-chargerpacks/eneloop-chargerpacks-img005.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 72.6%; /* (img-height in px / img-width in px * container-width in %) */
}

#poster-designs-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/poster-designs/poster-designs-img001.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 40%; /* (img-height in px / img-width in px * container-width in %) */
}
#poster-designs-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/poster-designs/poster-designs-img003.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 55%; /* (img-height in px / img-width in px * container-width in %) */
}

#triatlon-kb-header{
    width: 100%;
    height: 0;
    background-color: #061524;
    background-image: url(../images/triatlon-kb/triatlon-kb-img001.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 43.36%; /* (img-height in px / img-width in px * container-width in %) */
}

#triatlonkbvideoDiv {
    width: 100%;
    max-width: 2880px;
    margin: auto;
    display: block;
    position: relative;
}

#triatlonkbvideo{
    width: 100%;
    height: auto;
}

#triatlon-kb-section-1{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img002_nl.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 21.45%; /* (img-height in px / img-width in px * container-width in %) */
}
#triatlon-kb-section-2{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img003.gif);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 51.42%; /* (img-height in px / img-width in px * container-width in %) */
}
#triatlon-kb-section-3{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img004.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 73.57%; /* (img-height in px / img-width in px * container-width in %) */
}
#triatlon-kb-section-4{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img005.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 43.15%; /* (img-height in px / img-width in px * container-width in %) */
}
#triatlon-kb-section-5{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img006.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 135.34%; /* (img-height in px / img-width in px * container-width in %) */
}
#triatlon-kb-section-6{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img007.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 46.97%; /* (img-height in px / img-width in px * container-width in %) */
}
#triatlon-kb-section-7{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img008.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 82%; /* (img-height in px / img-width in px * container-width in %) */
}
#triatlon-kb-section-8{
    padding: 0;
    height: 0;
    background-image: url(../images/triatlon-kb/triatlon-kb-img009.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 47,98%; /* (img-height in px / img-width in px * container-width in %) */
}

/* ---------contact-------- */
#contact{
    padding: 120px 30px;
    background-color: #fff;
    margin-bottom: 115px;
    
}
#contact .sub-title{
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

#contact .sub-title::before{
    content: '';
    position: absolute;
    width: 65%;
    height: 3px;
    top: 125%;
    left: 0;
    background-color: #e5044f;
}
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
    padding: 35px 0;
    background-image: url(../images/contact-section-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.contact-left p{
    margin-top: 15px;
    line-height: 40px;
    color: #333;
}
.contact-left p a{
    text-decoration: none;
    color: #333;
}
.contact-left p a:hover{
    color: #e5044f;
}
.contact-left p i{
    color: #e5044f;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #333;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #e5044f;
    transform: translateY(-5px);
}
.btn.btn2{
    display: inline-block;
    background: #fff;
    color: #e5044f;
}
.btn:hover.btn2:hover{
    background: #e5044f;
    color: #fff;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 20%;
    background: #fff;
    font-size: 12px;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: -50px;;
    color: #333;
    border-top: 1px solid #e5044f;
}
.copyright i{
    color: #e5044f;
}
.copyright a{
    color: #e5044f;
    text-decoration: none;
}
/* -----------------css for small screens--------- */
nav .fas{
    display: none;
}

@media only screen and (max-width: 985px){
    #header{
        background-color: #fff;
        background-image: url(../images/home-bg-nl.jpg);
        background-size: contain;
        background-repeat: no-repeat;
    }
    #bgvid{
        display: none;
    }
    
@media only screen and (max-width: 800px){
    #header{
        margin-top: 30px;
    }
    nav .fas{
        display: block;
        font-size: 25px;
        color: #333;
    }
    nav ul{
        background: rgba(51,51,51,0.9);
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        padding-top: 50px;
        z-index: 1000;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul li a{
        color: #fff;
    }
    nav ul .fas{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        color: #fff;
    }
    .logo{
        margin-left: 0;
    }
    .sub-title{
        font-size: 40px;
    }
    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    .about-col-1{
        margin-bottom: 30px;
    }
    .about-col-1 img{
        width: 60%;
    }
    .about-col-2{
        font-size: 14px;
        padding-right: 20px;
    }
    .logo-col{
        flex-basis: 100%;
    }
    .logo-video-col{
        flex-basis: 100%;
        margin-bottom; 10px;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }
    .project-details-left, .project-details-right{
        flex-basis: 100%;
        padding: 5% 0;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .contact-right{
        padding: 0;
    }
    #mailman{
        display: none;
    }
    .copyright{
        font-size: 14px;
    }
}

@media only screen and (min-width: 800px){
    nav ul{
        display: flex;
    }
}

@media only screen and (max-width: 700px){
    #header{
        width: 100%;
        height: 100vh;
        background-color: #fff;
        background-image: url(../images/phone-home-bg-nl.jpg);
        background-position: center;
        margin-top: 0;
    }
    .about-col-1{
        display: none;
    }
}
