/*==================================================================
    FONTS
  ==================================================================*/
@font-face {
    font-family: 'NotoSansHebrew';
    src: url('../fonts/NotoSansHebrew-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansHebrewMedium';
    src: url('../fonts/NotoSansHebrew-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansHebrewBold';
    src: url('../fonts/NotoSansHebrew-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_28pt-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'InterBold';
    src: url('../fonts/Inter_24pt-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}


html {
    font-family: 'NotoSansHebrew';
}

body {
    font-family: 'NotoSansHebrew', 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

main>.container {
    padding: 70px 15px 20px;
}

/*==================================================================
    Header
  ==================================================================*/

#header .container {
    display: flex;
    min-width: 100%;
    padding: 10px;
}

#header .navbar {
    background-color: white !important;
}

#header .container .navbar-collapse {
    justify-content: space-between;
}

#header .container .navbar-nav {
    padding-right: 0;
}

#header .container .navbar-nav .nav-item {
    padding: 0 10px;
}

.navLogoImg {
    width: 232px;
    height: 42px;
}

.nav-link {
    color: #001925 !important;
}

.nav-link:hover {
    color: #0081E8 !important;
}

.btnPrimary {
    width: 135px;
    height: 50px;
    border-radius: 60px;
    background: #0076db !important;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.btnPrimary:hover {
    background-color: #008eff !important;
}

.bg-dark {
    background-color: #FFFFFF !important;
}


/*==================================================================
    popup
  ==================================================================*/

#modalContainer {
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

/* .modal-open .modal {
    padding-left: 223px;
    padding-top: 20px;
} */

.btn-close {
    --bs-btn-close-bg: url('/images/exit-model.png');
    opacity: 1;
    --bs-btn-close-hover-opacity: 1;
}

.modal-content {
    background-color: #0081E8;
    color: #FFFFFF;
}

.modal-header {
    border: none;
    padding-bottom: 0;
}

.popupContains {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popupTitle {
    font-size: 24px;
    font-weight: 600;
    font-family: 'NotoSansHebrewBold', 'InterBold';
    line-height: 15px;
    margin: 15px;
}

.contactImage {
    width: 55px;
    height: 55px;
    margin: 10px;
}

.popupForm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.popupInput {
    border-radius: 6px;
    border: none;
    padding-right: 20px;
    height: 50px;
    width: 100%;
    max-width: 461px;
}

.popupInput::placeholder {
    color: black;
}

.btnSubmit {
    border-radius: 130px;
    background-color: #001925;
    color: #FFFFFF;
    margin-bottom: 30px;
    width: 192px;
    height: 46px;
}

#contactModal .modal-dialog {
    margin: 5% auto;
    min-width: 707px;
    max-width: 707px;
}

#contactModal .subTitle {
    margin-bottom: 40px;
}


#contactModal .form-group {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}


.bannerContentWarp .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.bannerContentWarp .popup-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 80%;
    height: 80%;
    margin: auto;
    margin-top: 8%;
}

.bannerContentWarp .popup-content video {
    width: 100%;
    height: 100%;
}

.bannerContentWarp .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    color: black;
    font-weight: 600;
    background-color: transparent;
    cursor: pointer;
    font-size: 25px;
}



/*==================================================================
    Footer
  ==================================================================*/

.footer {
    background-color: #001925;
    font-size: .9em;
    height: 140px;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
}

.footer .footerLogo .logoImg {
    width: 232px;
    height: 42px;
}

.footer .footerLink .link {
    color: #FFFFFF;
    margin: 5px;
    padding-left: 15px;
    text-decoration: none;
    font-size: 14px;
}

.footer .moziLink {
    color: #6C8491;
    text-decoration: none;
}

.footer .footerLink .link:not(:last-child) {
    border-left: 1px solid #FFFFFF;
}

.footer .footerProtect {
    color: #6C8491;
    text-align: left;
    display: flex;
}


.footer .footerAccessibility {
    padding-right: 25px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

.btnContModal {
    background: #0081E8;
    border-radius: 48px;
    border: none;
    position: fixed;
    z-index: 99;
    width: 90px;
    height: 93px;
    left: 2%;
    bottom: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.btnContModal:hover {
    transform: scale(1.1);
}

.btnContModal span {
    font-size: 14px;
    color: #ffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
h1.title_page{
    text-align: center;
    margin: 50px;
}

/*==================================================================
    Circle
  ==================================================================*/

.symbole {
    position: absolute;
    left: 40px;
    top: 37px;
}

.symbole.black {
    left: 56px;
    top: 54px;
}

.circleText {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}