@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@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");

:root {
    --primary-color: #ff6700;
    --dark-primary-color: #e65d01;
    --secondary-color: #434343;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    box-sizing: border-box;
}

.header-sticky {
    transform: translateY(0);
}

.header-hide {
    transform: translateY(-100%);
}

header {
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
}

header .navbar {
    background-color: #fff;
    box-shadow: 0px 7px 20px 0px #00000026;
}

header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6D00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header .nav-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
}

header .nav-link.active {
    color: var(--primary-color) !important;
}

header .nav-link.active:hover {
    color: var(--dark-primary-color) !important;
}

header .navbar-nav .nav-link.active::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
    margin-right: 8px;
    width: clamp(4px, 0.417vw, 8px);
    height: clamp(4px, 0.417vw, 8px);
    background: var(--primary-color);
    border-radius: clamp(4px, 0.417vw, 16px);
}

header .login-btn {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7.5px;
}

header .register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    margin-top: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    z-index: 1;
}

header .register-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/public/frontend/infixlmstheme/img/orange-btn-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

header .register-btn span {
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile_info .studentProfileThumb {
    --img: 50px;
    width: var(--img);
    height: var(--img);
    border-radius: 100%;
    cursor: pointer;
    margin-right: 10px;
    background-size: cover;
    background-position: 50%;
}

.profile_info_iner {
    position: absolute;
    top: 100%;
    right: 25px;
    text-align: left;
    min-width: 294px;
    z-index: 999;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 57px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--system_primery_color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(3px);
    transform-origin: right top;
    transition: all 0.4s ease-in-out;
}

.active .profile_info_iner {
    opacity: 1;
    visibility: visible;
    transform: translateY(13px);
}

.teachers-buttons .price-btn {
    width: 185px;
    height: 57.5px;
    font-weight: 600;
    font-size: 15px;
}

.teachers-buttons .price-btn:hover {
    transform: scale(1.02);
    color: #fff;
    transition: all 0.3s ease;
}

.teachers-buttons .price-btn span {
    margin-bottom: 11.5px;
}

.statistic .price {
    border: 1px solid var(--primary-color);
    box-shadow: 0px 0px 4px 0px #ff6d00;
    background-color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 100%;
}

.teachers-buttons .price-btn::before,
.statistic .price-btn::before {
    background-image: url("/public/frontend/infixlmstheme/img/orange-btn-bg.png");
}

.profile_info_iner a {
    display: block;
    padding: 13px 10px;
    color: #434343;
    border-radius: 6px;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

.profile_info_iner a:hover {
    background-color: #eee;
}

.profile_info span {
    font-size: 16px;
    font-weight: 600;
    color: #434343;
}

.heading-cart-icon {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}

.cart_store.heading-cart-icon {
    align-self: center;
}

.heading-cart-items {
    position: absolute;
    top: -11px;
    right: -11px;
    background: #ff6700;
    background-size: 200% auto;
    font-weight: 700;
    color: #ffffff;
    min-height: 12px;
    min-width: 12px;
    border-radius: 100%;
    font-size: 8px;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify_count {
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoping_wrapper .shoping_cart {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    height: 100%;
    width: 519px;
    padding: 140px 30px 40px 40px;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    transition: all 0.4s ease-in-out;
}

.shoping_wrapper .shoping_cart.active {
    opacity: 1;
    visibility: visible;
}

.shoping_wrapper .dark_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 34, 0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.shoping_wrapper .dark_overlay.active {
    opacity: 1;
    visibility: visible;
}

.shoping_wrapper .shoping_cart .shoping_cart_inner .single_cart {
    display: flex;
    border-bottom: 1px solid #e1e2e6;
    align-items: center;
    padding: 20px 0;
}

.single_cart .remove_cart {
    margin-left: -22px;
    margin-right: 8px;
    cursor: pointer;
}

.shoping_wrapper
    .shoping_cart
    .shoping_cart_inner
    .single_cart
    .cart_content
    h5 {
    font-size: 16px;
    font-weight: 500;
    color: #373737;
    margin-bottom: 10px;
}

.shoping_wrapper
    .shoping_cart
    .shoping_cart_inner
    .single_cart
    .cart_content
    p
    .prise {
    color: #20e007;
}

.shoping_wrapper .shoping_cart .shoping_cart_inner .single_cart .thumb {
    background-size: cover;
    background-position: 50%;
    height: 90px;
    width: 120px;
    margin-right: 10px;
}

@media (max-width: 576px) {
    .shoping_wrapper .shoping_cart {
        width: 100%;
    }
}

#hero {
    width: 100%;
    position: relative;
    margin-top: 25px;
}

@media (min-width: 1400px) {
    #hero .container,
    #lessons-help .container,
    #educations .container,
    #testimonials,
    #blogs .container,
    #teacher-comments .container,
    #terms-of-service-article.container,
    #privacy-policy-article.container,
    #teachers .container,
    #contact-page .container {
        max-width: 1230px;
    }
}

@media (min-width: 1200px) {
    #terms-of-service-article.container,
    #privacy-policy-article.container,
    #hero .container,
    #lessons-help .container,
    #educations .container,
    #testimonials,
    #blogs .container,
    #teacher-comments .container,
    #teachers .container,
    #contact-page .container {
        max-width: 1130px;
    }
}

#hero .cloud {
    position: absolute;
    background-repeat: repeat-x;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    z-index: 20;
}

