/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Spartan:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 5rem;

    /*========== Colors ==========*/
    --first-color: #f8ce54;
    --first-color-alt: #f8cf5427;
    --second-color: #999999;
    --title-color: hsl(0, 0%, 13%);
    --text-color: hsl(154, 13%, 32%);
    --text-color-light: hsl(60, 1%, 56%);
    --white: hsl(0, 0%, 100%);
    --gray: hsl(0, 0%, 93%);
    --black: #000000;
    --border-color: hsl(129, 36%, 85%);
    --border-color-alt: hsl(133, 15%, 90%);

    /*========== Font and typography ==========*/
    /* .5rem = 8px | 1rem = 16px ... */
    --body-font: 'Lato', sans-serif;
    --second-font: 'Spartan', sans-serif;
    --big-font-size: 3.5rem;
    --h1-font-size: 2.75rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.375rem;
    --large-font-size: 1.125rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
    --tiny-font-size: 0.6875rem;

    /*========== Font weight ==========*/
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;

    /*========== Transition ==========*/
    --transition-all-ease-in-out: all 0.3s ease-in-out;
}

/* Responsive typography */
@media screen and (max-width: 1200px) {
    :root {
        --big-font-size: 2.25rem;
        --h1-font-size: 2rem;
        --h2-font-size: 1.375rem;
        --h3-font-size: 1.25rem;
        --h4-font-size: 1.125rem;
        --large-font-size: 1rem;
        --normal-font-size: 0.9375rem;
        --small-font-size: 0.8125rem;
        --smaller-font-size: 0.6875rem;
        --tiny-font-size: 0.625rem;
    }
}

/*=============== BASE ===============*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: var(--transition-all-ease-in-out);
}

html {
    scroll-behavior: smooth;
}

input,
textarea,
body {
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--weight-400);
}

body {
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: var(--second-font);
    color: var(--title-color);
    font-weight: var(--weight-600);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    line-height: 1.5rem;
}

img {
    max-width: 100%;
}

button,
textarea,
input {
    background-color: transparent;
    border: none;
    outline: none;
}

table {
    width: 100%;
    border-collapse: collapse;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: .75rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.flex {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.section {
    padding-block: 2rem;
}

.section--lg {
    padding-block: 4rem;
}

.section__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1.5rem;
    font-weight: var(--weight-700);
    text-transform: uppercase;
}

.section__title span {
    color: var(--first-color);
}

.form__input {
    border: 1px solid var(--border-color-alt);
    padding-inline: 1rem;
    height: 45px;
    border-radius: .25rem;
    font-size: var(--small-font-size);
}

.form {
    row-gap: 1rem;
}

.form__group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.textarea {
    height: 200px;
    padding-block: 1rem;
    resize: none;
}

/*=============== BUTTONS ===============*/

.btn {
    display: inline-block;
    background: var(--first-color);
    border: 2px solid var(--first-color);
    color: var(--white);
    padding-inline: 1.75rem;
    height: 49px;
    line-height: 49px;
    border-radius: .25rem;
    font-family: var(--second-font);
    font-size: var(--small-font-size);
    font-weight: var(--weight-700);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--first-color);
}

.btn--md,
.btn--sm {
    font-family: var(--body-font);
}

.btn--md {
    height: 45px;
    line-height: 42px;
}

.btn--sm {
    height: 40px;
    line-height: 36px;
}

.text__center {
    text-align: center;
}


/*=============== BREADCRUMBS ===============*/
.breadcrumb {
    background-color: var(--gray);
    padding-block: 1.5rem;
}

.breadcrumb__list {
    column-gap: 0.75rem;
}

.breadcrumb__link {
    color: var(--text-color);
    font-size: var(--small-font-size);
}

/*=============== NAVBAR ===============*/

.logo__img {
  width: 350px;
  margin-left: -110px;
  }

nav {
    position: sticky;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #e5e3e0;
    border-bottom: 1px solid var(--black);
}

nav .navbar {
    height: 100%;
    margin: auto;
    justify-content: space-between;
    padding: 0 50px;
}

nav .navbar .logo a {
    color: var(--white);
    font-size: var(--h2-font-size);
    font-weight: var(--weight-600);
}

nav .navbar .nav-links {
    height: 100%;
    line-height: var(--header-height);
}

nav .navbar .nav-links .links {
    display: flex;
}

nav .navbar .nav-links .links li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

nav .navbar .nav-links .links li a {
    height: 100%;
    color: var(--text-color);
    white-space: nowrap;
    font-size: var(--normal-font-size);
    font-weight: var(--weight-700);
}

nav .navbar .nav-links .links li a:hover,
nav .navbar .nav-links .links li a.active {
    color: var(--first-color)
}

nav .navbar .nav-links .links li .arrow {
    height: 100%;
    width: 22px;
    text-align: center;
    color: var(--text-color);
    line-height: var(--header-height);
}

