@font-face {
    font-family: 'MyVazir';
    src: url('Vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyVazirBold';
    src: url('Vazir-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MyNadine';
    src: url('Mj_Nadine_0.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}



* {
    font-family: 'MyVazir';
}

.gone{
    display: none!important;
}

body {
    margin: 0;
}

.main {
    width: 100%;
    height: 100vh;
    background-color: #303030;
}

.box {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.header_box {
    margin-top: 20px;
    width: 100%;
    height: 10%;
    background-color: #30F75F;
    box-shadow: 0 0 100px #00ff3c;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.header_links{
    margin-right: 40px;
}

.header_links>a{
    color: #303030;
    /*font-weight: bold;*/
    margin: 0px 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: none;
    transition: 500ms;
}

/*.header_links>a:hover{*/
/*    color: #303030;*/
    /*font-weight: bold;*/
/*    margin: 0px 10px;*/
/*    text-decoration: none;*/
    /*font-size: 17px;*/
/*    font-weight: bold;*/
/*}*/

.header_links .selected{
    background-color: #85FFA2;
    padding: 10px 20px;
    border-radius: 20px;
}

/*.header_links .selected:hover{*/
/*    background-color: #FFEE98;*/
/*    padding: 10px 20px;*/
/*    border-radius: 20px;*/
/*}*/

.header_img{
    width: 50px;
    margin: 0 auto;
    position: fixed;
    right: 40%;
    left: 40%;
}

.content_box {
    width: 80%;
    height: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_box_v {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_box_h {
    margin: 0 auto;
    display: flex;
    width: 100%;
}

.right {
    width: 50%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.title {
    width: 80%;
    font-size: 30px;
    font-weight: bold;
}

.title .name {
    color: #00C2FF;
    /*font-family: 'MyNadine'!important;*/
}

.title .verb {
    color: white;
}

.sub_title {
    width: 80%;
    font-size: 12px;
    margin-top: 15px;
}

.sub_title>span {
    color: white;
}

.green_btn {
    width: 100px;
    height: 55px;
    background-color: #30F65F;
    border-radius: 15px;
    font-size: 15px;
    border-style: solid;
    border-color: #30F65F;
    margin-left: 20px;
    transition: 500ms;
    cursor: pointer;
    /*text-decoration: none;*/
    /*padding: 10px 20px;*/
}

.green_btn:hover {
    width: 100px;
    height: 55px;
    background-color: #30f65e60;
    border-radius: 15px;
    font-size: 17px;
    font-weight: bold;
    border-style: solid;
    border-color: #30f65e60;
    margin-left: 20px;
    color: white;
    /*text-decoration: none;*/
}

.normal_btn {
    width: 100px;
    height: 55px;
    background-color: transparent;
    border-radius: 15px;
    font-size: 15px;
    border-style: solid;
    border-color: #ECD14B;
    color: #ECD14B;
    margin-left: 20px;
    transition: 500ms;
    cursor: pointer;
}

.normal_btn:hover {
    width: 100px;
    height: 55px;
    background-color: #ECD14B;
    border-radius: 15px;
    font-size: 17px;
    font-weight: bold;
    border-style: solid;
    border-color: #ECD14B;
    color: #303030;
    margin-left: 20px;
}


.left {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img_box {
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.img_box>img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}



.footer_box {
    width: 100%;
    height: 10%;
    background-color: #F63030;
    box-shadow: 0 0 100px #FF0000;
    border-radius: 20px;
    margin-bottom: 20px;
}





















/* ----- Desktop First ----- */
/* X-Large devices (large desktops, less than 1400px) */
@media(max-width: 1399.98px) {
    .box {
        width: 0;
        height: 0;
        display:none;
    }
}

/* Large devices (desktop, less than 1200px) */
@media(max-width: 1199.98px) {
    .box {
        width: 0;
        height: 0;
        display:none;
    }
}

/* Medium devices (tablets, less than 992px) */
@media(max-width: 991.98px) {
    .box {
        width: 0;
        height: 0;
        display:none;
    }
   
}

/* Small devices (landscape phones, less than 768px) */
@media(max-width: 767.98px) {
    .box {
        width: 0;
        height: 0;
        display:none;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media(max-width: 575.98px) {
    .box {
        width: 80%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
}