/* FontS
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;900&display=swap');

/* General 
==============================*/
*,
*:focus {
    outline: none !important;
}

:root {
    --main_color: #1c74bb;
    --second_color: #f77307;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    overflow: hidden;
    width: 100%;
    color: #0c1335;
    letter-spacing: 1px;
}

.shadow {
    -webkit-box-shadow: 0 .3rem 0.8rem rgba(0, 0, 0, .05) !important;
    box-shadow: 0 .3rem 0.8rem rgba(0, 0, 0, .05) !important;
}

/* Page Setting
===============================*/
section {
    padding: 70px 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

section .row {
    position: relative;
    z-index: 99
}

.main_screen:before,
.main_screen:after {
    display: none
}

section:before,
section:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 360px;
    background: url(../images/side_shap.png) left no-repeat;
    background-size: cover;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    z-index: 0;
    opacity: 0.3;
}

section:after {
    right: auto;
    left: 0;
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}

section.colored {
    background-color: #fcfcfe;
}

.section-title {
    margin: 0 auto 25px auto;
    text-align: center;
}

.section-title h3 {
    display: block;
    text-transform: uppercase;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 4px;
    margin: 0 0 25px 0;
    font-weight: 900;
    color: var(--main_color);
}

.section-title p {
    font-size: 14px;
    letter-spacing: 1.5px;
}

@media all and (max-width:767px) {
    section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 18px;
        line-height: 20px;
    }
}

/* Links 
==============================*/
a,
a:hover,
a:focus {
    cursor: pointer;
    text-decoration: none;
}

/* Lists  
==============================*/
ul,
li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

/*Images
==============================*/
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/*Form Inputs
==============================*/
.form-group {
    margin: 10px auto;
    position: relative;
}

.form-title {
    text-align: center;
    color: #1C1E1C;
    letter-spacing: 1px;
    line-height: 30px;
    margin: 15px auto;
    font-size: 18px;
    text-transform: uppercase;
}

label {
    display: block;
    color: #1C1E1C;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: left;
}

.form-control {
    background-color: #fff;
    color: var(--main_color);
    border: 1px solid #F6F6F6;
    margin: 15px auto;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    border-radius: 3px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #fff;
    opacity: 1;
}

.form-control:hover,
.form-control:focus {
    outline: 0;
    background-color: #fff;
    border: 1px solid #F6F6F6;
    -webkit-box-shadow: none;
    box-shadow: none;
}

textarea.form-control {
    height: 120px !important;
    resize: none;
    overflow-x: hidden;
    line-height: 18px;
    font-size: 11px;
    padding: 10px 15px;
}

.custom_btn {
    color: #fff;
    padding: 0 15px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    background-color: var(--second_color);
    border: 0;
}

/* Header
==============================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    z-index: 999;
}

header.move {
    background-color: var(--main_color);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(115, 102, 255, 0.25);
    box-shadow: 0px 0px 10px 0px rgba(115, 102, 255, 0.25);
    -webkit-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
}

header .navbar {
    padding: 0;
    margin: 0;
}

header .navbar-brand {
    height: 80px;
    padding: 20px 0;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    z-index: 999;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .navbar-brand img {
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    margin-right: 5px;
}
header .header-btns {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px 0;
    height: 80px;
    z-index: 999;
}

header .header-btns a {
    color: #fff;
    padding: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 3px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    background-color: var(--second_color);
}

header .header-btns a:hover {
    background-color: #191919;
    color: #fff;
}
.disabled{
    cursor: none;
    pointer-events: none;
}
header .header-btns .hint{
    position: absolute;
    color: var(--second_color);
    font-size: 11px;
    text-transform: uppercase;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 5px;
}
header.move .header-btns a{
    margin-top: -8px
}
header.move .header-btns .hint{
    color: #fff;
}

/* Main Screen
============================*/
.main_screen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
    padding: 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    z-index: 99;
    background: url(../images/bc.jpg) center no-repeat;
    background-size: cover;
}

.intro {
    margin-top: 50px;
    text-align: left;
}