#hero .cloud0 {
    background-image: url("/public/frontend/infixlmstheme/img/cloud1.png");
    animation: cloudMove 50s linear infinite;
    bottom: -450px;
}

#hero .cloud.cloud1 {
    background-image: url("/public/frontend/infixlmstheme/img/cloud1.png");
    background-repeat: repeat-x;
    bottom: -550px;
    left: 0;
    z-index: 20;
    animation: cloudMove 25s linear infinite;
}

#hero .cloud.cloud2 {
    background-image: url("/public/frontend/infixlmstheme/img/cloud2.png");
    bottom: -675px;
}

@keyframes cloudMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1000px 0;
    }
}

#hero .hero-banner {
    padding: 10px 50px 10px 35px;
    border-radius: 15px;
    background: #ff922e1a;
    margin-bottom: 0;
}

#hero .hero-banner span {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 18px;
    background: linear-gradient(180deg, #e82561 0%, #ff9d00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    position: relative;
    display: inline-block;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 87.5px;
    line-height: 85px;
    letter-spacing: -5px;
    color: var(--primary-color);
    /* text-shadow: 0px 4px 11px #ffc200; */
    text-shadow: 3px 5px 0 #ffc200, 0 0px 0 #c09000;
    overflow: hidden;
}

.hero-title span {
    color: #ffc638;
    text-shadow: none;
    font-size: 67.5px;
}

/* Ortadan sağa giden çizgi */
.hero-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(0);
    animation: shine-right 2.5s infinite;
}

/* Ortadan sola giden çizgi */
.hero-title::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        -90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(0);
    animation: shine-left 2.5s infinite;
}

@keyframes shine-right {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shine-left {
    0% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.5px;
    color: #757575;
    margin-bottom: 0;
}

.hero-bag {
    position: absolute;
    width: 102.5px;
    top: 50px;
    left: -15px;
    transform: rotate(-15deg);
}

.hero-book {
    position: absolute;
    width: 102.5px;
    bottom: 150px;
    right: -35px;
}

.new-categories .wrapper {
    row-gap: 30px;
}

.new-categories .categories {
    background-color: #f5f7f8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.new-categories .items a {
    text-decoration: none;
}
.new-categories .categories h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    color: #444;
}
.new-categories .categories p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #444;
}

.new-categories .items img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.new-categories .categories {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.new-categories .categories:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #ffb606;
}

.new-categories .categories {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #f8f7f5;
    border-radius: 8px;
    border: 2px solid rgba(255, 182, 6, 0.5);
    padding: 15px;
    height: 100px;
    font-family: "Poppins", sans-serif;
}

.new-categories .categories::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: linear-gradient(
        135deg,
        rgba(255, 182, 6, 0.7) 0%,
        rgba(255, 182, 6, 0) 70%
    );
    transform: rotate(25deg);
    opacity: 0;
    animation: shineEffect 4s infinite ease-in-out;
}

.new-categories .icon {
    width: 50px;
    height: auto;
    transition: none !important;
    animation: none !important;
}

@keyframes shineEffect {
    0% {
        opacity: 0;
        transform: translate(100%, -100%) rotate(25deg);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, 50%) rotate(25deg);
    }
    100% {
        opacity: 0;
        transform: translate(-100%, 100%) rotate(25deg);
    }
}

