@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

::before,
::after,
ul,
li,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme: #0bb1e6;
    --text-color:#ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
}

.heading {
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
}


.firbanner{
    position: relative;
  }
  
  .gif_bg_img{
    width: 100%;
  }

  .para {
	font-size: 16px;
	line-height: 29px;
	color: #A2A2A2;
	font-weight: 400;
	text-align: justify;
}

.para p {
	font-size: 16px;
	margin-bottom: 8px;
	line-height: normal;
}

.theme_btn {
    min-width: 148px;
    border: 3px solid white;
    box-shadow: -5px 2px 23.76px 0.24px rgba(0, 0, 0, 0.47);
    height: 50px;
    font-size: 16px;
    background-color: var(--theme);
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

header {
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.navbar .nav-link {
    font-size: 16px;
    margin: 10px 20px !important;
    padding: 0 !important;
    line-height: 29px;
    color:#000;
}
.navbar .nav-link.join_us {
    color:var(--text-color);
}   

 
.navbar .nav-link.active {
    border-bottom: 3px solid var(--theme);
}

.navbar-brand img {
    width: 120px;
}

.navbar-brand span{
    display: block;
    font-size: 14px;
}

.nav_btn {
    min-width: 140px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.nav_drop img {
    width: 44px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}

.nav_drop .nav-link {
    display: flex;
    justify-content: start;
    align-items: center;
}

.nav_drop strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.nav_drop small {
    font-size: 12px;
    font-weight: 400;
    color: var(--theme);

}

.nav_drop p {
    margin-bottom: 0;
    line-height: 14px;
    margin-left: 10px;
}

/* \ navbar */


/* Modal =============================== */

.modal_side_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal_form {
    height: fit-content;
    width: 100%;
}

.modal_form h2 {
    font-weight: 600;
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.socal_modal_icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.socal_modal_icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #edf2f7;
    text-decoration: none;
    border-radius: 10px;
    margin: 0 8px;
    width: 45px;
    height: 40px;
}

.socal_modal_icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.via_line {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 20px 0px 10px;
}

.via_line strong {
    font-size: 14px;
    font-weight: 500;
    background: white;
    z-index: 0;
    padding: 0 15px;
}

.via_line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
    left: 0;
    bottom: 10px;
    z-index: 0;
}


.modal_form label {
    margin-top: 15px;
    font-weight: 500;
    font-size: 15px;
}

.modal_form label a {
    font-size: 15px;
}

.modal_form .form-control {
    border-radius: 30px;
    border: none;
    height: 51px;
    padding: 0px 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175);
    margin: 10px 0px 20px;
}

.modal_form .form-control:focus,
.modal_form .form-control:focus-visible {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175) !important;
}

.modal-xl {
    max-width: 1060px;
}

.modal_form .form-control {
    border-radius: 10px;
    height: 51px;
    padding: 0px 11px;
    margin: 5px 0px 10px;
    font-size: 16px;
}

.modal_form .switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 20px;
}

.modal_form .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.modal_form .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: gainsboro;
    -webkit-transition: .4s;
    transition: .4s;
}

.modal_form .slider::before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.modal_form input:checked+.slider {
    background-color: var(--theme);
}

.modal_form input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.modal_form input:checked+.slider::before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.form-check-input {
    max-width: 16px;
    width: 100%;
    margin-right: 6px;
    border-color: #000;
}

.form-check-input:checked {
    background-color: var(--theme);
    border-color: var(--theme);

}

.modal_form .slider.round {
    border-radius: 34px;
}

.modal_form .slider.round:before {
    border-radius: 50%;
}

.modal_form .submit_modal {
    width: 100%;
    height: 51px;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--theme);
    color: black;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175);
    margin: 30px 0px;
}

.xsm {
    width: 75%;
    margin: 0 auto;
}

/* .modal_form .submit_modal:focus , .modal_form .submit_modal:focus-visible{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175) !important;
} */
.modal_form .submit_modal {
    width: 100%;
    height: 41px;
    font-size: 18px;
    border-radius: 10px;
    margin: 20px auto;
    font-weight: 400;
}

.modal-header {
    position: relative;
}

.modal .btn-close {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ff0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    opacity: 1;
    font-size: 22px;
    padding: 0;
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 10;
    padding-right: 0.5px;
}

.modal .form-group {
    position: relative;
}

.modal .form-group i {
    position: absolute;
    top: 62px;
    right: 15px;
    color: rgba(0, 0, 0, 0.175);
}

.modal_form .nav-pills .nav-link {
    background-color: #d5d5d5;
    color: #000;
    box-shadow: -6px 3px 17.82px 0.18px rgba(0, 0, 0, 0.17);
    margin: 0 10px;
    width: 154px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.modal_form .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #000;
}

