/*
  1. Use a more-intuitive box-sizing model.
*/
:root {
    --main-color: #00AAD4;
    --second-color: #221E54;
    --orange-color: #EF9356;

    --white-100: hsl(206, 5%, 100%);
    --white-200: hsl(206, 5%, 90%);
    --white-300: hsl(206, 5%, 80%);
    --white-400: hsl(206, 5%, 65%);
    --white-500: hsl(206, 5%, 45%);
    --black-100: hsl(210, 20%, 10%);
    --black-200: hsl(210, 20%, 8%);
    --black-300: hsl(210, 20%, 6%);
    --black-400: hsl(210, 20%, 4%);
    --black-500: hsl(210, 20%, 1%);
}

.main-color {
    color: var(--main-color);
}

.second-color {
    color: var(--second-color);
}

.orange-color {
    color: var(--orange-color);
}

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

}

/*
    2. Remove default margin
  */
* {
    padding: 0;
    margin: 0;
}

/*
    3. Allow percentage-based heights in the application
  */
html,
body {
    height: 100%;
    /* font-family: "Cairo", sans-serif; */

}

/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
  */
@font-face {
    font-family: "din-next-bold";
    src: url(../fonts/din-next-bold.ttf);
}

@font-face {
    font-family: "din-next-medium";
    src: url(../fonts/din-next-medium.ttf);
}

@font-face {
    font-family: "din-next-regular";
    src: url(../fonts/din-next-regular.ttf);
}

html[dir="rtl"] .font-bold {
    font-family: "din-next-bold";
}

html[dir="rtl"] .font-medium {
    font-family: "din-next-medium";
}

html[dir="rtl"] body {
    text-align: right;
    direction: rtl;
    font-family: "din-next-regular";
}

html[dir="ltr"] .font-bold {
    font-weight: 700;
}

html[dir="ltr"] .font-medium {
    font-weight: 500;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;

}

/*
    6. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/*
    7. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
    font: inherit;
}

/*
    8. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/*
    9. Create a root stacking context
  */
#root,
#__next {
    isolation: isolate;
}

a {
    text-decoration: none;
}

/* Start Grid Rules */

/* X-Small Screen */

@media (min-width: 576px) {
    .container {
        width: 568px;
    }
}

/* Small Screen */

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium Screen */

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large Screen */

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* X-Large Screen */

@media (min-width: 1400px) {
    .container {
        width: 1295px;
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-inline: 1rem;
}

/* End Grid Rules */



/* Start header */
header {
    display: grid;

}

header>* {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 1;
}

header .container {
    display: flex;
    flex-direction: column;
    gap: 6rem;

}

header .logo img {
    width: 165px;
    /*height: 120px;*/
}

header .navbar {
    background: transparent !important;
}

.hero_img {
    filter: opacity(0.2);
    height: 100vh;
    height: 100dvh;
    width: 100%;
}

.nav-item .nav-link {
    color: var(--second-color);
    font-size: 1.25rem;
    position: relative;
}

.nav-item .nav-link.active {
    font-weight: bold;
    color: var(--second-color)
}

.main-header .nav-item .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    background-color: #06abd5;
    inset-inline-start: 0;
    bottom: 0;
    transition: all 0.2s ease-in-out;

}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
    width: 20px;
    right: 15px;
}

.navbar__tow {
    margin-right: auto;
}

