@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');


:root{
    --main-color:#d3ad7f;    
    --black:#13131a;
    --bg:hwb(0 20% 80%);
    --border:.1rem solid rgba(255,255,255,.3);
}

*{
    
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
    
}

html{
    font-size: 60%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding:2rem 7%;
}

.heading{
    text-align: center;
    color:#fff;
    text-transform: uppercase;
    padding-bottom: 3rem;
    font-size: 3rem;
}

.heading span{
    color:var(--main-color);
    text-transform: uppercase;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#fff;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover{
    letter-spacing: .2rem;
}

.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo img{
    height: 5rem;
}

.header .navbar a{
    margin:0 1rem;
    font-size: 2.0rem;
    color:#fff;
}
.btn_active, dot:hover{
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#fff;
    background: gray;
    cursor: pointer;
}

.header .navbar a:hover{
    color:var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color:#fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover{
    color:var(--main-color);
}

#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top:115%; right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color:var(--black);
    padding:1rem;
    text-transform: none;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color:var(--black);
}

.header .search-form label:hover{
    color:var(--main-color);
}

.header .cart-items-container{
    position: absolute;
    top:100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #fff;
    padding:0 1.5rem;
}

.header .cart-items-container.active{
    right: 0;
}

.header .cart-items-container .cart-item{
    position: relative;
    margin:2rem 0;
    display: flex;
    align-items: center;
    gap:1.5rem;
}

.header .cart-items-container .cart-item .fa-times{
    position: absolute;
    top:1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.header .cart-items-container .cart-item .fa-times:hover{
    color:var(--main-color);
}

.header .cart-items-container .cart-item img{
    height: 7rem;
}

.header .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color:var(--black);
    padding-bottom: .5rem;
}

.header .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color:var(--main-color);
}

.header .cart-items-container .btn{
    width: 100%;
    text-align: center;
    
}

/************************************************ RESPONSIVE PAGES************************************************************/




/************************************************INDEX************************************************************/
/*
.news_image{
    min-height: 90vh;
    display:flex;    
    background:url(/active_image/IMG-20221228-WA0009.jpg) no-repeat;
    background-size:cover; 
    background-position: center; /
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/******************************************************************************************************************************/



.welcome_text{
    text-align: center;  
    background-color: #111; 
    color: rgb(9, 173, 238) ;  
    padding: 18px; 
    font-size: 25px; 
    letter-spacing: 10px; 
    width: 100%;    
    opacity: 0.55;
    font-weight: bold;
    
    
}
.quoting_text{ /**qouation and google link*/
    text-align: center;  
    background-color: #111; 
    color: skyblue;  
    padding: 10px; 
    font-size: 25px;     
    width: 100%;    
    
    
}
.home{
    min-height: 70vh;
    display:flex;
    align-items: center;
    background:url(/images/steps-edit2.png) no-repeat;
    background-size:cover; /*cover*/
    background-position: left; 
}

.home .content{
    max-width: 70rem;    
}

.home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;
    
}

.home .content p{
    font-size: 3rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
       
}


.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.menu .box-container .box{
    padding:5rem;
    text-align: center;
    border:var(--border);    
}

.menu .box-container .box img{
    height: 10rem;
}

.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding:1rem 0;
}

.menu .box-container .box .price{
    color: #fff;
    font-size: 2.5rem;
    padding:.5rem 0;
}

.menu .box-container .box .price span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover{
    background:#fff;
}

.menu .box-container .box:hover > *{
    color:var(--black);
}

.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.products .box-container .box{
    text-align: center;
    border:var(--border);
    padding: 2rem;
}

.products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border:var(--border);
    color:#fff;
    margin:.3rem;
}

.products .box-container .box .icons a:hover{
    background:var(--main-color);
}

.products .box-container .box .image{
    padding: 2.5rem 0;
}

.products .box-container .box .image img{
    height: 25rem;
}

.products .box-container .box .content h3{
    color:#fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .stars{
    padding: 1.5rem;
}

