/*-------------Global font-family------------*/
@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Julius Sans One";
    src: url('../fonts/Julius/JuliusSansOne-Regular.ttf') format('truetype');
}

/*-------------Global font-family------------*/

body {
    font-family: "Inter";
    font-weight: normal;
    background-color: #FFFFFA;
}

p,
a,
ul li,
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
    font-family: "Inter";
}

.custom-btn {
    background-color: #CA8E43;
    color: #fff !important;
    border: 2px solid #CA8E43;
    border-radius: 5px;
    font-size: 18px;
}

.custom-btn:hover {
    background-color: #CA8E3F;
    color: #fff !important;
}

.bg-yellow {
    background-color: #CA8E3F;
}

.bg-cyan {
    background-color: #ecf8ff;
}

.container {
    width: 100%;
    max-width: 1375px;
}

.newly-released .container {
    max-width: 1170px;
}

.p-50 {
    padding: 40px 0;
}

.pt-50 {
    padding-top: 50px;
}

.pt-30 {
    padding-top: 30px;
}

.p_30 {
    padding: 30px;
}

h2.mait-title {
    font-size: 30px;
    font-weight: bold;
    color: #4C7389;
    padding-bottom: 40px;
}

.bg-light {
    background-color: #DDEDE8 !important;
}

/*---------------header css start----------------------*/
header#header {
    position: absolute;
    width: 100%;
    z-index: 999;
}

header span.quality-text {
    font-size: 12px;
}

header .navbar[class*=bg-] {
    border-bottom: none !important;
    padding: 40px 0;
}

header nav.navbar {
    background-color: transparent !important;
}

header .navbar .navbar-nav .nav-item a {
    color: #4C7389 !important;
    font-size: 14px !important;
    font-family: "Inter";
    padding-left: 0 !important;
    font-weight: 600 !important;
}

header .navbar .navbar-nav .nav-item:hover a {
    color: #CA8E3F !important;
}

li.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

select.language-selector {
    color: #CA8E3F;
    border: none;
    background-color: transparent;
    font-size: 14px;
}

button.btn.donate {
    background-color: #fff;
    border: 3px solid #CA8E3F;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    font-family: "Inter";
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    position: absolute;
    right: 30px;
    top: 30px;
    color: #4C7389;
}

button.btn.donate:active,
button.btn.donate:focus,
button.btn.donate:hover {
    background-color: #CA8E3F;
    color: #fff;
    opacity: 1;
}

header ul.navbar-nav li.nav-item.dropdown .dropdown-menu {
    animation: growDown 500ms ease-in-out forwards;
    transform-origin: top center;
    padding: 0;
    left: 0;
    background-color: #CA8E3F;
    margin-top: 0;

}

header ul.navbar-nav li.nav-item.dropdown .dropdown-menu li {
    padding: 5px 10px;
    border-bottom: 1px solid #fff;
}

header ul.navbar-nav li.nav-item.dropdown .dropdown-menu li:hover {
    background-color: #4C7389 !important;
}

header ul.navbar-nav li.nav-item.dropdown .dropdown-menu a {
    color: #fff !important;

}

header ul.navbar-nav li.nav-item.dropdown .dropdown-menu a:hover {
    background-color: transparent !important;
}

header .navbar[class*=bg-] .navbar-nav>.nav-item>.nav-link:hover {
    background: transparent !important;
}

header .navbar .navbar-nav .nav-item {
    padding: 0 2px;
}

button.hmtoggler span.navbar-toggler-icon {
    background-image: url("../images/menu.png") !important;
    background-color: transparent !important;
}

div.site button.hmtoggler span.navbar-toggler-icon {
    background-image: url("../images/close.png") !important;
    width: 13px;
    /* height: 20px;*/
}

button.hmtoggler {
    background-color: transparent;
    border: none;
    padding-right: 10px;
}

select.language-selector option {
    text-align: center;
}
.login-btn {
    position: absolute;
    right: 74px;
}
.header-search i {
    color: #fff;
    font-size: 18px;
}
.header-search {
    position: absolute;
    right: 247px;
    top: 50%;
    transform: translateY(35%);
}
.mega-menuContainer .login-btn {
    position: unset;
    right: unset;
}
/*dsfhdsfn*/
.language-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.language-selector-wrapper {
    position: relative;
    display: inline-block;
}

