:root {
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --orange-color: #f59e0b;
  --green-color: #22c55e;
  --red-color: #f44336;
  --grey-color: #888;
}
/* Start Box */
.d-flex {
  display: flex;
  gap: 20px;
}
.f-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.mt-10{
  margin-top: 10px;
}
.pointer{
  cursor: pointer;

}
.inline{
  display: inline;
}
.w-100{
  width: 100px;
}
.justify{
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}
.d-grid {
  display: grid;
}
.gap-20 {
  gap: 20px;
}
.d-block {
  display: block;
}
@media (max-width: 767px) {
  .block-mobile {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
}
/* End Box */
/* Start Padding + Margin */
.p-5 {
  padding: 5px;
}
.p-10 {
  padding: 10px;
}
.p-15 {
  padding: 15px;
}
.p-20 {
  padding: 20px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pr-5 {
  padding-right: 5px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-15 {
  padding-right: 15px;
}
.m-0 {
  margin: 0;
}
.m-15 {
  margin: 15px;
}
.m-20 {
  margin: 20px;
}
.mt-0 {
  margin-top: 0;
}
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-100{
  margin-top: 100px;
}
.mr-10 {
  margin-left: 10px;
}
.mr-15 {
  margin-left: 15px;
}
.mr-20 {
  margin-left: 20px;
}
.ml-5 {
  margin-right: 5px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
/* End Padding + Margin */
/* Start Color */
.c-black {
  color: black;
}
.c-white {
  color: white;
}
.c-grey {
  color: var(--grey-color);
}
.c-red {
  color: var(--red-color);
}
.c-green {
  color: var(--green-color);
}
.c-blue {
  color: var(--blue-color);
}
.c-orange {
  color: var(--orange-color);
}
.bg-red {
  background-color: var(--red-color);
}
.bg-green {
  background-color: var(--green-color);
}
.bg-blue {
  background-color: var(--blue-color);
}
.bg-orange {
  background-color: var(--orange-color);
}
.bg-white {
  background-color: white;
}
.bg-eee {
  background-color: #eee;
}
/* End Color */
/* Start Position */
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
/* End Position */
/* Start Font */
.txt-c {
  text-align: center;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-18 {
  font-size: 18px;
  padding-right: 20px;
}
.fs-25 {
  font-size: 25px;
}
.fs-30{
  font-size: 35px;
  margin-bottom: 10px;
}
.fs-35 {
  font-size: 35px;
  padding-bottom: 10px;
}
.fs-36{
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 10px;
}



.fw-bold {
  font-weight: bold;
}

@media (max-width: 767px) {
  .txt-c-mobile {
    text-align: center;
  }
}
/* End Font */
/* Start Border */
.rad-6 {
  border-radius: 6px;
}
.rad-10 {
  border-radius: 10px;
}
.rad-20{
  border-radius:20p;
}
.rad-half {
  border-radius: 50%;
}
.b-none {
  border: none;
}
.border-ccc {
  border: 1px solid #ccc;
}
.border-eee {
  border: 1px solid #eee;
}

/* End Border */
/* Start Width + Height */
.w-full {
  width: 100%;
}
.w-100 {
  width: 100px;
}
.w-fit {
  width: fit-content;
}
.h-full {
  height: 100%;
}
.h-100 {
  height: 100px;
}
/* End Width + Height */
/* Start Components */
.center-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.between-flex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.btn-shape {
  border-radius: 10px;
  font-weight: bold;
}

.btn1-shape {
  padding: 7px 10px;
  border-radius: 10px;
}

.start-flex {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin-top: 20px;
}
.fs-20{
  font-size: 20px;
  font-weight: bold;
}

.btn-color{
  font-size: 23px;
  padding: 0px 10px;
  color: white;
  display: block;
  background-color: var(--orange-color);
  width: 100px;
  height: 40px;
}
.btn-vip{
  font-size: 25px;
  font-weight: bold;
  align-items: center;
  padding: 2px 32px;
  color: white;
  display: block;
  width: 100px;
  height: 40px;
  background-color: var(--vip-color);
}


 
.courses-page1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.courses-page2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 50px;
    margin-right: 100px;
    padding-bottom: 50px; 
}

.p-absolute{
  position: absolute;
  width: 450px;
  height: 380px;
  top: 55%;
  transform: translateY(-50%);
  margin: auto;
  left: 0;
}
.p-absolute1{
  position: absolute;
  width: 100%;
  height: 100%;
}
.p-absolute2{
  position: absolute;
  width: 100%;
  height: 100%;
}

.m-auto{
  margin: 5px auto;
}
/* End Components */