.main_screen h1 {
    color: #fff;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 7px;
    margin: 25px 0;
}

.main_screen p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    margin: 25px 0;
}

.main_screen .intro a {
    background-color: var(--second_color);
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    position: relative;
    padding: 0 25px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.awards {
    color: #fff;
    text-align: center;
    font-size: 75px;
    font-weight: 600;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 7px;
    -webkit-text-stroke: 4px var(--second_color);
    margin-top: 60px;
}

.awards span {
    display: block;
    font-size: 27px;
    color: #fff;
    -webkit-text-stroke: 0;
    letter-spacing: 3px;
    max-width: 270px;
    margin: 15px auto 0;
    line-height: 35px;
    font-weight: 600;
}

.about-content h3 {
    font-weight: 900;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--main_color);
    letter-spacing: 3px;
    margin: 0 0 25px 0;
}

.about-content p {
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

.about-img img {
    width: 100%;
    margin: 15px auto;
    border-radius: 5px;
}

.about-img span {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    color: #000;
}

.partner {
    padding: 25px;
}

.learn .about-content {
    max-width: 576px;
    margin: 25px 0;
}
.learn .about-content.w-100{
    max-width: 100%;
}

.learn .about-content h3 {
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    text-transform: inherit;
    letter-spacing: 2px;
}

.learn .about-content p span {
    color: var(--second_color);
    display: block;
    font-weight: 600;
}

.learn_form {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    margin: auto;
    text-align: center;
}

.learn_form .form-title {
    color: var(--second_color);
    font-weight: 600;
    max-width: 270px;
}

.challenge {
    background-color: #fff;
    display: block;
    position: relative;
    margin: 25px auto;
    overflow: hidden;
    border-radius: 5px;
    min-height: 330px;
}

.challenge img {
    width: 100%;
}

.challenge h3 {
    margin: 0 25px 25px 25px;
    color: var(--main_color);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    min-height: 40px;
}
.challenge .custom_btn{
    margin: -7px 0 15px 20px;
    line-height: 30px;
    font-size: 12px;
}
.challenge span {
    display: block;
    color: var(--second_color);
    font-weight: 600;
    font-size: 16px;
    margin: 25px 25px 10px 25px;
}

.step {
    margin: 15px auto;
    background-color: #fcfcfe;
    padding: 25px;
    border-radius: 5px;
}

.step span {
    display: block;
    color: var(--second_color);
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 15px 0;
}

.step h3 {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
}

.step p {
    margin: 0;
    color: var(--main_color);
    font-size: 14px;
}


/* Footer
==========================*/
footer {
    padding: 25px 0;
    background-size: cover;
    position: relative;
    background-color: var(--main_color);
    text-align: center;
}

footer .up-btn {
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--second_color);
    border: 0;
    color: #fff;
    font-size: 18px;
}

footer .copyright {
    color: #fff;
    font-size: 12px;
    margin: 25px auto 0;
    text-align: center;
    text-transform: uppercase;
}

footer a {
    display: inline-block;
}

.scroll {
    position: absolute;
    width: 154px;
    height: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.scroll .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    -webkit-animation: move 3s ease-out infinite;
    animation: move 3s ease-out infinite;
    left: 0;
    right: 0;
    margin: auto;
}

.chevron:first-child {
    -webkit-animation: move 3s ease-out 1s infinite;
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    -webkit-animation: move 3s ease-out 2s infinite;
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background-color: #fff;
}

.chevron:before {
    left: 0;
    -webkit-transform: skew(0deg, 30deg);
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    -webkit-transform: skew(0deg, -30deg);
    transform: skew(0deg, -30deg);
}

@-webkit-keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.scroll .text {
    display: block;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    opacity: .25;
    -webkit-animation: pulse 2s linear alternate infinite;
    animation: pulse 2s linear alternate infinite;
    margin: 65px auto 0;
}

@-webkit-keyframes pulse {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--main_color)
}

.loader_cont {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    text-align: center;
    border: 3px dashed var(--second_color);
}

.loader_cont img {
    width: 60px;
    margin: 17px auto 20px 20px;
}

