/****** ROOT ******/
:root{
    --global-gradient : linear-gradient(90deg, #0097b2 0%, #7ed957 100%);

    --global-color-01: #7ed957;
    --global-color-02: #0097b2;
    --global-color-03: #000000;
    --global-color-04: #ffffff;

    --animation-duraton-1000: 1000ms;

}
/****** GLOBAL ******/
html,
body {
    overflow-x: hidden;
}
body {
    background: var(--global-gradient) !important;
}
section{
    padding: 50px 0px;
}
h1, h2, h3, h4, p.h1-typeit{
    font-family: "700-DMSans-Bold";
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}
.middle-section-header{
    font-size: 65px !important;
    text-transform: uppercase;
}
.semibig-section-header{
    font-size: 110px !important;
    text-transform: uppercase;
}
.big-section-header{
    font-size: 170px !important;
    text-transform: uppercase;
}
p, span, a, button, input, label{
    font-size: 18px !important;
    font-family: "500-DMSans-Medium";
}
p span{
    font-family: "700-DMSans-Bold";
}
.middle-text{
    font-size: 25px !important;
    text-transform: uppercase;
}
p.width-60{
    width: 60%;
    display: block;
    margin: 0 auto;
}
a{
    text-decoration: none !important;
}
span.ti-cursor{
    display: none !important;
}
a.button-popup{
    background: var(--global-color-03) !important;
    color: var(--global-color-04) !important;
}
a.button-popup:hover{
    background: var(--global-color-04) !important;
    color: var(--global-color-03) !important;
    transition-duration: var(--animation-duraton-1000);
}

.lang-en #h1-animation-typeit-fa{
    display: none;
}
.lang-fa #h1-animation-typeit-en{
    display: none;
}



/****** SCROLLBAR ******/
::-webkit-scrollbar-button {
    background-image: url();
    background-repeat: no-repeat;
    width: 5px;
    height: 0;
}
::-webkit-scrollbar-track {
    background-color: var(--global-color-02);
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 15px;
    background-color: var(--global-color-01);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--global-color-01);
}
::-webkit-resizer {
    background-image: url();
    background-repeat: no-repeat;
    width: 4px;
    height: 0;
}
::-webkit-scrollbar {
    width: 5px;
}
/****** PRELOADER ******/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    background: var(--global-color-02);
    z-index: 99999;
}
.preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.preloader .loader .ytp-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}
.preloader .loader .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    -webkit-animation: ytp-spinner-linspin 1568.2353ms linear infinite;
    animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}
.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%;
}
.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%;
}
.preloader .loader .ytp-spinner-circle {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    border-color: var(--global-color-01);
    border-radius: 50%;
    border-width: 6px;
}
.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: var(--global-color-04);
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: var(--global-color-01);
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}
@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}
@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    }
    @keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}
@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    }
    @keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}
/****** HEADER ******/
header{
    padding-top: 30px;
    padding-bottom: 30px;
}
header nav.navbar{
    background-color: rgba(255, 255, 255, 0.0) !important;
}
header a.navbar-brand img{
    width: 150px;
}
header nav ul li a.button-popup{
    border-radius: 30px;
    width: 150px;
    text-align: center;
    font-family: "700-DMSans-Bold";
    text-transform: uppercase;
    animation: FullAnimation 1.2s infinite alternate;
}
header nav select:hover{
    background: var(--global-color-03);
    color: var(--global-color-04) !important;
    transition-duration: var(--animation-duraton-1000);
}
header nav select{
    height: auto;
    margin-left: 5px;
    background: var(--global-color-03);
    color: var(--global-color-04);
    height: 46.2px;
    width: 60px;
    text-align-last: center;
    margin-left: 30px;
    cursor: pointer;
    border: 0 !important;
    border-radius: 10px;
    outline: none !important; 
}
header nav select option {
    width: 50%;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}
/****** 1d SECTION ******/
#main-introduction .introduction{
    margin-bottom: 100px;
    position: relative;
}
#main-introduction .introduction h1{
    visibility: hidden !important;
    font-size: 55px !important;
    position: absolute;
    text-align: center;
}
#main-introduction .introduction p.h1-typeit{
    font-size: 55px !important;
    height: 180px;
}