.products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price{
    color:#fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}



.contact .row{
    display: flex;
    background:var(--black);
    flex-wrap: wrap;
    gap:1rem;
}

.contact .row .map{
    flex:1 1 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form{
    flex:1 1 45rem;
    padding:5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color:#fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background:var(--bg);
    border:var(--border);
}

.contact .row form .inputBox span{
    color:#fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding:2rem;
    font-size: 1.7rem;
    color:#fff;
    text-transform: none;
    background:none;
}
.caption{
    margin-top: 2%;
    text-align: center;
    background-color: rgb(17, 17, 17);     
    color: burlywood; 
    padding: 10px;
    font-size: 20px;
    letter-spacing: 10px;
    width: 100%;
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
    opacity:0.75;
    margin-top: 0%;
}

.vission_mission  {
    text-align: center;
    color: #fff; 
    font-size: 20px;
    margin-top: 1%;    
    height: 10vh;
   
} 
  
.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.blogs .box-container .box{
    border:var(--border);    
}

.blogs .box-container .box .image{
    height: 25rem;
    overflow:hidden;
    width: 100%;
}

.blogs .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogs .box-container .box:hover .image img{
    transform: scale(1.2);
}

.blogs .box-container .box .content{
    padding:2rem;
}

.blogs .box-container .box .content .title{
    font-size: 2.5rem;
    line-height: 1.5;
    color:#fff;
}

.blogs .box-container .box .content .title:hover{
    color:var(--main-color);
}

.blogs .box-container .box .content span{
    color:var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color:#ccc;
    padding:1rem 0;
}

.footer{
    background:var(--black);
    text-align: center;
    margin-top: 5%;
}

.footer .share{
    padding:1rem 0;
}

.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color:#fff;
    border:var(--border);
    margin:.3rem;
    border-radius: 50%;
}

.footer .share a:hover{
    background-color: var(--main-color);
}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
    gap:1rem;
}

.footer .links a{
    padding:.7rem 2rem;
    color:#fff;
    border:var(--border);
    font-size: 2rem;
}

.footer .links a:hover{
    background:var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color:#fff;
    font-weight: lighter;
    padding:1.5rem;
}

.footer .credit span{
    color:var(--main-color);
}



/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top:100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
        
    }

    .header .navbar.active{
        right:0;
    }

    .header .navbar a{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding:2.5rem;
        font-size: 2rem;
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 3.0rem;
    }

    .home .content p{
        font-size: 5rem;
        text-align: center;
    }
    .vission_mission{
        font-size: 2.0rem;
    }
    .map-box{
        width: 100%;
        padding-top: 10%;
    }
    .heading{
        text-align: center;
        color:#fff;
        text-transform: uppercase;
        padding-bottom: 3rem;
        font-size: 2rem;
    }
    
    .heading span{
        color:var(--main-color);
        text-transform: uppercase;
    }
   
}

@media (max-width:450px){

    html{
        font-size: 50%;
    }
    .gender-cinput{   
        width: 100%;
        padding-top: 2%;
        padding-bottom: 2%;
    }

}
@media (max-width: 360px){
    html{
        font-size: 50%;
    }
    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding:2rem;
    }
    .home .content h3{
        font-size: 1.0rem;
    }

    .home .content p{
        font-size: 0.5rem;
        text-align: center;
    }
    .vission_mission{
        font-size: 1.0rem;
    }
    .map-box{
        width: 100%;
        padding-top: 10%;
    }


}

/*********************************************************************************************** about us html******************************/
.about{
    margin-top: 2%;
    
}
.about .row{
    display: flex;
    align-items: center;
    background:var(--black);
    flex-wrap: wrap;
}

.about .row .image{
    flex:1 1 40rem;
}

.about .row .image img{
    width: 100%;
}
.about .row .content{
    flex:1 1 45rem;
    padding:1rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:#fff;
}

.about .row .content p{
    font-size: 1.6rem;
    color:#ccc;
    padding:1rem 0;
    line-height: 1.8;
}


/*********************************************************************************************** faq html******************************/
/*FAQS*/


.faq-image-background{
    position: relative;    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5%;
}
.faq-image-background {
    background-image: url("/images/block_wall.jpg");    
} 

.faq_statement{
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 17px;     
  width: 100%;
  text-align: center; 
  margin-left: auto;
  margin-right: auto;
  padding: 5%;
 
}           

/* faq click and view old*/
.faq{
    background-color: #000;
    border-radius: 0.4rem;
    margin-bottom: 1rem;
    padding: 1rem;
    box-shadow:  0.5rem 2px .5rem rgb(5, 5, 5);
}

.faq_question {
    font-size: 2rem;
    color: var(--main-color);
    text-decoration: none;
    background-color: #000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
           
}
.faq_question .fa-angle-up {
    display: none;
}

.faq_answer{
    font-size: 1.6rem;
    color: #fff;
    padding: 2rem;
}

.faq_answer_container {
    background-color: #0d0d0e;
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-family:fantasy;
    padding-top: 1%;
    padding-bottom: 1%;
    color: #fff;
    border-radius: 0.4rem;    
    overflow: hidden;
    position: relative;   
    
}    

.faq_answer_container::before{   
    content: "";
    position: absolute;
    width: .6rem;
    height: 90%;
    background-color: #8fc460;
    top: 50%;
    left: 0;
    transform: translateY(-50%);  
        
}
.fa-angle-down, .fa-angle-up{
    font-size: 25px;
    color: white;
}

.faq:target .answer{
    max-height: 20rem;    

}