.loader_cont span {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.loader_cont span:before {
    width: 20px;
    height: 20px;
    content: " ";
    position: absolute;
    top: 5px;
    left: 0;
    margin: auto;
    border-radius: 50%;
    background-color: var(--main_color);
}

/* Scroll
==============================*/
::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
    background-color: var(--second_color);
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: var(--second_color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--third_color);
    border-radius: 5px;
}

@media all and (max-width: 1200px) {
    .main_screen h1 {
        font-size: 42px;
    }

    .awards {
        font-size: 64px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .challenge {
        min-height: auto;
    }

    .challenge h3 {
        font-size: 15px;
    }

    .step h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

@media all and (max-width: 991px) {
    .main_screen {
        display: block;
        height: auto;
        padding: 70px 0 120px;
        text-align: center;
    }

    .intro {
        text-align: center;
    }

    .intro h1 {
        font-size: 44px;
    }

    .learn .about-content {
        max-width: 100%;
    }
}

@media all and (max-width: 768px) {

    [data-aos^="fade"][data-aos^="fade"],
    [data-aos="fade-up"],
    [data-aos^="zoom"][data-aos^="zoom"] {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }

    .intro h1 {
        font-size: 26px;
        letter-spacing: 3px;
        margin: 0;
    }

    .intro p {
        margin: 0 auto 15px;
        font-size: 14px;
    }

    .awards {
        letter-spacing: 5px;
        margin-top: 30px;
        font-size: 34px;
        -webkit-text-stroke-width: 2px;
    }

    .awards span {
        font-size: 16px;
        margin: 5px auto 0;
        line-height: 25px;
    }

    .learn .about-content {
        max-width: 100%;
    }

    .section-title {
        margin-bottom: 0;
    }

    .section-title h3,
    .about-content h3,
    .learn .about-content h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin: 0 0 15px 0;
        line-height: 30px;
    }

    .section-title p {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .partner{
        text-align:center;
        padding: 5px;
        max-width: 200px;
        margin: auto;
    }
    .partner img{
        margin:auto;
    }
}
@media all and (max-width: 576px){
    header{
        padding: 0 15px;
    }
    header .navbar-brand{
        font-size: 12px;
        letter-spacing: 1px;
    }
    header .navbar-brand img{
        width: 31px;
        height: auto;
    }
    .learn_form{
        padding: 25px;
    }
      .intro h1 {
        font-size: 18px;
        letter-spacing: 2px;
        margin: 0;
    }

    .intro p {
        margin: 0 auto 15px;
        font-size: 12px;
        line-height: 20px;
    }
    .main_screen .intro a{
        font-size: 12px;
    }
    header .header-btns a{

padding: 0 8px;

font-size: 10px;

font-weight: 400;

}
    header .header-btns .hint{
        
font-size: 7px;
    }
}
/* Modal
==================*/
.modal {
    z-index: 9999;
}

.modal-open {
    overflow: hidden !important;
}

.modal-body {
    padding: 25px 25px 15px;
    color: #212121;
    line-height: 25px;
    overflow: hidden;
    font-size: 12px;
}

.modal-body .icon-btn {
    font-size: 22px;
    margin: auto;
    color: #1C1E1C;
    background-color: transparent;
    position: absolute;
    right: 15px;
    top: 15px;
    border: 0;
}

.modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    margin: 0;
    z-index: 98;
}

.modal-body .form-group {
    margin: 25px auto 0;
}

.modal-body label {
    color: #212121;
    font-size: 14px;
}

.modal-body h3 {
    color: #1C1E1C;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px auto;
}

.modal-body p {
    max-width: 480px;
    margin: 15px auto;
    line-height: 20px;
}

.modal-dialog {
    overflow: hidden;
    padding: 0;
    border-radius: 5px;
    margin: 40px auto 0;
    width: 98%;
    max-width: 576px;
}
.ar_font{
    direction: rtl;
    text-align: right;
    letter-spacing: 0;
}
.ar_font h3{
    letter-spacing: 0;
    font-family: monospace;
}
.ar_font p{     
    font-size: 15px;
}