.navbar .nav-links .links li:hover .htmlcss-arrow,
.navbar .nav-links .links li:hover .js-arrow {
    transform: rotate(180deg);
}

.navbar .nav-links .links .sub-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    background: var(--gray);
    line-height: 40px;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: none;
}

.navbar .nav-links .links .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .nav-links .links .sub-menu li a {
    font-size: var(--small-font-size);
    font-weight: var(--weight-500);
}

.navbar .nav-links .links .sub-menu li .more-arrow {
    line-height: 40px;
}

.navbar .nav-links .links li:hover .htmlCss-sub-menu,
.navbar .nav-links .links li:hover .js-sub-menu {
    display: block;
}

.navbar .nav-links .links .more .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    display: none;
}

.navbar .nav-links .links .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    color: var(--white);
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: var(--h4-font-size);
    font-weight: var(--weight-600);
}

.navbar .search-box .input-box {
    height: 50px;
    width: 300px;
    background: var(--gray);
    position: absolute;
    top: 80px;
    right: calc(100% - 40px);
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
}

.navbar.showInput .search-box .input-box {
    pointer-events: auto;
    opacity: 1;
    top: 65px;
}

.navbar .search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: var(--gray);
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.navbar .search-box .input-box input {
    position: absolute;
    height: 30px;
    width: 280px;
    z-index: 98;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    border: none;
    border-radius: 4px;
    padding: 0 15px;
    font-size: var(--normal-font-size);
}

.navbar .search-box .input-box button {
    border: none;
    position: absolute;
    right: 40px;
    z-index: 99;
    top: 7px;
}

.navbar .bx-menu,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .bx-x {
    display: none;
}

/*=============== HOME ===============*/

.slider__image {
    width: 100%;
    height: 600px !important;
}

.slider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.home .swiper-button-next,
.home .swiper-button-prev {
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
    background: var(--first-color);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
    font-size: 2rem;
    color: var(--black);
}

.home .swiper-button-prev {
    right: 5rem;
}

/*=============== TOP BANNAR ===============*/

.top__bannar--container {
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
}

.top__bannar--image {
    width: 100%;
    height: 100%;
}

.top__bannar--img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top__bannar--text {
    flex-direction: column;
    row-gap: 1rem;
    align-items: flex-start;
}

.top__bannar--text ul {
    list-style: disc;
    margin-left: 1rem;
}

.top__bannar--text * {
    color: var(--text-color);
    line-height: 1.8;
    font-size: var(--large-font-size);
}


/*=============== WHAT IS ===============*/

.whatis__bannar--container {
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
}

.whatis__bannar--image {
    width: 100%;
    height: 100%;
}

.whatis__bannar--img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatis__bannar--text {
    flex-direction: column;
    row-gap: 1rem;
    align-items: flex-start;
}

.whatis__bannar--text h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--weight-700);
}

.whatis__bannar--text h2 span {
    color: var(--first-color)
}

.whatis__bannar--text * {
    color: var(--text-color);
}

.whatis__bannar--text p {
    line-height: 1.8;
    font-size: var(--large-font-size);
}

/*=============== PROVIDE ===============*/

.provide__container {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
}

.provide__box {
    background-color: var(--first-color-alt);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.provide__box:hover {
    transform: translateY(-10px);
    background: var(--first-color);
}

.provide__box:hover i {
    color: var(--white);
}

.provide__box i {
    color: var(--first-color);
}

.provide__box:hover h5,
.provide__box:hover p {
    color: var(--white);
}

.provide__box h5 {
    font-size: var(--large-font-size);
    color: var(--black);
    font-weight: var(--weight-700);
}

.provide__box p {
    color: var(--black);
    font-weight: var(--weight-600);
    line-height: 1.8;
    text-align: center;
}

/*=============== CAROUSEL ===============*/

.carousel .carousel-slider {
    padding: 1rem;
}

.carousel .carousel-slider .box {
    background: var(--white);
    border-radius: .5rem;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
}

.carousel .carousel-slider .box img {
    height: 100%;
    width: 100%;
}

/*=============== SERVICES ===============*/

.service__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.service__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service__image {
    width: 100%;
    height: 25rem;
    border-radius: 10px;
    overflow: hidden;
}

.service__image:hover .service__img {
    transform: scale(1.05);
}

.service__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service__box:nth-child(even) .service__text {
    order: -1;
}

.service__text {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
}

.service__text .btn {
    max-width: fit-content;
}

.service__text h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--weight-700);
    color: var(--black);
}

/* 
.service__text h3 span {
    font-size: var(--h1-font-size);
} */

.service__text p {
    line-height: 1.8;
    color: var(--black);
    font-size: var(--normal-font-size);
}


/*=============== PRODUCTS ===============*/