.language-selector-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 5 Solid";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #CA8E3F;
    border: 1px solid #CA8E3F;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 1px;
}

@-moz-keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@-o-keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@-moz-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

/*---------------header css start----------------------*/
/*---------------banner css start----------------------*/
section.banner .container-fluid {
    padding: 0;
}

section.banner .container-fluid .row {
    margin: 0;
}

section.banner .container-fluid .row .col-md-6 {
    padding: 0;
}

.swiper-slide img {
    width: 100%;
}

.logo-part {
    padding-bottom: 7rem;
    padding-left: 5rem;
}

.left-content {
    padding-left: 15px;
}

.left-content h1 {
    color: #4C7389;
    font-size: 40px;
    font-weight: 600;
    font-family: "Inter";
    line-height: 1;
}

ul.scheduled {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-intro-box p {
    font-size: 15px;
    line-height: normal;
}

p {
    font-size: 20px;
    color: #4C7389;
    /*  font-weight: 100;*/
}

.join-btn {
    background-color: #fff;
    border: 2px solid #CA8E3F;
    font-weight: 600;
    border-radius: 8px;
    font-size: 12px;
    margin: 0 auto;
    font-family: "Julius Sans One";
}

.join-part {
    background-color: #ECF8FF;
    border-radius: 7px;
    padding: 15px;
    margin-left: 5rem;
    margin-right: 5rem;
}

.join-part p {
    font-size: 14px;
    line-height: 1.2;
    color: #0E366A;
    max-width: 75%;
    margin: 0 auto;
}

.join-part p a {
    font-size: 14px;
    line-height: 1.2;
    color: #0E366A;
    font-weight: 600;
}

.banner-left {
    padding-top: 15rem;
}

.annoncement {
    margin-left: 5rem;
    margin-right: 5rem;
    margin-top: 10rem;
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.annoncement p {
    font-size: 15px;
    line-height: 1.3;
    z-index: 1;
    position: relative;
}

ul.scheduled li {
    padding: 0 15px;
    font-family: "Inter";
    z-index: 1;
}

ul.scheduled li i:before {
    font-size: 18px;
}

ul.scheduled li span {
    font-family: "Inter";
    font-size: 18px;
}

.annoncement a {
    padding: 10px 20px;
    margin: 0 auto;
    display: flex;
    width: max-content;
    z-index: 1;
    position: relative;
}

marquee {
    font-size: 25px;
    font-weight: bold;
}

section.banner {
    height: 1020px;
}

section.inner-page-banner {
    height: 100vh;
}

section.banner .swiper-slide img {
    width: 100%;
    height: 1020px;
    object-fit: cover;
    object-position: top;
}

section.inner-page-banner .swiper-slide img {
    height: 100vh;
}

section.banner .swiper-button-prev {
    background-image: url("../images/prev.png");
    width: 20px;
    height: 20px;
    background-size: contain;
    top: auto;
    left: 30%;
    bottom: 54px;
}

section.banner .swiper-button-next {
    background-image: url("../images/next.png");
    width: 20px;
    height: 20px;
    background-size: contain;
    top: auto;
    left: 67%;
    bottom: 54px;
}

.swiper-pagination {
    position: absolute;
    bottom: 57px !important;
    right: 50%;
    width: 100% !important;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 10px;
}

.swiper-pagination-bullet {
    padding: 2.5px 2.5px;
    /* border-radius: 0; */
    width: auto;
    height: 3px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    /* background: rgba(0,0,0,0.2); */
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #fff;
    padding: 6px;
}

.join-btn:hover {
    color: #fff !important;
    opacity: 1;
    border: 2px solid #CA8E3F;
    background-color: #CA8E3F !important;
}

/*---------------banner css End----------------------*/

/*---------------Newly-Released parvez-shahvazi css Start----------------------*/
video {
    width: 100%;
    cursor: pointer;
}

.block_video img {
    cursor: pointer;
}

.newly-released .row {
    align-items: flex-start;
}

a.vedio-name {
    color: #4C7389;
    font-size: 24px;
}

p.date {
    color: #4C7389;
    font-size: 16px;
    margin-bottom: 0;
}

.video-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.vedio_right .block_video {
    display: flex;
    align-items: flex-start;
}

.vedio_right .block_video .row {
    align-items: center;
}

.vedio_right .block_video .video-caption {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
    padding-left: 15px;
    width: 45%;
}

.vedio_right a.vedio-name {
    font-size: 20px;
    line-height: normal;
}

.vedio_right video {
    height: 156px !important;
}
a.btn.custom-btn.view-all {
    width: auto;
    margin: 0 auto;
    margin-top: 30px;
}
/*---------------Newly-Released parvez-shahvazi  css End----------------------*/

/*---------------Newly-Released members css Start----------------------*/
.newmly-released-inner.bg-light {
    border-radius: 15px;
}

.newly-released-member .video-caption {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

.newly-released-member a.vedio-name {
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
}

.caption-bottom p,
.author {
    font-size: 15px;
    margin-bottom: 0;
    color: #4C7389;
    line-height: normal;
}

.caption-bottom {
    padding-top: 12px;
}

.newly-released-member .block_video .row {
    align-items: center;
}

.block_audio .row,
.block_text .row {
    align-items: center;
}

/*---------------Newly-Released members css end----------------------*/
/*--------------- mega menu -----------------*/
.menu-open {
    overflow-x: hidden;
}

.menu-open .mega-menuContainer {
    width: 50vw;
}

.menu-open .mega-menuContainer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow: scroll;
    padding: 0;
    /* width: 100vw; */
    background: #FEFBF3;
    z-index: 9;
    padding-top: 13px;
    padding-left: 5.5vw;
    padding-right: 4.25vw;
}

.menu-open #pageSet {
    transform: translateX(50vw);
}

.site {
    overflow-y: hidden;
}

.site::after {
    content: "";
    opacity: 0;
}

.menu-open .site::after {
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    background: var(--color-cloud);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.4s cubic-bezier(0.15, 0.53, 0.35, 1);
}

.menu-open .site {
    z-index: 1;
    position: relative;
    min-height: 100vh;
    background: var(--color-cloud);
    transition: transform 0.4s cubic-bezier(0.15, 0.53, 0.35, 1);
    opacity: 0.6;
}

.menu-openToggle {
    overflow: hidden;
}

.menu-open .mega-menu-container {
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.menu-open .site {
    overflow: hidden;
    height: 100vh;
}

#pageSet.menu-close {
    transform: translateX(0vw);
}

.menu-open .fa.fa-times {
    position: absolute;
    top: 46px;
    font-size: 20px;
    cursor: pointer;
    left: 88px;
}

.mega-menuContainer.megaMenuon ul.navbar-nav {
    padding-top: 13%;
}

.mega-menuContainer.megaMenuon ul.navbar-nav ul.dropdown-menu {
    display: block;
    background-color: transparent;
    box-shadow: none !important;
}

.mega-menuContainer.megaMenuon ul.navbar-nav .nav-link.dropdown-toggle::after {
    display: none !important;
}

.mega-menuContainer {
    display: none;
}

.mega-menuContainer.megaMenuon {
    display: block;
}


/*-----------------------footer-section-css--starts-here---------------------------*/
footer {
    background-color: #ECF8FF;
    color: #4C7389;
}

.social-icons-footer ul {
    padding: 0;
    margin: 0;
}

.social-icons-footer ul li {
    list-style-type: none;
    margin: 0 6px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons-footer ul li a {
    font-size: 16px;
    color: #fff;
}

.social-icons-footer li {
    border: 1px solid #4c7389;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
    background-color: #4c7389;
}

.social-icons-footer li:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #78c2b3;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.social-icons-footer li:hover:before {
    -webkit-transform: scale(1);
    background-color: #fff;
}

.social-icons-footer li:hover a {
    color: #4c7389;
}

.social-icons-footer li:hover {
    border-color: #4c7389;
}

footer.p-50 {
    background-color: #DDEDE8;
    color: #4C7389;
    padding: 16px 0;
    margin-top: 7rem;
}

/*-----------------------footer-section-css--ends-here---------------------------*/

/*-----------------------About-Us-section-css--starts-here---------------------------*/
.right-slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}

