/* #region fonts */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
/* #endregion fonts */

/* #region variables */
:root {
    --header-background-color: linear-gradient(to right, #0b133a, #212e70);
    --font-family-primary: "Nunito", sans-serif;
}
/* #endregion variables */

/* #region global */
.html {
    font-family: var(--font-family-primary) !important;
}

.en .text-ar {
    display: none;
}

.ar .text-en {
    display: none;
}
/* #endregion global */

/* #region header */
.Header__homeContent .Header__navbar,
.Header__defaultContent .Header__navbar {
    background: var(--header-background-color);
}

.Header__searchTitle {
    margin-top: 50px;
}

.Input__headerSearch {
    border: 1px solid black;
    border-radius: 30px;
    padding-inline: 30px 50px;
    font-size: 18px;
}

.globalfixednav .Input__headerSearch {
    padding-top: 12px;
    padding-bottom: 12px;
}

.globalfixednav .Header__globalSearchAlt {
    max-width: 680px;
}

.SearchContainer__searchIcon {
    position: absolute;
    right: 1px;
    border-radius: 30px;
    background: white;
    height: 30px;
    width: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

html[dir="rtl"] .SearchContainer__searchIcon {
    right: unset;
    left: 1px;
    transform: rotateY(180deg) translateY(-45%);
}

html[dir="rtl"] .Input__headerSearch {
    border-radius: 30px;
}

.SearchContainer__searchIcon .Icon__white,
.Icon__brand {
    color: #1f2b6b;
}

.AppContainer__backToTop,
.Button__footerBtn:hover {
    background: #1f2b6b;
}

.Header__homeNavbarFixed .Header__menu,
.Header__homeNavbarFixed .Header__menu:after,
.Header__homeNavbarFixed .Header__menu:before {
    background-color: white;
}

.SearchContainer__globalSearch {
    background: transparent;
}

.Header__globalSearchAlt {
    border: unset !important;
}

.Header__homeNavbarFixed .Header__navbar .Header__tabsTab,
.globalfixednav .globalSignin,
.globalfixednav .globalSignup,
.globalfixednav .aPlusIcon {
    color: white;
}
/* #endregion header */

/* #region image with text */
.page-title {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.page-title h1 {
    margin: 0;
    font-weight: bold;
}

.page-title img {
    margin-inline-start: 10px;
    vertical-align: middle;
}

.header-search {
    text-align: center;
}

.header-search h2 {
    font-size: 40px;
}

.header-search input {
    min-height: 55px;
    width: 80%;
    border-radius: 30px;
    background-image: url("/assets/icons/Search.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 13px) center;
    background-size: 30px;
    padding-inline: 30px 50px;
    font-size: 18px;
    margin-bottom: 110px;
}

.image-with-text-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.image-with-text {
    max-width: 570px;
}

.image-with-text .image-wrapper {
    height: 235px;
    width: 100%;
}

.image-with-text .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.image-with-text h3 {
    margin: 30px 0 10px;
    font-size: 24px;
    color: black;
}

.image-with-text a:hover {
    opacity: 0.7;
}

.image-with-text h3 a {
    color: inherit;
    text-decoration: underline;
}

.image-with-text p {
    font-size: 18px;
    line-height: 1.6;
}

.image-with-text .links-wrapper {
    display: flex;
    margin-top: 20px;
}

.image-with-text .links-wrapper:not(.links-wrapper-horizontal) {
    flex-direction: column;
}

.image-with-text .links-wrapper.links-wrapper-horizontal {
    gap: 40px;
}

.image-with-text .links-wrapper a {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
    text-decoration: underline;
}

.image-with-text:last-of-type .image-wrapper img {
    object-position: top;
}

@media all and (max-width: 800px) {
    .image-with-text-blocks {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-with-text {
        max-width: unset;
    }

    .page-title {
        margin-bottom: 30px;
    }

    .Header__searchTitle {
        font-size: 36px;
    }

    .Header__homeContent .Header__searchSection {
        padding: 3.25rem 0;
    }

    .globalfixednav .globalLocalText {
        color: white;
    }

    #navBarContainer {
        min-height: 60px;
    }
}

/* #endregion image with text */

