html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext,vietnamese');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext');
:root {
    font-size: 20px;
    --red: #da2c4d;
    --yellow: #f8ab37;
    --green: #2ecc71;
    --white: #ffffff;
    --grey-light: #f2f7f9;
    --grey: #6d6d6d;
    --black: #080808;
    --black-blue: #1f2029;
    --black-blue-light: #353746;
    --black-blue-light-2: #404255;
    --black-blue-light-3: #4b4d64;
    --black-light: #424455;
}

@-webkit-keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}
img{
    border-radius: 10px;
}

/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(10, 10, 10, 0.089);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 50ms linear;
    transition: all 50ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--grey);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 50ms linear;
    transition: all 50ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 50ms linear;
    transition: all 50ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--grey);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 50ms linear;
    transition: all 50ms linear;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #48494a;
    background-image: url(../images/body-bg.jpg);
}

.layout_padding {
    padding: 70px 0;
}

.layout_padding2 {
    padding: 45px 0;
}

.layout_padding2-top {
    padding-top: 45px;
}

.layout_padding-top {
    padding-top: 75px;
}

.layout_padding-bottom {
    padding-bottom: 75px;
}

.call_to-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    text-transform: uppercase;
    background-color: #fec913;
    border: 1px solid transparent;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.hero_section .call_to-btn {
    padding: 12px 35px;
}

.call_to-btn img {
    width: 18px;
    margin-left: 10px;
}

.btn_on-hover {
    transition: all 0.3s ease 0s;
}

.call_to-btn:hover,
.btn_on-hover:hover {
    color: #fff;
    -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(-7px);
}

.main-heading {
    color: #357C3C;
    font-weight: bold;
    text-align: center;
}


/*header section*/

.header_section {
    padding-top: 10px;
}