.block_right {
    background-color: #fff;
    padding: 30px;
    margin-left: -65px;
    z-index: 1;
    position: relative;
}

.khane-mowlana .block_right {
    margin-right: 0;
    margin-left: 0;
    background-color: transparent;
}

.khane-mowlana .row {
    border-radius: 15px;
}

.khane-mowlana .col-6.col-md-6 {
    padding: 0;
}

.khane-mowlana .block_left img {
    border-radius: 0 15px 15px 0;
}

.about-parviz .row,
.khane-mowlana .row {
    align-items: center;
}

.Ganje-Hozour h2.mait-title.text-center {
    padding-bottom: 0;
}

.about p {
    font-size: 15px;
}

.khane-mowlana h2.mait-title {
    padding-bottom: 0;
}

/*-----------------------About-Us-Page-css--ends-here---------------------------*/
/*-----------------------Contact-Us-Page-css--starts-here---------------------------*/
.contct-form {
    /*max-width: 60%;
    margin: 0 auto;*/
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
}

.contct-form select {
    color: #65686b;
}

.contact-icon {
    color: #fff;
}

.contact-icon ul li {
    list-style-type: none;
    display: block;
    padding-bottom: 30px;
}

.contact-icon ul li a {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
}

.contact-icon ul li p {
    font-size: 24px;
    font-weight: bold;
}