#lessons-help {
    margin-top: 280px;
    z-index: 99;
    position: relative;
    padding-bottom: 75px;
}

#lessons-help .box {
    background-image: url("/public/frontend/infixlmstheme/img/category-bg3.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 139.5px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.45s linear;
}

#lessons-help .box:hover {
    transform: scale(1.16);
    transition: transform 0.45s linear;
}

#lessons-help .box img {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
}

#lessons-help .box .text {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 10px;
    /* white-space: normal;
    word-break: break-word; */
}

.caption {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 38px;
}

.caption.orange {
    color: var(--primary-color);
}

#educations {
    position: relative;
}

#educations .full-icon {
    position: absolute;
    top: 0%;
    right: 1%;
    transform: translateY(-50%);
    height: auto;
}

#educations .education-box {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
}

#educations .row {
    row-gap: 50px;
}

#educations .education-box .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
}

#educations .education-box .text {
    font-weight: 400;
    min-height: 96px;
    font-size: 15px;
    line-height: 24px;
    color: var(--secondary-color);
    margin-bottom: 0;
}

#educations .education-box > img {
    object-fit: cover;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px 2px #ff7600;
    transition: all 0.5s ease;
}

#educations .education-box:hover > img {
    transform: scale(1.05);
}

#educations .education-box .info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 165, 0, 0.4);
    padding: 20px 0;
}

#educations .education-box .info span {
    font-size: 14px;
    line-height: 10px;
    color: #000;
}

#educations .education-box .price {
    border: 1px solid var(--primary-color);
    box-shadow: 0px -1px 10.2px 0px #ff6d00;
    background-color: #fff;
    border-radius: 24px;
    padding: 9px 16px;
    font-weight: 700;
    font-size: 15.5px;
    line-height: 100%;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    #educations .education-box.col-md-5 {
        width: 46.666667%;
    }
}

.price-btn {
    border: none;
    background-color: transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
    width: 160px;
    height: 75px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    z-index: 1;
}

.price-btn:hover {
    color: #ffffffd5;
}

.price-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/public/frontend/infixlmstheme/img/orange-btn-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.price-btn span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.rating-star .bi-star,
.rating-star .bi-star-half,
.rating-star .bi-star-fill {
    font-size: 15px;
    color: var(--primary-color);
}

.rating-star span {
    margin-left: 5px;
    color: #ff922e;
    font-weight: 700;
    font-size: 14.5px;
    line-height: 10px;
    text-transform: capitalize;
}

/* #why-us .container {
  box-shadow: 0px 4px 29.8px 5px #ff7600;
  border-radius: 69px;
  padding: 75px 0;
}
#why-us .why-us-box {
  background-image: url("/public/frontend/infixlmstheme/img/why-us-box-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#why-us .why-us-box .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 16px;
  text-transform: capitalize;
}
#why-us .why-us-box .text {
  color: #000;
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
} */

#contact {
    padding: 50px 0;
    background-color: #ecedef;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 5px 20px;
    margin-top: 100px;
    margin-bottom: 100px;
}

#contact .title {
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 50px;
    color: #000;
}

#contact .text {
    font-size: 23px;
    line-height: 24px;
    color: #000;
}

#info {
    background: linear-gradient(
        99.5deg,
        rgba(232, 37, 97, 0.3) 0%,
        rgba(255, 146, 46, 0.1) 99.13%
    );
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

#info .caption {
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-transform: capitalize;
    color: var(--primary-color);
}

#info .text {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: var(--secondary-color);
}

#info form {
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#info form textarea:focus,
#info form textarea {
    border: none;
    resize: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#info a {
    font-weight: 600;
    font-size: 16px;
    line-height: 13px;
    text-decoration: underline;
    color: var(--secondary-color);
    text-align: center;
}

#info .half-icon {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    height: auto;
}

#blogs {
    margin: 0 100px 75px 100px;
}

#blogs .caption {
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
    color: var(--primary-color);
    text-transform: capitalize;
}

#blogs .swiper {
    width: 100%;
    height: 100%;
}

#blogs .swiper-slide {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

#blogs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: 0px 4px 29.8px 5px var(--primary-color);
}

#blogs .swiper-slide .author {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