nav.navbar.navbar-expand-lg {
    padding: 10px 0;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 20px;
    color: #2d2c2c;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #232323;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover,
a:focus {
    color: initial;
}
.button{
    text-decoration: none;
}
.button:hover{
    color: 0.7;
}
.btn,
.btn:focus {
    outline: none !important;
    box-shadow: none;
}

.top_container {
    height: 95vh;
    position: relative;
}

.top_container::before {
    content: "";
    position: absolute;
    width: 48%;
    height: 100%;
    background: url(../images/hero-bg.png);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Menambahkan media query untuk mode seluler */
@media (max-width: 768px) {
    .top_container::before {
        width: 24%; /* Kembalikan width ke 48% pada mode seluler */
    }
    .form{
        height: 1900px;
    }
}

.top_container.sub_pages::before {
    background-size: 550px 200px;
    background-position: top left;
}

.top_container.sub_pages {
    height: 35vh;
}

.top_container.sub_page {
    height: auto;
}

.navbar-brand img {
    width: 25px;
    margin-right: 7px;
}

.custom_nav-container .nav_search-btn {
    background-image: url(../images/search-icon.png);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position-y: 7px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand span {
    font-size: 20px;
    font-weight: 700;
    color: #fefefe;
}

.custom_nav-container {
    z-index: 99999;
    padding: 15px 0;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    background-size: 40px;
}


/*end header section*/

/* Start of 404 page */

.contact_section {
    text-align: center;
    padding: 50px 0;
}   

.main-heading {
    font-size: 48px;
    color: #333; /* Atur warna teks sesuai preferensi Anda */
}

.text-404 {
font-size: 18px;
color: #555; /* Atur warna teks sesuai preferensi Anda */
}

.text-404 a {
color: #007bff; /* Atur warna tautan sesuai preferensi Anda */
text-decoration: underline;
}

/* end of 404 page */

.form{
    height: 1900px;
}
/* hero section */

.hero-container {
    display: flex;
    padding-top: 50px;
    padding-bottom: 75px;
}

.hero_detail-box {
    width: 45%;
}

.hero_img-container {
    width: 55%;
}

.hero_detail-box {
    color: #fefeff;
}

.hero_detail-box h1 {
    text-transform: uppercase;
    font-size: 50px;
    color: #fec913;
    font-weight: bold;
}

.hero_detail-box p {
    margin-top: 20px;
    margin-bottom: 35px;
}


/* end hero section */

iframe{
    height: 100%;
    width: 100%;
}
/* about section */

.about_img-box {
    width: 65%;
    margin: 40px auto;
}


/* about section */


/* teacher container */

.teacher_section .card {
    border: none;
    background-color: transparent;
}

.teacher_section .card-title {
    text-align: center;
    color: #48494a;
}


/* end teacher container */


/* vehicle section */

.vehicle_img-box {
    width: 60%;
    margin: 0 auto;
}

.vehicle_section .carousel-control-prev,
.vehicle_section .carousel-control-next {
    opacity: 1;
}

.vehicle_section .carousel-control-prev-icon,
.vehicle_section .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: #357C3C;
    border-radius: 100%;
    background-size: 10px;
    background-position: center;
}

.vehicle_section .carousel-control-prev-icon {
    background-image: url(../images/prev.png);
}

.vehicle_section .carousel-control-next-icon {
    background-image: url(../images/next.png);
}


/* end vehicle section */


/* client section */

.client_section {
    background-image: url(../images/shape-1.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 18%;
}

.client_container {
    width: 80%;
    margin: 0 auto;
    padding: 35px;
    background-color: #fefeff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(163, 158, 163, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(163, 158, 163, 1);
    box-shadow: 0px 0px 5px 0px rgba(163, 158, 163, 1);
    border-radius: 20px;
}

.client_detail-box h4 {
    color: #082465;
}

.client_detail-box span {
    text-transform: uppercase;
    color: #48494a;
}

.client_detail .client_img-box {
    width: 100px;
    margin-right: 15px;
}

.client_detail .client_img-box img {
    width: 100%;
}


/* end client section */


/* contact section */

.contact_section {
    background-image: url(../images/shape-2.png);
    background-repeat: no-repeat;
    background-size: 14%;
    background-position: left center;
}

.contact-form {
    padding: 25px;
    border-radius: 20px;
}

.contact-form input {
    border: none;
    outline: none;
    background-color: #dedee0;
    width: 100%;
    margin: 10px 0;
    padding: 7px 10px;
}

.contact-form .input_message {
    border: none;
    outline: none;
    background-color: #dedee0;
    width: 100%;
    margin: 10px 0;
    padding: 7px 10px;
    height: 120px;
}

.contact-form input::placeholder {
    color: #fff;
}
.contact-form textarea::placeholder {
    color: #fff;
}
.contact-form .btn_on-hover {
    border: none;
    outline: none;
    padding: 7px 50px;
    text-transform: uppercase;
    margin-top: 25px;
    background-color: #fec913;
    color: #fff;
}


/* end contact section */


/* admission section */

.admission_section .container-fluid.position-relative {
    height: 500px;
}

.admission_container {
    width: 770px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

iframe {
    width: 100%;
    height: 110%;
}

.admission_img-box {
    width: 50%;
    border-radius: 25px 0 0 25px;
    overflow: hidden;
}

.admission_detail {
    width: 50%;
    background-color: #082465;
    padding: 20px;
    color: #fefeff;
    border-radius: 0 25px 25px 0;
}

.admission_img-box img {
    width: 100%;
}

.admission_detail .admission_btn {
    background-color: #fec913;
    padding: 7px 35px;
    color: #fefeff;
    font-size: 15px;
    border-radius: 5px;
}


/* end admission section */


/* call section */

.call_section h2 {
    text-align: center;
    margin: 15px 0;
}

.landing_section .number_heading {
    color: #fec913;
}

.landing_section p {
    text-align: center;
    margin-top: 15px;
}


/* end call section */


/* footer section*/

.footer_section {
    background-color: #357C3C;
    padding: 20px 0;
    font-family: "Roboto", sans-serif;
    
    bottom: 0;
}

.footer_section p {
    font-size: 15px;
    color: #fdfdfe;
    margin: 0;
    text-align: center;
}

.footer_section a {
    color: #fdfdfe;
}


/* end footer section*/