/* Fonts */
@font-face {
    font-family: 'kalameh';
    src: url('fonts/Kalameh/_Woff2/KalamehWeb-Bold.woff2') format('woff2'),
        url('fonts/Kalameh/_Woff/KalamehWeb-Bold.woff') format('woff'),
        url('fonts/Kalameh/TTF/Kalameh-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/****/

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    background-color: #021024;
    font-family: 'kalameh', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
}

.container>div {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 10px 0;
    position: relative;
}

/* استایل عنوان سایت */
.title>h1, .title>h2 {
    font-size: 36px;
}

/********/

/* Start Header Style */
header {
    border-bottom: 1px solid #ffffff23;
}

.social {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}

.social>li>a>img {
    width: 30px;
    margin: 10px;
    transition: all 0.4s ease;
}

.social>li>a>img:hover {
    opacity: 60%;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    font-size: 14px;
    width: 100%;
}

.menu>li {
    padding: 0 20px;
}

.menu>li>a>h3 {
    color: #fff;
    transition: all 0.3s ease;
}

.menu>li>a>h3:hover {
    color: #977DFF;
    transform: translateY(-5px);
}

/* End Header Style */

/* start main style */
main {
    flex-direction: column;
    align-items: center;
}

h1, h2 {
    color: white;
    font-size: 28px;
}

.systemTitleNeon {
    position: absolute;
    top: 120px;
    background: linear-gradient(90deg, #B163EF, #9357EB, #744BE7, #4056F5);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px #744BE7;
}

.serviceTitleNeon {
    position: absolute;
    top: 100px;
    background: linear-gradient(90deg, #92FE9D, #6EF1B5, #49E3CE, #00C9FF);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px #0086AA;
}

/*   استایل سکشن سامانه های اداری و خدماتی*/

#systemBoxes,
#serviceBoxes {
    margin: 30px 0 0 0;
}

.iconBox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 2em;

}

#systemBoxes>div>a>.iconBox::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 0;
    background: linear-gradient(to top, #5d3aa3a2 0%, #021024 80%);
    transition: height 0.4s ease;
    z-index: -1;
    border-radius: 12px;
}

#serviceBoxes>div>a>.iconBox::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 0;
    background: linear-gradient(to top, #20616A 0%, #021024 80%);
    transition: height 0.4s ease;
    z-index: -1;
    border-radius: 12px;
}

#systemBoxes>div>a>.iconBox:hover::before,
#serviceBoxes>div>a>.iconBox:hover:before {
    height: 100%;
}

.iconBox>div>p {
    font-size: 15px;
    color: #ABABAB;
    margin: 0;
    padding: 0 15px;
}

.iconBox>div>h5 {
    font-size: 18px;
    color: #fff;
    margin: 0;
    margin-bottom: 10px;
}

/*******/
/* استایل اسکرول بار */
#tabs::-webkit-scrollbar {
    height: 3px;
}
#tabs::-webkit-scrollbar-track {
    background-color: transparent;
}
#tabs::-webkit-scrollbar-thumb {
    background-color: #977DFF;
    border-radius: 5px; 
    border: 1px solid #7c7c7c2d;
}
#tabs::-webkit-scrollbar-thumb:hover {
    background-color: #5d3aa3a2; 
}
/***/
/* استایل سکشن لینک های مفید */
#tabs{
    justify-content: center;
    display: flex;
    width: 100%;
    overflow-x: auto;
    align-items: center;
    padding: 0 6px;
}
.tab {
    background-color: transparent;
    color: #fff;
    border: 1px solid #ffffff23;
    border-radius: 50px;
    font-family: kalameh;
    font-size: 16px;
    min-width: 120px;
    height: 50px;
    margin: 20px 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tab:hover,
.active {
    text-shadow: 0px 0px 8px #977DFF;
    box-shadow: 0 0 20px 1px #977DFF;
    cursor: pointer;
}

.tabContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-top: 20px;
}

.tabContentBox {
    width: 15%;
    height: 100px;
    display: flex;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 25px;
    outline: 2px solid #51458196;
    transition: all 0.4s ease;
}

