.header-container {
    width: 100%;
    height: 100px;
    background-color: #fff;
    /* transition: all .5s linear; */

}

.container {
    max-width: 1200px !important;
}

.logo-container img {
    width: 150px;
    height: auto;
}

.nav-btn {
    width: 30px;
    height: 30px;
}

.nav-btn img {
    width: 30px;
    height: 30px;
}

.top-container {
    width: 100%;
    margin-top: 100px;
    overflow: hidden;
}

.form-item {
    width: 100%;
    margin-bottom: 20px;
}

@media screen and (min-width: 1300px) {
    .contact_input_box {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;

    }

    .contact-form {
        width: 70%;
        margin: 0 auto;
    }


    .placeholder {
        display: block;
        height: 40px;
        line-height: 40px;
        width: 100px;
    }

    .input-box {
        width: 80%;

    }
}

@media screen and (max-width: 1300px) {
    .contact_input_box {
        display: block;

    }

    .contact-form {
        width: 90%;
        margin: 0 auto;
    }


    .placeholder {
        display: block;
        height: 40px;
        line-height: 40px;
    }

    .input-box {
        width: 100%;

    }
}

@media screen and (min-width: 986px) {
    .top-container img {
        width: 100%;
        min-width: 1920px;
        height: auto;
    }
}

@media screen and (max-width: 986px) {
    .contact-container {
        display: none !important;
    }

    .top-container img {
        width: 100%;
        height: auto;
    }
}

input {
    width: 100%;
    height: 50px;
    padding: 10px 20px !important;
    font-size: 18px;
    border: none;
    box-sizing: border-box;
    color: #0b0c10 !important;
}

input:focus {
    outline: 1px solid #EBEBEB;
    border: none;
}

.error-message {
    display: none;
    font-size: 13px;
    line-height: 20px;
    color: red;
}

.message {
    width: 100%;
    height: 100px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    color: #0b0c10;

}

.message::placeholder {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}

textarea:focus {
    outline: 1px solid #EBEBEB;
    border: none;

}

.btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    border: 1px solid #EBEBEB;
    margin-left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.custom-toast {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.ui.success.toast.custom-toast {
    background-color: #1E88E5;
    color: #ffffff;
    border: 1px solid #1E88E5;
    font-size: 18px;
    border-radius: 5px;
    padding: 15px;
}



@media screen and (max-width: 767px) {
    .header-left {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-container {
        opacity: 0;
    }


}



.h5-show {
    height: 450px !important;
}

.show {
    opacity: 1;
    width: 100%;
    display: block !important;
}

.show .nav-item {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background-color: #1E88E5;
    position: absolute;
    /* top: 63px; */
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.active::after {
    width: 100%;
}