.contact-icon ul li a i {
    background-color: #fff;
    padding: 14px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #CA8E3F;
    font-size: 32px;
}

.contact-page-section {
    position: relative;
}

.contact-page-section:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 71%;
    background-color: #4c7389;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.contact-page-section .row {
    align-items: center;
}

/*-----------------------Contact-Us-Page-css--starts-here---------------------------*/

/*-----------------------Activities-Page-css--starts-here---------------------------*/
.farsi-block .card img {
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.farsi-block .card:hover {
    transform: scale(1.02);
    transition: all 0.4s cubic-bezier(0.15, 0.53, 0.35, 1);
}

.farsi-class h2.mait-title {
    padding-bottom: 0;
}

.farsi-class .title-row p {
    font-size: 20px;
    font-style: italic;
    max-width: 80%;
    margin: 0 auto;
}

.farsi-class p.card-text {
    font-size: 15px;
    line-height: 1.5em;
}

.farsi-class .card-title {
    color: #4c7389;
}

/*-----------------------Activities-Page-css--ends-here---------------------------*/

/*-----------------------Login-Page-css--starts-here---------------------------*/
section.banner-inner {
    height: 70vh;
}

section.banner-inner .right-slider img {
    height: 70vh;
}

section.banner-inner {
    background-color: #ecf8ff;
}

.form-sec .form-common {
    max-width: 50%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    margin-top: 5rem;
    background-color: #fff !important;
}

.form-sec .logo-part {
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    flex-direction: column;
}

.form-sec .logo-part h1 {
    padding-top: 20px;
}

.log-in footer {
    margin-top: 0;
}

.log-in footer p.pt-50 {
    padding-top: 17px;
}

.form-common .form-group .col-md-6 {
    padding: 3px !important;
    position: relative;
}

.create-acc {
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 15px;
}

.create-acc a {
    color: #eebe47;
    font-weight: bold;
}

.pwd-changed .form-sec .form-common,
.forgot-pwd .form-sec .form-common,
.reset-pwd .form-sec .form-common,
.successful .form-sec .form-common {
    margin-top: 8rem;
}

.pwd-changed footer.p-50,
.forgot-pwd footer.p-50,
.reset-pwd footer.p-50 {
    margin-top: 3rem;
}

.successful footer.p-50 {
    margin-top: 5rem;
}

.pwd-changed .footer-intro-box p,
.forgot-pwd .footer-intro-box p,
.reset-pwd .footer-intro-box p,
.successful .footer-intro-box p {
    margin-top: 12px;
    padding-top: 0;
}

p.text-center.mesage {
    line-height: 1.2;
}

a.login-back {
    font-size: 18px;
    font-weight: bold;
}

/*-----------------------Login-Page-css--ends-here---------------------------*/
/*-----------------------Vedio Page-css--starts-here---------------------------*/

.all-vedios .container {
    max-width: 1375px;
}

.all-vedios a.vedio-name {
    font-size: 18px;
    cursor: pointer;
}

.all-vedios .vedio_right a.vedio-name {
    font-size: 16px;
}

.all-vedios .block_video {
    margin-bottom: 30px;
}

.vedio_right .block_video {
    margin-bottom: 9px;
}

.block-type {
    padding: 15px;
    border: 1px solid #94a8b3;
}

.block-type {
    padding: 15px;
    border: 1px solid #94a8b3;
    background-color: #fff;
}

.block-type .vedio_right .video-wrapper {
    width: 55%;
}

.block-type .vedio_right .block_video {
    align-items: center;
}

.categories-block {
    position: relative;
    overflow: hidden;
}

.categories-block a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}

