
:root, :host {
    margin-left: 0;
}

:root {
    --primary-color: rgba(28, 188, 111, 1);
    --primary-color-2: rgba(59, 129, 76, 1);
    --text-color: rgba(255, 255, 255, 1);
    --tblr-bg-surface-primary: rgba(1, 1, 1, 1);
    --tblr-bg-forms: rgba(255, 255, 255, 1);
    --tblr-dropdown-link-color: var(--text-color);
    --tblr-dropdown-link-hover-color: var(--primary-color);
    --tblr-primary: var(--primary-color);
    --tblr-border-color: rgba(255, 255, 255, 0.35);
    --linner-gradient-top-bottom: linear-gradient(180deg, #097758 0%, #0E1F37 100%);
    --linner-gradient-bottom-top: linear-gradient(180deg, #0E1F37 0%, #097758 100%);
    --linner-gradient-left-right: linear-gradient(270deg, #0E1F37 0%, #097758 100%);
    --linner-gradient-right-left: linear-gradient(90deg, #0E1F37 0%, #097758 100%);
    --linner-gradient-border: linear-gradient(135.11deg, #097758 14.17%, #0E1F37 26.41%, #0D313E 46.27%, #0A6852 64.1%);
    --linner-gradient-btn: linear-gradient(92.77deg, #097758 3.04%, #02432B 96.96%);

}

*, .btn {
    font-family: "Nunito Sans", sans-serif;
}

[data-theme="light"] {
    --text-color: rgba(0, 0, 0, 1);
    --tblr-bg-surface-primary: rgba(255, 255, 255, 1);
    --tblr-card-color: var(--text-color);
}

[data-theme="light"] .card {
    --tblr-card-bg: rgba(255, 255, 255, 1);
}

body {
    font-feature-settings: "cv03", "cv04", "cv11";
    background-color: rgba(1, 1, 1, 1);
    color: var(--text-color);
    font-size: 15px;
}
.bg-dalali-transparent {
    background-color: rgb(255, 255, 255, 0.1);
}

.form-control:-webkit-autofill {
        -webkit-text-fill-color: var(--primary-color);
}

.form-control.disabled, .form-control:disabled {
    background-color: #373737;
}

input.form-control, select.form-select {
    height: 43px;
}

textarea.form-control {
    height: 150px;
}

textarea.form-control.large {
    height: 189px;
    font-size: 16px;
}

.form-control, .form-select.form-dark {
    color: var(--text-color);
    background-color: rgba(1, 1, 1, 1);
}

input.form-control.large, select.form-select.large {
    height: 56px;
    font-size: 16px;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    color: var(--text-color);
    border-color: var(--text-color);
    background-color: rgba(1, 1, 1, 1);
}

.form-label {
    font-weight: 400;
    font-size: 16px;
}

.input-icon-addon i {
    color: var(--primary-color);
}

.form-check-input {
    background-size: 1rem;
}

.form-check-input:checked[type=checkbox] {
    background-image: url(../images/checked.svg);
}

.form-check-input:checked {
    background-color: rgba(255, 255, 255, 1);
}

.form-selectgroup-label {
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
}

.btn {
    font-weight: 600;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.dropdown-menu {
    background-color: rgb(50, 50, 50);
}

.btn-outline-primary {
    --tblr-btn-color: var(--primary-color);
    --tblr-btn-border-color: var(--primary-color);
    --tblr-btn-hover-color: var(--text-color);
    --tblr-btn-hover-bg: var(--primary-color);
    --tblr-btn-active-color: var(--text-color);
    --tblr-btn-active-bg: var(--primary-color);
    --tblr-btn-disabled-color: var(--primary-color);
    --tblr-btn-disabled-border-color: var(--primary-color);
}

.btn-primary {
    --tblr-btn-color: #ffffff;
    --tblr-btn-bg: var(--primary-color);
    --tblr-btn-hover-color: var(var(--text-color));
    --tblr-btn-hover-bg: color-mix(in oklab, var(--primary-color), transparent 20%);
    --tblr-btn-active-color: var(var(--text-color));
    --tblr-btn-active-bg: color-mix(in oklab, var(--primary-color), transparent 20%);
    --tblr-btn-border-width: 0;
}

.btn-primary-2 {
    --tblr-btn-color: #ffffff;
    --tblr-btn-bg: var(--primary-color-2);
    --tblr-btn-hover-color: var(var(--text-color));
    --tblr-btn-hover-bg: color-mix(in oklab, var(--primary-color-2), transparent 20%);
    --tblr-btn-active-color: var(var(--text-color));
    --tblr-btn-active-bg: color-mix(in oklab, var(--primary-color-2), transparent 20%);
    --tblr-btn-border-width: 0;
}

.bg-primary-light {
    background-color: rgba(59, 129, 76, 0.21);
}

.btn-primary-2:hover {
    background-color: var(--tblr-btn-color);
    color: var(--tblr-btn-bg);
}

.btn-hover-dark:hover {
    background-color: rgba(1, 1, 1, 1);
    color: var(--primary-color);
}

.btn-bg-gradient {
    background: var(--linner-gradient-btn);
    border: none;
}

.btn-bg-gradient-1 {
    background: var(--linner-gradient-top-bottom);
    border: none;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-primary-2 {
    color: var(--primary-color-2) !important;
}

.mt-10 {
    margin-top: 4rem !important;
}

.mb-10 {
    margin-bottom: 4rem !important;
}

.mb-14 {
    margin-bottom: 6rem !important;
}

main.page-wrapper {
    margin-top: 98px;
}

.page-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    color: var(--primary-color-2);
}

.cf-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
}

.wrap-cf-service {
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(33, 33, 33, 1);
}

.wrap-cf-service .cf-title {
    color: var(--primary-color-2);
    text-align: left;
}

.card {
    border: none;
}

.card-title {
    font-weight: 700;
    font-size: 25px;
    color: var(--text-color);
}

.card-title.large {
    font-size: 30px;
}

.modal-light .modal-content {
    background-color: #ffffff;
    color: #000000;
}

@media (min-width: 1200px) {
    .container-xxl {
        max-width: 1300px;
    }

    .mt-lg-10 {
        margin-top: 4rem !important;
    }

    .mb-lg-14 {
        margin-bottom: 6rem !important;
    }

    .g-lg-7 {
        --tblr-gutter-x: 3rem;
        --tblr-gutter-y: 3rem;
    }
    .g-lg-8 {
        --tblr-gutter-x: 3.5rem;
        --tblr-gutter-y: 3.5rem;
    }
    .g-lg-9 {
        --tblr-gutter-x: 4rem;
        --tblr-gutter-y: 4rem;
    }
    .g-lg-10 {
        --tblr-gutter-x: 5rem;
        --tblr-gutter-y: 5rem;
    }

    .gx-lg-7 {
        --tblr-gutter-x: 3rem;
    }
    .g-lg-8, .gx-lg-8 {
        --tblr-gutter-x: 3.5rem;
    }
    .g-lg-9, .gx-lg-9 {
        --tblr-gutter-x: 4rem;
    }
    .g-lg-10, .gx-lg-10 {
        --tblr-gutter-x: 5rem;
    }

    .w-lg-25 {
        width: 25% !important;
    }
}

@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1440px;
    }
}

.navbar-expand-md .nav-item.active .nav-link {
    color: var(--primary-color);
}

.navbar-expand-md .nav-item .nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
}

.bg-dalali {
    background-image: url(../images/bg-dalaly.png);
    background-position: top center;
    background-size: auto;
    background-repeat: no-repeat;
}

.box {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.box-image-left {
    display: flex;
    gap: 20px;
    padding: 20px 15px;
}

.box-image {
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.box-image .image-cover {
    padding-top: 100%;
    border-radius: 12px;
}

.box-image>a{
    display: block;
}

.image-cover img {
    bottom: 0;
    font-family: "object-fit: cover;";
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.box-normal {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgb(75 75 75 / 54%);
    border-radius: 12px;
}

.box-normal:hover {
    background: var(--linner-gradient-top-bottom);
}

.box-normal .box-text {
    max-height: 100%;
    padding: 20px 15px 15px;
    width: 100%;
}

.box-overlay .box-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.42%, rgba(0, 0, 0, 0.2) 41.17%, rgba(0, 0, 0, 0.6) 60.59%, rgba(0, 0, 0, 0.8) 77.51%, #000000 96.56%);
}

.box-overlay .box-text {
    bottom: 0;
    max-height: 100%;
    padding: 1.5em;
    position: absolute;
    width: 100%;
}

.post-box .cat {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 8px 12px;
    border-radius: 0 8px 0 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: rgba(0, 0, 0, 1);
    background-color: rgba(250, 242, 254, 1);
}

.box-text.normal .post-title {
    font-weight: 700;
    font-size: 20px;
}

.box-text.large .post-title {
    font-weight: 700;
    font-size: 30px;
}

.box-text .post-title>a {
    color: var(--text-color);
}

.box-text .post-title>a:hover {
    text-decoration: none;
}

.box-text .post-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    line-clamp: 2;
    margin-bottom: 10px;
}

.box-text .post-short-desc {
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    line-clamp: 2;
}

.box-text.large .post-short-desc {
    font-size: 24px;
}

.box .number-step {
    font-weight: 400;
    font-size: 45px;
    line-height: 45px;
}

.box-image-left .box-text{
    flex: 1 1 0px;
}

.readmore-ghost {
    display: block;
    margin-top: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    color: var(--text-color);
}

.readmore-ghost:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.star-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.bg-wavy {
    background: url(../images/bg-wavy.png) center no-repeat;
    background-size: contain;
}

/* header */

#headerMain>header {
    background-color: rgba(0, 0, 0, 1);
    backdrop-filter: blur(15.899999618530273px);
    box-shadow: none;
    height: 98px;
    box-shadow: 0px 1px 37.8px 0px rgba(255, 255, 255, 0.15);
    transition: all .2s ease;
}

#headerMain>header img.logo {
    width: 66px;
}



#headerMain .navbar-expand-md .nav-item.active:after {
    display: none;
}

#headerMain .nav-link:focus, #headerMain .nav-link:hover {
    background-color: transparent;
}

