2024-07-11 20:09:47 +05:00
|
|
|
.LearnText {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
grid-gap: 25px;
|
|
|
|
padding: 50px 15px;
|
|
|
|
border-radius: 15px;
|
2024-08-08 21:47:38 +05:00
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
|
|
box-shadow: 0 0 8px 0 rgb(0, 0, 0, 0.1);
|
|
|
|
color: rgba(255, 255, 255, 0.75);
|
2024-07-11 20:09:47 +05:00
|
|
|
align-items: center;
|
|
|
|
justify-content: start;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LearnTextInside {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 750px;
|
|
|
|
grid-gap: 25px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.AboutSec {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px;
|
|
|
|
grid-gap: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LearnTextHeading {
|
|
|
|
}
|
|
|
|
|
|
|
|
.LearnTextPara {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LearnTextCharacterImgRight {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 200px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 15px;
|
|
|
|
right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
.LearnTextCharacterImgRight {
|
|
|
|
opacity: 0.1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.LearnTextCharacterImgLeft {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 200px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 15px;
|
|
|
|
left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
.LearnTextCharacterImg {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.LearnFAQ {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
grid-gap: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.learnLinks {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
grid-gap: 10px;
|
2024-08-08 21:47:38 +05:00
|
|
|
border-top: solid 1px rgba(255, 255, 255, 0.1);
|
2024-07-11 20:09:47 +05:00
|
|
|
padding: 10px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.learnLinksLink {
|
|
|
|
transition: ease 0.4s;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10px;
|
|
|
|
opacity: 0.5;
|
|
|
|
transform: scale(1);
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.learnLinksLink:hover {
|
|
|
|
transition: ease 0.4s;
|
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1.02);
|
2024-08-08 21:47:38 +05:00
|
|
|
background: rgba(255, 255, 255, 0.1);
|
2024-07-11 20:09:47 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
.learnLinksLinkImg {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 28px;
|
|
|
|
}
|
|
|
|
|
2024-08-08 21:47:38 +05:00
|
|
|
.IBMSMSMBSSTagsTag.IBMSMSMBSSTagsTagNSFW:hover {
|
|
|
|
border: unset;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|