/* Stylesheet Loris Visconti */

.PUC-image {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: rgb(255,255,255,0.5);
    width: 40vw;
}

/* #region clear main settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    box-sizing: inset 0 0 5px black;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px black; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: red; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b30000; 
}

/* #endregion */


/* #region Navbar */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 8vh;
    background-color: #293133;
    font-family: "Poppins", sans-serif;
}

.logo h4 {
    color:#ff6666;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

.nav-links {
    display: flex;
    width: 65%;
}

.nav-links form {
    list-style: none;
}

.nav-links input {
	color:#ff6666;
	background-color: transparent;
	border: none;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
	cursor: pointer;
	width: 140px;
	height: 8vh;
	transition: 0.3s;
}

.nav-links input:hover {
	background-color: #ff6666;
	color: #293133;
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ff6666;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1400px) {
    .nav-links {
        width: 78%;
    }
	.nav-links input {
		width: 120px;
	}
}

@media screen and (max-width: 1070px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 8vh;
        background-color: #293133;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    
    .nav-links form {
        opacity: 0;
    }

	.nav-links input {
		width: 50vw;
		height: 13.1vh;
		font-size: 16px;
	}
    
    .burger {
        display: block;
        cursor: pointer;
    }
}

.nav-active {
        transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
/* #endregion */


/* #region Home */

.bg-image {
    background-image: url("images/bg_drone.JPG");
    background-color: transparent;
    background-repeat: no-repeat;
    top: 8vh;
    height: 92vh;
    background-position: center;
    background-size: cover;
    position: relative;
}

.home_container {
    position: relative;
    float: left;
    margin: auto;
    top: 8vh;
    height: 92vh;
	width: 100%;
	z-index: -100;
    text-align: center;
}
/* #endregion */


/* #region Schriften und bilder */

h1 {
	position: relative;
	text-align: center;
	font-family: "Poppins", sans-serif;
    font-size: 8vh;
    letter-spacing: 5px;
	color: #ff6666;
	width: 100%;
	z-index: 1;
}

h2 {
    position: relative;
	text-align: center;
	font-family: "Poppins", sans-serif;
    font-size: 7vh;
    letter-spacing: 5px;
	color: #ff6666;
	z-index: 1;
}

h3 {
    position: relative;
	text-align: center;
	font-family: "Poppins", sans-serif;
    font-size: 2vh;
    letter-spacing: 3px;
	color: #ff6666;
	width: 100%;
	z-index: 1;
}

h4 {
    position: relative;
	text-align: center;
	font-family: "Poppins", sans-serif;
    font-size: 4vh;
    letter-spacing: 3px;
	color: #ff6666;
	width: 100%;
	z-index: 1;
}

.center {
    margin: 0;
    position: relative;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hor_center{
    margin: 0;
    position: relative;
    text-align: center;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, -0%);
}

.ver_center{
    margin: 0;
    position: relative;
    text-align: center;
    top: 50%;
    /* left: 50%; */
    transform: translate(-0%, -50%);
}

p {
    font-family: "Poppins", sans-serif;
}

/* #endregion */


/* #region Profil */
.profil_container {
    position: relative;
    float: left;
    margin: auto;
    background-color: antiquewhite;
    top: 8vh;
	width: 100%;
    z-index: -99;
    align-items: center;
}

.profil_container h2 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: 60%;
    margin: 2vh 0 2vh 0;
    padding-bottom: 5px;
}

.grid_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;  
    justify-content: center;    
    width: 60%;
    margin-bottom: 2vh;
    /* border: solid 3px; */
}

.grids {
    text-align: left;
    padding: 20px;
    /* border: solid 3px; */
    font-family: "Poppins", sans-serif;
    border-bottom-style: solid;
    border-bottom-color: #ff6666;
    border-bottom-width: 1px;
}