#main-introduction .block-number span{
    border-radius: 100%;
    background: var(--global-color-03);
    color: var(--global-color-04);
    margin: 0 auto;
    width: 50px;
    height: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-family: "500-DMSans-Medium";
    font-size: 30px !important;
    margin-bottom: 15px;
    animation: FullAnimation 1s infinite alternate;
}
#main-introduction .block-number span:hover{
    background: var(--global-color-04);
    color: var(--global-color-03) !important;
    transition-duration: var(--animation-duraton-1000);
}
#main-introduction .block-number p{
    text-transform: uppercase;
    text-align: center;
    font-family: "700-DMSans-Bold";
    letter-spacing: 0.25rem;
}
/****** 2d SECTION ******/
#second-section-main .block-relative{
    position: relative;
}
#second-section-main h2{
    width: 50%;
}
#second-section-main p{
    position: absolute;
    top: -30px;
    left: 40%;
    right: 0%;
}
.lang-fa #second-section-main p{
    top: 170px;
}
/****** 3d SECTION ******/
#third-section-main .block-relative{
    position: relative;
}
#third-section-main p{
    position: absolute;
    top: -30px;
    right: 50%;
}
#third-section-main h3{
    width: 60%;
    margin-left: 40%;
}
.lang-fa #third-section-main h3{
    width: 100%;
    margin-left: 0;
}
/****** 4d 5d 6d SECTION ******/
#fourth-section-main h3.section-header,
#fifth-section-main h3.section-header,
#sixth-section-main h3.section-header{
    margin-bottom: 75px;
}
/****** 7d SECTION ******/
#seventh-section-main .block-relative{
    position: relative;
}

#seventh-section-main{
    padding-top: 150px;
}
#seventh-section-main h3.section-header{
    position: absolute;
    text-align: right;
    right: 35%;
    top: -150px;
    margin: 0;
    width: 50%;
} 
.lang-fa #seventh-section-main h3.section-header{
    right: 35%;
    top: -210px;
}
.lang-fa #seventh-section-main{
    padding-top: 200px;
}
#seventh-section-main p{
    text-transform: uppercase;
}
#seventh-section-main .block-step{
    position: relative;
    text-align: center;
}
#seventh-section-main .block-founder{
    width: 80%;
    margin-bottom: 50px;
}
#seventh-section-main .block-passion{
    width: 60%;
    margin-left: 40%;
    margin-bottom: 50px;
}
/****** 8d SECTION ******/
#eight-section-main .block-relative{
    position: relative;
}
#eight-section-main p{
    width: 45%;
}
#eight-section-main h3{
    position: absolute;
    bottom: -75px;
    left: 50%;
    width: 50%;
}
#eight-section-main p{
    margin-bottom: 40px;
}
#eight-section-main a.button-popup{
    border-radius: 30px;
    width: 70%;
    padding: 7.5px;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-family: "700-DMSans-Bold";
    text-transform: uppercase;
    animation: FullAnimation 1.2s infinite alternate;
}


/****** FORM + MODAL ******/
#join-us-popup p.modal-title,
#success-popup p.modal-title,
#donate-popup p.modal-title{
    color: var(--global-color-03);
    text-transform: uppercase;
}
#join-us-popup .modal-content,
#success-popup .modal-content,
#donate-popup .modal-content{
    background: var(--global-gradient) !important;
}
#join-us-popup .modal-header,
#success-popup .modal-header,
#donate-popup .modal-header{
    border-bottom: none !important;
}
#join-us-popup .modal-header .close-button,
#success-popup .modal-header .close-button,
#donate-popup .modal-header .close-button{
    cursor: pointer;
    box-shadow: none !important;
}
#join-us-popup form input.form-control,
#join-us-popup form textarea.form-control{
    margin-bottom: 15px;
}
#join-us-popup form textarea.form-control{
    height: 150px;
}
#join-us-popup form input.form-check-input{
    margin-right: 5px;
    margin-top: 5px;
    background-color: transparent;
    cursor: pointer;
}
#join-us-popup form button.form-control-send{
    background: var(--global-color-03) !important;
    color: var(--global-color-04) !important;
    border-radius: 30px;
    width: 100%;
    border: none;
}
#join-us-popup form input:focus,
#join-us-popup form textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}
#join-us-popup form input.form-check-input[type="checkbox"]:checked{
    background-color: var(--global-color-02);
}
#join-us-popup .form-check-input:checked[type=checkbox]{
    border: none !important;
}
#join-us-popup form input.form-check-input,
#join-us-popup form label.form-check-label{
    margin-bottom: 30px;
}
#join-us-popup form label.form-check-label{
    color: var(--global-color-03);
}