.overlay-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    #headerMain>header {
        height: 59px;
        background-color: #000000 !important;
    }

    #headerMain>header img.logo {
        width: 40px;
    }
    #mainMenu {
      position: absolute;
      left: 0;
      top: 0;
      width: 300px;
      height: 100vh;
      background-color: rgba(33, 33, 33, 1);
      z-index: 999;
      transform: translateX(-100%);
      transition: transform .3s ease-in-out;
    }
  
    #mainMenu.show {
      transform: translateX(0);
    }

    .navbar-expand-md .nav-item .nav-link {
        justify-content: start;
        padding: 12px;
    }
  
    .overlay-mobile {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100vh;
      z-index: 99;
      background-color: #000000b8;
    }
  
    .overlay-mobile.show {
      display: block;
    }
  
    #mainMenu #mainMenu .nav-link {
      justify-content: start;
      padding-inline: 16px;
    }
  
    #mainMenu .dropdown-menu {
      padding: 0 20px;
      background: 0 0;
      position: static;
      box-shadow: none;
      border: none;
      min-width: 0;
      margin: 0;
    }
  
    #mainMenu .dropdown-item {
      font-size: 16px;
    }
}

/* swiper */

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}
  
.swiper-button-next, .swiper-button-prev {
    box-shadow: 0px 0px 3.08px 0px #00000040;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    color: #00000099;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background-color: rgba(217, 217, 217, 0.51);
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--linner-gradient-top-bottom);
}