.categories-block:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.browse-categories {
    background-color: #EEBE47;
}

section.member-vedio {
    background-color: #fff !important;
}

.categories-block img {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.categories-block:hover img {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
}

/*-----------------------Vedio Page-css--ends-here---------------------------*/
/*-----------------------Vedio Details-Page-css--starts-here---------------------------*/
section.banner-single {
    height: 48vh;
}

section.banner-single .banner-left {
    padding-top: 9rem;
}

.details-caption {
    padding: 15px 30px;
}

.details-caption a {
    color: #4C7389;
    font-size: 18px;
    padding-right: 15px;
}

.details-caption a span {
    padding-left: 5px;
    font-family: "Inter";
}

.details-caption p {
    font-size: 16px;
    line-height: 1.5;
}

.vedio-details .block_video a.btn:hover {
    background-color: #EEBE47;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span,
.pagination>li>a,
.pagination>li>span {
    border-radius: 5px !important;
    margin: 0 2px;
    color: #fff;
    border-color: #ddd;
    background-color: #CA8E3F;
}
.tags a.btn, .categories-btm a.btn {
    margin-right: 5px;
}

/*-----------------------Vedio Details-Page-css--ends-here---------------------------*/

/*-----------------------resource-inner-Page-css--starts-here---------------------------*/
.resource-inner .logo-part {
    margin-top: 5rem;
    flex-direction: column;
    padding-bottom: 0rem;
}
.quality-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 6px 0px 0px #ca8e3f;
    border: 2px solid #ca8e3f;
    min-height: 475px;
}
.quality-box h2.mait-title {
    padding-bottom: 15px;
}
.quality-box li {
    font-size: 18px;
    padding-bottom: 10px;
}
a.download-btn span {
    background-color: #CA8E43;
    color: #fff !important;
    border: 2px solid #CA8E43;
    border-radius: 5px;
    font-size: 18px;
    padding: .65rem 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    margin-top: 20px;
}
.logo-block p {
    font-weight: bold;
}
ul.color-code {
    list-style-type: none;
    display: flex;
    text-align: center;
    position: absolute;
    bottom: 65px;
}
.color-pallete {
    position: relative;
}
ul.color-code li {
    width: calc(100% / 5 - 4px);
    font-weight: bold;
    font-size: 24px;
}
/*-----------------------resource-inner-Page-css--ends-here---------------------------*/

/*-----------------------All Audio-Page-css--starts-here---------------------------*/
.all-audios .block_audio .video-caption {
    flex-direction: column;
    padding: 0;
}
.all-audios .block_audio {
    background-color: rgba(255,255,255,0.5);
    padding: 30px;
}
.all-audios .vedio_right .block_audio {
    padding: 0;
    background-color: transparent;
    display: unset;
}
.all-audios .vedio_right .block_audio .row {
    justify-content: space-between;
    border-bottom: 1px solid #e4e4e4;
    padding: 15px 0;
}
.all-audios .vedio_right .block_audio:last-child .row{
    border: none;
}
.audios-from-member .block_audio {
    background-color: #ddede8;
}
.image-wrapper img {
	width: 100%;
}
.image-wrapper {
	/*width: 125px;*/
	margin: 0 auto;
}
.w-200 {
    width: 200px;
}
.all-images .block_image .video-caption {
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.all-images .block_image .row{
    align-items: center;
}
.audio-details .block_audio .row {
    flex-direction: column;
    margin-bottom: 30px;
}
.audio-details .vedio_right .block_audio .row {
    flex-direction: row;
}
.audio-details .vedio_right .block_audio .video-caption{
    width: 100%;
}
.audio-details .vedio_right .block_audio {
    flex-direction: column;
}
.audio-details .vedio_right .block_audio .row {
    width: 100%;
}
.audio-details .col-md-8 {
    background-color: #fff;
    border: 1px solid #94a8b3;
}
audio {
    height: 40px;
    margin-top: 15px !important;
}
.all-audios .vedio_right .block_audio audio {
    margin-top: 0 !important;
}
.all-audios .vedio_right .block_audio .video-caption {
    width: 100%;
}
.row.audio-control {
    margin-bottom: 15px;
    margin-top: 15px;
}
.country-select .flag {
	background-image: url("../images/flags.png");
}
.videoPlayer-dimensions {
	width: 100% !important;
	height: 425px !important;
}
.videoRightset {
	width: 340px;
	height: 200px;
}
.userVideoset {
	width: 250px;
	height: 200px;
}
.allVideos {
    width: 100%;
    height: 250px;
}
.videoSidebar {
	width: 215px;
	height: 215px;
}
.errM {
    color: red;
}
.restpasswordForm .input-icon-addon {
    right: 2rem;
    left: unset;
}

/*-----------------------All Audio-Page-css--ends-here---------------------------*/
/*-----------------------Profile-page-css--Starts-here---------------------------*/
.profile-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    margin-bottom: 20px;
    border: 1px solid #d9d9d9;
}
.my-profile-inner {
    max-width: 68%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    margin-top: 5rem;
    background-color: #fff !important;
}
.profile-card h4, .profile-card h5 {
    color: #4C7389;
    font-family: 'Inter';
    font-weight: bold;
}
.my-profile-inner .logo-part {
    padding-bottom: 3rem;
    padding-left: 0;
}
.my-profile-inner .logo-part h1 {
    padding-top: 20px;
}
.user-main p {
    font-size: 16px;
}
.vjs-resolution-button .vjs-menu-icon:before {
  content: '\f110';
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
  font-size: 1.8em;
  line-height: 1.67em;
}

.vjs-resolution-button .vjs-resolution-button-label {
  font-size: 1em;
  line-height: 3em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  box-sizing: inherit;
}

.vjs-resolution-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: 50%; /* Center the menu, in it's parent */
  margin-left: -2em; /* half of width, to center */
}

