html {
    font-size: 16px;
    font-family: OpenSans;
}

body {
  opacity: 0;
  transition: opacity 1s ease-in;
  margin: 0;
}

body.loaded {
  opacity: 1;
}


nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav-length * {
    font-family: Inter;
}

.nav-length {
    height: 80px;
    width: 85vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
}

.nav-length a {
    font-size: 1.5rem;
    display: inline-block;
}

.nav-length a p {
    font-size: 1.6rem;
    margin: 0;
    width: fit-content;
}

.current-site {
    font-weight: bolder;
}

.logo {
    width: fit-content;
    display: flex;
}

.logo > ul {
    margin: 0;
}

.logo p {
    font-weight: bold;
    font-size: 2rem;
}

.logo > img {
    width: auto;
    height: 60px;
}

.nav-length a, .nav-length > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.nav-length > ul {
    width: clamp(460px, 30vw, 510px);
}

nav ul {
    width: 40vw;
    display: flex;
    padding: 0;
}

.nav-length ul li {
    list-style: none;;
}

.nav-length a, .nav-length ul li a {
    text-decoration: none;
    color: #000000;
    margin: 0;
}

.nav-length ul li a:hover {
    color: #ad3830;
}

.nav-length a p {
    font-size: 36px;
}

/*CONTENT-CENTER*/
.center {
    width: 100vw;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.center > div {
        padding: 0 1rem 0 1rem;
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.center > div > p {
    display: inline-block;
    margin: 0;
}

#name {
    font-size: clamp(1rem, 1.667vw, 3rem);
}

#title1 {
    font-size: clamp(1.5rem, 2.5vw, 6rem);
    font-weight: bold;
}

#text-main {
    font-size: clamp(1rem, 1.667vw, 3rem);
}

#Termin {
    font-size: clamp(.75rem, 1.25vw, 3rem);
    font-weight: bold;
    margin-top: 1.667vw;
}

.center > div > button {
    cursor: pointer;
    width: clamp(134px, 13.958vw, 804px);
    height: clamp(2rem, 3.229vw, 124px);
    border-radius: 90px;
    font-family: Inter;
    font-size: clamp(.75rem, 1.25vw, 3rem);
    font-weight: bolder;
    border: 1px solid #ad3830;
    background-color: #ad3830;
    color: #ffffff;
    margin-top: 2rem;
    transition: background-color 2s;
    transition: border;
}

.center > div > button:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

/* Hamburger Icon Animation */

.con-footer > a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

#nav-icon3 span:nth-child(1) {
    top: 0px;
  }
  
  #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 10px;
  }
  
  #nav-icon3 span:nth-child(4) {
    top: 20px;
  }
  
  #nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
  #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

#nav-icon3 {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #000000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.tgl-dropdown {
    transition: all ease-in-out 0.5s;
    opacity: 0;
}

.appear {
    opacity: 1!important;
}

.tgl-dropdown li {
    cursor: pointer;
    list-style: none;
    font-family: OpenSans;
    font-size: 1.5rem;
    flex-direction: column;
}

.tgl-dropdown li a {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #000000;
}

.tgl-dropdown li a:hover {
    color: #ad3830;
}



@media (max-width: 920px) {
    .nav-length > ul {
        display: none;
    }


#nav-icon3 {
    display: block;
}
}

@media (max-width: 920px) {
    .logo > img {
        height: 40px;
    }
    .nav-length a p {
        font-size: 2rem;
    }
}

@media (max-width: 520px) {
    .logo > img {
        height: 35px;
    }
    .nav-length a p {
        font-size: 1.8rem;
    }
}

@media (max-width: 430px) {
    .logo > img {
        height: 40px;
    }
    .nav-length a p {
        font-size: 1.5rem;
    }
}