/* Home */

.slider-banner-home {
    width: 100%;
    height: 100vh;
}

.slider-banner-home .banner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-banner-home .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
}

.sec-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
}

.sec-subtitle.line-left {
    position: relative;
    padding-left: 24px;
}

.sec-subtitle.line-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.sec-intro {
    padding-block: 60px;
}

.icon-box {
    padding: 12px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.icon-box .box-text.xxl{
    font-size: 25px;
    line-height: 35px;
}

.icon-box .box-text {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.icon-box.has-hover-border:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px; 
    padding: 3px; 
    background: var(--linner-gradient-border); 
    mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
    mask-composite: exclude; 
}

.icon-box.has-hover-bg:hover {
    background: var(--linner-gradient-top-bottom);
    /* border-image: var(--linner-gradient-border) 1.5; */
}

.icon-box.has-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px; 
    padding: 3px; 
    background: var(--linner-gradient-border); 
    mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
    mask-composite: exclude; 
}

/* .icon-box.has-hover-bg:hover::before {
    content: "";
    position: absolute;
    background: var(--linner-gradient-top-bottom);
    left: 50%;
    top: 50%;
    z-index: -1;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    transform: translate(-50%, -50%);
    border-radius: 4px;
}

.icon-box.has-hover-bg:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--linner-gradient-left-right);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    padding: 3px;
    border-radius: 8px;
} */