.product__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.product__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.product__image {
    width: 100%;
    max-height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.product__image:hover .product__img {
    transform: scale(1.05);
}

.product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product__box:nth-child(even) .product__text {
    order: -1;
}

.product__text {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
}

.product__text h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--weight-700);
    color: var(--black);
    text-transform: capitalize;
}

/* .product__text h3 span {
    font-size: var(--h1-font-size);
} */

.product__text p {
    line-height: 1.8;
    color: var(--black);
    font-size: var(--normal-font-size);
    font-weight: var(--weight-700);
}

.product__text ul {
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-left: 1rem;
}

.product__text ul li {
    color: var(--black);
    font-size: var(--normal-font-size);
    line-height: 1.8;
}

/*=============== Training Single ===============*/

.training__single__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.training__single__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.training__single__box:nth-child(even) .training__single__text {
    order: -1;
}

.training__single__text {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
}

.training__single__text h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--weight-700);
    color: var(--black);
    text-transform: capitalize;
}

/* .training__single__text h3 span {
    font-size: var(--h1-font-size);
} */

.training__single__text p {
    line-height: 1.8;
    color: var(--black);
    font-size: var(--normal-font-size);
    font-weight: var(--weight-700);
}

.training__single__text ul {
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-left: 1rem;
}

.training__single__text ul li {
    color: var(--black);
    font-size: var(--normal-font-size);
    line-height: 1.8;
}

/*=============== PUBLIC TRAINING ===============*/

.public__container {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 2rem;
}


/*=============== ABOUT US ===============*/

.about__container {
    grid-template-columns: repeat(2, 1fr);
}

.about__image {
    width: 100%;
    height: 25rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--first-color);
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image:hover .about__img {
    transform: scale(1.05);
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about__text p {
    font-size: var(--large-font-size);
    line-height: 1.8;
}

/*=============== CLIENT ===============*/

.client__container {
    grid-template-columns: repeat(8, 1fr);
}

.client__box {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--white);
    padding: 1rem;
    cursor: pointer;
}

.client__box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*=============== CORPORATE TRAINING ===============*/

.corporate__container {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 2rem;
}

.corporate__image {
    height: 22rem;
    overflow: hidden;
    margin-inline: auto;
}

.corporate__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.language__tabs {
    display: flex;
    column-gap: 1.75rem;
    margin-bottom: 3rem;
}

.language__tab {
    font-family: var(--second-font);
    font-size: var(--large-font-size);
    font-weight: var(--weight-600);
    cursor: pointer;
}

.language__tab.active-tab {
    color: var(--first-color);
}

.languages__tab-content:not(.active-tab) {
    display: none;
}

.corporate__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.corporate__text h3 {
    font-size: var(--h3-font-size);
    color: var(--text-color);
}

.corporate__text p {
    line-height: 1.8;
    color: var(--text-color);
    font-size: var(--large-font-size);
}

/*=============== CONSULTATION ===============*/


.consultation__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.consultation__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.consultation__image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.consultation__image:hover .consultation__img {
    transform: scale(1.05);
}

.consultation__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.consultation__box:nth-child(even) .consultation__text {
    order: -1;
}

.consultation__text {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
}

.consultation__text h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--weight-700);
    color: var(--black);
    text-transform: capitalize;
}

/* 
.consultation__text h3 span {
    font-size: var(--h1-font-size);
} */

.table__container {
    overflow-x: auto;
}

.table {
    table-layout: fixed;
    border: 1px solid var(--first-color)
}

.table tr {
    border-top: 1px solid var(--first-color);
}

.table td {
    border-left: 1px solid var(--first-color);
}

.table tr:last-child {
    border-bottom: 1px solid var(--first-color);
}

.table tr td {
    padding: 0.5rem;
    font-size: var(--normal-font-size);
}

/*=============== CONTACT ===============*/

.contact__container {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2rem;
}

.contact__box {
    border: 1px solid var(--first-color);
    border-radius: 5px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
}

.contact__box:hover .contact__icon {
    background: var(--first-color);
}

.contact__box:hover .contact__icon i {
    color: var(--white);
}

.contact__icon {
    width: 4rem;
    height: 4rem;
    line-height: 4.3rem;
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid var(--first-color);
}

.contact__icon i {
    color: var(--first-color);
    font-size: var(--h3-font-size);
}

.contact__title {
    font-size: var(--normal-font-size);
    color: var(--title-color);
}

.contact__text {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    font-weight: var(--weight-600);
}

.map {
    margin-bottom: 2rem;
}

.map iframe {
    width: 100%;
    height: 600px;
}

/*=============== FOOTER ===============*/

.footer-container {
    background: #2a2a2a;
    padding: 4rem 3% 2rem 3%;
}