#blogs .swiper-slide .title {
    font-family: "Epilogue", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 7.5px;
    text-transform: capitalize;
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#blogs .swiper-slide .text {
    font-size: 16px;
    line-height: 28px;
    color: var(--secondary-color);
        display: -webkit-box;
    -webkit-line-clamp: 3;   /* Buradan satır sayısını değiştirebilirsin */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#blogs .swiper-slide .price-btn {
    margin-left: -10px;
}

#educations .swiper-pagination,
#blogs .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

#educations .swiper-pagination-bullet,
#blogs .swiper-pagination-bullet {
    background: url("/public/frontend/infixlmstheme/img/slider-dot.png")
        no-repeat center center;
    opacity: 1;
    width: 12px;
    height: 12px;
}

#educations .swiper-pagination-bullet-active,
#blogs .swiper-pagination-bullet-active {
    background: #202020;
    width: 11px;
    height: 11px;
}

#testimonials {
    box-shadow: 0px -1px 18.4px 0px var(--primary-color);
    border-radius: 77px;
    padding: 60px;
    margin: 100px auto;
}

#testimonials .caption {
    font-family: "Rubik ", sans-serif;
    font-weight: 500;
    font-size: 48px;
    color: #fa7b4c;
    margin-bottom: 10px;
}

#testimonials .swiper-slide {
    position: relative;
    padding: 30px 0;
}

#testimonials .swiper-slide::after {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 7.5%;
    width: 50%;
    height: 1px;
    background-color: #fa7b4c;
}

#testimonials .swiper-slide.swiper-slide-next::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    width: 1px;
    height: 60%;
    background-color: #fa7b4c;
    transform: translateX(50%);
}

#testimonials .swiper-slide .author {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #364045;
    margin-bottom: 0px;
}

#testimonials .swiper-slide .job {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #48555b;
}

#testimonials .swiper-slide .title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    color: #242a2e;
}

#testimonials .swiper-slide p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 25.5px;
    color: #48555b;
}

#testimonials .swiper-button-next-unique {
    z-index: 9;
    background-image: url("/public/frontend/infixlmstheme/img/prev-icon.png");
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 60px;
    height: 54px;
    transform: translate(-50%, -50%) rotate(180deg);
}

#testimonials .swiper-button-prev-unique {
    z-index: 9;
    background-image: url("/public/frontend/infixlmstheme/img/prev-icon.png");
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 55px;
    width: 60px;
    height: 54px;
    transform: translate(-50%, -50%);
}

footer {
    background: #ff6d0012;
    padding: 75px 75px 0px 75px;
}

footer .links {
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
}

footer .form-control {
    border: 1px solid #000;
    background-color: transparent;
    padding: 17.5px 25px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

footer .form-control::placeholder {
    font-weight: 500;
    color: #000;
}

footer .caption-list {
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

footer .footer-links li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 36px;
    color: #000;
    text-decoration: none;
}

footer .social-links li a:hover,
footer .mail:hover,
footer .footer-links li a:hover {
    color: var(--secondary-color);
}

footer .address,
.phone,
.mail {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #000;
    text-decoration: none;
}

footer .copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    color: #000;
}

footer .social-links li a {
    font-weight: 800;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    text-decoration: none;
}

.form-control {
    padding: 9px 15px;
    border-radius: 10px;
}

.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.form-check-input {
    border: 1px solid var(--primary-color);
    border-radius: 6px !important;
    background-color: #eee;
    margin-top: 2px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.forgot_pass,
.primary_checkbox .label_name {
    font-size: 14.5px;
    color: #5e5e5e;
    text-decoration: none;
}

#login-page .register-btn:hover,
.forgot_pass:hover {
    color: var(--secondary-color);
}

#login-page .register-btn {
    text-decoration: none;
    color: #5e5e5e;
}

.breadcrumb_area {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 2px solid #ffb606;
    display: flex;
    align-items: center;
    height: 200px;
    background-size: cover;
    text-align: center;
}

