/* ==========================
Google Font
========================== */

body{
    font-family:'Kanit',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.8;
}

/* ==========================
General
========================== */

section{
    padding-top:80px;
    padding-bottom:80px;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

.text-primary{
    color:#0d6efd !important;
}

.bg-primary{
    background:#0d6efd !important;
}

/* ==========================
Navbar
========================== */

.navbar{
    padding:15px 0;
}

.navbar-brand{
    font-size:1.5rem;
    font-weight:700;
}

.nav-link{
    font-weight:500;
    color:#333 !important;
    margin-left:10px;
    margin-right:10px;
}

.nav-link:hover{
    color:#0d6efd !important;
}

/* ==========================
Hero
========================== */

.hero{
    background:#f8f9fa;
    min-height:650px;
    display:flex;
    align-items:center;
}

.hero h1{
    line-height:1.3;
}

.hero p{
    font-size:1.1rem;
}

.hero img{
    border-radius:20px;
}

/* ==========================
Buttons
========================== */

.btn{
    border-radius:10px;
    padding:12px 25px;
    font-weight:500;
}

.btn-primary{
    background:#0d6efd;
    border-color:#0d6efd;
}

.btn-primary:hover{
    background:#0b5ed7;
}

.btn-success{
    background:#06C755;
    border-color:#06C755;
}

.btn-success:hover{
    background:#05b64d;
}

/* ==========================
Cards
========================== */

.card{
    border:none;
    border-radius:15px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    border-radius:15px 15px 0 0;
}

.card-body{
    padding:25px;
}

/* ==========================
Section Title
========================== */

section h2{
    font-weight:700;
    margin-bottom:15px;
}

section p{
    color:#666;
}

/* ==========================
Review
========================== */

.carousel-item{
    padding:10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:#0d6efd;
    border-radius:50%;
    padding:20px;
}

/* ==========================
Accordion
========================== */

.accordion-button{
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#0d6efd;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

/* ==========================
Footer
========================== */

footer{
    background:#222;
}

footer p{
    color:#ddd;
}

footer small{
    color:#aaa;
}

/* ==========================
Floating Buttons
========================== */

.floating-buttons{

    position:fixed;

    right:20px;

    bottom:20px;

    z-index:9999;

    display:flex;

    flex-direction:column;

}

.floating-btn{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    border-radius:50%;

}

/* ==========================
Badge
========================== */

.badge{
    padding:10px 18px;
    font-size:14px;
    border-radius:30px;
}

/* ==========================
Shadow
========================== */

.shadow-sm{
    box-shadow:0 .125rem .5rem rgba(0,0,0,.08)!important;
}

/* ==========================
Responsive
========================== */

@media(max-width:991px){

.hero{

    min-height:auto;

    text-align:center;

    padding-top:60px;

}

.hero img{

    margin-top:40px;

}

.navbar-nav{

    text-align:center;

}

.navbar .btn{

    width:100%;

}

}

@media(max-width:768px){

section{

    padding-top:60px;

    padding-bottom:60px;

}

.display-5{

    font-size:2rem;

}

.hero p{

    font-size:1rem;

}

.btn-lg{

    width:100%;

}

.floating-btn{

    width:55px;

    height:55px;

}

}

@media(max-width:576px){

.navbar-brand{

    font-size:1.2rem;

}

.display-5{

    font-size:1.8rem;

}

.hero{

    padding-top:40px;

}

.card-body{

    padding:20px;

}

}
/* ==========================
Logo
========================== */

.navbar-brand img{
    height:55px;
    width:auto;
}

footer img{
    max-height:80px;
    width:auto;
}

@media (max-width:768px){

    .navbar-brand img{
        height:45px;
    }

    .navbar-brand .fs-5{
        font-size:1rem !important;
    }

    .navbar-brand small{
        display:none;
    }

}