:root {

  /* color variables  */
  --white: #FFFFFF;
  --black: #000000;
  --grey: #EDEDED;
  --purple: #4C203F;
  --yellow: #FFC400;


  /* typo varibale*/
  --manrope: 'ProximaNovaRegular', sans-serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
max-width: 100%;
overflow-x: hidden;
font-family: var(--manrope);
background-color: var(--white);
}

/* utilities */

.p-tb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.m-auto {
  margin: auto;
}

.m-tb10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.clr-black{
color: var(--black);
font-weight: 600;
}  

h1 {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  line-height: 35px;
  color: var(--black);
}

h2 {
font-family: var(--manrope);
font-size: 10.5px;
font-weight: 500;
line-height: 25px;
color: var(--black);
}
h3 {
font-family: var(--manrope);
font-size: 22px;
font-weight: 600;
line-height: 25px;
color: var(--black);
}
h4 {
font-family: var(--manrope);
font-size: 15px;
font-weight: 500;
line-height: 25px;
color: var(--black);
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
h4 {
  font-size: 11px;
  line-height: 20px;
}
}
/* navbar starts from here */

.navbar{
background-color: var(--purple);
}
.nav-dash{
background-color: var(--grey);
}
.navbar img{
width: 7rem;
}
/* navbar ends here */

/* form starts from here */

.form{
border-radius: 10px;
background-color: var(--grey);
padding: 20px;
}

/* .form-login{
padding-top: 2rem;
} */

.form-forgot{
height: 14.5rem;
width: 28rem;
border-radius: 10px;
background-color: var(--grey);
padding-left: 10px;
padding-right: 10px;
}

.form-change{
height: 28rem;
width: 28rem;
border-radius: 10px;
background-color: var(--grey);
padding-left: 10px;
padding-right: 10px;
}
.btn-form {
position: relative;
transition: all 0.3s ease-in-out;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
padding-block: 0.5rem;
padding-inline: 1.25rem;
background-color: var(--purple);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--yellow);
gap: 10px;
outline: none;
overflow: hidden;
font-size: 16px;
min-width: 130px;
text-decoration: none;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
.btn-form {
  padding-inline: 0.6rem;
}
}


.btn-form button {
display: block;
transition: all 0.3s ease-in-out;
}

