*   {
    margin: 0;
    padding: 0;
}

body {
    font-family: "poppins ",sans-serif;
    font-weight: 400;
    color:#fff;
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wrapper {
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(26,14,1,1) 100%);
    width:100%;
    min-height: 100vh;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo{
    text-transform: uppercase;
    font-size: 29px;
    font-weight: 800;
}

header nav {
    float: right;
    width: 40%;
}

header nav ul {
    list-style: none;  
    display: flex;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a{
    color:#fff;
}

header nav ul li.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #DC7000;
    border-radius: 10px;
    position: relative;
    top: 10px;
    left: -15px;
}

header nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 5px solid #DC7000;
}

header nav ul li.btn a{
    background: #FA9021;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 500ms ease;
}

header nav ul li.btn a:hover {
    background: #3b2003;
}

.heero {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 80vh;
    padding-right: 50px;
    padding-top: 50px;
}


.Kontakte-kircle {
    width: 700px; 
    height: 250px;

    border-radius: 30px;

    border: 2px solid rgba(255, 255, 255, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 40px;
    gap: 15px;
    background: transparent; 
}


.Kontakte-kircle a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;

    transition: 0.3s;
}


.Kontakte-kircle a:hover {
    color: #3b2003; 
}

.layout {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.danke {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 220px;
}

.big-text {
    font-size: 100px;
    font-weight: 800;
    color: #FA8305;
}

.small-text {
    font-size: 30px;
    color: #FA8305;
}

.fox1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 580px;
    color: #fff;
    pointer-events: none;
}

.dropdown-menu {
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

header nav ul li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;

    background: #1c1c1c;
    min-width: 220px;

    padding: 10px 0;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f1f1f;
    min-width: 200px;
    margin-top: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #aaa;
    font-size: 16px;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: #2a2a2a;
    color: #fff;
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown > a {
    transition: 0.3s;
}

.dropdown:hover > a {
    color: #FA8305;
}
