You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
782 lines
11 KiB
CSS
782 lines
11 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Poppins", sans-serif;
|
|
}
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
padding: 20px 40px !important;
|
|
}
|
|
|
|
.navLink {
|
|
color: #000033 !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
padding: 8px 16px !important;
|
|
background-color: transparent !important;
|
|
border: 2px solid rgb(97, 97, 97) !important;
|
|
border-radius: 8px !important;
|
|
font-size: 16px !important;
|
|
color: black !important;
|
|
cursor: pointer !important;
|
|
outline: none !important;
|
|
}
|
|
|
|
.navLink::after {
|
|
content: '';
|
|
display: block;
|
|
width: 0;
|
|
height: 3px;
|
|
background: #E28527;
|
|
transition: width .4s ease-in;
|
|
}
|
|
|
|
.navLink:hover {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.navLink:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.phone-number {
|
|
margin-top: 8px;
|
|
margin-left: -11px;
|
|
margin-right: 25px;
|
|
}
|
|
|
|
.course-link {
|
|
text-decoration: none; /* Removes the underline */
|
|
color: #333; /* Replace #333 with your desired color */
|
|
font-weight: bold; /* Optional: Make it bold */
|
|
}
|
|
|
|
.course-link:hover {
|
|
color: #E28527; /* Optional: Change the color on hover */
|
|
text-decoration: underline; /* Optional: Add underline on hover */
|
|
}
|
|
|
|
@media only screen and (min-width: 320px) and (max-width: 767px) {
|
|
|
|
.main-section {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 20px !important;
|
|
}
|
|
|
|
.logoImg {
|
|
width: 150px;
|
|
}
|
|
|
|
.contactBtn {
|
|
display: none !important;
|
|
}
|
|
|
|
.navList {
|
|
display: inline;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
.mentorHeading {
|
|
background-color: #FFF3E4;
|
|
padding: 2rem 0 2rem 0;
|
|
}
|
|
|
|
.mentorHeading h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.search-bar {
|
|
position: relative;
|
|
display: block;
|
|
margin-inline: auto;
|
|
width: 80%;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.search-input {
|
|
width: 100%;
|
|
padding: 11px;
|
|
border: 2px solid #ccc;
|
|
border-radius: 5px;
|
|
outline: none;
|
|
}
|
|
|
|
.search-icon {
|
|
position: absolute;
|
|
top: 26px;
|
|
right: 26px;
|
|
transform: translateY(-50%);
|
|
cursor: pointer;
|
|
border: navajowhite;
|
|
background-color: snow;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
/*padding: 40px 20px;*/
|
|
gap: 20px;
|
|
}
|
|
|
|
.course-section {
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.left-content {
|
|
flex: 1.4;
|
|
text-align: left;
|
|
}
|
|
|
|
.small-text {
|
|
font-size: 14px;
|
|
color: #666;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.heading {
|
|
font-size: 40px;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.description {
|
|
font-size: 20px;
|
|
color: #555;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.enroll-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.enroll-button {
|
|
background-color: #DF780F;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.enroll-button:hover {
|
|
background-color: #FFCF9E;
|
|
}
|
|
|
|
.rating {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.stars {
|
|
color: #fbc02d;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.rating-text {
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
|
|
|
|
.right-content {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.image-container {
|
|
position: relative;
|
|
}
|
|
|
|
.preview-image {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.icon-overlay {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
}
|
|
|
|
.icon-overlay img {
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.preview-text {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
.details {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
gap: 20px;
|
|
}
|
|
|
|
.detail {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.detail-text {
|
|
font-size: 14px;
|
|
color: #333;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.detail-text .highlight {
|
|
color: #ff5722;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.container {
|
|
flex-direction: column;
|
|
}
|
|
.course-section {
|
|
padding: 30px 10px;
|
|
}
|
|
.left-content {
|
|
text-align: left;
|
|
}
|
|
|
|
.enroll-container {
|
|
gap: 10px;
|
|
}
|
|
|
|
.details {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
gap: 20px;
|
|
margin-top: -3px;
|
|
}
|
|
|
|
|
|
.content {
|
|
text-align: left;
|
|
}
|
|
|
|
.heading {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.description {
|
|
font-size: 12px;
|
|
}
|
|
.enroll-button {
|
|
width: 80px;
|
|
background-color: #007BFF;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px;
|
|
font-size: 12px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
height: 30px;
|
|
}
|
|
|
|
.detail-text {
|
|
font-size: 8px;
|
|
color: #333;
|
|
/* margin-top: 18px; */
|
|
margin-left: -6px;
|
|
}
|
|
.icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.preview-text {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
|
|
.what-we-cover {
|
|
padding: 0px 60px;
|
|
}
|
|
|
|
.divider {
|
|
width: 100%;
|
|
height: 1px;
|
|
background-color: #ccc;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.section-heading {
|
|
text-align: left;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
|
|
.points-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
}
|
|
|
|
.column {
|
|
flex: 1;
|
|
}
|
|
|
|
.point {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 18px;
|
|
color: green;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
color: #555;
|
|
margin: 0;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.points-container {
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
.what-we-cover {
|
|
padding: 0px 20px;
|
|
}
|
|
|
|
.column {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* Details Section */
|
|
.details-section {
|
|
background-color: #fff;
|
|
padding: 50px 50px;
|
|
}
|
|
|
|
.details-heading {
|
|
text-align: left;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.details-content p2 {
|
|
font-size: 16px;
|
|
color: #555;
|
|
line-height: 1.6;
|
|
text-align: left;
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.read-more-link {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.read-more-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.details-content p2 {
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.details-section {
|
|
padding: 30px 20px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
.course-content-section {
|
|
padding: 50px 50px;
|
|
}
|
|
|
|
.course-content-heading {
|
|
text-align: left;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.lesson-card {
|
|
background-color: #fff;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.lesson-card2 {
|
|
background-color: #fff;
|
|
margin-bottom: 20px;
|
|
border: 2px solid #ccc;
|
|
}
|
|
.lesson-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #FFFBF7;
|
|
padding: 10px;
|
|
}
|
|
.lesson-header2 {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #FFFBF7;
|
|
padding: 10px;
|
|
}
|
|
.lesson-title2 {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
.lesson-title {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.lesson-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.lesson-description {
|
|
margin-top: 15px;
|
|
font-size: 16px;
|
|
color: #555;
|
|
line-height: 1.6;
|
|
padding: 10px;
|
|
}
|
|
|
|
.lesson-points-horizontal{
|
|
display: flex;
|
|
padding: 10px;
|
|
gap: 60px;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.course-content-heading {
|
|
font-size: 20px;
|
|
}
|
|
|
|
|
|
.lesson-title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.lesson-description {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.course-content-section {
|
|
padding: 20px;
|
|
}
|
|
|
|
|
|
.lesson-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.lesson-description {
|
|
margin: 15px 0;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
|
|
.lesson-points-horizontal {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 20px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.lesson-point {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
width: 30%;
|
|
}
|
|
|
|
.tick-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.lesson-points-horizontal {
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.lesson-point {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.writer-review-container {
|
|
max-width: 800px;
|
|
padding: 0px 40px;
|
|
background-color: #fff;
|
|
}
|
|
.writer-review-header {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
/* align-items: center; */
|
|
margin-bottom: 20px;
|
|
/* padding-left: 30px; */
|
|
align-items: baseline;
|
|
}
|
|
.writer-review-title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.view-other-reviews {
|
|
font-size: 14px;
|
|
color: gray;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.view-other-reviews:hover {
|
|
color: #000;
|
|
}
|
|
|
|
.review-input-section {
|
|
display: flex;
|
|
justify-content: center;
|
|
/* align-items: center; */
|
|
gap: 0;
|
|
/* padding-top: 10px; */
|
|
}
|
|
|
|
.review-input-box {
|
|
width: 70%;
|
|
height: 40px;
|
|
border: 2px solid #ccc;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
color: #333;
|
|
height: 60px;
|
|
}
|
|
|
|
.review-input-box::placeholder {
|
|
color: #aaa;
|
|
}
|
|
|
|
.star-rating-box {
|
|
display: flex;
|
|
gap: 5px;
|
|
background-color: #2196F3;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
/* width: 30%; */
|
|
margin-left: -5px;
|
|
align-items: center;
|
|
}
|
|
|
|
.star {
|
|
font-size: 20px;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.writer-review-container {
|
|
padding: 15px;
|
|
}
|
|
|
|
.writer-review-title {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.view-other-reviews {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.review-input-box {
|
|
width: 60%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.star {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.mobileFooterSection {
|
|
display: none;
|
|
}
|
|
|
|
/* FooterSection */
|
|
|
|
.footerSection {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
background-color: #223545;
|
|
color: #fff;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.footerLogoSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
column-gap: 1rem;
|
|
}
|
|
|
|
.footerLogoImg {
|
|
width: 235px;
|
|
height: 100%;
|
|
}
|
|
|
|
.socialSection {
|
|
list-style: none;
|
|
display: flex;
|
|
column-gap: 1rem;
|
|
padding: 0;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.socialSection .socialIcons {
|
|
padding: 6px;
|
|
display: flex;
|
|
color: #FFF;
|
|
}
|
|
|
|
.socialSection .socialIcons:hover {
|
|
background: #fff;
|
|
border-radius: 50%;
|
|
color: #000;
|
|
}
|
|
|
|
.footerLogoSection p {
|
|
color: #D1D1D1;
|
|
margin-top: 0;
|
|
}
|
|
.courseSection h3,
|
|
.quickLinkSection h3 {
|
|
margin-top: 0;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.courseSection ul,
|
|
.quickLinkSection ul {
|
|
padding: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 1rem;
|
|
}
|
|
|
|
.courseSection ul a,
|
|
.quickLinkSection ul a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
/* Footer */
|
|
@media only screen and (min-width: 320px) and (max-width: 767px) {
|
|
|
|
.mobileFooterSection {
|
|
padding-inline: 2rem;
|
|
}
|
|
|
|
.footerSection {
|
|
display: none;
|
|
}
|
|
|
|
.mobileFooterSection {
|
|
display: block;
|
|
background-color: #223545;
|
|
color: #fff;
|
|
padding-block: 1.5rem;
|
|
}
|
|
|
|
.mobileFooterSection .footerLogoSection {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.linksSection {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.courseSection ul a,
|
|
.quickLinkSection ul a {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.courseSection h3,
|
|
.quickLinkSection h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.socialSection {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.footerContent p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
} |