.breadcrumb_area .breadcam_wrap h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.breadcrumb_area .breadcam_wrap p {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

.Check_sidebar {
    padding-left: 0 !important;
    list-style-type: none;
}

.Check_sidebar li {
    margin-bottom: 10px;
}

.course_category_inner .title {
    font-size: 18.5px;
    font-weight: 600;
    color: rgb(58, 58, 58);
    margin-bottom: 15px;
}

.single_course_categry {
    border-bottom: 1px solid #eee;
    margin-bottom: 35px;
}

.small_select {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 15px;
    height: 38px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 20px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.sort-title {
    font-size: 17.5px;
    color: rgb(58, 58, 58);
}

.lms_blog_details_area {
    padding: 80px 0 120px;
}

.glow-button {
    background: linear-gradient(to bottom, #ff9933, #ff6600);
    border: none;
    border-radius: 30px;
    padding: 12px 34px;
    color: white;
    font-size: 17px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.glow-button:hover {
    transform: scale(1.01);
    color: #fff;
}

.glow-button-outline {
    background: transparent;
    border: 2px solid #ff6600;
    border-radius: 30px;
    padding: 15px 40px;
    color: #ff6600;
    font-size: 18px;
    font-weight: bold;
    text-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s,
        color 0.3s;
    text-decoration: none;
}

.glow-button-outline:hover {
    color: #ff6600;
    transform: scale(1.01);
}

.social_links {
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social_links a {
    display: inline-block;
    height: 35px;
    width: 35px;
    background: #ff6700;
    color: #fff;
    text-decoration: none;
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_links a:hover {
    background: #e65d01;
}

.page-link {
    color: #ff6700 !important;
}

.active > .page-link,
.page-link.active {
    color: #fff !important;
    background-color: #ff6700 !important;
    border-color: #ff6700 !important;
}

.speedyui-testimonial {
    font-family: "Inter", sans-serif;
    --swiper-theme-color: var(--primary-color);
    padding-top: 35px;
    padding-bottom: 35px;
}

.speedyui-testimonial h2 {
    color: var(--primary-color);
}

.speedyui-testimonial .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.speedyui-testimonial .testimonial-wrapper .quote-icon {
    margin-top: 3px;
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50rem;
}

.speedyui-testimonial .testimonial-slider {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

@media screen and (min-width: 768px) {
    .speedyui-testimonial .testimonial-slider {
        padding-top: 4rem;
    }
}

.speedyui-testimonial p {
    margin: 0;
}

.teacherSlider .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.teacherSlider .testimonial-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.speedyui-testimonial .author-title p {
    font-size: 14px;
}

.speedyui-testimonial .author-avatar {
    width: fit-content;
    margin: auto;
}

.speedyui-testimonial .author-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50rem;
}

.speedyui-testimonial .testimonial-content p {
    font-size: 16px;
}

.speedyui-testimonial .swiper {
    width: 100%;
    height: 100%;
}

@media (max-width: 1400px) {
    #info .half-icon {
        right: 1%;
    }

    #blogs {
        margin: 75px 50px;
    }

    .hero-title {
        font-size: 80px;
    }

    #login-page .hero-title {
        font-size: 65px;
    }

    .navbar-nav {
        gap: 1.5rem !important;
    }

    #hero .cloud0 {
        bottom: -380px;
    }

    #hero .cloud.cloud1 {
        bottom: -460px;
    }

    #hero .cloud.cloud2 {
        bottom: -560px;
    }

    #lessons-help .box {
        height: 145px;
    }

    .hero-book {
        bottom: 200px;
        right: -30px;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    #lessons-help {
        margin-top: 150px;
    }
}
@media (min-width: 1200px) and (max-width: 1250px) {
    .navbar-nav {
        gap: 2rem !important;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }

    .education-box {
        width: 31%;
    }
}

@media screen and (max-width: 1200px) {
    #lessons-help .box {
        height: 115px;
    }

    #hero .hero-banner span {
        font-size: 16px;
    }

    .hero-book {
        bottom: 125px;
        right: -40px;
    }

    .hero-title {
        font-size: 70px;
        line-height: 70px;
    }

    .hero-title span {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 27px;
    }

    #contact {
        height: auto;
        padding: 20px 20px;
    }

    #info .half-icon {
        display: none;
    }

    .navbar-nav {
        gap: 0.75rem !important;
    }

    .hero-bag {
        left: -45px;
    }
}

@media screen and (min-width: 992px) {
    .hero-user {
        max-width: 90%;
    }

    #lessons-help .box.col-lg-2 {
        width: 20%;
    }
}

