/************** Start of root component *****************/

:root {
    --secondary: #0099FF;
    --primary: #6D9F71;
    --bs-red: #EF626C;
    --footer-text-color: --primary#818181;
    --gray: #CCCCCC;
    --black: #212121;
    --white: #FFFFFF;
    --puruul: #4E4187;
    --p2-color: #555555;
}

/************** End of root component ************/

html {
    height: 100%;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* @font-face {
    font-family: AlJareedaTitle;
    src: url(../../public/fonts/AlJareedaTitleNormal.ttf);
  } */

body {
    font-family: 'Cairo', sans-serif;
    background: var(--gray);
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    font-size: 18px;
}

main {
    flex: 1;
}

/******************** Start of Navbar Style  **********************/

.public-nav {
    height: 100px;
}

.container {
    max-width: 1200px;
}

.brand-logo {
    width: 180px;
    height: 50px;
}

.blue-button {
    background: transparent;
    border: 2px solid var(--secondary);
    padding: 12px 35px;
    color: var(--secondary);
    border-radius: 5px;
    font-size: 18px;
}

.blue-button:hover {
    color: #FFF;
    border: 2px solid var(--secondary);
    padding: 12px 35px;
    background: var(--secondary);
    border-radius: 5px;
    font-size: 18px;
}

.green-button {
    background: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 35px;
    color: #FFF;
    border-radius: 5px;
}

.green-button:hover {
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 35px;
    background: transparent;
    border-radius: 5px;
}

.red-button {
    color: var(--bs-red);
    border: 2px solid var(--bs-red);
    padding: 12px 35px;
    background: transparent;
    border-radius: 5px;
}

.red-button:hover {
    background: var(--bs-red);
    border: 2px solid var(--bs-red);
    padding: 12px 35px;
    color: #FFF;
    border-radius: 5px;
}

.btn-1 {
    color: #FFF;
    border: 2px solid var(--secondary);
    padding: 8px 25px;
    background: var(--secondary);
    border-radius: 5px;
    font-size: 18px;
}

.btn-radius {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.btn-group {
    display: flex;
    gap: 20px;
}

.link {
    color: var(--secondary);
}

.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    margin-left: 50px;
}

.navbar-nav {
    gap: 50px;
}

.navbar-nav .nav-link {
    position: relative;
    transition: .5s linear;
}

/*-------------------------- nav-hover start ---------------------------  */

.navbar-nav .nav-link:hover {
    color: #0099FF !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 10px;
    background: #0099FF;
    transition: .3s linear;
    opacity: 0;
}

.navbar-nav .nav-link:hover:after {
    opacity: 1 !important;
}

/*-------------------------- nav-hover end ---------------------------  */

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
}

.navbar-toggler {
    padding: 5px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0px 0px 5px #888888;
}

.navbar-toggler-icon {
    height: unset;
    line-height: 0px;
}

/* nav end  */

/* footer start  */

footer {
    color: #818181;
    padding-top: 60px;
}

footer .form-control::placeholder {
    color: #CCCCCC;
}

.f-link_box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.f-link_box .footer-field {
    height: 34px;
    border: 1px solid var(--secondary);
    border-radius: unset;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    /* padding: 10px; */
}

.f-link_box .footer-field::placeholder {
    font-size: 12px;
    color: rgba(102, 102, 102, 0.637);
}

.f-link_box .footer-field:focus {
    box-shadow: none;
}

.f-link_box .footer-btn {
    padding: 0px 25px;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
}

.f-link_box .pay_links img {
    width: 90px;
    height: 35px;
    max-width: 100%;
}

/* footer end  */

/******************** End of Navbar Style  **********************/

/********************* Start of Check Box Style **************************/

.the-check-box {
    border: 1px solid #0099FF !important;
    padding-bottom: 0 !important;
}

/********************* End of Check Box Style **************************/

/* form and inputs */

.form-heading {
    margin-bottom: 60px;
    color: var(--secondary);
}

.form-heading-red {
    margin-bottom: 60px;
    color: var(--bs-red);
}

/* .form-default input {} */

/* .input-lg {
    height: 80px;
} */

.input_img {
    width: 22px;
    left: 30px;
    position: absolute;
    top: 47%;
    transform: translateY(-50%);

}

.login_form input {
    background: rgba(236, 236, 236, 0.5);
    border: 0px;
    color: #000;
    text-align : left;
    padding-left: 60px !important;
    padding-top: 20px;
    padding-bottom: 20px;
}

.login_form input::placeholder {
    color: #000;
    font-size: 18px;
}

.login_form textarea {
    background: rgba(236, 236, 236, 0.3);
    border: 0px;
    color: #000;
    text-align : left;
    padding-top: 11px;
    padding-bottom: 11px;
}

.login_form textarea::placeholder {
    color: #000;
}

/* Preloader start  */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    left: 0;
    bottom: 0;
    z-index: 999999;
    display: none;
}

.preloader-1 {
    background-color: #1c4587a4;
}

.preloader-2 {
    background-color: #FF850B;
}

.spinner {
    position: absolute;
    top: 48%;
    left: 48%;
    width: 70px;
    text-align: center;
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* Preloader End  */

[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: rtl;
}
.input_captcha{
    width: 32px;
    left: 26px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