button{
border: none;
background-color: var(--purple);
color: #fff;
font-size: 15px;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.btn-form:hover{
  box-shadow: 0px 6px 11px 0px #4c203f7d;
  color: #fff;
}
.btn-form:hover button{
  color: var(--yellow);
}

.btn-form i {
display: block;
transform-origin: center center;
transition: transform 0.3s ease-in-out;
}

.btn-form:hover .svg-wrapper {
animation: fly-1 0.6s ease-in-out infinite alternate;
}

.btn-form:hover i {
transform: translateX(1.8em) rotate(45deg) scale(1.1);
}

/* .btn-form:hover button {
transform: translateX(5em);
} */

.btn-form-project:hover svg {
transform: translateX(5.2em) rotate(45deg) scale(1.1);
}

.btn-form-project{
font-size: 15px;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
.btn-form-project {
  font-size: 11px;
}
}

.btn-form-project:hover span {
transform: translateX(12em);
}
.btn-form:active {
transform: scale(0.95);
}

@keyframes fly-1 {
from {
  transform: translateY(0.1em);
}

to {
  transform: translateY(-0.1em);
}
}

.btn-dash{
text-decoration: none;
width: 200px;
height: 38px;
background-color: var(--purple);
border: 1px solid var(--purple);
border-radius: 7px;
color: var(--yellow);
padding: 7px 0px 0px 12px;
}

.btn-dash:hover{
background-color: var(--yellow);
color: var(--purple);
}


.form-item {
display: flex;
flex-direction: column;
gap: 7px;
position: relative;
color: white;
}

.form-item .label {
font-size: 15px;
top: 13px;
transition: 0.3s;
pointer-events: none;
color: var(--black);
}

.input {
/* width: 200px; */
height: 45px;
border: none;
outline: none;
padding: 0px 7px;
border-radius: 6px;
color: var(--black);
font-size: 15px;
background-color: #fff!important;
border: 1px solid #b8b8b8;
}

.input:focus {
border: 2px solid transparent;
color: var(--black);
box-shadow: 0px 2px 4px rgb(201, 201, 201);
}


.form-item .input:focus {
box-shadow: 0px 2px 4px rgb(221, 221, 221);
}

.forgot-text{
text-decoration: none;
color: var(--purple);
display: flex;
justify-content: end;
font-size: 0.8rem;
}


/* form ends here */



/* footer starts from here */


/* footer ends here */


/* dashboard starts from here */

.d-md-block{
display: none;
}
.navbar{
background-color: var(--purple);
}

.navbar-toggler{
border: 0.12rem solid var(--yellow);
}

.navbar-toggler-icon{
background-color: var(--white);
border-radius: 0.2rem;
border: 0.12rem solid var(--yellow);
}

.nav-dash-item{
padding-left: 48px;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
.nav-dash-item{
  padding-left: 0.7rem;
}
}

.dash-left{
background-color: var(--purple);
height: 100vh;
overflow: hidden;
overflow-y: scroll;
scrollbar-width: none;
}

.dash-left h4{
padding-left: 2rem;
padding: 14px 24px 14px 24px;
}
.dash-left h4:hover{
background-color: var(--yellow);
padding: 14px 24px 14px 24px;
}
.dash-mid:hover{
color: var(--purple);
}

.dash-img{
background-color: var(--purple);
padding: 10px;
margin-right: 65.8rem;
}
.dash-img img{
width: 8rem;
padding-left: 13px;
}

.dash-mid{
text-decoration: none;
color: var(--white);
}

.dashboard-btn{
margin-top: 4.2rem;
}

.vertical {
border-left: 0.8px solid rgb(255, 255, 255);
}
.vertical-line {
border-left: 0.8px solid rgb(255, 255, 255);
margin-left: 48px;
}

.vertical-line h4{
padding-left: 1rem;
}

.bg-header{
background-color: var(--grey);
}

.project-item{
margin-left: 211px;
}
.project-item h3{
margin-left: -15px;
}

.box {
box-shadow: 0 3px 6px rgba(0,0,0,0.15);
/* background-color: var(--grey); */
border-radius: 3px;
overflow: hidden;
margin-top: 70px;
}

.tab-list {
margin: 0;
padding: 0;
list-style: none;
display: flex;
position: relative;
}

.tab-list::before {
content: '';
display: block;
height: 54px;
width: 25%;
position: absolute;
bottom: 0;
background-color: var(--yellow);
transition: .3s;
opacity: 0.5;
}

.tab-item {
flex: 1;
text-align: start;
padding-left: 3rem;
transition: .3s;
opacity: 0.5;
}

.tab-toggle {
display: none;
}

.tab-content {
display: none;
}

.tab-toggle:nth-child(1):checked ~ .tab-list .tab-item:nth-child(1),
.tab-toggle:nth-child(2):checked ~ .tab-list .tab-item:nth-child(2), 
.tab-toggle:nth-child(3):checked ~ .tab-list .tab-item:nth-child(3),
.tab-toggle:nth-child(4):checked ~ .tab-list .tab-item:nth-child(4) {
opacity: 1;
}

.tab-toggle:nth-child(2):checked ~ .tab-list::before {
transform: translateX(100%);
}

.tab-toggle:nth-child(3):checked ~ .tab-list::before {
transform: translateX(200%);
}

.tab-toggle:nth-child(4):checked ~ .tab-list::before {
transform: translateX(300%);
}

.tab-toggle:nth-child(1):checked ~ .tab-container .tab-content:nth-child(1),
.tab-toggle:nth-child(2):checked ~ .tab-container .tab-content:nth-child(2),
.tab-toggle:nth-child(3):checked ~ .tab-container .tab-content:nth-child(3),
.tab-toggle:nth-child(4):checked ~ .tab-container .tab-content:nth-child(4) {
display: block;
}

.tab-trigger {
display: block;
padding: 10px 0;
}

.tab-container {
padding: 0px 0px;
margin-top: -8px;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
.tab-container {
  padding: 15px 0px 0px 0px;
}
}
.tab-text {
margin: 0;
padding: 12px 0px 30px 0px;
list-style: none;
display: flex;
position: relative;
gap: 37px;
padding-left: 48px;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
.tab-text {
  padding: 0px 0px 20px 10px;
  gap: 20px;
}
.tab-program {
  gap: 30px !important;
  padding-left: 9px !important;
}
.btn-edit{
 margin-top: -2rem;
 font-size: 11px;
 width: 31px !important;
height: 18px !important;
}
}
.tab-program {
margin: 0;
list-style: none;
display: flex;
position: relative;
gap: 30px;
padding-left: 15px;
}

.leader{
padding-top: 42px;
}
.btn-edit{
text-decoration: none;
border: 1px solid var(--purple);
background-color: var(--purple);
color: var(--yellow);
width: 42px;
height: 24px;
border-radius: 4px;
padding: 0px 4px 0px 6px;
}

.btn-edit:hover{
background-color: var(--yellow);
color: var(--purple);
}

.btn-edit-item{
padding-right: 1.6rem;
}
.number{
border: 1px solid var(--black);
background-color: var(--black);
color: var(--white);
width: 24px;
height: 24px;
border-radius: 4px;
padding: 0px 0px 0px 6px;
}

.tab-text-item{
margin: 0;
list-style: none;
display: flex;
position: relative;
gap: 82px;
padding-left: 15px;
padding-top: 1rem;
}
.tab-text-item-2{
margin: 0;
list-style: none;
display: flex;
position: relative;
gap: 92px;
padding-left: 15px;
padding-top: 1rem;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
.number{
  font-size: 10px;
  width: 16px;
  height: 16px;
  padding: 0px 0px 0px 4px;
}
.tab-text-item{
  gap: 54px;
}
.tab-text-item-2{
  gap: 58px;
}
}
.program{
border: 1px solid rgb(220, 220, 220);
border-radius: 7px;
padding: 12px 0px 0px 0px;
width: 56.5vw;
background-color: rgb(237, 237, 237);
margin-left: 48px;
margin-top: 3rem;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
.program{
  width: 96%;
  margin-left: 8px;
  margin-right: 8px;
}
}
/* dashboard ends here */