/****** FOOTER ******/
footer{
    padding: 70px 0px;
}
footer p{
    margin-bottom: 0px !important;
}
footer a.button-popup{
    border-radius: 30px;
    width: 180px;
    padding: 7.5px;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-family: "700-DMSans-Bold";
    text-transform: uppercase;
    animation: FullAnimation 1.2s infinite alternate;
}
footer div.social-networks{
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
footer div.social-networks a{
    margin: 0px 30px;
}
footer div.social-networks a img{
    width: 36px;
    height: 36px;
    animation: FullAnimation 1.5s infinite alternate;
}
footer div.social-networks a img:hover{
    fill: var(--global-color-04) !important;
    transition-duration: var(--animation-duraton-1000);
}

@keyframes FullAnimation {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
}





@media (max-width:1199.98px){  
    /****** GLOBAL ******/
    .middle-section-header{
        font-size: 45px !important;
    }
    .semibig-section-header{
        font-size: 90px !important;
    }
    .big-section-header{
        font-size: 120px !important;
    }
    p.width-60{
        width: 80%;
    }
    /****** 1d SECTION ******/
    #main-introduction .introduction p.h1-typeit{
        height: 250px;
    }
    /****** 2d SECTION ******/
    #second-section-main h2{
        width: 100%;
        text-align: center !important;
    }
    #second-section-main p{
        position: relative;
        top: 0px;
        left: 0%;
        right: 0%;
        text-align: center !important;
    }
    .lang-fa #second-section-main p{
        top: 0px !important;
    }
    /****** 3d SECTION ******/
    #third-section-main h3{
        width: 100%;
        margin-left: 0%;
        text-align: center !important;
    }
    /****** 7d SECTION ******/
    #seventh-section-main{
        padding-top: 50px;
    }
    #seventh-section-main h3.section-header{
        text-align: center !important;
        position: relative;
        right: auto;
        top: auto;
        margin: 0;
        width: 100%;
        margin-bottom: 75px;
    }
    #seventh-section-main .block-founder{
        width: 100% !important;
        margin-bottom: 50px;
    }
    #seventh-section-main .block-passion {
        width: 100%;
        margin-left: 0%;
        margin-bottom: 50px;
    }
    #seventh-section-main .block-expierence{
        margin-bottom: 50px;
    }
    #seventh-section-main .block-partner{
        margin-bottom: 50px;
    }
    .lang-fa #seventh-section-main{
        padding-top: 50px;
    }
    .lang-fa #seventh-section-main h3.section-header{
        right: 0%;
        top: 0px;
    }
    /****** 8d SECTION ******/
    #eight-section-main h3{
        text-align: center !important;
        position: relative;
        bottom: 0%;
        left: 0%;
        width: 100%;
        margin-bottom: 75px;
    }
    #eight-section-main p{
        width: 100%;
    }
    #eight-section-main a.button-popup{
        width: 50%;
        font-size: 35px !important;
    }
    /****** 9d SECTION ******/
    #ninth-section-main h3{
        text-align: center !important;
        margin-bottom: 75px;
    }
}

@media (max-width:991.98px){
    /****** GLOBAL ******/
    header nav select{
        margin-bottom: 10px;
    }
    p.width-60{
        width: 100%;
    }
    /****** 1d SECTION ******/
    #main-introduction .row div:nth-child(2) > div,
    #main-introduction .row div:nth-child(3) > div,
    #main-introduction .row div:nth-child(4) > div{
        margin-bottom: 30px;
    }
    /****** FOOTER ******/
    footer div.social-networks{
        margin-top: 30px;
    }

}
@media (max-width:767.98px){
    /****** GLOBAL ******/
    .middle-section-header{
        font-size: 30px !important;
    }
    .semibig-section-header{
        font-size: 70px !important;
    }
    .big-section-header{
        font-size: 90px !important;
    }
    /****** FOOTER ******/
    footer h4,
    footer p{
        text-align: center;
    }
    footer p a.button-popup{
        margin-top: 30px;
        margin-bottom: 15px;
    }

}
@media (max-width:575.98px){



    /****** GLOBAL ******/
    .middle-section-header{
        font-size: 25px !important;
    }
    .semibig-section-header{
        font-size: 50px !important;
    }
    .big-section-header{
        font-size: 60px !important;
    }
    p, span, a, button, input, label{
        font-size: 16px !important;
    }
    .middle-text{
        font-size: 20px !important;
    }
    /****** HEADER ******/
    header a.navbar-brand img{
        width: 120px;
    }
    header nav ul li a.button-popup{
        width: 100px;
    }
    /****** 1d SECTION ******/
    #main-introduction .introduction p.h1-typeit{
        font-size: 30px !important;
        height: 140px !important;
    }
    #main-introduction .row div:nth-child(5) > div{
        margin-bottom: 30px;
    }
}

@media (max-width:369.98px){
        /****** HEADER ******/
        header a.navbar-brand img{
            width: 60px;
        }


}