.tabContentBox>a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.new-label {
    position: absolute;
    top: 50px;
    left: -8px;
    background: linear-gradient(to right, #0086AA 0%, #92FE9D 80%);
    color: #021024;
    padding: 5px 35px;
    border-radius: 5px;
    font-size: 12px;
    transform: rotate(-40deg);
    transform-origin: left bottom;
}

.tabContentBox:hover {
    box-shadow: 0px 0px 10px 2px #977DFF;
}

/*******/
/* استایل سکشن وب سایت های موسسه */
.webIcon {
    width: 160px;
    height: 160px;
    margin: 20px;
    border: 1px solid #2E2E2E;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.webIcon>img {
    margin-top: -50px;
    width: 150%;
}

.webIcon>h5 {
    color: #a8a8a8;
    font-size: 15px;
    margin-top: -70px;
}

.webIcon:hover {
    border-radius: 10%;
}

/*******/
/* استایل سکشن  وبلاگ */
.post {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.post>img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.postContent {
    background: linear-gradient(to bottom, #06225A 0%, #021024 80%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 20px;
}

.postContent>h3 {
    color: white;
    font-size: 18px;
    margin: 0;
}

.postContent>p {
    color: #a8a8a8;
    font-size: 14px;
    text-align: justify;
    margin-bottom: 50px;
}

/* Team Members Styles */
.team-chart{
    margin-bottom: 50px;
}
.breaking-line{
    background-color: #303fb8;
    height: 1px;
}
.team-member-item{
    position: relative;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border-radius: 25px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}
.site-team-member::before{
    content: 'تیم سایت';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #354050;
    z-index: 100;
    border-radius: 50px;
    padding: 0 10px;
    font-size: 14px;
    color: white;
    box-shadow: 1px 1px 3px black;
}
.IT-team-member::before{
    content: 'تیم سخت‌افزار';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #354050;
    z-index: 100;
    border-radius: 50px;
    padding: 0 10px;
    font-size: 14px;
    color: white;
    box-shadow: 1px 1px 3px black;
}
.team-item-img-top{
    width: 220px;
    border-radius: 25px 25px 0 0;
    border-bottom: 1px solid rgba( 255, 255, 255, 0.18 );
}
.team-item-img{
    width: 220px;
    border-radius: 25px 25px 0 0;
    border-bottom: 1px solid rgba( 255, 255, 255, 0.18 );
}
.dakheli-abb, .dakheli-baz, .dakheli-man, .dakheli-ahm, .dakheli-naz, .dakheli-vak{
    position: relative;
}
.dakheli-abb::before{
    content: 'تلفن داخلی: 601';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 3.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 25px 25px 0 0;
    z-index: 10;
    cursor: url(../IMG/team/skills/arrowhead-rounded-outline-ORG.svg), auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #021024;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition:  opacity 0.6s ease-out;
}
.dakheli-abb:hover::before{
    opacity: 1;
}
.dakheli-baz::before{
    content: 'تلفن داخلی: 602';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 3.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 25px 25px 0 0;
    z-index: 10;
    cursor: url(../IMG/team/skills/arrowhead-rounded-outline-ORG.svg), auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #021024;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition:  opacity 0.6s ease-out;
}
.dakheli-baz:hover::before{
    opacity: 1;
}
.dakheli-man::before{
    content: 'تلفن داخلی: 600';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 3.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 25px 25px 0 0;
    z-index: 10;
    cursor: url(../IMG/team/skills/arrowhead-rounded-outline-ORG.svg), auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #021024;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition:  opacity 0.6s ease-out;
}
.dakheli-man:hover::before{
    opacity: 1;
}
.dakheli-ahm::before{
    content: 'تلفن داخلی: 635';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 3.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 25px 25px 0 0;
    z-index: 10;
    cursor: url(../IMG/team/skills/arrowhead-rounded-outline-ORG.svg), auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #021024;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition:  opacity 0.6s ease-out;
}
.dakheli-ahm:hover::before{
    opacity: 1;
}
.dakheli-naz::before{
    content: 'تلفن داخلی: 636';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 3.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 25px 25px 0 0;
    z-index: 10;
    cursor: url(../IMG/team/skills/arrowhead-rounded-outline-ORG.svg), auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #021024;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition:  opacity 0.6s ease-out;
}
.dakheli-naz:hover::before{
    opacity: 1;
}
.dakheli-vak::before{
    content: 'تلفن داخلی: ---';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 3.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 25px 25px 0 0;
    z-index: 10;
    cursor: url(../IMG/team/skills/arrowhead-rounded-outline-ORG.svg), auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #021024;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition:  opacity 0.6s ease-out;
}
.dakheli-vak:hover::before{
    opacity: 1;
}
.team-item-title{
    color: white;
    margin: 20px 0 5px 0;
    font-size: 18px;
}
.team-item-description{
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
}
.team-item-btn{
    color: white;
    margin: auto;
    padding: 10px 40px;
    outline: none;
    border: none;
    border-radius: 8px;
    font-family: 'kalameh', sans-serif;
    cursor: pointer;
    position: relative;
    background-image: linear-gradient(to right, #303fb8 0%, #7743a1 80%);
    z-index: 1;
}
.team-item-btn::before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to left, #303fb8 0%, #7743a1 80%);
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
    border-radius: 8px;
}
.team-item-btn:hover::before{
    opacity: 1;
}
.manager{
    display: flex;
    justify-content: center;
}
.employees{
    display: flex;
    gap: 20px;
}
.chart-connection-line{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*****/

/* Team Members Chores List Page */
.chores-box{
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border-radius: 25px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    color: white;
    width: 100%;
}
.chores-title{
    text-align: center;
    position: relative;
}
.chores-title::before{
    content: '';
    position: absolute;
    width: 44%;
    height: 2px;
    background-color: rgba( 255, 255, 255, 0.18 );
    top: 50%;
    right: 0;
}
.chores-title::after{
    content: '';
    position: absolute;
    width: 44%;
    height: 2px;
    background-color: rgba( 255, 255, 255, 0.18 );
    top: 50%;
    left: 0;
}
.member-skills-section{
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}
.member-skills-item{
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 10px;
    background: rgba( 255, 255, 255, 0.3 );
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: url(../IMG/team/skills/arrowhead-rounded-outline-ORG.svg), auto;
    transition: 0.6s;
}
.member-skills-item:hover{
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.5 );
}
/*****/
/* Chores List Validation Form */

.staticrypt-form, .staticrypt-decrypt-button, .staticrypt-form input[type="password"], input[type="text"]{
    font-family: 'kalameh', sans-serif!important;
}
/*****/
/* Team Section Main Page */
.team-sec-member-item{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.061);
    box-shadow: 0 8px 12px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
}

.team-sec-img{
    text-align: center;
    padding-top: 20px;
}
.team-sec-img img{
    width: 80%;
    border-radius: 12px 12px 0 0;
}
.team-sec-info{
    background: rgb(28 28 28);
    text-align: right;
    color: white;
    margin-top: -8px;
    width: 100%;
    border-radius: 0 0 11px 11px;
    position: relative;
    padding: 15px 0;
}
.team-sec-info h3{
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
}
.team-sec-info p{
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
    margin-right: 10px;
}
.team-sec-info:hover:after{
    opacity: 1;
    left: 0;
}
.team-sec-info::after{
    content: "»";
    font-family: serif;
    position: absolute;
    opacity: 0;
    bottom: 0;
    left: -20px;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    height: 100%;
    padding: 0 25px;
    font-size: 26px;
    border-radius: 0 0 0 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
/*****/
/* Tablet Size */
@media (min-width: 600px) and (max-width: 1023px) {
    h1, h2 {
        font-size: 24px;
    }

    /* header Style*/
    header>img {
        height: 60px;
    }

    .menu {
        font-size: 10px;
        width: 100%;
    }

    .menu>li {
        padding: 0 10px;
    }

    .social>li>a>img {
        width: 25px;
        margin: 5px;
    }

    /* استایل سکشن سامانه های اداری */
    
    .iconBox{
        line-height: 1.5em;
    }
    
    .iconBox>div>img {
        width: 100px;
    }

    .iconBox>div>h5 {
        font-size: 14px;
    }

    .iconBox>div>p {
        font-size: 12px;
    }

    /* استایل سکشن وبلاگ */
    .post {
        width: 40%;
    }

    /* استایل سکشن وب سایت های موسسه */
    .webIcon {
        width: 120px;
        height: 120px;
        margin: 15px;
        border-radius: 30px;
    }

    .webIcon>img {
        margin-top: -30px;
    }

    .webIcon>h5 {
        font-size: 12px;
        margin-top: -50px;
    }

    .serviceTitleNeon {
        top: 35px;
        font-size: 20px;
    }

    .systemTitleNeon {
        top: 60px;
        font-size: 20px;
    }

    /* استایل سکشن لینک های مفید */
    #tabs{
        justify-content:normal;
    }
    .tabContent {
        gap: 30px;
    }

    .tabContentBox {
        height: 120px;
        width: 25%;
    }

    .tabContentBox>a>h6,
    .tabContentBox>a>h5 {
        font-size: 12px;
    }
    
    .learning-title{
        font-size: 14px !important;
        text-align: center !important;
    }
    /* Archive Page Style */
    .postArchive{
        padding: 20px 5px !important;
    }
    .postInArchive .learning-btn , .postInArchive > a {
        height: 35px !important;
        font-size: 12px !important;
    }
    .postInArchive .learning-btn::after{
        top: 9px !important;
        left: 30px;
        opacity: 100%;
    }
    .postInArchive .learning-btn:hover:after{
        left: 40px !important;
    }
    .postInArchive .learning-title{
        font-size: 14px !important;
    }
    
    .search i{
        right: 7.5% !important;
    }
    #searchBox{
        width: 90% !important;
    }
}

/****/

/* Mobile size */
@media (max-width: 600px) {
    .menu {
        display: none;
    }

    .social {
        justify-content: left;
        width: 100%;
    }

    .title>h1, .title>h2 {
        font-size: 24px;
    }

    h1, h2 {
        font-size: 20px;
    }

    /* استایل سکشن سامانه های اداری و خدماتی  */
    #systemBoxes,
    #serviceBoxes {
        flex-direction: column;
    }

    #systemBoxes>div,
    #serviceBoxes>div {
        width: 100% !important;
        justify-content: center;
        order:2;
    }
    .middle{
        order:1 !important;
    }
    .iconBox{
        justify-content: flex-start;
        line-height: 1.5em;
    }
    
    .iconBox>div>img {
        width: 110px;
    }

    .iconBox>div>h5 {
        font-size: 14px;
        margin: 0 !important;
    }

    .iconBox>div>p {
        font-size: 12px;
    }

    .systemTitleNeon,
    .serviceTitleNeon {
        position: static;
        text-align: center;
        font-size: 24px;
    }
    .image {
    order: -1;
    }

    /* استایل سکشن لینک های مفید */
     #tabs{
        justify-content:normal;
    }

    .tab {
        font-size: 14px;
        min-width: 100px !important;
        height: 50px;
        margin: 20px 5px;
    }
    
    .tabContent {
    gap: 25px;
        
    }
    
    .tabContentBox {
        height: 100px;
        width: 40%;
    }

    .tabContentBox>a {
        flex-direction: column;
    }

    .tabContentBox>a>h6,
    .tabContentBox>a>h5 {
        font-size: 12px;
    }

    /* استایل سکشن وب سایت های موسسه */
    .webIcon {
        width: 150px;
        height: 150px;
        margin: 10px 0;
    }

    .webIcon>img {
        width: 135%;
        margin-top: -30px;
    }

    .webIcon>h5 {
        margin-top: -50px;
    }

    .post {
        width: 100%;
    }
    
    /* استایل سکشن آموزش های واحد ICT */
    
    .learning-title{
        font-size: 12px !important;
        text-align: center !important;
    }
    .learning-btn{
        padding: 3px 10px !important;
        font-size: 10px !important;
    }
    .more-learning{
        font-size: 12px !important;
    }
    /****/
    
    footer{
        flex-direction: column;
        text-align: center;
    }
    .scroll{
        bottom:10px !important;
        left:10px !important;
    }
    .scroll > img{
        width:40px;
    }
    
   /* Archive Page Style */
    .postArchive{
        padding: 30px 20px !important;
    }
    .postInArchive{
        width: 100% !important;
    }
    .postInArchive .learning-btn , .postInArchive > a {
        height: 40px !important;
        font-size: 12px !important;
    }
    .postInArchive .learning-title{
        font-size: 16px !important;
        margin: 20px 0 20px 0 !important;
    }
    
    .postInArchive .learning-btn::after{
        top: 10px !important;
        left: 55px;
        opacity: 100%;
    }
    .postInArchive .learning-btn:hover:after{
        left: 65px !important;
    }
    
    .search i{
        right: 7.5% !important;
    }
    #searchBox{
        width: 95% !important;
    }
}