.input_group {
    display: flex;
    justify-content: start;
    align-items: center;
}

.input_group .input_inner {
    width: 50px;
    height: 100%;
    position: relative;
}

.input_group .input_inner select {
    background-color: transparent;
    height: 100%;
    width: 100%;
    border: none;
    appearance: none;
}

.input_group .input_inner i {
    top: 12px;
    font-size: 19px;
    right: 5px;
}

.logout_img {
    width: 80px;
    padding-bottom: 24px;
}

/* \ modal */

/* banner */

.banner{
    position: relative;
    z-index: 0;
}

.banner video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -2;
	object-fit: cover;
}

.banner_before{
    min-height: 100vh;
}

.banner_before::before{
    content: '';
    background-color: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner h1 {
	font-size: 37px;
	line-height: 88px;
	font-weight: 400;
	margin: 0px;
}
.banner h2 {
    color: var(--theme);
    font-size: 45px;
    line-height: 74px;
    font-weight: 400;
}

.banner p {

    font-size: 18px;
    line-height: 35px;
    color: #A2A2A2;
    font-weight: 400;
}

.appstores {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 1rem;
}
.appstores a img {
    max-width: 159px;
    width: 100%;
    /* margin-right: 10px; */
    /* height: 44px; */
    /* padding-right: 10px; */
}
h2.ne {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 60px;
}
.join_us {
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--theme);
    border-radius: 10px;
    height: 44px;
    min-width: 151px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.nav-link_green
{
    font-size: 16px;
    color: #fff;
    background-color: var(--theme);
    border-radius: 10px;
    height: 44px;
    min-width: 151px;
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
}
section.py-5.back_offer
{
    background: url(../images/background.png) no-repeat left center / auto;
}

/* \banner */


/* about us */
.ab_card {
	border-radius: 20px;
	box-shadow: 0px 3px 6px #00000029;
	border: none;
	transform: translate(-8%);
}

.ab_card .card-body {
    padding: 48px;
}

.mini_heading {
	font-size: 25px;
	color: var(--theme);
	font-weight: 500;
	position: relative;
	margin-bottom: 20px;
}

.mini_heading::before {
    content: "";
    width: 38px;
    height: 3px;
    border-radius: 0;
    background-color: var(--theme);
    position: absolute;
    bottom: -5px;
    left: 0px;
    /* transform: translate(-50%); */
}


.owl-dot {
    margin-top: 48px !important;
}

.owl-dot span {
	width: 42px !important;
	height: 10px !important;
	border-radius: 4px !important;
	background: black !important;
}


.owl-dot.active span {
    background-color: var(--theme) !important;
}

/* about us */

/*company_forum */



.white_line {
    color: white;
    text-align: center;
}

.white_line::before {
    left: 50%;
    transform: translate(-50%);
    background-color: white;
    bottom: -10px;
}

.company_forum {
    background: url(../images/v3.png) no-repeat center/cover;
}

.card_forum {
    padding: 22px;
    border-radius: 29px;
    background-color: white;
}

.card_forum ul {
    list-style-type: none;
}

.cf_user {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    padding: 15px 0px;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
}

.cf_user:last-child {
    border: none;
    padding-bottom: 0;
}

.cf_user img {
    max-width: 88px;
    width: 100%;
    height: 88px;
    border-radius: 50%;
}

.content_box p {
    text-align: left;
    font-size: 18px;
    color: black;
    line-height: 35px;
    font-weight: 400;
}

.cf_user textarea {
    box-shadow: 0px 1px 6px #00000029;
    border-radius: 15px;
    border: none;
    width: 100%;
    padding: 15px;
    height: 150px;
    resize: none;
}

/*  \company_forum */


/* contact us  */
.rounded_ico img {
	width: 50%;
	aspect-ratio: 1/1;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.contact_card {
    box-shadow: 0px 1px 34.65px 0.35px rgba(0, 0, 0, 0.09);
    border-radius: 15px;
    width: 100%;
    height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: white;
}

.contact_card h5 {
    font-size: 22px;
    font-weight: bold;
}

.contact_card p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.contact_card::before {
    content: '';
    background-color: var(--theme);
    position: absolute;
    bottom: -4px;
    width: 65%;
    height: 8px;
    border-radius: 4px;
}

.form-group textarea.form-control {
    height: 150px;
    padding: 10px;
    resize: none;
}

.contact_info h6 {

    /* color: #fff; */
    font-size: 20px; 
    font-weight: 600;
    position: relative; 
}

.contact_info h6::before {
    content: '';
    position: absolute;
    top: 41%;
    left: 0;
    width: 36px;
    background-color: var(--theme);
    height: 3px;
    display: none;
    display: none;
}

.contact_info h2 {
    font-size: 30px;
    font-weight: 600;
    /*! color: white; */
}

.contact_info li {
    margin: 40px 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}

.contact_info li h4 {
    font-size: 24px;
    font-weight: 600;
    /*! color: white; */
}

.contact_info li p {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 400;
    /*! color: ssdaddad  white; */
}

span.rounded_ico {
    max-width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    width: 100%;
}


/* \ contact us  */


.side_float {
	width: 100%;
	border-radius: 0px;
	aspect-ratio: 16/7;
	object-fit: cover;
	object-position: top;
}

footer {
    /* background: url(../images/v8.jpg) no-repeat center/cover; */
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 0;
}

footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #fff;
    opacity: 0;
}

footer ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_logo {
    width: 150px;
    margin-bottom: 25px;
}
.banner {
	background: #0bb1e6;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer_link {
    color: #333;
    font-size: 18px;
    line-height: 29px;
    padding: 10px 15px;
    text-decoration: none;
}

footer .inner {
    padding: 50px 0px;
}

footer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
    color: #636363;
}