.home-icon-box {
    height: 245px;
}

.course-icon-box {
    height: 602px;
    padding: 30px;
    background-color: #1d1d1d;
}

.course-icon-box.has-border::before {
    padding: 1.5px;
}

.box-title {
    font-weight: 600;
    font-size: 35px;
    line-height: 45px;
}

.box-subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 10px;
}

.course-icon-box ul li::marker {
    content: '\ea5e';
    font-family: "tabler-icons";
}

.course-icon-box ul li {
    padding: 10px;
}

.course-icon-box:hover {
    background: var(--linner-gradient-top-bottom);
}

.course-icon-box:hover .btn-primary {
    background: white;
    color: var(--primary-color);
}

.course-icon-box.box-large {
    height: 640px;
}

.sec-service {
    padding-block: 60px;
}

.img-title {
    position: absolute;
    left: 5%;
    top: -150%;
    width: 123px;
}

.serv-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.serv-wrapper .col-item {
    flex: 1;
    transition: all 0.3s ease;
}

.serv-wrapper .col-item:first-child {
    flex: 2;
}

.serv-wrapper:hover .col-item {
    flex: 1;
}

.serv-wrapper .col-item:hover {
    flex: 2;
}

.serv-wrapper .box-image .image-cover {
    padding-top: 642px;
}

.serv-wrapper .image-cover img {
    object-position: 50% 30%;
}

.sec-slogun {
    position: relative;
    height: 489px;
    background-image: url('../images/bg-slogun.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.sec-slogun .sec-title {
    font-size: 50px;
    text-transform: none;
}

.slogun-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slogun-content {
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    width: 80%;
}

.founder-box {
    text-align: center;
}

.founder-box .box-image img {
    width: 389px;
    height: 515px;
    object-fit: cover;
    object-position: top;
}

.founder-box .box-text {
    position: relative;
    margin: -125px auto 0 auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 580px;
    height: 348px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary-color-2);
    padding-top: 40px;
    z-index: 1;
}

.founder-box .bg-left .box-text-wrap {
    transform: perspective(500px) rotateY(5deg);
}

.founder-box .bg-right .box-text-wrap {
    transform: perspective(500px) rotateY(-5deg);
}

.founder-box .bg-left .box-text-wrap {
    padding-inline: 65px 35px;
}

.founder-box .bg-right .box-text-wrap {
    padding-inline: 35px 65px;
}

.founder-box .box-text .title {
    font-weight: 900;
    font-size: 35px;
    line-height: 35px;
}

.founder-box .box-text .subtitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 35px;
}

.founder-box .box-text .content {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}

.founder-box .bg-left {
    background-image: url(../images/bg-text-founder.png);
}

.founder-box .bg-right {
    background-image: url(../images/bg-text-founder-right.png);
}