.footer-container .box-container {
    width: 100%;
    display: grid;
    padding-bottom: 2rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-container .box-container .box,
.footer-container .box-container .box .sub-box,
.footer-container .box-container .box ul,
.footer-container .box-container .box .sub-box ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-container h4 {
    color: var(--white);
}

.footer-container a,
.footer-container p {
    color: var(--gray);
    text-decoration: none;
}

.footer-container a:hover {
    color: var(--first-color);
}

.footer-container ul {
    list-style: none;
}

.footer-container .box-container .detail {
    grid-column: span 3 / span 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-container .box-container .detail p {
    font-size: 1.2rem;
}

.footer-container .box-container .social {
    grid-column: span 2 / span 2;
}

.footer-container .box-container .detail .image {
    width: 200px;
    height: auto;
}

.footer-container .box-container .detail .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-container .box-container .social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-container .box-container .social .icon {
    display: flex;
    gap: 0.5rem;
}

.footer-container .box-container .social .icon img {
    width: 40px;
    height: 40px;
}


/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .provide__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .public__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .client__container {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* For medium devices */
@media screen and (max-width: 992px) {
    .container {
        max-width: 740px;
    }

    .client__container {
        grid-template-columns: repeat(5, 1fr);
    }

    .btn {
        height: 45px;
        line-height: 45px;
    }

    .btn--md {
        height: 42px;
        line-height: 39px;
    }

    .btn--sm {
        height: 38px;
        line-height: 35px;
    }

    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: var(--h4-font-size);
    }

    nav .navbar .nav-links .links li {
        padding: 0 10px;
    }

    nav .navbar .nav-links .links li a {
        font-size: var(--normal-font-size);
    }

    .top__bannar--container,
    .whatis__bannar--container,
    .about__container {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatis__bannar--image {
        order: -1;
    }

    .service__container,
    .public__container,
    .corporate__container,
    .consultation__container,
    .product__container,
    .training__single__container {
        padding-top: 0;
    }

    .service__box,
    .consultation__box,
    .product__box,
    .training__single__box {
        grid-template-columns: repeat(1, 1fr);
    }

    .service__box:nth-child(even) .service__text,
    .consultation__box:nth-child(even) .consultation__text,
    .product__box:nth-child(even) .product__text,
    .training__single__box:nth-child(even) .training__single__text {
        order: 1;
    }

    .public__container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width:800px) {
    nav .navbar .nav-links {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        max-width: 270px;
        width: 100%;
        background: var(--gray);
        padding: 20px;
        line-height: 40px;
        z-index: 100;
    }

    nav .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar .bx-menu,
    .nav-links .sidebar-logo .logo_name,
    .nav-links .sidebar-logo .bx-x {
        color: var(--black);
        font-size: var(--h3-font-size);
        font-weight: var(--weight-600);
    }

    .navbar .bx-menu,
    .nav-links .sidebar-logo .logo_name,
    .nav-links .sidebar-logo .bx-x {
        display: block;
    }

    nav .navbar .nav-links .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .nav-links .links li {
        display: block;
    }

    .navbar .nav-links .links .sub-menu {
        display: none;
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
    }

    .navbar .nav-links .links .sub-menu li {
        border-bottom: none;
    }

    .navbar .nav-links .links .more .more-sub-menu {
        position: relative;
        display: none;
        left: 0;
    }

    .navbar .nav-links .links li:hover .htmlCss-sub-menu,
    .navbar .nav-links .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links .links .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .nav-links .links li .arrow {
        line-height: 40px;
    }

    .navbar .nav-links .links li:hover .htmlcss-arrow,
    .navbar .nav-links .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .nav-links.show1 .links .sub-menu.htmlCss-sub-menu {
        display: block;
    }

    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show2 .links .sub-menu .more-arrow {
        transform: rotate(90deg);
    }

    .navbar .nav-links.show3 .links .sub-menu.js-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links li .htmlcss-arrow,
    .navbar .nav-links.show3 .links li .js-arrow {
        transform: rotate(180deg);
    }

    .slider__image {
        height: 500px !important;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .client__container {
        grid-template-columns: repeat(4, 1fr);
    }

    .map iframe {
        height: 450px;
    }

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

    .footer-container .box-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For small devices */
@media screen and (max-width: 576px) {

    .map iframe {
        height: 300px;
    }

    .client__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .public__container,
    .contact__container {
        grid-template-columns: repeat(1, 1fr);
    }

    .service__image,
    .consultation__image,
    .about__image {
        height: 17rem;
    }

    .form__group {
        grid-template-columns: 1fr;
    }

    .slider__image {
        height: 250px !important;
    }

    .footer-container .box-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .provide__container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 370px) {
    nav .navbar .nav-links {
        max-width: 100%
    }

    .navbar .search-box .input-box {
        width: 280px;
    }

    .navbar .search-box .input-box input {
        width: 260px;
    }
}