

/* =========== VARIABLES =========== */
@import url(./variable.css);


/* =========== RESET =========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font: inherit;
}

img, span, a, ion-icon {
    display: block;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

html {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar { width: 5px; }

::-webkit-scrollbar-track { background: var(--light-gray);}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--red-orange-color-wheel);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ultramarine-blue);
}

/* =========== COMPONENT =========== */

.btn {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    border-radius: 8px;
    color: var(--white);
    padding: 20px 25px;
    text-transform: uppercase;
    overflow: hidden;
}

.btn .btn-text {
    position: relative;
    z-index: 5;
}

.btn-primary,
.btn-secondary .square { background: var(--red-orange-color-wheel); } 

.btn .square {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--default-transition);
}

.btn:hover .square {
    right: -2px;
    width: 102%;
    height: 102%;
}

.btn-primary .square,
.btn-secondary {
    background: var(--oxford-blue);
}

/* =========== REUSED CSS =========== */

.section-subtitle {
    color: var(--ultramarine-blue);
    font-weight: var(--fw-7);
    text-transform: uppercase;
}

.section-text {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    line-height: 1.6;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.descript.section-title{
    text-align: left;
}
.descript{
    text-align: left !important;
}

.section-intro {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}


/* =========== MAIN =========== */

.container {
    max-width: 1699px;
    margin: 0 auto;
}

header{
    background: hsla(0, 0%, 100%, 0.9);
    height: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px var(--px);
    box-shadow: 0 10px 20px -5px hsla(0, 0%, 8%, 0.3);
    z-index: 100;
}

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

.navbar img{
   border-radius: 50%;
}

.navbar-brand{
    display: flex;
}

.navbar-nav{
    position: absolute;
    right: 0;
}
.navbar-brand h1{
    color: #d93937;
}
.navbar-nav {
    position: absolute;
    background: var(--white);
    top: calc(100% + 40px);
    left: 70px;
    right: 10px;
    text-align: center;
    box-shadow: 0 10px 30px -5px hsla(0, 0%, 8%, 0.25);
    padding: 10px;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.nav-item a {
    padding: 10px;
    font-size: var(--fs-5);
    font-weight: var(--fw-6);
    color: var(--oxford-blue);
    transition: var(--default-transition);
}

.navbar-brand{
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand h2{
    color: var(--red-orange-color-wheel);
}

.nav-item:not(:last-child) a {
    border-bottom: 1px solid hsla(0, 0%, 8%, 0.1);
}

.nav-item{
    position: relative;
}

/* .nav-item a:hover{
    color: var(--red-orange-color-wheel);
} */

.nav-item.active a{
    color: var(--red-orange-color-wheel);
}

.nav-item::before{
    content: '';
    width: 0px;
    height: 2px;
    background-color:var(--red-orange-color-wheel);
    position: absolute;
    bottom: 5px;
    left: 5px;
    transition: all 0.5s ease-in-out;
}

.nav-item:hover::before{
    width: 35px;
}

.navbar-nav.active {
    animation: menuPopup 0.5s ease forwards;
    pointer-events: all;
}



@keyframes menuPopup {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.navbar .btn {
    display: none;
}

.nav-toggle-btn {
    background: var(--red-orange-color-wheel);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.nav-toggle-btn span {
    background: var(--white);
    width: 30px;
    height: 2px;
    transition: var(--default-transition);
}

.nav-toggle-btn .active .one {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle-btn .active .two {
    display: none;
}

.nav-toggle-btn .active .three {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* =========== HOME =========== */

.home.swiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px){
    .home.swiper{
        height: 100%;
    }
}

.home-slide-content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Overlay */
.quote-overlay {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--red-orange-color-wheel);
  padding: 1.5rem 2.5rem;
  border-radius: 12px 12px 0px 0px;
  color: rgb(255, 255, 255);
  font-size: 1.8rem;
  text-align: center;
  width: 60%;
  line-height: 1.4;
}


@media (min-width:1699px){
    .quote-overlay{
        width: 999px !important;
    }
}

/* Tablet and below */
@media (max-width: 1024px) {
  /* .home-slide-content {
    height: 80vh;
  } */

  .quote-overlay {
    font-size: 1.4rem;
    padding: 15pxrem 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .home-slide-content {
    height: 60vh;
  }

  .quote-overlay {
    width: 80%;
    font-size: 1.1rem;
    padding: 5px 10px;
  }
}

@media (max-width:576px){
.quote-overlay {
    width: 80%;
    font-size: 13px;
    padding: 5px 10px;
  }
}


.icon-1, .icon-2, .icon-3, .icon-4 {
    filter: drop-shadow(0 10px 20px hsla(0, 0%, 0%, 0.2));
    z-index: 5;
}

/* =========== COURSE CATEGORY =========== */
.category {
    padding: var(--py) var(--px);
    padding-top: 100px;
}

.category .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.category .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.category .course-item-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.course-category-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid hsl(0, 0%, 67%);
    border-radius: 8px;
    padding: 25px;
    transition: var(--default-transition);
}

.course-category-item:hover {
    background: var(--red-orange-color-wheel);
    border-color: var(--red-orange-color-wheel);
    box-shadow: 0 10px 50px -20px var(--red-orange-color-wheel);
}

.category-icon {
    width: 50px;
}

.category-icon.hover,
.course-category-item:hover .category-icon.default {
    display: none;
}

.category-icon.default,
.course-category-item:hover .category-icon.hover {
    display: block;
}

.category-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
}

.category-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--sonic-silver);
    font-size: var(--fs-6);
}

.course-category-item:hover .category-title a,
.course-category-item:hover .category-subtitle {
    color: var(--white);
}


/* =========== ABOUT =========== */

.about {
  padding: var(--py) var(--px);
  background: var(--cultured);
}

.about{
    padding-top: 30px;
}

@media (max-width:576px){
    .about{
        padding: 10px;
    }
}

.about-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-card-image {
  width: 150%;
  height: 600px;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

@media (max-width:991px){
    .about-card-image{
        width: 100%;
    }
}


.about-card-content {
  padding: 2rem;
}

.about-features {
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}

.about-features li {
  display: flex;
  align-items: center;
  font-size: 1em;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.about-features li i {
  color: var(--color-primary);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Responsive Layout */
@media (min-width: 991px) {
  .about-card {
    flex-direction: row; /* image on left, content on right */
  }
  .about-card-content {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .about-card{
    margin-bottom: 50px;
  }  
  .about-card-content {
    padding: 15px;
  }
  .about-card-image{
    padding: 10px;
  }
}

.pagetitle{
    background: linear-gradient(rgb(255, 226, 212),rgb(255, 193, 193));
    margin-top: 80px;
    padding: 80px 10px 40px;
}

@media (max-width:991px){
    .pagetitle {
        margin-top: 60px;
    }
}

@media (max-width:768px){
    .pagetitle{
        margin-top: 40px;
        padding: 70px 10px 10px;
    }
}




.about-ul {
    margin-bottom: 40px;
}

.about-ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-ul ion-icon {
    font-size: 30px;
    color: var(--red-orange-color-wheel);
}

.about-ul p {
    color: var(--oxford-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    line-height: 1.6;
    text-align: left;
}

.about-ul li:not(:last-child) {
    /*margin-bottom: 30px;*/
}

/* =========== COURSE =========== */
.course { 
    padding: var(--py) var(--px); 
}

.course .section-subtitle {
    margin-bottom: 15px;
}

.course .section-title {
    margin-bottom: 60px;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.course-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 50px hsla(0, 0%, 0%, 0.1);
    overflow: hidden;
}

.course-banner {
    position: relative;
    overflow: hidden;
}

.course-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.course-card:hover .course-banner img {
    transform: scale(1.05);
}

.course-banner .course-tag-box {
    position: absolute;
    bottom: 20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.course-banner .badge-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
}

.course-banner .orange {
    background: var(--red-orange-color-wheel);
}

.course-banner .blue {
    background: var(--ultramarine-blue);
}

.course-card .course-content {
    padding: 30px;
    padding-bottom: 20px;
}

.course-card .card-title {
    margin-bottom: 20px;
}

.course-card .card-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    line-height: 1.3;
    transition: var(--default-transition);
}

.course-card:hover .card-title a {
    color: var(--red-orange-color-wheel);
}

.course-card .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card .border-bottom {
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.course-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .author-img {
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px hsla(0, 0%, 0%, 0.2);
}

.course-card .author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
    transition: var(--default-transition);
}

.course-card .author-name:hover {
    color: var(--oxford-blue);
}

.course-card .rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .rating ion-icon {
    font-size: 20px;
    color: hsl(45, 100%, 51%);
}

.course-card .enrolled p,
.course-card .rating p {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
}

.course-card .course-price {
    color: var(--red-orange-color-wheel);
    font-size: 20px;
    font-weight: var(--fw-7);
}

.course-card .enrolled {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .icon-user {
    background: hsl(138, 59%, 91%);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.course .btn-primary {
    display: block;
    margin: auto;
}

/* =========== EVENT =========== */

.event {
    padding: var(--py) var(--px);
    background: var(--cultured);
    overflow: hidden;
    padding-top: 10px;
}

.event-left {
    position: relative;
    max-width: max-content;
    margin-bottom: 50px;
}

.event .banner-img {
    width: auto;
    max-width: 100%;
    border-radius: 8px;
}

.event .play {
    position: absolute;
    bottom: 100px;
    right: 0;
    padding: 30px 40px;
    background: var(--red-orange-color-wheel);
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px hsla(64, 100%, 50%, 0.7);
}

.event .play-icon {
    border-radius: 50%;
    box-shadow: 0 0 0 15px transparent;
}

.event .play ion-icon {
    display: block;
    color: var(--white);
    font-size: 70px;
    margin: -8px;
}

.event .play p {
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    color: var(--white);
}

.event .section-subtitle {
    margin-bottom: 15px;
}

.event .section-title {
    margin-bottom: 30px;
}

.event-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
    border-right: 5px solid transparent;
    transition: var(--default-transition);
}

.event-card .content-left {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 25px;
    box-shadow: 0 16px 0 -15px var(--light-gray);
}

.event-card .day {
    font-size: var(--fs-3);
    font-weight: var(--fw-7);
    color: var(--blue-crayola);
}

.event-card .month {
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    color: var(--blue-crayola);
}

.event .schedule {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.event .schedule p {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
}

.event .schedule .time {
    padding-right: 20px;
    margin-right: 20px;
    box-shadow: 4px 0 0 -3px var(--light-gray);
}

.event-card .event-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    line-height: 1.6;
    text-align: center;
    transition: var(--default-transition);
}

.event-card:hover {
    border-color: var(--red-orange-color-wheel);
}

.event-card:hover .event-name {
    color: var(--red-orange-color-wheel);
}

/* =========== FEATURES =========== */
.features {
    background: #1c2d6c;
}

.features-left {
    padding: var(--py) var(--px);
}

.features .section-subtitle {
    margin-bottom: 15px;
}

.features .section-title {
    color: var(--white);
    margin-bottom: 30px;
}

.features-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-item:not(:last-child) {
    margin-bottom: 30px;
}

.features-item .item-icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.features-item .blue {
    background: hsl(222, 87%, 56%);
}

.features-item .pink {
    background: hsl(336, 73%, 50%);
}

.features-item .purple {
    background: hsl(265, 83%, 44%);
}

.features-item .wrapper {
    max-width: calc(100% - 85px);
}

.features-item .item-title {
    color: var(--white);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    margin-bottom: 10px;
}

.features-item .item-text {
    font-family: 'Montserrat', sans-serif;
    color: hsl(231, 100%, 94%);
    font-size: var(--fs-6);
    line-height: 1.6;
}

.features-right {
    height: 500px;
}

.features-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========== INSTRUCTOR =========== */
.instructor {
    padding: var(--py) var(--px);
}

.instructor .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.instructor .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
}

.instructor-card {
    background: hsl(220, 33%, 97%);
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--default-transition);
}

.instructor-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
}

.instructor-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.instructor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.instructor-card:hover .instructor-img-box img {
    transform: scale(1.1);
}

.instructor-card .social-link {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: var(--default-transition);
}

.instructor-card .social-link a {
    background: var(--ultramarine-blue);
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: var(--default-transition);
}

.instructor-card .social-link a:hover {
    background: var(--red-orange-color-wheel);
}

.instructor-card:hover .social-link {
    bottom: 20px;
}

.instructor-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    margin-bottom: 10px;
    transition: var(--default-transition);
}

.instructor-card:hover .instructor-name {
    color: var(--red-orange-color-wheel);
}

.instructor-title {
    color: var(--ultramarine-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
}

/* =========== TESTIMONIAL =========== */

.testimonials {
  padding: var(--py) var(--px);
  background: var(--cultured);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 200px; 
  padding: 3rem 5rem;
  flex-wrap: wrap;
  padding-bottom: 150px;
  /* margin-bottom: 150px; */
}


.testimonials-left {
  flex: 1 1 40%;
  max-width: 500px;
}

.testimonials-right {
  flex: 1 1 50%;
  max-width: 700px;
}

.testimonials-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonials-text {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.testimonials-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonials .swiper-slide{
    width: 80% !important;
    margin-left: 120px;
}


@media (max-width: 768px){
    .testimonials{
        padding-left:40px;
        padding-right: 40px;
    }
    .testimonials .swiper-slide{
    width: 100% !important;
    margin-left: 0px !important;
}
}
@media (max-width: 655px){
    .testimonials .swiper-slide{
    margin-left: 70px;
}
}
@media (max-width: 576px){
    .testimonials .swiper-slide{
        width: 100% !important;
    margin-left: 50px;
}

}
@media (max-width: 480px){
    .testimonials .swiper-slide{
    margin-left: 0px;
    }
    .section-title {
    font-size: 1.75rem;
  }
  .section-intro {
    font-size: 0.95rem;
  }
}

.client-img-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.section-subtitle{
    color: #d93937;
}

@media (max-width: 1024px) {
  .testimonials {
    flex-direction: column;
    gap: 2rem; 
    align-items: center;
  }

  .testimonials-left,
  .testimonials-right {
    max-width: 100%;
  }
}



.client-img-box {
    border: 2px solid var(--red-orange-color-wheel);
    border-radius: 8px;
    padding: 10px;
}

.client-img-box img {
    border-radius: 8px;
}

.client-detail .client-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    line-height: 1.2;
    font-weight: var(--fw-7);
    margin-bottom: 5px;
}

.client-detail .client-title {
    color: var(--red-orange-color-wheel);
    font-size: var(--fs-6);
}

/* =========== BLOG =========== */

.blog {
    padding: var(--py) var(--px) 50px;
    padding-top: 50px;
}


.blog .section-subtitle {
    text-align: center;
    margin: 15px;
}

.blog .section-title {
    text-align: center;
    /* margin-bottom: 60px; */
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
    overflow: hidden;
}

.blog-banner-box {
    overflow: hidden;
}

.blog-banner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.blog-card:hover .blog-banner-box img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    padding-bottom: 20px;
}

.blog-title {
    padding-bottom: 25px;
    border-radius: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    transition: var(--default-transition);
}

.blog-card:hover .blog-title a {
    color: var(--red-orange-color-wheel);
}

.blog-content .wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.blog-content .wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light-gray);
    width: 1px;
    height: 15px;
}

.blog-publish-date,
.blog-comment {
    display: flex;
    align-items: center;
    gap: 10px;
}

:is(.blog-publish-date, .blog-comment) a {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    transition: var(--default-transition);
}

:is(.blog-publish-date, .blog-comment) a:hover {
    color: var(--oxford-blue);
}

/* =========== CONTACT =========== */

.contact { 
    position: relative; 
}

.contact-card {
  position: absolute;
  top:  0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1c2d6c;
  width: 70%;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  border-radius: 8px;
  overflow: hidden;
}


@media (min-width: 1699px){
    .contact-card{
        width: auto;
    }
}

.contact-card-bg {
  position: absolute;
  width: auto;
  max-width: 100%;
  top:  -2px;
  left: -2px;
}

.contact-card h2 {
  position: relative;
  font-size: 30px;
  color: var(--white);
  font-weight: var(--fw-8);
  text-align: center;
}

.contact .btn-primary { 
    justify-self: center; 
}



@media (max-width:768px){
    .contact-card{
        width: 90%;
        padding: 20px 10px;
        gap: 5px;
    }
    .contact-card h2 {
        font-size: 24px;
    }

    .contact .container a{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =========== FOOTER =========== */

footer {
    background: #1c2d6c;
    padding-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px var(--px) 80px;
    
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-logo img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo h2{
    color:#d93937;
}
.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--lavender-blue);
    margin-bottom: 35px;
    line-height: 1.6;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link a {
    background: hsla(0, 0%, 100%, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: var(--default-transition);
}

.social-link a:hover {
    background: var(--red-orange-color-wheel);
}

.social-link ion-icon {
    font-size: 20px;
    color: var(--white);
}

.grid-item .item-heading {
    font-size: var(--fs-4);
    color: var(--white);
    margin-bottom: 25px;
}

.grid-item .list-item:not(:last-child) {
    margin-bottom: 10px;
}

.grid-item .list-item a {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    color: var(--lavender-blue);
    font-size: var(--fs-6);
    transition: var(--default-transition);
}

.grid-item .list-item a:hover {
    transform: translateX(10px);
    color: var(--red-orange-color-wheel);
}

.grid-item .wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.grid-item .wrapper input {
    width: 100%;
    padding: 20px 30px;
    padding-right: 70px;
    color: var(--oxford-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    border: none;
    outline: none;
}

.grid-item .send-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    height: 62px;
    background: var(--red-orange-color-wheel);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--default-transition);
}

.grid-item .send-btn ion-icon {
    font-size: 25px;
    color: var(--white);
}

.grid-item .send-btn:hover {
    background: var(--ultramarine-blue);
}

.copyright {
    background: hsl(231, 90%, 8%);
    text-align: center;
    color: var(--lavender-blue);
    font-size: var(--fs-6);
    font-family: 'Montserrat', sans-serif;
    padding: 20px var(--px);
    line-height: 1.7;
}

.copyright .container{
    display: flex;
    justify-content: space-between;
}

@media (max-width: 576px){
    .copyright{
        padding: 10px 10px;
    }
    .copyright p{
        font-size: 12px;
    }

    .copyright .container{
        flex-direction: column;
        gap: 5px;
    }
}

.copyright a {
    display: inline-block;
    color: var(--red-orange-color-wheel);
    transition: var(--default-transition);
}

.copyright a:hover {
    color: var(--ultramarine-blue);
}

.logo-container{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.logo-container img{
    width: 100%;
    aspect-ratio: 1/1;
}



.btn-other-staff{
    /* left: 50px;
    bottom: 20px; */
    padding: 20px;
    padding-bottom: 20px;
}


.align-items-center{
    display: flex;
    align-items: center;
    justify-content: center;
}


.foot-dsk-call {
  position: fixed;
  float: left;
  bottom: 20px;
  left: 20px;
  max-width: 100px;
  width: 100%;
  font-size: 35px;
  padding: 0.5px;
  z-index: 999;
}


.enroll-scroll-bar {
  width: 100%;
  background-color:#1c2d6c;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 24px 0;
  position: relative;
  /* z-index: 1000; */
}

.enroll-scroll-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

main .blog.container{
    padding-top: 50px;
    padding-bottom: 50px;
}