.faq:target .faq_answer{
    max-height: 20rem;    

}
.faq:target .faq_question .fa-angle-down{
    display: none;

}
.faq:target .faq_question .fa-angle-up{
    display: block;

}

/* Additional open and Shows box 2*/

.question{
    font-size: 2rem;
    color: var(--main-color);
    text-decoration: none;
    background-color: #000;
    width: 100%;
    display: flex;
    justify-content: space-between;    
    padding: 2rem;
}

.answer_box{
    background-color: #0d0d0e;    
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-family:fantasy;
    padding-top: 1%;
    padding-bottom: 1%;
    color: #fff;
    border-radius: 0.4rem;    
    overflow: hidden;
    position: relative;   
}
.answer_box::before{   
    content: "";
    position: absolute;
    width: .6rem;
    height: 90%;
    background-color: #8fc460;
    top: 50%;
    left: 0;
    transform: translateY(-50%);  
        
}
.answer{
    font-size: 1.6rem;
    color: #fff;
    padding: 2rem;
}

/*******************************************/


/*
.faq-image-background{
    position: relative;    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5%;
}
.faq-image-background {
    background-image: url("/images/block_wall.jpg");    
} 

.faq_statement{
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 17px;     
  width: 100%;
  text-align: center; 
  margin-left: auto;
  margin-right: auto;
  padding: 1%;
 
}           

/*

/*faq method without script start 
.according-item{
    background-color: #000;
    border-radius: 0.4rem;
    margin-bottom: 1rem;
    padding: 1rem;
    box-shadow:  0.5rem 2px .5rem rgb(5, 5, 5);
}
.according-link{
    font-size: 1.6rem;
    color: green;
    text-decoration: none;
    background-color: #000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}
.fa-angle-down, .fa-angle-up{
    font-size: 25px;
    color: white;
}
.according-link i{
    color: #e7d5ff;
    padding: .5rem;

}
.according-link .fa-angle-up{
    display: none;
}
.answer{
    max-height: 0;
    overflow: hidden;
    position: relative;
    background-color: #0d0d0e;
    transition:650ms;
     
    
}
.answer::before{
    content: "";
    position: absolute;
    width: .6rem;
    height: 90%;
    background-color: #8fc460;
    top: 50%;
    left: 0;
    transform: translateY(-10%);  

}
.q-answer{
    font-size: 1.4rem;
    color: #fff;
    padding: 2rem;
}
/ handling clickable/
.according-item:target .answer{
    max-height: 20rem;    

}
.according-item:target .q-answer{
    max-height: 20rem;    

}
.according-item:target .according-link .fa-angle-down{
    display: none;

}
.according-item:target .according-link .fa-angle-up{
    display: block;

}
faq method without script end */



/* faq click and view old*
.faq_question {
    color: green;
    display: inline-block;
    cursor: pointer;           
    background:var(--black);
    width: 100%;
    font-size: 25px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid white;           
    font-family:Copperplate Gothic Light; 
    text-align: center;  
           
}

.faq_answer_container {
    background-color: var(--black);
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-family:fantasy;
    padding-top: 1%;
    padding-bottom: 1%;
    color: #fff;
    border: 2px solid white; 
     
    
}     

/
/*********************************************************************staff *****************************************************************/
.review{
    margin-top: 5%;
}
.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
    
}

.review .box-container .box{
    border:var(--border);
    text-align: center;
    padding:3rem 2rem;
}

.review .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color:#ccc;
    padding:2rem 0;
}

.review .box-container .box .user{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    object-fit: cover;
}


.review .box-container .box h3{
    padding:1rem 0;
    font-size: 2rem;
    color:#fff;
}

.review .box-container .box .stars i{
    font-size: 1.5rem;
    color:var(--main-color);
}



