/* Theme Name: Harel Theme
 * Author: AM Desings & Interjet
 * Description: Harel theme
 * Version: 1.0
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: GoatScape
 * Text Domain: GoatScape
 *
 * This theme, like WordPress, is licensed under the GPL.
 * Use it to make something cool, have fun, and share what you've learned with others.*/
/* -- SEARCHBOX -- */
/* ---------------------------------------------- */

/* varibles */
:root {
    --main-color: #106ae1;
    --main-color-hover: #0a4ac8;
}

/* import fonts from assets/fonts/MF_protocolHarel/ */
@font-face {
    font-family: MFProtocolHarel;
    src: url(./assets/fonts/MF_protocolHarel/MF_ProtocolHarel-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: MFProtocolHarel;
    src: url(./assets/fonts/MF_protocolHarel/MF_ProtocolHarel-Light.ttf);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: MFProtocolHarel;
    src: url(./assets/fonts/MF_protocolHarel/MF_ProtocolHarel-Medium.ttf);
    font-weight: 400;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
}
body {
    margin: 0;
    min-height: 100%;
    font-family: MFProtocolHarel;
    position: relative;
    background: #fbfcff;
}

/* Buttons */
.hr_btn {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    min-width: 120px;
    line-height: 18px;
    padding: 9px 20px 9px 20px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    font-family: MFProtocolHarel;
}

.hr_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.hr_main_btn {
    color: #fff;
    text-decoration: none;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.hr_main_btn:hover {
    background-color: var(--main-color-hover);
    border: 1px solid var(--main-color-hover);
    color: #fff;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    background-color: inherit;
    border: inherit;
    color: inherit;
}

.hr_secondery_blue_btn {
    color: var(--main-color-hover);
    background-color: transparent;
    border: 1px solid var(--main-color-hover);
}

.hr_secondery_blue_btn:hover {
    background-color: #fff;
    border: 1px solid var(--main-color-hover);
    color: var(--main-color-hover);
}

.hr_secondery_btn {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}

.hr_secondery_btn:hover {
    background-color: var(--main-color-hover);
    border: 1px solid var(--main-color-hover);
    color: #fff;
}

@media screen and (max-width: 991px) {
    .hr_btn {
        font-size: 13px;
        min-width: 100px;
        line-height: 27px;
        padding: 3px 10px 3px 10px;
        height: 34px;
    }
}

.disabled_link {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}

/* -- HEADER -- */
.hr_section_title {
    color: #0a2344;
    text-align: center;
    /* font-family: MFProtocolHarel; */
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 23px;
    font-family: MFProtocolHarel;
}

.hr_section_desc {
    max-width: 800px;
    color: #0a2344;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .hr_section_title {
        color: #0a2344;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px; /* 116.667% */
        margin-bottom: 20px;
    }

    .hr_section_desc {
        max-width: 800px;
        color: #0a2344;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 25.11px; /* 156.937% */
    }
}

.hr-view_desktop {
    display: block;
}

.hr-view_mobile {
    display: none;
}

@media screen and (max-width: 991px) {
    .hr-view_desktop {
        display: none;
    }

    .hr-view_mobile {
        display: block;
    }
}

.hr-fz-20 {
    font-size: 20px;
}

.hr-fz-22 {
    font-size: 22px;
}

.text-right {
    text-align: right;
}

button:focus {
    outline: none;
}

.hr_error_message {
    color: #ff0000;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    display: none;
}

.form-floating input {
    border-radius: 50px;
    color: #0a2344;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 26.761px;
    /* 121.639% */
    direction: rtl;
    position: relative;
}

.form-floating input[type="email"],
.form-floating input[type="tel"] {
    direction: ltr !important;
    /* text-align: right !important; */
}

.hr_radio_container {
    margin-top: 50px;
}

.hr_radio_container .form-check {
    margin-bottom: 20px;
}
.hr_radio_container .form-check:last-child {
    margin-bottom: 0;
}

.hr_radio_container label {
    color: #0a2344;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 26.761px; /* 121.639% */
}

.form_actions_bar {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
}
.form_actions_bar .spinner-border {
    display: none;
}

.form_actions_bar button,
.form_actions_bar input[type="submit"] {
    margin-left: 10px;
}

.submit_bar {
    margin-top: 50px;
    justify-content: center;
}

.content__wrap {
    position: relative;
    max-width: 856px;
    border-radius: 12px;
    margin: 75px auto 0 auto;
    padding: 30px 0;
    min-height: 550px;
}
.content__wrap .modal-dialog_bg {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    /* z-index: -1; */
}

.modal-dialog.modal-lg.modal-dialog-scrollable {
    display: flex;
    align-items: center;
}

body .body_bg_img {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
body .body_footer_bg_img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: top center;
}

@media screen and (max-width: 991px) {
    .content__wrap {
        padding: 0 20px;
    }

    body .body_bg_img {
        bottom: 0;
    }

    .form-floating > .form-control,
    .form-floating > .form-control-plaintext,
    .form-floating > .form-select {
        height: 61px !important;
        min-height: 61px !important;
    }
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
    background-color: transparent !important;
}

#product_result__container .carousel-item {
    float: inline-end !important ;
    margin-left: unset !important;
}

.carousl-btns-custom {
    position: absolute;
    opacity: 0.9;

    @media screen and (width < 768px) {
        & {
            position: static;
            opacity: 1;
        }
    }
}

.download-icon-size {
    width: 22px;
    height: 22px;
}

.carousel-btn-next {
    top: 103%;
    left: 10px;
}

.carousel-btn-prev {
    top: 103%;
    right: 10px;
}

input {
    text-align: right !important;
    direction: rtl !important;
}