@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	background: #030014;
	max-width: 1920px;
	margin: auto;
    box-sizing: border-box;
    overflow: auto;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

p, span, a, button, ul, select{
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  margin: 0;
}

ul{
  margin: 0;
  padding: 0;
}

ul li{
  list-style: none;
}

.landing-container{
    padding: 0 251px;
  }
  
  @media screen and (max-width: 1560px) {
    .landing-container{
      padding: 0 100px;
    }
  }
  
  
  @media screen and (max-width: 1366px) {
    .landing-container{
      padding: 0 50px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .landing-container{
      padding: 0 25px;
    }
  }
  
  
  @media screen and (max-width: 550px) {
    .landing-container{
      padding: 0 20px;
    }
  }
  

.landing-container .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 100px 0;
}

.landing-container .hero-section .title {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    max-width: 963px;
}

.landing-container .hero-section .description {
    color: #DBDBDB;
    text-align: center;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 930px;
}

.join-btn {
    display: flex;
    width: 333px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background: #654DF8;
    box-shadow: 0px 4px 20px 0px #654DF8;
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: relative;
    z-index: 4;
    transition: .3s;
}

.join-btn:hover{
    transform: translateY(-5px);
    transition: .3s;
}

.landing-container .courses-section {
}

.landing-container .courses-section .crouses-carousel {
}

.landing-container .courses-section .crouses-carousel .carousel-inner {
    display: inline-flex;
    align-items: center;
    gap: 62px;
}

.landing-container .courses-section .crouses-carousel .carousel-inner .crouse {
    width: 794px;
    height: 514px;
    border-radius: 10px;
    border: 1px solid rgba(101, 77, 248, 0.40);
    background: rgba(101, 77, 248, 0.15);
    backdrop-filter: blur(15px);
}

.landing-container .courses-section .crouses-carousel .carousel-inner .crouse img {
}

.landing-container .courses-section .crouses-carousel .carousel-inner .crouse .tags {
    display: flex;
    width: 253px;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.landing-container .courses-section .crouses-carousel .carousel-inner .crouse .tags .tag {
    display: flex;
    width: fit-content;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 33px;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.feebacks-section .section-container {
	display: flex;
	padding: 100px 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 25px;
	overflow: hidden;
}

.feebacks-section .section-container .flex-feedbacks {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	transition: .3s;
}

.feebacks-section .section-container .flex-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.feebacks-section .section-container .flex-header .flex-actions{
	display: flex;
	align-items: center;
	gap: 12px;
}

.feebacks-section .section-container .flex-header .flex-actions button{
	background: #654df8;
	border-radius: 50px;
	width: 40px;
	height: 40px;
}

.feebacks-section .section-container .flex-feedbacks .feedback {
	border-radius: 10px;
	border: 1px solid #a45cf6;
	background: #FFF;
	padding: 10px 20px;
	min-width: 250px;
	flex: 1;
}

.feebacks-section .section-container .flex-feedbacks .feedback .flex-profile {
	display: flex;
	align-items: center;
	gap: 10px;
}

.feebacks-section .section-container .flex-feedbacks .feedback .flex-profile .name {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.feebacks-section .section-container .flex-feedbacks .feedback .flex-profile img {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	border-radius: 52px;
	border: 1px solid #654df8;
}

.feebacks-section .section-container .flex-feedbacks .feedback p {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 20px 0;
	height: 100px;
	overflow-y: hidden;
	position: relative;
	transition: .3s;
}

.feebacks-section .section-container .flex-feedbacks .feedback p::after{
	content:'...';
	position: absolute;
	bottom: 0;
	right: 0;
}

.feebacks-section .section-container .title {
	color: #FFF;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}

.landing-container .main-goal-section .flex-wrapper {padding: 100px 0;display: flex;gap: 25px;flex-wrap: wrap;}

.landing-container .main-goal-section .flex-wrapper .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 350px;
}

.landing-container .main-goal-section .flex-wrapper .text-content .title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    max-width: 531px;
}

.landing-container .main-goal-section .flex-wrapper .text-content .description {
    color: #DBDBDB;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 650px;
    margin: 12px 0;
}

.landing-container .main-goal-section .flex-wrapper .text-content .flex-gaols {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    align-self: stretch;
}

.landing-container .main-goal-section .flex-wrapper .text-content .flex-gaols .goal {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.landing-container .main-goal-section .flex-wrapper .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-container .main-goal-section .flex-wrapper .image-container img {
    width: 100%;
    max-width: 400px;
}

.landing-container .mentors-section {padding: 100px 0;}

.landing-container .mentors-section .title {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.landing-container .mentors-section .flex-mentors {
    display: flex;
    align-items: center;
    gap: 91px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.landing-container .mentors-section .flex-mentors .mentor {
    display: flex;
    padding: 295px 26px 20px 21px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-position: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.landing-container .mentors-section .flex-mentors .mentor .info {
    width: -webkit-fill-available;
    height: 110px;
    flex-shrink: 0;
    border-radius: 25px;
    background: hsl(0deg 0% 100%);
    display: flex;
    flex-direction: column;
    padding: 35px;
}

.landing-container .mentors-section .flex-mentors .mentor .info .name {
    color: #000;
    text-align: left;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.landing-container .mentors-section .flex-mentors .mentor .info .profession {
    color: #ADABAB;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.landing-container .mentors-section .flex-mentors .mentor .info .flex-scial-media {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    margin-top: auto;
}

.landing-container .join-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.landing-container .join-section .title {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    max-width: 858px;
}

.join-section img{
    position: absolute;
    left: 0;
    z-index: 0;
}

.circle-blur{
    position: fixed;
    right: -50%;
    top: 50%;
    border-radius: 2036px;
    background: rgba(101, 77, 248, 0.23);
    filter: blur(250px);
    width: 2036px;
    height: 2036px;
    z-index: 0;
}

section{
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 476px) {
    .landing-container .hero-section .title{

font-size: 32px;

}

    .landing-container .hero-section .description{

font-size: 22px;

}

    .join-btn{

font-size: 18px;

width: 275px;

}

    .landing-container .main-goal-section .flex-wrapper .text-content .title{

font-size: 26px;

}

    .landing-container .main-goal-section .flex-wrapper .text-content .description{

font-size: 18px;
}

    .landing-container .mentors-section .title{

font-size: 28px;

}

    .landing-container .mentors-section .flex-mentors .mentor{

padding: 287px 20px 20px 20px;

width: 100%;

}

    .landing-container .join-section .title{

font-size: 32px;

}

.landing-container .main-goal-section .flex-wrapper .text-content{
    min-width: 300px;
}

.landing-container .main-goal-section .flex-wrapper .text-content .flex-gaols .goal{
    font-size: 16px;
}

.landing-container .main-goal-section .flex-wrapper .text-content .flex-gaols .goal svg{
    width: 33px;
    height: 33px;
}

.landing-container .main-goal-section .flex-wrapper, .landing-container .mentors-section, .landing-container .hero-section, .landing-container .join-section{
    padding: 50px 0;
}
}

@media screen and (max-width: 580px) {
    .feebacks-section .section-container .title {
		font-size: 28px;
	}
}