.vjs-resolution-button .vjs-menu li {
  text-transform: none;
  font-size: 1em;
}
.mainOne .video-caption {
	padding: 6px 0px 0px 0px;
}
.mainOne .video-caption a.vedio-name {
	font-size: 20px;
}
.mainOne .video-caption a.vedio-name {
	width: 78%;
}
.viewsDownload {
	display: flex;
	gap: 20px;
	float: right;
    align-items: center;
}
.viewsDownload .fa {
	font-size: 20px;
}
.viewsDownload p {
	margin-bottom: 0;
}
.viewsDownload .custom-btn {
	padding: 5px;
	font-size: 14px;
}
.viewsDownload .custom-btn::after {
	display: none;
}
.viewsDownload .custom-btn i {
	font-size: 15px;
}
.audio-wrapper img {
	width: 100%;
}
.audio-wrapper .audio-control {
	margin: 0px;
}
#signup_form span.error {
	position: absolute;
}
.block_video .userVideoset {
	height: 200px !important;
}
.mainOne .videoPlayer-dimensions {
	width: 100% !important;
	height: 320px !important;
}
.vedio_right .block_videoR .video-js {
	height: 156px !important;
}
.userVideosidebar .vedio_right video, .adminVideosidebar .vedio_right video {
	height: 225px !important;
}

 /*-----------------------Profile-page-css--ends-here---------------------------*/       