.img_fit {
    position: relative;
    display: block;
    /* height: 300px; */
    width: 80%;
    max-height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

@media screen and (max-width: 1070px) {
    .grid_container {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .profil_container h2 {
        width: 90%;
    }
}

/* #endregion */


/* #region Erfahrung */
.erfahrung_container {
    position: relative;
    float: left;
    margin: auto;
    background-color: #fff2e6;
    top: 8vh;
	width: 100%;
    z-index: -99;
    align-items: center;
}

.erfahrung_container h2 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: 60%;
    margin: 2vh 0 2vh 0;
    padding-bottom: 5px;
}

.grid_cont_erfahrung {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;    
    width: 60%;
    /* margin-bottom: 500px; */
    /* border: solid 3px; */
}

.grids_erfahrung {
    text-align: left;
    padding: 15px;
    /* border: solid 3px; */
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
}

.erfahrung_container h4 {
    text-align: left;
    width: 60%;
    margin-bottom: 5px;
}

@media screen and (max-width: 1070px) {
    .grid_cont_erfahrung {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .erfahrung_container h2 {
        width: 90%;
    }

    .erfahrung_container h4 {
        width: 90%;
        text-align: center;
    }

    .hor_line {
        border-bottom: solid 1px #ff6666;
        width: 100%;
    }

    .grids_erfahrung {
        padding: 20px;
        margin-top: 0;
    }
}

/* #endregion */


/* #region Faehigkeiten */
.faehigkeiten_container {
    position: relative;
    float: left;
    margin: auto;
    background-color: antiquewhite;
    top: 8vh;
	width: 100%;
    z-index: -99;
    align-items: center;
}

.faehigkeiten_container h2 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: 60%;
    margin: 2vh 0 2vh 0;
    padding-bottom: 5px;
}

.grid_cont_faehigkeiten {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;    
    width: 60%;
    margin-bottom: 2vh;
    /* border: solid 3px; */
}

.grid_cont_faehigkeiten h4 {
    padding-bottom: 20px;
}

.grids_faehigkeiten {
    text-align: left;
    padding: 20px;
    /* border: solid 3px; */
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
}

.grids_faehigkeiten ul {
    list-style-type: none;
}

.grids_faehigkeiten ul li {
    padding: 8px;
}

.grids_faehigkeiten ul li:hover {
    background-color: #fff2e6;
    border-radius: 10px;
}

.grids_faehigkeiten ul li:hover .glyphicon{
    margin-left: 2px;
    color: #ff6666;
}

.glyphicon {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    
}

.right {
    position: relative;
    float: right;
    clear: both;
    right: 0px;
}

@media screen and (max-width: 1070px) {
    .grid_cont_faehigkeiten {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 500px) {
    .grid_cont_faehigkeiten {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .faehigkeiten_container h2 {
        width: 90%;
    }
}

/* #endregion */


/* #region Projekte */
.projekte_container {
    position: relative;
    float: left;
    margin: auto;
    background-color: #fff2e6;
    top: 8vh;
	width: 100%;
    z-index: -20;
    align-items: center;
}

.projekte_container h2 {
    width: 60%;
    margin: 2vh 0 2vh 0;
    padding-bottom: 5px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    z-index: -21;
}

.grid_cont_projekte {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 60%;
    margin-bottom: 2vh;
    /* border: solid 3px; */
    z-index: -21;
}

.grids_projekte {
    position: relative;
    text-align: left;
    padding: 20px;
    /* border: solid 3px; */
    font-family: "Poppins", sans-serif;
    z-index: -3;
}

.grids_projekte .img_box {
    position: relative;
    width: 100%;
    height: 100%;
}

.grids_projekte .img_box img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.grids_projekte:hover .img_box img {
    opacity: 1;
}

.grids_projekte .img_caption {
    position: absolute;
    object-fit: cover;
    top: 0;
    height: 0;
    width: 100%;
    background: #ff6666d8;
    overflow: hidden;
    text-align: left;
    opacity: 0;
    transition: 0.5s ease;
}

.grids_projekte:hover .img_caption {
    opacity: 1;
    transition: 1s;
    padding: 15px;
    height: 100%;
}

.grids_projekte .img_caption h5 {
    font-size: 22px;
    color: black;
    font-weight: 500;
}

.grids_projekte .img_caption h5 p {
    font-size: 20px;
    color: black;
    font-weight: 200;
    letter-spacing: 2px;
}

.videolink {
    position: relative;
    text-transform: uppercase;
    background: transparent;
    color: black;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    padding: 2px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
}

/* Video einbettung */
.show_video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    background: #ff666680;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;    
    opacity: 0;
    z-index: 100;
}

.show_video.active {
    visibility: visible;
    opacity: 1;
}

.show_video video {
    position: absolute;
    max-width: 60%;
    outline: none;
    z-index: 100;
}

.close_video {
    position: absolute;
    height: 0;
    left: 32%;
    cursor: pointer;
    color: brown;
    font-size: 30px;
    z-index: 101;
}

@media screen and (max-width: 1450px) {
    .grid_cont_projekte {
        grid-template-columns: 1fr 1fr;
        width: 80%;
    }

    .projekte_container h2 {
        width: 80%;
    }
}

@media screen and (max-width: 1070px) {
    .grid_cont_projekte {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .projekte_container h2 {
        width: 90%;
    }
}

@media screen and (max-width: 900px) {
    .grid_cont_projekte {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .projekte_container h2 {
        width: 90%;
    }

    .show_video video {
        max-width: 100%;
    }

    .close_video {
        height: 80%;
    }
}

/* #endregion */


/* #region Hobbys */
.hobby_container {
    position: relative;
    float: left;
    margin: auto;
    background-color: antiquewhite;
    top: 8vh;
	width: 100%;
    z-index: -99;
    align-items: center;
}

.hobby_container h2 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: 60%;
    margin: 2vh 0 2vh 0;
    padding-bottom: 5px;
}

.slideshow_container {    
    justify-content: center;    
    width: 60%;
    height: 40vw;
    margin-bottom: 2vh;    
    /* border: solid 3px; */
}

.slides {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.grid_cont_collage {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-template-rows: 50% 50%;   
    width: 100%;
    height: 100%;
    /* border: solid 3px; */
}

.grid_collage {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    /* border: solid 3px; */
}

.grid_collage img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.slides img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: auto;
    height: 100%;
    padding: 32% 16px 0 16px;
    color: #ff6666;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 0 100px 100px 0;
}

.next {
    right: 0;
    border-radius: 100px 0 0 100px;
}

.prev:hover, .next:hover {
    background-color: #293133cc;
}

.captiontext {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    color: #ff6666;
    background-color: #293133cc;
    text-align: center;
    font-family: "Poppins", sans-serif;
    opacity: 0;
    transition: 0.6s ease;
}

.slideshow_container:hover .captiontext {
    opacity: 1;    
}

.nummerntext {
    color: #ff6666;
    background-color: #293133cc;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    font-family: "Poppins", sans-serif;
    border-radius: 0 0 10px 0;
    z-index: 100;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px 20px 0;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;    
}

.active, .dot:hover {
    background-color: #ff6666;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;    
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
  
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@media screen and (max-width: 900px) {
    .slideshow_container {    
        justify-content: center;    
        width: 95%;
        height: 60vw;
        margin-bottom: 2vh;
        /* border: solid 3px; */
    }

    .hobby_container h2 {
        width: 90%;
    }
}

/* #endregion */


/* #region kontakt */
.kontakt_container {
    position: relative;
    float: left;
    margin: auto;
    background-color: #293133;
    top: 8vh;
	width: 100%;
    z-index: -99;
    align-items: center;
}

.kontakt_container h2 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: 60%;
    margin: 2vh 0 2vh 0;
    padding-bottom: 5px;
}

.kontakt_container form {
    position: relative;
    display: block;
    text-align: left;
    width: 60%;
    padding: 50px;
    border: solid 1px #ff6666;
    border-radius: 30px;
    margin-bottom: 100px;
}

.kontakt_container form p {
    text-align: center;
    color: #ff6666;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

.kontakt_container form p a {
    text-align: center;
    color: #ff6666;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

.kontakt_container form
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: solid 1px #ff6666;
    border-radius: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

.kontakt_container form label {
    font-family: "Poppins", sans-serif;
    color: #ff6666;
    font-size: 30px;
    font-weight: 500;
}

.kontakt_container form
input[type=submit] {
    padding: 20px;
    margin-top: 20px;
    width: 200px;
    font-family: "Poppins", sans-serif;
    color: #ff6666;
    font-size: 30px;
    font-weight: 500;
    border: solid 2px #ff6666;
    border-radius: 15px;
    background-color: #293133;
    cursor: pointer;
}

.kontakt_container form
input[type=submit]:hover {    
    border: solid 2px #ff6666;
    background-color: #ff6666;
    color: #293133;
    transition: 0.5s;
}

@media screen and (max-width: 800px) {
    .kontakt_container form {
        width: 95%;
    }

    .kontakt_container h2 {
        width: 90%;
    }

    .kontakt_container form label {
        font-family: "Poppins", sans-serif;
        color: #ff6666;
        font-size: 24px;
        font-weight: 500;
    }
}

.lastUpdate {
    font-family: "Poppins", sans-serif;
    color: #ff6666;
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
}

/* #endregion */


/* #region social bar */
.icon-bar a {
    display: inline-block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    margin: 0px;
}

.icon-bar a:hover {
    background-color: #000;
}

.icon-bar {
    position: relative;
}

.instagram {
    background: #125688;
    color: white;
}

.linkedin {
    background: #007bb5;
    color: white;
}

/* #endregion */