/*****/
/* Learning Section Style */
.slide-content , .slide-team-content{
    margin: 0 40px;
    padding: 10px 20px;
    overflow:hidden;
}
.slide-container{
    max-width: 1200px !important;
    width: 100%;
    padding: 40px 0;
    display: block !important;
}
.swiper-slide{
    display:flex !important;
}
.swiper-button-prev ,.swiper-button-next{
    color: #a8a8a8  !important;
    --swiper-navigation-size: 20px !important;

}
.learning-item{
    background: rgba(0, 0, 0, 0.041);
    box-shadow: 0 8px 12px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex ;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 30px 0;
}
.learning-img{
    border-radius: 12px 12px 0 0;
    box-shadow: 1px 1px 20px black;
    filter: saturate(30%);
    transition: filter 0.3s ease;
    box-shadow: 0 8px 12px 0 rgba(31, 38, 135, 0.37);
}
.learning-item:hover img{
    filter: saturate(100%);
}
.learning-title{
    color: white;
    font-size: 16px;
    margin: 20px 0 40px 0;
}
.learning-btn{
    border: none;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #303fb8 0%, #7743a1 80%);
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    font-family: 'kalameh', sans-serif;
    padding: 5px 15px;
    font-size: 12px;
    transition: all 0.5s ease;
    display: inline-block;
}
.learning-btn:after {
    content: "»";
    font-family: serif;
    position: absolute;
    opacity: 0;  
    top: 7px;
    left: -20px;
    transition: 0.5s;
}
.learning-btn:hover{
    padding-right: 8px;
    padding-left:25px;
  }
  