/*-----------------------Responsive-css--Starts-here---------------------------*/
@media (max-width: 767px) {
        header button.navbar-toggler {
    display: none;
}
    .menu-open .mega-menuContainer {
    width: 100vw;
}
    .form-sec .form-common {
        max-width: 95%;
        margin-top: 2rem;
    }

    button.hmtoggler {
        position: fixed;
        bottom: 58px;
        right: 20px;
        background-color: #eebe47;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .form-sec .logo-part img {
        width: 100%;
    }
    .log-in form .col-md-6.text-end {
    text-align: center !important;
    margin-top: 15px;
}
.create-acc {
    margin-top: 0;
    line-height: 1.2;
}
.form-sec .logo-part h1 {
    margin-bottom: 0 !important;
}
    .form-sec .left-content h1 {
        font-size: 24px;
    }

    .form-group.form-inline {
        flex-direction: column;
        padding: 0;
    }

    .form-common .form-group .col-md-6 {
        padding: 0px !important;
        width: 100%;
        display: block;
    }

    .form-common .form-control {
        margin-bottom: 7px;
    }

    .form-sec .logo-part {
        padding-bottom: 25px !important;
    }

    .social-icons-footer ul {
        justify-content: center;
    }

    .log-in footer p.pt-50 {
        text-align: center;
    }
        .banner-left {
    padding-top: 3rem;
}
    .logo-part {
    padding-bottom: 2rem;
    padding-left: 0;
    flex-direction: column;
    text-align: center;
}
section.banner {
    height: auto;
}
.left-content h1 {
    font-size: 28px;
    margin-top: 8px;
}
.join-part {
    margin-left: 1rem;
    margin-right: 1rem;
}
.annoncement {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
.annoncement h2 {
    font-size: 20px;
    line-height: 1.2;
}
ul.scheduled {
    padding-left: 0;
}
section.banner .swiper-slide img {
    height: 350px;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 8px;
}
.swiper-pagination {
    bottom: 25px !important;
}
section.banner .swiper-button-next {
    left: 77%;
    bottom: 22px;
}
section.banner .swiper-button-prev {
    left: 18%;
    bottom: 22px;
}
.newly-released .row {
    flex-direction: column;
}
.newly-released .row .col-6 {
    width: 100%;
}
a.vedio-name {
    font-size: 16px !important;
}
.video-caption {
    padding: 0 15px;
}
.vedio_right .block_video {
    align-items: center;
    flex-direction: column;
}
.vedio_right .block_video .video-caption {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0 15px;
}
.vedio_right a.vedio-name br {
    display: none;
}
.vedio_right video {
    height: 100%;
}
.vedio_right a.vedio-name {
    font-size: 16px;
}
.vedio_right .block_video .video-wrapper {
    width: 100%;
}
.newmly-released-inner .row {
    flex-direction: column;
}
.newmly-released-inner .row .col-6 {
    width: 100%;
}
/*.block_image .img-wrapper {
    text-align: left !important;
}*/
.newly-released-member .block_video {
    padding-bottom: 20px;
    border-bottom: 1px solid #ca8e43;
    margin-bottom: 20px;
}
.newmly-released-inner.bg-light {
    width: 95%;
    margin: 0 auto;
}
h2.mait-title {
    font-size: 24px;
    padding-bottom: 20px;
    line-height: 1.2;
}
.newly-released-member a.vedio-name {
    font-size: 18px;

}
footer{
    margin-top: 0 !important;
}
.footer-intro-box p{
    margin-top: 0rem;
}
.footer-intro-box p {
    padding-top: 10px;
    text-align: center;
}
/*------------------------------------------------------------------*/
.about p {
    font-size: 15px;
    max-width: 100%;
    text-align: center;
}
.inner-page-banner .join-part p {
    max-width: 100%;
}
.about .join-part {
    margin-bottom: 20px;
}
.inner-page-banner .right-slider img {
    height: 23vh;
}
.about-parviz .row, .khane-mowlana .row {
    align-items: center;
    flex-direction: column;
}
.about-parviz .row .col-6, .khane-mowlana .row .col-6{
    width: 100%;
}
.block_right {
    margin-left: 0;
}
section.Ganje-Hozour {
    padding: 30px;
}
.khane-mowlana h2.mait-title {
    padding-bottom: 0;
    text-align: center;
}
.khane-mowlana{
    padding-top: 0;
}
.inner-page-banner .join-part {
    margin-left: 0;
    margin-right: 0;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.farsi-class .title-row p {
    font-size: 16px;
}
.farsi-block .card-body {
    text-align: center;
}
.browse-categories {
    padding-top: 20px;
    margin-top: 20px;
    padding-bottom: 0;
}
.all-audios .block_audio .video-caption{
    text-align: center;
    flex-direction: column;
}
.side-title h4 {
    text-align: center;
}
.browse-categories{
    background-color: transparent;
}
.browse-categories h2.mait-title {
    background-color: #EEBE47;
    padding-top: 20px;
}
.categories-block{
    margin-bottom: 15px;
}
.categories-block img {
    height: 140px;
    object-fit: cover;
    object-position: center;
}
.categories-block a {
    transform: translate(-50%, -35%);
}
.all-vedios .block_video {
    margin-bottom: 9px;
}
.block-type {
    padding-left: 0;
    padding-right: 0;
}
.resource-inner .logo-part {
    margin-top: 0;
}
.quality-box {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border-radius: 15px;
    min-height: auto;
    margin-bottom: 30px;
}
.resource-inner {
    padding-bottom: 20px;
}
.logo-block img {
    width: 50% !important;
    margin: 0 auto;
}
.logo-block {
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 15px;
}
a.download-btn span {
    margin-top: 8px;
}
.logo-block  .color-palet-img {
    width: 100% !important;
}
ul.color-code li {
    font-size: 12px;
    text-align: left;
    margin: 0 auto;
    padding-left: 5px;
}
.form-group {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}
.input-icon-addon {
    align-items: center;
    transform: translateY(-38%);
}
.input-icon-addon:last-child {
    right: 1rem;
}
.pwd-changed .form-sec .form-common, .forgot-pwd .form-sec .form-common, .reset-pwd .form-sec .form-common, .successful .form-sec .form-common {
    margin-top: 0rem;
}
section.banner-single .banner-left {
    padding-top: 3rem;
}
.vedio_right .block_audio .video-caption {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.audio-details .block_audio .row .video-caption {
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
.details-caption {
    padding: 15px 15px;
}
.details-caption a {
    color: #4C7389;
    font-size: 14px;
    padding-right: 10px;
}
p {
    font-size: 16px;
}
.contact-page-section .row {
    align-items: center;
    flex-direction: column;
}
.contact-page-section .row .col-md-6 {
    width: 96%;
}
.contact-icon ul li a {
    font-size: 20px;
}
.contact-icon ul li a i {
    width: 44px;
    height: 44px;
    font-size: 25px;
}
.contact-icon ul li p {
    font-size: 20px;
    margin-bottom: 0;
}
.contact-icon {
    padding-top: 30px;
}
.contact-page-section:after {
    height: 70%;
    bottom: 0;
    transform: none;
    top: auto;
}
.all-images .block_image .img-wrapper.text-center {
    text-align: center !important;
    margin-bottom: 15px;
    margin-top: 15px;
}
.all-images .block_image a, .all-images .block_image p {
    text-align: center;
}
.vedio_right .block_image .video-caption {
    flex-direction: column;
    text-align: center;
}
.newly-released-member .video-caption {
    align-items: center;
    text-align: center;
}
.adminVideosidebar {
    display: none;
}
.userVideosidebar .videoSidebar {
	width: 100%;
}
.userVideosidebar .vedio_right video {
	height: 200px !important;
}
#signup_form .country-select.inside {
	width: 100%;
	margin-bottom: 10px;
}
#signup_form .form-group.form-inline.d-flex.align-items-center:nth-child(5) {
	align-items: inherit !important;
}

}