@media screen and (max-width: 992px) {
    #hero .cloud {
        background-size: cover;
        bottom: -80px;
        height: 20%;
    }

    #hero .cloud.cloud1 {
        background-size: cover;
        bottom: -135px;
        height: 20%;
    }

    #hero .cloud.cloud2 {
        background-size: cover;
        bottom: -190px;
        height: 20%;
    }

    .hero-book {
        right: -10px;
        bottom: 210px;
    }

    .hero-title {
        text-align: center;
    }

    #lessons-help {
        margin-top: 115px;
        padding-bottom: 100px;
    }

    #lessons-help .box .text {
        font-size: 15px;
    }

    #lessons-help .box img {
        width: 45px;
        height: 45px;
    }

    #contact {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #info {
        padding: 30px 0;
    }

    #info form {
        flex-wrap: wrap;
    }

    footer {
        padding: 60px 30px 0px 30px;
    }

    #blogs {
        margin: 50px 0px;
    }

    #testimonials {
        border-radius: 50px;
        padding: 50px 25px 75px 25px;
        margin: 0px auto 60px auto;
    }

    #testimonials .caption {
        font-size: 42px;
    }

    #testimonials .swiper-button-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #testimonials .swiper-button-prev-unique {
        top: 93%;
        left: auto;
        margin-left: -100px;
        width: 49px;
        height: 44px;
        transform: translate(50%, -50%);
    }

    #testimonials .swiper-button-next-unique {
        top: 93%;
        margin-left: 20px;
        right: auto;
        width: 49px;
        height: 44px;
        transform: translate(50%, -50%) rotate(180deg);
    }

    .breadcrumb_area {
        background-position: left;
        height: 160px;
    }

    .course_category_chose {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .course_category_chose.active {
        transform: translateX(0);
    }

    .popupClose {
        color: #fff;
        margin-bottom: 10px;
        border-radius: 10px;
        background-color: #ff6700;
        cursor: pointer;
        font-size: 20px;
        padding: 5px 10px;
        margin-left: auto;
    }
}

@media screen and (max-width: 768px) {
    #educations .education-box > img {
        height: 290px;
    }

    .hero-bag {
        left: 0px;
    }

    .hero-book {
        right: 25px;
        bottom: 150px;
    }

    .teachers-buttons {
        margin-left: -20px;
    }
}

@media screen and (max-width: 576px) {
    #lessons-help .box {
        height: 150px;
    }

    .new-categories .wrapper {
        row-gap: 17.5px;
    }

    #lessons-help .box img {
        width: 74.5px;
        height: 74.5px;
    }

    #teachers,
    #lessons-help,
    #educations {
        padding: 0px 20px 100px 20px;
    }

    #educations .education-box > img {
        height: 250px;
    }

    #testimonials {
        width: auto;
        margin: 0px 20px 60px 20px !important;
    }

    #testimonials .swiper-slide::after {
        left: 3.5%;
        bottom: 0;
        width: 80%;
    }

    .lms_blog_details_area .blog_reply_box {
        padding: 30px !important;
    }

    .glow-button-outline {
        padding: 14px 30px;
        font-size: 16px;
    }

    .hero-title {
        font-size: 65px;
        line-height: 65px;
        text-align: center;
    }

    .hero-title span {
        font-size: 55px;
    }

    .hero-subtitle {
        text-align: center;
    }

    .caption {
        font-size: 30px;
    }

    #contact .title {
        font-size: 40px;
        line-height: 38px;
    }

    #contact .text {
        font-size: 22px;
    }

    #blogs .caption {
        font-size: 34px;
        line-height: 45px;
    }

    #testimonials .swiper-slide .author {
        font-size: 20px;
    }

    #testimonials .swiper-slide .job {
        font-size: 16px;
    }

    #testimonials .swiper-slide .title {
        font-size: 20px;
        line-height: 30px;
    }

    #testimonials .swiper-slide p {
        font-size: 16px;
        line-height: 26px;
    }

    #blogs .swiper-slide {
        padding: 25px;
    }

    #login-page .hero-title {
        font-size: 45px;
        line-height: 50px;
    }

    .breadcrumb_area .breadcam_wrap h3 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media screen and (max-width: 425px) {
    .hero-bag {
        left: 7.5px;
        width: 72.5px;
    }

    .hero-book {
        width: 80.5px;
        right: 14.5px;
        bottom: 105px;
    }

    #lessons-help .box {
        gap: 12px;
    }

    #lessons-help .box img {
        width: 67.5px;
        height: 67.5px;
    }

    #lessons-help .box .text {
        font-size: 15.5px;
    }
}

@media screen and (max-width: 375px) {
    #educations .education-box > img {
        height: 220px;
    }
}
.class-item {
    width: 100%;
    gap: 10px;
}