footer p .footer_link {
    font-size: 16px;
    line-height: 26px;
    margin: 0 5px;
}

.accordion-body p{
    word-break: break-all;
}

.social_links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10xp;
    padding-top: 20px;
}

.social_links a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    max-width: 40px;
    text-decoration: none;
    border: none;
    margin:  0 10px;
}

.social_links a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blue_titels h3 {
	font-weight: 800;
	color: #40abde;
	font-size: 48px;
}
.blue_titels p {
	/* font-weight: 700; */
	font-size: 16px;
	text-align: center;
}
.pills span {
	font-weight: 500;
	border: 1px solid #000;
	padding: 4px 7px;
	display: inline-flex;
	border-radius: 40px;
    margin-bottom: 10px;
    gap: 5px;
}
@media (max-width: 1399.98px) {

    .modal_form .form-control {
        border-radius: 10px;
        height: 45px;
        padding: 0px 8px;
        margin: 4px 0px 0px;
        font-size: 13px;
    }

}


@media (max-width: 767.98px) {

    .modal .btn-close {
        top: 12px;
        right: 12px;
    }

    .xsm {
        width: 100%;
    }

    .logout_img {
        width: 50px;
        padding-bottom: 14px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .join_us {
        min-width: 121px;
    }

    .navbar .nav-link {
        font-size: 14px;
        padding: -4px 0px !important;
    }

    .nav_btn {
        border: 2px solid white;
        font-size: 14px;
    }

    header {
        background-size: cover;
    }

    .banner {
        padding-bottom: 110px;
    }

    .para {
        font-size: 16px;
    }

    .heading {
        font-size: 25px;
    }

    .heading::before {
        width: 94px;
        height: 5px;
    }

    footer .inner {
        padding: 20px 0px;
    }

    .banner h1 {
        font-size: 30px;
        margin-top: 0px;
        line-height: 40px;
    }

    .appstores a img {
        max-width: 130px;
    }

    .banner h2 {
        color: var(--theme);
        font-size: 25px;
        line-height: 44px;
        font-weight: 400;
    }

    .ab_card {
        transform: translate(0);
        margin-top: 20px;
    }

    .banner h2 {
        font-size: 35px;
        line-height: 44px;
        font-weight: bold;
    }

    .ab_card .card-body {
        padding: 28px 15px;
    }

    .heading {
        font-size: 24px;
        line-height: 35px;
    }

    .cf_user {
        display: block;
        text-align: left;
    }

    .cf_user img {
        max-width: 78px;
        height: 78px;
        margin-bottom: 10px;
    }

    .content_box p {
        font-size: 16px;
    }

    .footer_link {
        font-size: 14px;
    }

    footer p {
        font-size: 12px;
    }

    footer p .footer_link {
        font-size: 12px;
        margin: 0;
    }

    .footer_logo {
        width: 130px;
        margin-bottom: 5px;
    }

    .footer_img {
        position: initial;
    }

    footer {
        padding: 30px 0px 0px;
    }

    .contact_card h5 {
        font-size: 20px;
    }

    .contact_card p {
        font-size: 15px;
    }

    .contact_info h6 {
        font-size: 18px;
    }

    .contact_info h6::before {
        top: 44%;
    }

    .contact_info h2 {
        font-size: 30px;
    }

    span.rounded_ico {
        max-width: 52px;
        height: 52px;
        margin-right: 20px;
    }

    .rounded_ico img {
        width: 50%;
    }

    .contact_info li h4 {
        font-size: 20px;
    }

    .contact_info li p {
        font-size: 16px;
    }

    .contact_info li {
        margin: 20px 0;
    }
}


@media (max-width: 575.98px) { 
    .modal_form label {
        font-weight: 400;
        font-size: 13px;
    }
 }