.sec-news {
    padding-block: 60px;
    background-image: url(../images/bg-news.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.news-wrapper .image-cover{
    padding-top: 56.65%;
}

.sec-review {
    padding-block: 60px;
}
.review-wrapper {
    position: relative;
}

.review-wrapper .swiper-button-next, .review-wrapper .swiper-button-prev {
    bottom: -70px;
    top: auto;
    background-color: transparent;
    border: 1px solid #FFFFFF;
}

.review-wrapper .swiper-button-next:after, .review-wrapper .swiper-button-prev:after{
    color: #FFFFFF;
}

.review-wrapper .swiper-button-prev {
    right: 60px;
    left: auto;
    top: auto;
}

.box-review {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgb(75 75 75 / 54%);
    border-radius: 12px;
}

.box-review .box-image {
    width: 90px;
}

.box-review .box-image img {
    width: 100%;
}

.box-review .star-wrapper {
    margin-block: 10px;
}

.box-review .box-text .name {
    font-weight: 700;
    font-size: 21px;
    line-height: 35px;
}

.box-review .box-text .course-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.box-review .box-text .comment {
    font-weight: 400;
    font-size: 21px;
    line-height: 35px;
}

.sec-wp .box-image {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-wp .box-text {
    font-weight: 400;
    font-size: 21px;
    line-height: 31px;
}


.sec-wp .box.box-image-left:hover {
    background: var(--linner-gradient-top-bottom);
    border-radius: 12px;
}

.gl-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-inline: 15px;
}

.sec-gallery {
    padding-block: 60px;
}

.sec-gallery .box-overlay .box-text .title {
    font-weight: 700;
    font-size: 30px;
}

@media screen and (min-width: 768px) {
    .sec-gallery .haft-height .box-overlay .image-cover {
        padding-top: 50%;
    }
}

/* footer */

.footer {
    border-top: none;
    background: rgba(1, 1, 1, 1);
    color: var(--text-color);
    padding-bottom: 0;
}

.footer .footer-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 21px;
}

.footer .box-text {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
}

.footer .box-image-left {
    padding: 10px 0;
}

.footer ul li {
    padding-block: 5px;
}

.footer ul li a {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: var(--text-color);
    text-decoration: none;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer .ic-social img {
    width: 40px;
}

/* course detail */

.course-gallery {
    height: 100%;
}

.course-gallery img {
    width: 100%;
    object-fit: cover;
}

.course-format .form-selectgroup {
    gap: 10px;
}

.course-format .form-selectgroup .form-selectgroup-item .form-selectgroup-label {
    padding-inline: 16px;
}

.course-format .form-selectgroup .form-selectgroup-item {
    margin-right: 0;
}

.course-summary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.course-summary .course-price {
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    letter-spacing: 0.5px;
    color: var(--primary-color-2);
}

.course-summary .course-title, .classroom-summary .course-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
}

.course-summary .course-short-desc, .classroom-summary .course-short-desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: rgb(172 172 172);
}

.course-summary .format-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 12px;
}


.course-summary .course-classroom .form-select {
    width: fit-content;
}

.course-detail-container .course-detail {
    margin-top: 60px;
}

.nav-line-bottom {
    gap: 40px;
}


.nav-line-bottom li a {
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    color: var(--text-color);
}

.nav-line-bottom.nav-sm li a {
    font-size: 24px;
    line-height: 28px;
}

.nav-line-bottom li a {
    padding-inline: 8px;
}

.nav-line-bottom li a.active {
    border-bottom: 1px solid var(--primary-color-2);
}

.nav-line-bottom li a:focus {
    color: var(--text-color);
}

.course-detail .tab-content, .course-reel .tab-content {
    padding-top: 30px;
}

.course-comment {
    margin-top: 60px;
}

.course-comment .title {
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    margin-bottom: 30px;
}

.course-comment .list-group-item {
    background-color: rgba(255, 255, 255, 0.24);
}

.course-comment .list-group-item:active, .course-comment .list-group-item:focus, .course-comment .list-group-item:hover{
    background-color: rgba(255, 255, 255, 0.24);
}

.course-comment .list-group-item {
    
    color: var(--text-color);
}

