@media screen and (min-width: 300px) {
    .header-container {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 100;
    }

    .header {
        max-width: 1200px;
        height: 70px;
        display: flex;
        margin: 0 auto;
        padding: 5px 10px;
        border-radius: 0px;
        background-color: #171722;

        .logo {
            width: 60%;
            height: 100%;
            display: flex;
            align-items: center;


            img {
                width: 150px;
                height: 50px;
            }
        }

        .details {
            width: 30%;
            height: 100%;
            display: none;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-right: 20px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 40%;
            height: 100%;
            display: none;
            justify-content: flex-end;
            align-items: center;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-right: 10px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }

        .font-icon {
            width: 40%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;

            i {
                color: #CF983E;
                font-size: 24px;
                transition: transform 0.3s ease, opacity 0.3s ease;
            }
        }

        .font-icon i.fa-times {
            transform: rotate(180deg);
        }
    }

    .dropdown {
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        background-color: #171722;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 40px;
        transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.3s ease;
        z-index: 100;

        a {
            text-decoration: none;
        }

        .details {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-bottom: 30px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-bottom: 20px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }
    }

    .dropdown.open {
        max-height: 500px;
        opacity: 1;
        padding: 20px 40px;
    }

    .overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100% - 70px);
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 90;
    }

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

@media screen and (min-width: 700px) {
    .header-container {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 100;
    }

    .header {
        max-width: 1200px;
        height: 70px;
        display: flex;
        margin: 0 auto;
        padding: 5px 30px;
        border-radius: 0px;
        background-color: #171722;

        .logo {
            width: 60%;
            height: 100%;
            display: flex;
            align-items: center;


            img {
                width: 150px;
                height: 50px;
            }
        }

        .details {
            width: 30%;
            height: 100%;
            display: none;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-right: 20px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 40%;
            height: 100%;
            display: none;
            justify-content: flex-end;
            align-items: center;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-right: 10px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }

        .font-icon {
            width: 40%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;

            i {
                color: #CF983E;
                font-size: 24px;
                transition: transform 0.3s ease, opacity 0.3s ease;
            }
        }

        .font-icon i.fa-times {
            transform: rotate(180deg);
        }
    }

    .dropdown {
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        background-color: #171722;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 40px;
        transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.3s ease;
        z-index: 100;

        a {
            text-decoration: none;
        }

        .details {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-bottom: 30px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 20px;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-bottom: 0px;
                margin-right: 20px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }
    }

    .dropdown.open {
        max-height: 500px;
        opacity: 1;
        padding: 20px 40px;
    }

    .overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100% - 70px);
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 90;
    }

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

@media screen and (min-width: 1100px) {
    .header-container {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 100;
    }

    .header {
        max-width: 1200px;
        height: 70px;
        display: flex;
        margin: 0 auto;
        padding: 5px 30px;
        border-radius: 0px;
        background-color: #171722;

        .logo {
            width: 20%;
            height: 100%;
            display: flex;
            align-items: center;


            img {
                width: 150px;
                height: 50px;
            }
        }

        .details {
            width: 40%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-right: 20px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 40%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-right: 10px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }

        .font-icon {
            width: 40%;
            height: 100%;
            display: none;
            justify-content: flex-end;
            align-items: center;

            i {
                color: #CF983E;
                font-size: 24px;
                transition: transform 0.3s ease, opacity 0.3s ease;
            }
        }

        .font-icon i.fa-times {
            transform: rotate(180deg);
        }
    }

    .dropdown {
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        background-color: #171722;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 40px;
        transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.3s ease;
        z-index: 100;

        a {
            text-decoration: none;
        }

        .details {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-bottom: 30px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-bottom: 20px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }
    }

    .dropdown.open {
        max-height: 500px;
        opacity: 1;
        padding: 20px 40px;
    }

    .overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100% - 70px);
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 90;
    }

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

@media screen and (min-width: 1250px) {
    .header-container {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 100;
        margin-top: 20px;
    }

    .header {
        max-width: 1200px;
        height: 70px;
        display: flex;
        margin: 0 auto;
        padding: 5px 30px;
        border-radius: 10px;
        background-color: #171722;

        .logo {
            width: 30%;
            height: 100%;
            display: flex;
            align-items: center;


            img {
                width: 150px;
                height: 50px;
            }
        }

        .details {
            width: 30%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-right: 20px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 40%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-right: 10px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }

        .font-icon {
            width: 40%;
            height: 100%;
            display: none;
            justify-content: flex-end;
            align-items: center;

            i {
                color: #CF983E;
                font-size: 24px;
                transition: transform 0.3s ease, opacity 0.3s ease;
            }
        }

        .font-icon i.fa-times {
            transform: rotate(180deg);
        }
    }

    .dropdown {
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        background-color: #171722;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 40px;
        transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.3s ease;
        z-index: 100;

        a {
            text-decoration: none;
        }

        .details {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;

            a {
                margin-bottom: 30px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;

                &:hover {
                    color: #CF983E;
                }
            }

            i {
                color: #CF983E;
            }

        }

        .buttons {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;

            a {
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .login {
                color: white;
                border: 1px solid #CF983E;
                padding: 5px 20px;
                border-radius: 5px;
                margin-bottom: 20px;

                &:hover {
                    color: #CF983E;
                }
            }

            .apply {
                background-color: #CF983E;
                color: #171722;
                padding: 5px 20px;
                border-radius: 5px;
                border: 1px solid #CF983E;

                &:hover {
                    color: white;
                }
            }
        }
    }

    .dropdown.open {
        max-height: 500px;
        opacity: 1;
        padding: 20px 40px;
    }

    .overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100% - 70px);
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 90;
    }

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}