/*****************************************************************************CONTACT US HTML************************************************************************************/
/***********************map element using leaflet********************************/
#mapid{
	height:500px;
	width:100%;
    border: 2px solid rgb(5, 5, 5); 
	margin-top: 2%; 
    
  
}
.map-box{
    width: 100%;
    padding-top: 2%;
}
.google_link{
    text-align: center; 
    font-family: cursive;
   
}
.contact-image-background{
    position: relative;    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-image-background {
    background-image: url("/images/steps-edit.jpeg");    
} 
.wrapper{    
    box-sizing: border-box;
    outline: none; 
    border: 2px solid rgb(5, 5, 5);   
    width: 100%;  
    margin-left:auto;
    margin-right:auto; 
}
.google_link{
    text-align: center;  
    background-color: #111; 
    color: white;  
    padding: 18px; 
    font-size: 23px; 
    letter-spacing: 10px; 
    width: 100%;    
    opacity: 0.90; 
    
}
.contact-form{
    text-align: center;    
    background:#242323;    
    border-radius: 10px;    
    margin-left:auto;
    margin-right:auto;
    border:blue solid 2px;
   
}
.error{
    color:red;
    font-family: serif;
    font-size: 20px;
    padding-top: 2%;
    padding-bottom: 2%;
}
.clabel{
	font-size: 20px;
	color:green;
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
}
input{
    background-color: var(--black);
    width: 100%;
	margin-left:auto;
	margin-right:auto;
	padding-left:0%;
	padding-right:0%;
    text-align: center;
    font-size: 15px;
    color: snow;  
    padding-top: 2%;
    padding-bottom: 2%;
    
}
.gender-input{   
    width: 80%;
    padding-top: 2%;
    padding-bottom: 2%;
}
select{
    color: snow;  
    width: 100%;
    text-align: center;
    font-size: 15px;
    background-color: var(--black);
    padding-top: 2%;
    padding-bottom: 2%;
}
option{
    color: black;
    width: 100%;    
    
}
.interest_options{
    color:blue; 
    font-size:16px; 
    background-color: black;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-right: 2%;
}
fieldset {
	text-align: center;
	margin-top:15px;
	width: 40%;	   
    border: 2px solid white; 
    background-color: var(--black);
    padding-top: 10%;
    padding-bottom: 2%;
}
fieldset input{
	text-align:left;
    padding-bottom: 2%;
    
}

textarea{
    background-color: var(--black);
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: snow;    
}
.submit-btn{
    text-align: center;
    background-color: black;    
    color:red;   
    margin-left: auto;
    margin-right: auto;  
    margin-top: 1%;    
    cursor: pointer;
    width: 100%;
    font-size: 20px;
    padding-top: 2%;
    padding-bottom: 2%;
}
.whatsapplink{
    text-align: center;
    background-color: black;
    padding-top: 1%;
    padding-bottom: 1%;
    color:green;   
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    margin-top: 1%;
}
.whatsapp{
    font-size: 20px;
    color:green;
}


/********************************************************* students html *******************************************/

.video_container{
    width: 100%;
    height: 600px;
    background:url(/images/blocks.jpg) no-repeat;
    background-color: rgb(173, 173, 173);
    text-align: center; 
    margin-top: 5%;   
}
#myVideo{
    position:flex;
    width: 100%;  
    height: 100%;     
}

#pausing_video{
  height: 50px;        
  width: 100%;
  font-size: 20px; 
  border: white 1px solid;
  background: #000;
  color: #fff;
  cursor: pointer;
}
#pausing_video:hover {
    background: #ddd;
    color:#111;
}
.subject-link{
  height: 50px;        
  width: 100%;
  font-size: 20px; 
  border: white 1px solid;  
  color: #fff;
  cursor: pointer;
  background: var(--bg);
}
.subject-link:hover{
    
    background: var(--main-color);
}

/************************************************* subjects *********************************/
.subject-welcome-conta{
    text-align: center;
    color:#fff;
    text-transform: uppercase;
    margin-top: 10rem;
    font-size: 3rem;   
    
}

.subj-welcomin_text, .select-other-subj{
    text-align: center;  
    background-color: #111; 
    color: skyblue;  
    padding: 10px; 
    font-size: 25px;     
    width: 100%;      
    
}
.select-other-subj:hover{
    background-color:var(--black);
    border:var(--border);
    cursor: pointer; 
      
}

.subject-blog .subject-box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.subject-blog .subject-box-container .subject-box{
    border:var(--border);    
}

.subject-blog .subject-box-container .subject-box .image{
    height: 100%;
    overflow:hidden;
    width: 100%;
}

.subject-blog .subject-box-container .subject-box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.subject-blog .subject-box-container .subject-box:hover .image img{
    transform: scale(1.2);
}

.subject-blog .subject-box-container .subject-box .subject-content{
    padding:2rem;
}

.subject-blog .subject-box-container .subject-box .subject-content .title{
    font-size: 2.5rem;
    line-height: 1.5;
    color:#fff;
}

.subject-blog .subject-box-container .subject-box .subject-content .title:hover{
    color:var(--main-color);
}

.subject-blog .subject-box-container .subject-box .subject-content span{
    color:var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.subject-blog .subject-box-container .subject-box .subject-content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color:#ccc;
    padding:1rem 0;
}

.subject-papers{
    height: 50px;        
    width: 100%;
    font-size: 20px; 
    border: white 1px solid;  
    color: #fff;
    cursor: pointer;
    background: var(--bg);
}
.papers-list{
    height: 50px;        
    width: 100%;
    font-size: 20px;     
    color: var(--main-color);
    cursor: pointer;
    
}
.subject-papers:hover{
      
    background: var(--main-color);
}