.course-comment .fullname, .course-reel .fullname {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.course-comment .content, .course-reel .content {
    font-size: 16px;
    line-height: 28px;
}

.form-comment .not-login, .course-reel .not-login {
    margin-block: 60px;
}

.paginate-custom {
    margin-top: 60px;
}

.paginate-custom .page-link {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
}

.paginate-custom .page-item:not(.active) .page-link {
    border: 1px solid rgba(255, 255, 255, 0.42)
}

.paginate-custom .page-item.active .page-link, .paginate-custom .page-item .page-link:hover {
    background-color: var(--primary-color-2);
    color: rgba(0, 0, 0, 1);
}

.paginate-custom .page-item.disabled {
    background-color: #1c1c1c;
    opacity: .7;
}

@media screen and (max-width: 767px) {
    main.page-wrapper {
        margin-top: 59px;
    }
    .fs-24 {
        font-size: 18px;
    }

    .fs-20 {
        font-size: 14px;
    }

    .fs-30 {
        font-size: 24px;
    }

    .btn {
        font-size: 16px;
        line-height: 24px;
    }

    .sec-title {
        font-size: 24px;
        line-height: 32px;
    }

    .sec-subtitle {
        font-size: 13px;
        line-height: 24px;
    }

    .slider-banner-home {
        height: 249px;
    }

    .sec-intro {
        padding-block: 30px;
    }

    .bg-dalali {
        background-position: center 10%;
    }

    .icon-box .box-text {
        font-size: 13px;
    }

    .icon-box .box-text.xxl {
        font-size: 16px;
    }

    .home-icon-box {
        height: auto;
    }

    .box-subtitle {
        font-size: 16px;
        line-height: 28px;
    }

    .box-title {
        font-size: 24px;
        line-height: 32px;
    }

    .course-icon-box {
        height: 443px;
        padding: 20px;
    }

    .course-icon-box.box-large {
        height: 486px;
    }

    .course-icon-box .box-image img {
        width: 70px;
    }

    .course-icon-box ul li {
        padding: 6px;
    }
    
    .img-title {
        left: 0%;
        top: -80%;
        width: 60px;
    }

    .sec-service {
        padding-bottom: 30px;
    }

    .sec-service .sec-title {
        text-align: right;
    }

    .serv-wrapper .col-item {
        flex: 1 1 100% !important;
    }

    .serv-wrapper .box-image .image-cover {
        padding-top: 240px;
    }

    .box-text.large .post-title {
        font-size: 20px;
        line-height: 28px;
    }

    .box-text.large .post-short-desc {
        font-size: 16px;
    }

    .box-overlay .box-image::after {
        height: 60%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.42%, rgba(0, 0, 0, 0.2) 41.17%, rgba(0, 0, 0, 0.6) 60.59%, rgba(0, 0, 0, 0.8) 63.51%, #000000 96.56%)
    }

    .slogun-wrapper {
        top: 40%;
    }

    .sec-slogun {
        height: 160px;
        background-size: contain;
    }

    .sec-slogun .sec-title {
        font-size: 18px;
    }

    .slogun-content {
        font-weight: 400;
        font-size: 11px;
        line-height: 18px;
        text-align: center;
        width: 86%;
    }

    .founder-box .box-text {
        width: 100%;
        padding-top: 30px;
        margin-top: -200px;
    }

    .founder-box .box-text.bg-right {
        margin-top: -150px;
    }

    .founder-box .box-text .title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 3px;
    }

    .founder-box .box-text .subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 3px;
    }

    .founder-box .box-text .content {
        font-size: 11px;
        line-height: 16px;
    }

    .founder-box .bg-left .box-text-wrap {
        padding-inline: 45px 26px;
    }

    .founder-box .bg-right .box-text-wrap {
        padding-inline: 26px 45px;
    }

    .founder-box .box-image img {
        width: 250px;
        height: auto;
    }

    .sec-news {
        padding-block: 30px;
        background-position: top center;
    }

    .box-review .box-image {
        width: 50px;
    }

    .box-review .box-text .name {
        font-size: 15px;
    }

    .box-review .box-text .course-name {
        font-size: 11px;
    }

    .box-review .box-text .comment {
        font-size: 13px;
        line-height: 22px;
    }

    .star-wrapper {
        gap: 10px;
    }

    .sec-review .sec-title {
        text-align: center !important;
    }

    .review-wrapper .swiper-button-next, .review-wrapper .swiper-button-prev {
        display: none;
    }

    .box .number-step {
        font-size: 24px;
    }

    .sec-wp .box-text {
        font-size: 18px;
    }

    .box-image-left {
        padding: 15px 10px;
        gap: 10px;
    }

    .sec-wp .box-image {
        width: 45px;
    }

    .sec-gallery .box-overlay .box-text .title {
        font-size: 18px;
    }

    .sec-gallery .box-overlay .box-text {
        padding: .5rem;
    }

    .cf-title {
        font-size: 18px;
        line-height: 24px;
    }

    .page-title {
        font-size: 24px;
    }

    .nav-line-bottom li a {
        font-size: 18px;
    }

    .form-comment .not-login, .course-reel .not-login {
        margin-bottom: 0;
    }

    .course-comment .title {
        font-size: 18px;
    }

    .course-comment .fullname, .course-reel .fullname {
        font-size: 16px;
    }

    .course-comment .content, .course-reel .content {
        font-size: 14px;
    }

    .comment_at {
        font-size: 12px;
    }

    .avatar-xl {
        --tblr-avatar-size: 4rem;
    }

    .card-title.large {
        font-size: 24px;
    }

    .course-summary, .classroom-summary {
        margin-top: 24px;
    }

    .course-summary .course-title, .classroom-summary .course-title {
        font-size: 32px;
        line-height: 32px;
    }
    .course-summary .course-short-desc, .classroom-summary .course-short-desc {
        font-size: 16px;
    }

    .box-text.normal .post-title {
        font-size: 16px;
        line-height: 24px;
    }
}