section.header {
    background-image: url(../images/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.header__inner {
    padding-top: 30px;
}
/* Navigation */
.navigation {
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--rounded-border-s);
    padding: 11px 40px;
    position: relative;
    transition: all linear 0.5s;
    z-index: 900;
}
.navigation.fixed {
    border-radius: 0;
    border: none;
    box-shadow: 0 0 10px #1B6437;
    justify-content: space-around;
}
.menu-item {
    color: var(--black-color);
    font-weight: 700;
}
.menu-item ~ .menu-item {
    margin-left: 20px;
}
.menu-item:hover,
.menu-item.active {
    color: var(--primary-color);
}
.menu-item.active {
    position: relative;
}
.menu-item::after{
    width: 0;
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
    transition: width ease .5s;
}
.menu-item.active::after {

    width: 100%;

}
.menu__toggle {
    font-size: 3.2rem;
    display: none;
}
.menu__toggle:hover {
    cursor: pointer;
    color: var(--primary-color);
}

/* Banner */
.big-heading {
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.banner-image {
    position: relative;
}
.wheel-auto {
    position: absolute;
    top: 13%;
    left: 9%;
    width: 82%;
    transition: 5s;
    transform-origin: center;
}
.arrow {
    position: absolute;
    top: 31%;
    width: 33%;
    left: 33.5%;
}
.arrow:hover {
    cursor: pointer;
}
.banner-inner {
    align-items: center;
}
.banner-content {
    background-image: url(../images/bg.png);
    background-size: cover;
}
.banner-heading {
    font-size: 3rem;
    text-align: center;
    line-height: 38px;
}
.banner-description {
    margin-top: 20px;
    font-size: 2rem;
    line-height: 30px;
}
.form-control {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.form-group {
    overflow: hidden;
    height: 100%;
    box-shadow: 0 0 1px var(--border-color);
    border-bottom: 2px solid transparent;
}
.captcha-title {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 20px 0;
}
.captcha-box {
    margin-bottom: 20px;
    align-items: center;
}
.captcha-area {
    position: relative;
}
.captcha-area img {
    max-height: 50px;
}
.captcha {
    text-align: center;
    display: inline-block;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
}
select.round {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%), radial-gradient(#ddd 70%, transparent 72%);
    background-position: calc(100% - 17px) calc(1em + 8px), calc(100% - 12px) calc(1em + 8px), calc(100% - 0.5em) 1em;
    background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
    background-repeat: no-repeat;
}

select.round:focus {
    background-image: linear-gradient(45deg, var(--primary-hover) 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, var(--primary-hover) 50%), radial-gradient(var(--yellow-color) 70%, transparent 72%);
    background-position: calc(100% - 12px) 1.5em, calc(100% - 17px) 1.5em, calc(100% - 0.5em) 1em;
    background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
    background-repeat: no-repeat;
    outline: 0;
}
option {
    padding: 6px 10px;
}
.banner button {
    background-color: var(--primary-color);
    border-radius: var(--rounded-border-s);
    color: var(--yellow-color);
    font-size: 2.4rem;
    width: 100%;
    font-weight: 700;
    margin-bottom: 20px;
}
.banner button:hover {
    background-color: var(--primary-hover);
}

.banner-link {
    text-align: center;
}
.banner-link a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    font-size: 1.4rem;
    line-height: 1.8;
}
.banner-link a:hover {
    color: var(--primary-hover);
}
/* Responsive */
@media screen and (max-width: 992px) {
    .navigation {
        padding: 10px 20px;
    }
    .brand {
        max-width: 200px;
    }
    .menu-item ~ .menu-item {
        margin-left: 10px;
    }
    .banner-box {
        order: 2;
    }
    .banner-image {
        order: 1;
    }
}

@media screen and (max-width: 767px) {
    .big-heading {
        max-width: 374px;
    }
    .navigation.fixed {
        justify-content: space-between;
    }
    .menu__toggle {
        display: block;
    }
    .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        background-color: var(--white-color);
        width: 300px;
        padding: 10px;
        border-radius: var(--rounded-border-s);
        top: 100%;
        right: 0;
        box-shadow: 10px 10px 44px 0px var(--primary-color);
        z-index: 999;
        transform: translateX(200%);
        transition: all 0.5s ease-in-out;
    }
    .menu.menu--active {
        transform: translateX(0);
    }
    .menu-item {
        margin-bottom: 10px;
        line-height: 2;
    }
    .menu-item ~ .menu-item {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .menu-item.active::after {
        bottom: -3px;
    }
    .banner-image {
        order: 1;
    }
    .banner-box {
        order: 2;
    }
    .banner-heading {
        font-size: 2.4rem;
    }
    .banner-description {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-top: 10px;
    }
    .header__inner {
        padding-top: 20px;
    }
}