.navbar__tow .get_our_app {
    border: 2px solid var(--main-color);
    border-radius: 20px;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.navbar__tow .get_our_app a {
    color: var(--main-color);
    padding: 0 5px;

}
@media (min-width: 992px) {
	/*.navbar__tow .get_our_app a {
    	color: #fff!important;
	}*/
	.navbar__tow .get_our_app {
    	border: 1px solid #000!important;
	}
}
.navbar__tow .nav-item.get_our_app img {
    width: 15px;
    height: 25px;
}

.navbar__tow .bg_light_blue {
    background-color: var(--main-color);
    border-radius: 10px;
    padding: 0 .5em;

}

.navbar__tow .bg_light_blue a {
    color: white;
}

.img-group-heder {
    display: flex;
    justify-content: center;
    position: relative;
    transform: translateY(-50px);
}

.img-group-heder img {
    border-radius: 50%;
    height: 15rem;
    width: 15rem;
    object-fit: cover;
    position: absolute;
}

.img-group-heder .col {
    position: absolute;
}

.img-group-heder img:nth-child(1) {
    transform: translate(50%, 0);
    z-index: 2;
}

.img-group-heder img:nth-child(2) {
    transform: translate(0, 65%);
    z-index: 2;
}

.img-group-heder img:nth-child(3) {
    transform: translate(-35%, 0px);
}

.header-title {
    color: var(--second-color);
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.header-text p {
    /*color: #fff;*/
    font-size: 1.5rem;
    width: 90%;
}

.header-title span {
    color: var(--main-color);
}

.input-group {
    height: 3rem;
}

.input-group input:focus {
    outline: none;
}

/*.input-group input {
     width: 50%;
    /* height: 50px;
}*/

.input-group input[type="text"] {
    background-color: RGBA(34, 30, 84, 0.15);
    border-radius: 0 10px 10px 0 !important;
    border: none;
    padding: 0 1rem;

}

.input-group input[type="submit"] {
    background-color: var(--main-color);
    border-radius: 10px 0 0 10px !important;
    color: white;
    /* font-size: 1.25rem; */
    padding: .5em;
    border: none;
    /* width: 40%; */
}

/* End header */

/* Why-us Start */
.why_us {
    display: grid;

}

.why_us>img {
    height: 100vh;
    width: 100%;
}

.why_us>* {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.why_us-head h2 {
    color: var(--main-color);
}

.why_us-head p {
    color: var(--second-color);
    font-size: 1.35rem;
}

.why_us .card .card-img-top {
    width: 55%;
    height: 55%;
    margin: auto;
    object-fit: contain;
}

.why_us .card .bg_blue_img {
    display: grid;
    height: 150px;
    place-content: center;
}

.why_us .card .bg_blue_img>* {

    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 1;
}

.why_us .card .bg_blue_img .blue-shap {
    height: 120px;
}

.why_us .card-body {
    text-align: center;
}

.row .card-body h4, .row .card-body h5 {
    color: var(--second-color);
    font-weight: bold;
}

.row .card-body p {
    line-height: 1.2;
    color: var(--second-color);
}

/* Why-us end */

/* Start discover_us */
.discover_us {
    background-color: #EEF4F5;
}

.discover_us h2 {
    color: var(--main-color);
}

.discover_us .card-body h4,
.discover_us .card-body p {
    color: #fff;
}

.discover_us .card-body-main-color {
    background-color: var(--main-color);
    height: 11rem;
}
.discover_us .card-body-competition-homePage{
    height: 8rem;
}
.discover_us .card-body-orange-color {
    background-color: #EF9356;
}

.discover_us .card-body-second-color {
    background-color: var(--second-color);
}

.discover_us .card-body .btn {
    background-color: #fff;
    padding-inline: 1rem;
    /*margin: 0 .5rem;*/
    border-radius: 10px;
}

.discover_us .card-body .btn-main {
    color: var(--main-color);
    position: absolute;
    bottom: 14px;
}

.discover_us .card-body .btn-second {
    color: var(--second-color);
}

.discover_us .card-body .btn-orange {
    color: #EF9356;

}

.discover_us .card-body .btn-transparent {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    padding-inline: 2rem;

}

/* End discover_us */

/* Start need-help */
.need_help {
    height: 500px;
    display: grid;
    align-items: center;
}

.need_help .ninja_img img {
    width: 325px;
}

.need_help>* {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.need_help>img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

/* End need-help */

/* Start our_competition */
.competition_card {
    display: grid;
    grid-template-rows: 13rem;
    margin-bottom: 2rem;
}

.competition_card>* {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 0;
    color: #fff;


}

.our_competition .competition_img {
    position: relative;
    height: 100%;
    width: 100%;

}

.our_competition .competition_img img {
    height: 100%;
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
}

.our_competition .competition_img::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(260deg, rgba(0, 170, 212, 0.878431) 0%, rgba(174, 232, 247, 0.670588) 100%);*/
    border-radius: 10px;
}

.our_competition .comp-2::after {
    content: "";
    position: absolute;
    inset: 0;

    /*background: linear-gradient(260deg, rgba(239, 147, 86, 0.941176) 0%, rgba(250, 186, 142, 0.741176) 100%);*/
    border-radius: 10px;
}

.competition_card .competition_text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /*center;*/
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 1rem; 
}

.competition_card .competition_text .btn_competition {
    background: #fff;
    padding: .3em 1em;
}

/* End our_competition */

/* Start after_training */
.after_training,
.grid-train {
    display: grid;
}

.after_training>*,
.grid-train>* {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    color: #fff;
}

.grid-train img {
    width: 80%;
    margin: auto;
}

.grid-train p {
    width: 65%;
    margin: auto;
    font-size: 1.2rem;
}

/* End after_training */

/* Start demo_student_business */
.demo_student_business {
    background: #EEF4F5;
}

.demo__card {
    display: flex;
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 10px;
    gap: 1rem;
    cursor: pointer;
    /* width: 20rem; */
    height: 8rem;
}

.demo__card .demo-text {
    margin-top: 1rem;
}

.demo__card .img-demo img {
    height: 100%;
    width: 100%;
}

/* End demo_student_business */

/* Start opinions */
.opinions {
    position: relative;

}

.opinions img {
    position: absolute;
    height: 16rem;
}

.opinions .opinion {
    /* width: 100%; */
    /* max-width: 20rem; */
    /* margin: auto; */
    text-align: center;
    padding: 2rem;
    border-radius: 10px;

    background: var(--second-color);
    color: #fff;
}

.opinions .opinion.active {
    scale: 1.3;
}

.opinions img:nth-of-type(1) {
    top: -32px;
    right: -4rem;
}

.opinions img:nth-of-type(2) {
    bottom: -4rem;
    left: 0;
    z-index: 1;
}

/* End opinions */

/* Start our_reliance */
.our_reliance {
    position: relative;
    background: #EEF4F5;

}

.our_reliance .col-trust {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our_reliance .col-trust>img {
    width: 80%;
}

.our_reliance .stem {
    position: absolute;
}

.our_reliance .stem img {
    width: 70%;
    margin: auto;
}

/* End our_reliance */

/* Start map */
.map .line {
    background: rgba(0, 170, 212, .2);
    border-radius: 3px;
    height: 5px;
    width: 72%;
    margin: auto;
    position: relative;
    top: 6px;
    left: -8px;
}

.map ul {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    position: relative;

}

.map ul li {
    position: relative;
}

.map ul li::before {
    content: "";
    width: 9px;
    height: 9px;
    background-color: var(--second-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 15px;
}

.map ul li:nth-child(2)::before {
    background-color: gray;
}

.map ul li:nth-child(3)::before {
    background-color: var(--orange-color);
    /* left: 65px; */

}

.map ul li:nth-child(4)::before {
    background-color: var(--main-color);
}

.map ul li:nth-child(5)::before {
    background-color: #8FA5E5;
}

.map ul li:nth-child(1) {
    color: var(--second-color);
}

.map ul li:nth-child(2) {
    color: gray;
}

.map ul li:nth-child(3) {
    color: var(--orange-color);

}

.map ul li:nth-child(4) {
    color: var(--main-color);
}

.map ul li:nth-child(5) {
    color: #8FA5E5;
}

/* End map */

/* Start join_us */
.join_us {
    background: #EEF4F5;
}

.join_us .join__card>img {
    border-radius: 50%;
    height: 10rem;
    width: 10rem;
    margin: auto;
    object-fit: cover;
}

.join_us a.btn {
    width: 10rem;
    padding: 10px;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
}

.join_us a.second-color {
    background: var(--second-color);
}

.join_us a.orange {
    background: var(--orange-color);
}

.join_us a.gray {
    background: gray;
}

/* End join_us */

/* Start footer */


footer {
    background: var(--main-color);
    color: #fff;
}

footer .logo__text {
    line-height: 1.2;
    color: #fff;
    font-size: 16px;
    padding-bottom: 15px;
}

footer .navbar-nav .nav-link {
    color: #fff;
}

footer .input-group input {
    /* width: 50%; */
    height: 50px;
}

footer .input-group input[type="submit"] {
    background: var(--orange-color);
    font-size: .89rem;
    width: 50%;
}

footer .input-group input::placeholder {
    color: #D8D6EB;
}

/* End footer */


/************* Swiper Style *************/
.wrapper {
    max-width: 75rem;
    height: auto;
    position: relative;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

/* .swiper-slide,
.swiper-slide {
    padding-bottom: 2rem;
}*/

.swiper-button-next::after,
.swiper-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    border-radius: 50%;
    color: var(--white-100);
    background: var(--black-300);
}

.swiper-3d .swiper-slide-shadow {
    background-color: unset;
}

.swiper-slide:not(.swiper-slide-active) img:hover {
    opacity: 1
}



@media (min-width: 992px) and (max-width: 1200px) {
    .header-title {

        font-size: 2.5rem;
    }

    .navbar-nav .nav-item {
        margin: 0 !important;
    }

    .img-group-heder img {
        height: 13rem;
        width: 13rem;
    }

    .input-group input[type="submit"] {
        font-size: unset;
    }

}

@media (min-width: 576px) and (max-width: 992px) {
    .hero_img {
        height: 100%;
    }

    .img-group-heder {
        height: 22rem;
        transform: translateY(0);
    }

    .header-title {

        font-size: 2.5rem;
    }

    header .container {
        gap: 4rem;
    }

    .navbar__tow .get_our_app {
        width: fit-content;
        padding: 10px;
    }

    .navbar__tow .bg_light_blue {
        width: fit-content;
        padding: 0 26px;
    }

    .input-group input[type="submit"] {
        width: 50%;
    }

    .img-group-heder img {
        height: 12rem;
        width: 12rem;

    }

    .header-text p {
        font-size: 1.25rem;
        width: 100%;
    }

    .input-group input[type="submit"] {
        font-size: 1rem;
    }

    /*.need_help*/
    .need_help {
        align-items: unset !important;
        height: auto;
    }

    .need_help>img {
        height: unset;
    }

    .need_help .container {
        padding-top: 2rem;
    }

   /* .need_help .row {
        margin-right: 5rem !important;
        width: unset !important;
    }*/

    .need_help .ninja_col {
        display: none;
    }

    .need_help .input-group {
        width: 100%;
        max-width: 26rem;
    }

    /*after_training*/
    .grid-train img {
        width: 100%;
    }

    .grid-train p {
        width: 75%;
        font-size: 14px;
    }
    .opinions img:nth-of-type(2) {
        top: 18rem;
    }
    .discover_us .arrows {
        display: none;
    }
}

@media (max-width: 575.95px) {
    /*header {
         height: 100%;
    }*/
    .marginTopTitle{
        margin-top:130px;
    }
    .navbar__tow .get_our_app {
        width: fit-content;
        padding: 10px;
    }

    .navbar__tow .bg_light_blue {
        width: fit-content;
        padding: 0 26px;
    }

    .img-group-heder {
        height: 10rem;
        transform: translateY(-93px);
    }

    .img-group-heder img:nth-child(1) {
        transform: translate(50%, 0);
        z-index: 0;
    }

    .img-group-heder img:nth-child(3) {
        z-index: 2;
        transform: translate(-50%, 0px);
    }

    .img-group-heder img {
        border-radius: 50%;
        height: 9rem;
        width: clamp(9rem, 25vw, 11rem);

    }

    header .header-title {
        font-size: clamp(1.5rem, 5vw, 3rem);
        margin: 0 auto 5px !important;
        font-weight: bold;
        width: 100%;
        max-width: 18rem;
    }

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

    header .header-text p {
        font-size: inherit;
        width: unset;
    }

   /* .input-group input[type="submit"] {
         width: 50%;
         font-size: 14px;
         padding-inline: 1px;
    }*/

    /*why_us-*/

    .why_us .container .row .card {
        width: unset !important;
    }

    .why_us .container .row .card img {
        left: 0 !important;
    }

    .why_us .card .card-img-top {
        height: 60% !important;
    }

    .why_us .card .card-body {
        padding: 0;
    }

    .why_us .row .card-body p {
        line-height: 1.2;

    }

    .why_us-head p {
        font-size: 1rem;
        font-weight: bold;
    }

   /* .slider-section .wrapper {
        width: 18rem;
    }*/

    /*discover_us */
    .discover_us .arrows {
        display: none;
    }

    /*need_help*/
    .need_help {
        align-items: unset;
        height: unset;
    }

    .need_help .ninja_col {
        display: none;
    }

    .need_help>img {
        height: 80vh;

    }

    /*after_training*/
    .after_training .grid-train img {
        width: 100%;
        max-width: 25rem;
    }

    .grid-train p {
        font-size: .93rem;
    }

    /*demo_student_business*/
    /*.demo__card {
        width: 18rem;
    }*/

    .demo_student_business p {
        font-size: 1rem !important;
    }

    /*.opinions*/
    .opinions img:nth-of-type(1),
    .opinions img:nth-of-type(2) {
        display: none;
    }

    .opinions .opinion.active {
        scale: unset;
    }

    /* our_reliance */
    .our_reliance .col-trust>img {
        max-width: 12rem;
        width: 100%;
    }

    .our_reliance .stem img {
        width: 83%;
    }

    /*map*/
    .map .line {
        width: 100%;
        left: 0;
    }

    .map ul li small {
        font-size: 14px;
        line-height: 1;
    }

    .map ul {
        padding: 0;
        gap: .5rem;
    }

    .map ul li:nth-child(3)::before {
        left: 45%;
    }

    /*join us*/
    .join_us a.btn {
        border-radius: 20px;
    }

    /*footer*/
    footer .logo__text {
        line-height: 1.5;
    }

    footer p {
        font-size: .8rem;
    }

   /* footer .input-group input[type="submit"] {
         width: 50%;
         font-size: 13px;
    }*/

}

@media (min-width: 320px) and (max-width: 575px) {
    .join_us .join__card>img {
        width: 9rem;
        height: 8.5rem;
    }

    .need_help .input-group {
        width: 100%;
        max-width: 23rem;
    }

    .slider-section {
        max-width: 20rem;
        width: 100%;
        margin: 0 auto;
    }

    /*.need_help .row {
        /* margin-right: unset !important;
        /* width: unset !important;
        /* margin-top: 3rem;
    }*/

    .get-details-student-business-modelqq {
        width: 250px !important;
        margin-left: 30px !important;
    }

    .main-header {
        position: absolute !important;
        width: 100%;

    }

}

@media (max-width: 991px) {
    .hero img {
        width: 75%;
        margin-bottom: 10px;
        padding-top: 25px;
    }

    .hero .header-text {
        text-align: center !important;

    }
}

.competition_card .comp-1 {
    box-shadow: 3px 3px #25a8ca;
    border-radius: 12px;
}

.competition_card .comp-2 {
    box-shadow: 3px 3px #cf8b5d;
    border-radius: 12px;
}
.loginFormStyle{
    margin-right:16%;
}
@media (min-width:769px){
	.whatsappMobile{
		display:none;
	}
}
@media (max-width:768px){
	.whatsappComputer{
		display:none;
	}
	.whatsappMobile{
		display:block;
	}
    .discover_us .card-body-main-color {
        height: 9rem;
    }
    .discover_us .card-body-competition-homePage{
        height: 7rem;
    }
.input-group-help-registration{
        flex-wrap: nowrap;
    }
.nojustify p{
    text-align: start!important;
    }
.loginFormStyle{
    margin-right:auto;
    margin-top:70px;
    }
.z-index0{
    z-index:0!important;
}
.input-group-help-registration .btn{
    font-size: 12px;
}
}
.our_competition .card-body-main-color {
    background-color: var(--main-color);
}
