/* ===================================
    Crafto - Consulting
====================================== */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* variable */
:root {
    --base-color: #f7951d;
    --dark-gray: #292d36;
    --medium-gray: #808291;
    --primary-font: "Kanit", sans-serif;
    --alt-font: "Kanit", sans-serif;
}
/* reset */
body {
    font-size: 17px;
    line-height: 30px;
}
a {
    color: #808291;
}
/* bg gradient color */
.bg-gradient-black-dark-orange {
    background-image: linear-gradient(
        to right top,
        #353332,
        #312b28,
        #15110f,
        #4a3229,
        #5a2611
    );
}
.bg-gradient-dark-orange-transparent {
    background-image: linear-gradient(
        to right top,
        rgba(212, 110, 66, 0.8),
        rgba(197, 105, 66, 0.8),
        rgba(184, 101, 66, 0.8),
        rgba(158, 93, 67, 0.8),
        rgba(111, 80, 70, 0.8)
    );
}
/* header */
.header-icon .icon > a {
    font-size: 20px;
}
.navbar .navbar-nav .nav-link {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.5px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-size: 16px;
    line-height: 28px;
}
.push-menu {
    width: 400px;
}
header .navbar-brand img {
    max-height: 60px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu {
    border-radius: 5px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li a {
    padding: 9px 0 11px;
    border-bottom: 1px solid var(--light-medium-gray);
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li:first-child a {
    padding-top: 0;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li:last-child a {
    border: 0;
    padding-bottom: 0;
}
.push-menu .close-menu {
    right: 30px;
    top: 30px;
}
/* typography */
h1 {
    line-height: 4.5rem;
}
/* subcribe style 02 */
.newsletter-style-02 .btn {
    padding: 7px 18px 9px 18px;
}
/* footer */
footer .input-small,
footer .textarea-small {
    font-size: 15px;
    padding-left: 20px;
}
footer .footer-logo img {
    max-height: 80px;
}
/* page title */
.page-title-extra-small h1 {
    font-size: 22px;
    line-height: 32px;
}
/* subcribe style 02 */
.newsletter-style-02 input {
    padding-right: 65px;
}
.list-style-main {
    padding-left: 16px;
}
.list-style-main li {
    margin: 0 0 10px;
    list-style: disc;
}
li::marker {
    color: var(--base-color);
}
.mw-1600 {
    max-width: 1600px;
}
.mw-1800 {
    max-width: 1800px;
}
.mw-1920 {
    max-width: 1920px;
}
.bg-line {
    background-color: #00c200;
}
.bg-line:hover {
    background-color: #00c200;
}
.img-line-icon {
    width: 32px;
    height: 32px;
}
.text-justify {
    text-align: justify !important;
}
.marker-white li::marker {
    color: white;
}
.swiper-backface-hidden .swiper-slide {
    margin-right: 0px !important;
}
.course-img {
    transition: transform 0.2s;
    filter: drop-shadow(8px 8px 3px #898989);
}
.course-img:hover {
    transform: scale(1.2);
}
.rounded-15px {
    border-radius: 15px !important;
}

.text-truncate-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.object-cover {
    object-fit: cover;
}
.object-center {
    object-position: center;
}

/* media query responsive */
@media (min-width: 767px) {
    .course-img {
        filter: drop-shadow(10px 10px 3px #898989);
    }
}
@media (min-width: 991px) {
    .course-img {
        filter: drop-shadow(16px 16px 3px #898989);
    }
}
@media (max-width: 1199px) {
    .newsletter-style-02 input {
        padding-left: 15px;
    }
}
@media (max-width: 991px) {
    .navbar .navbar-nav .simple-dropdown .dropdown-menu {
        margin-top: 15px;
    }
    .md-rounded-8px {
        border-radius: 8px !important;
    }
}
@media (max-width: 767px) {
    .page-title-extra-small h1 {
        font-size: 20px;
        line-height: 28px;
    }
    .process-step-style-02 .progress-step-separator {
        display: block;
    }
}
@media (max-width: 575px) {
    .process-step-style-02 .progress-step-separator {
        display: none;
    }
}