.learning-btn:hover:after {
    opacity: 1;
    left: 10px;
  }

.learning-btn i{
    margin-left: 8px;
}

.more-learning{
    text-shadow: 0px 0px 5px #977DFF;
    box-shadow: 0 0 1px 1px #977dff88;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    font-family: 'kalameh', sans-serif;
    padding: 7px 25px;
    border-radius: 50px;
    font-size: 15px;
    margin: 20px 0 40px 0;
    transition: 0.4s;
}
.more-learning:hover{
    border-radius: 12px;
    box-shadow: 0 0 20px 1px #977DFF;
}
/*****/
/* End main Style */

/* start footer style*/
.scroll{
    position: fixed;
    bottom: 30px;
    left: 30px;
}
footer {
    justify-content: space-between;
    color: #a8a8a8;
    border-top: 1px solid #ffffff23;
}

/* End footer Style */
/*** start Archive Page Style ***/
/* breadcrumb Style */
.breadcrumb{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6d6d6;
}
.breadcrumb > span > a{
    color: #d6d6d6;
    transition: all 0.3s ease;
}
.breadcrumb > span > a:hover{
    text-shadow: 0px 0px 15px #B163EF;
}
.breadcrumb > img{
    margin: 0 5px;
}
/****/
/* Archive Style */
.postArchive{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
    padding: 20px;
    transition: all 0.4s ease;
    width: 100%;
}
.postInArchive{
    width: 32%;
}
.postArchive .learning-title {
    font-size: 20px;
}
.postInArchive .learning-btn , .postInArchive > a {
    width: 80%;
    height: 45px;
    font-size: 14px;
}
.postInArchive .learning-btn::after{
    top: 13px;
    font-size: 16px;
}
.postInArchive .learning-btn:hover:after{
    left: 70px;
}
/*****/
.search{
    margin: 30px 0 0 0 !important;
}
.search i{
    position: absolute;
    top: 50%;
    right: 11.5%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #ffffffaf;
    transition: all 1s ease;
}
#searchBox{
    width: 80%;
    padding: 10px 40px 10px 10px;
    font-size: 16px;
    font-family: 'kalameh';
    color: #fff;
    border: 1px solid #ffffff23;
    border-radius: 50px;
    background-color: transparent ;
    transition:all 1s ease;
}
#searchBox::placeholder{
    color: #ffffffaf;
}
#searchBox:hover{
    border-color: #977DFF;
    box-shadow: 0 0 25px #977DFF;
}
#searchBox:focus{
    border-color: #977DFF;
    box-shadow: 0 0 25px #977DFF;
}
.search:hover i{
    text-shadow: 0px 0px 5px #977DFF;
}
input:focus-visible {
    outline: none;
}

#posts{
    justify-content: center !important;
    gap: 10px 10px !important;
    padding: 15px 20px 0 20px !important;
}

#noResultsMessage{
    display: none;
    color: #ffffffaf;
    font-size: 16px;
    font-family: 'kalameh';
}
/*** End Archive Page Style ***/
/* Team Member Skills */
@media (max-width: 768px){
    .member-skills-section{
        flex-direction: column;
    }
    .member-skills-item{
        margin: 0 0 10px 0;
    }
}

.learn-container{
    display:flex;
    justify-content: space-between;
    gap: 20px;
}
.team-container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}