.whatsapp_btn{
    position: fixed;
    right: 2rem;
    z-index: 99;
    bottom: 2rem;
animation: hill 2s infinite;
}
@keyframes hill{
    0%{
        transform: scale(1.1);
    }50%{
        transform: scale(1);
    }100%{
        transform: scale(1.1);
    }
}

.heightlight p a{
    color: var(--main-color);
    font-weight: 600;
}
.whatsapp_btn img{
    width: 75px;
}

.translator-container {
    position: absolute;
    top: 50%;
    right: -4rem;
    transform: translateY(-50%);
}
.translate-icon i{
    background: var(--blue-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;
    border: 2px solid #ddd;
}
.translate-icon {
    /*padding: 2px;*/
    transition: 0.3s ease;
  }


.topNav {
    background-color: var(--main-color);
    padding: 0.625rem 0;
}

.lang-selector select:focus-visible {
    outline: none;
    border: none;
    cursor: pointer;
}

.lang-selector i {
    font-size: 25px;
    color: var(--white-color);
}

.lang-selector {
    display: flex;
    gap: 3px;
    align-items: center;
}

.topNav__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topNav__content-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.topNav__content-left a {
    color: var(--white-color);
    font-size: 14px;
    display: flex;
    gap: 3px;
    align-items: center;
}

.topNav__content-left a i {
    font-size: 22px;
    color: var(--yellow-color);
}

.topNav__content-left a:hover {
    color: var(--yellow-color);
}

.lang-selector select {
    padding: 5px;
}

.myNav_content {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.logo img {
    width: 150px;
    padding: 1rem 0;
}

.header_btn {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu_icon i {
    font-size: 32px;
}

.myNav {
    background-color: #F0EFEB;
    border-bottom: 1px solid #ccc;
}

.myNav.sticky {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #F0EFEB;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 0 4px rgba(0, 0, 0, .5);
}

.menu ul {
    display: flex;
    gap: 2rem;
    height: 100%;
}

.menu ul li {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    cursor: pointer;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--black-color);
}

.menu ul li a i {
    color: var(--main-color);
    font-weight: 600;
    font-size: 25px;
}

.dropdown_menu {
    position: relative;
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: -100%;
    background-color: var(--white-color);
    width: 350px;
    z-index: 99;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: .5s ease all;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.dropdown_menu:hover .dropdown-menu-list {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: .5s ease all;
}

.dropdown-menu-list ul {
    gap: 0 !important;
    justify-content: start !important;
    align-items: start !important;
    flex-direction: column;
}

.dropdown-menu-list ul li {
    width: 100%;
}

.dropdown-menu-list ul li a {
    border-bottom: 1px solid #ccc;
    font-size: 15px !important;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 1rem;
}

.dropdown-menu-list a:hover {
    background-color: var(--main-color);
    color: var(--white-color) !important;
    transition: .3s ease all;
    padding-left: 2rem;
}

.menu_icon {
    display: none;
}


/* banner_wrapper */
.banner_wrapper {
    background-color: var(--blue-color);
    padding: 150px 0;
}

.banner_content {
    text-align: center;
    color: var(--white-color);
}

.banner_content h1 {
    font-size: 45px;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_content p {
    color: whitesmoke;
    font-size: 20px;
    margin-top: 1rem !important;
    max-width: 800px;
    margin: 0 auto;
    text-transform: capitalize;
}

/* about */
.about_content h2,
.main_heading h2 {
    color: var(--main-color);
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    max-width: max-content;
}

.main_heading h2::before {
    left: 0;
    bottom: -5px;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, rgba(255, 122, 0, 0) 0.01%, #80390D 53.22%, rgba(255, 122, 0, 0) 105.33%);
}

.about_content p,
.main_heading p {
    font-size: 18px;
    margin-top: 1rem;
    line-height: 30px;
    text-align: justify !important;
}

.global_wrapper {
    padding: 50px 0;
    border-bottom: 1px solid #ccc;
}

.global_content {
    margin-top: 2rem;
}

/* counter_box */
.counter_box {
    border: 1px solid #ccc;
    padding: 2rem;
    background-color: var(--blue-color);
    height: 100%;
    color: var(--white-color);
    text-align: center;
}

.counter_box h3 {
    font-size: 36px;
    font-weight: 600;
}

.counter_box p {
    color: var(--white-color);
    font-size: 18px;
    margin-top: 10px;
}

/* service */
.yellow_bg {
    background-color: var(--yellow-color);
}

.service_wrapper__content h2 {
    font-size: 46px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    max-width: max-content;
    position: relative;
}

.service_wrapper__content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, rgba(255, 122, 0, 0) 0.01%, #fff 53.22%, rgba(255, 122, 0, 0) 105.33%);
}

.service_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service_grid__box:hover{
    transform: scale(1.1);
    transition: .5s ease;
}
.service_grid__box {
    text-align: center;
    border: 1px solid #ccc;
    position: relative;
    z-index: 2;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 10px;
    /* background-color: var(--blue-color); */
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service_grid__box:hover::before {
    width: 100%;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 10px;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.service_grid__box:hover{
    /*background-color: var(--yellow-color);*/
}
.service_grid__box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--blue-color);
    width: 0;
    height: 100%;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: -2;
    border-radius: 10px 10px 0 0;


}

.service_grid__box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service_grid__box h6 {
    text-align: center;
    color: var(--white-color);
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
}

.service_grid__box__content {
    padding: 1rem;
    background-color: var(--blue-color);
    border-radius: 0 0 10px 10px;
}

.service_grid__box__content p {
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 15px;
    color: whitesmoke;
}

/* industries_grid */
.industries_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.industries_grid__box {
    background-color: var(--blue-color);
    text-align: center;
    color: var(--white-color);
    transition: .5s ease;
    border-radius: 10px;
}
.industries_grid__box:hover{
    transform: scale(1.1);
    transition: .5s ease;
}

.industries_img img {
    border-radius: 10px 10px 0 0;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.industries_grid__box h6 {
    font-weight: 600;
    font-size: 22px;
    margin: 10px 0 !important;
    text-transform: capitalize;
}

.industries_grid__box p {
    font-size: 15px;
    color: whitesmoke;

    padding: 0 10px 10px 10px;
}

.myParra p {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    color: var(--white-color);
}

.responsive_table {
    width: 100%;
    overflow-x: auto;
}

.responsive_table table {
    width: 100%;
    min-width: 500px; /* Adjust as needed */
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.responsive_table th,
.responsive_table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #ccc;
    white-space: nowrap; /* Prevent line breaks in small screens */
}

/* team_box */
.team_box {
    border: 1px solid #ccc;
    padding: 2rem;
    text-align: center;
    margin-bottom: 24px;
    background-color: var(--white-color);
}

.team_box__img img {
    border-radius: 100%;
    height: 100px;
    width: 100px;
    object-fit: cover;
    /* border: 1px solid var(--blue-color); */
}

.team_box__content h3 {
    margin-top: 1rem;
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
}

.team_box__content p {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #666;
}

/* footer_wrapper */
.footer_wrapper {
    background-color: whitesmoke;
    padding: 30px 0;
    border-top: 1px solid #ccc;
}

.footer_wrapper__content h3 {
    font-weight: 600;
    color: var(--main-color);
    font-size: 28px;
    text-transform: capitalize;
}

.footer_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_flex h6 {
    text-transform: capitalize;
    font-size: 20px;
}

.footer_links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer_flex a {
    color: var(--main-color);
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
}


/* testimonial_box */

.testimonial_box {
    background-color: var(--blue-color);
    padding: 2rem;
    margin: 0 7px;
    text-align: center;
    border: 1px solid #ccc;
    position: relative;
    color: var(--white-color);
}

.testimonial_box__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial_box__img img {
    border-radius: 100%;
    height: 80px;
    width: 80px;
    object-fit: cover;
    border: 2px solid #ccc;
}

.testimonial_box__content h3 {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 !important;
}

.testimonial_box__content p {
    font-size: 15px;
    line-height: 26px;
    color: whitesmoke;
}


.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    aspect-ratio: 1 !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    transition: all 0.5s ease-in;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 32px !important;
    background: rgba(182, 182, 182, 0.5) !important;
}

.slick-dots li.slick-active button {
    background: var(--main-color) !important;
    width: 1.5rem !important;
    transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
    width: 1.5rem !important;
}

.slick-dots li button::before {
    display: none !important;
}

.slick-dots {
    bottom: -3rem !important;
}

.back_bg {
    background-color: whitesmoke;
}


/* openings */

.opening_box {
    background-color: whitesmoke;
    border: 1px solid #ccc;
    height: 93%;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 24px;

        transition: .5s ease;
}
.opening_box:hover{
    transform: scale(1.1);
    transition: .5s ease;
}

.opening_box__flex {
    display: flex;
    gap: 1rem;
}

.opening_box__flex p {
    background-color: var(--yellow-color);
    color: var(--white-color);
    padding: 3px 12px;
    border-radius: 100px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.opening_box span {
    background-color: var(--blue-color);
    padding: 3px 1rem;
    border-radius: 100px;
    color: var(--white-color);
    font-weight: 700;
    font-size: 14px;
}

.opening_box h3 {
    font-weight: 600;
    margin-top: 12px;
    font-size: 24px;
    text-transform: capitalize;
}

.opening_box p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
}

.opening_box a {
    display: flex;
    margin-top: 12px;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--main-color);
}

.opening_box a i {
    font-size: 22px;
}

.opening_box a:hover {
    color: var(--blue-color);
}

.career_details__content h3 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 1rem !important;
}

.career_details__content ul li {
    margin-bottom: 1rem;
}

/* blogs */
.blog_box__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog_box {
    margin-bottom: 24px;
    border: 1px solid #ccc;
    background-color: whitesmoke;
}

.blog_box__content {
    padding: 1rem;
}

.blog_box__content span {
    font-weight: 600;
    color: #666;
}

.blog_box__content h3 {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--blue-color);
    margin: 10px 0 !important;
      display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog_box__content p {
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    color: #434343;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 10px !important;
}

.blog_box__content a {
    color: var(--main-color);
    font-weight: 700;
    text-transform: capitalize;
}

.blog_box__content a:hover {
    color: var(--yellow-color);
}

.pagination_btn {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.pagination_btn a {
    padding: 3px 12px;
    background-color: whitesmoke;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-weight: 500;
}

.pagination_btn .active-page {
    background-color: var(--main-color);
    color: var(--white-color);
}

.pagination_btn a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.details_img img {
    width: 100%;
}

.details_content h3 {
    text-transform: capitalize;
    margin-top: 1rem;
    font-size: 28px;
    font-weight: 600;
        text-align: justify;
}

.details_content p {
    font-size: 18px;
    margin-top: 1rem;
    line-height: 30px;
    text-align: justify;
}

.service_img img{
    width: 100%;
    height: 660px;
    object-position: top;
    object-fit: cover;
}
/* mobileNav */
.mobileNav {
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    transition: .9s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.mobileNav.show {
    right: 0;
    transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.mobileNav.show .mobileNav_content {
    transition: .9s cubic-bezier(0.075, 0.82, 0.165, 1);
    right: 0;
}

.mobileNav_content {
    position: fixed;
    right: -100%;
    top: 0;
    width: 40%;
    transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    height: 100%;
    overflow-y: scroll;
    background-color: var(--white-color);
}

.mob-logo img {
    width: 120px;
}

.mobile_header {
    background-color: #F0EFEB;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cancel_menu i {
    background-color: var(--yellow-color);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    cursor: pointer;
    transition: .3s ease;
    border: 2px dashed #ccc;
}

.cancel_menu:hover i {
    transition: .3s ease;
    transform: rotate(180deg);
}

.mobile_menu ul li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--black-color);
    transform: translateY(26px);
    transition: .3s ease all;
}

.mobileNav.show .mobile_menu a {
    transition: 1s ease all;
    transform: translateY(0);
}

.dropdown--menu-list {
    height: 0;
    overflow: hidden;
}

.dropdown--menu.show .dropdown--menu-list {
    height: auto;
    background-color: whitesmoke;
}

.dropdown--menu-list a {
    font-size: 14px;
    padding: 10px 10px 10px 1.5rem !important;
}


.hrighlight_grid {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 24px;
}

.privacy-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-container h2 {
    color: #1c3d6e;
    margin-bottom: 16px !important;
    font-size: 22px;
}

.privacy-container-content h1 {
    font-size: 25px;
    margin-bottom: 1rem !important;
}

.privacy-container ul {
    padding-left: 20px !important;
    line-height: 1.8;
}

.privacy-container li,
.privacy-container-content p {
    margin-bottom: 10px !important;
    list-style: disc !important;
}

@media (max-width: 600px) {
    .privacy-container {
        padding: 20px;
        margin: 20px;
    }
}

@media(max-width:1440px) {
    .opening_box h3 {
        font-size: 21px;
    }
.service_img img{
    height: auto;
}
    .logo img {
        width: 140px;
    }

    .menu ul {
        gap: 2rem;
    }
}

@media(max-width:1200px) {
    .menu ul li a {
        font-size: 16px;
    }

    .banner_wrapper {
        padding: 80px 0;
    }

    .service_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu ul {
        gap: 1rem;
    }
}

@media(max-width:992px) {
    .menu ul {
        display: none;
    }

    .counter_box {
        height: 94%;
        margin-bottom: 2rem;
    }

    .banner_content h1 {
        font-size: 30px;
    }

    .center_box,
    .blog_center {
        margin: 0 50%;
        width: 100%;
    }

    .menu_icon {
        display: block;
    }

    .industries_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .counter_box {
        height: auto;
        margin-bottom: 12px;
        padding: 1.5rem 1rem;
    }
    .translate-icon i{
        height: 32px;
        width: 32px;
        font-size: 22px;
    }
    .translator-container {
    
        right: -3rem;
    }
  
    .service_img img{
    height: auto;
    }
      .responsive_table {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
.whatsapp_btn{
   bottom: 12px;
   right: 12px;
 
}
.whatsapp_btn img{
    width: 45px;
 
}
    .service_grid__box__content h6 {
        font-size: 15px !important;
    }

    .hrighlight_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .counter_box h3 {
        font-size: 24px;
    }

    .counter_box p {
        font-size: 16px;
    }

    .blog_center {
        margin: 0 auto;
    }

    .myParra p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 10px;
    }

    .mobileNav_content {
        width: 90%;
    }

    .blog_box {
        margin-bottom: 1rem;
    }

    .blog_box__content p {
        font-size: 14px;
        line-height: 24px;
    }

    .blog_box__content {
        padding: 10px;
    }

    .blog_box__content span {
        font-size: 15px;
    }

    .opening_box h3,
    .blog_box__content h3 {
        font-size: 18px;
    }

    .opening_box {
        padding: 1.5rem 1rem;
    }

    .service_grid,
    .industries_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .banner_wrapper {
        padding: 60px 0;
    }

    .banner_content h1 {
        font-size: 24px;
        line-height: 1.6;
    }

    .banner_content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .banner_content p {
        font-size: 16px;
        line-height: 27px;
    }

    .global_wrapper {
        padding: 25px 0;
    }

    .about_content p,
    .main_heading p {
        font-size: 14px;
        line-height: 25px;
        margin-top: 10px;
    }

    .about_content h2,
    .main_heading h2,
    .service_wrapper__content h2 {
        font-size: 18px;
    }

    .industries_grid__box p {
        font-size: 14px;
    }

    .service_grid__box h6,
    .industries_grid__box h6,
    .footer_flex h6,
    .footer_flex a {
        font-size: 16px;
    }



    .team_box {
        padding: 1.2rem 1rem;
    }

    .team_box__img img {
        width: 70px;
        height: 70px;
    }

    .footer_wrapper__content h3,
    .team_box__content h3 {
        font-size: 18px;
    }

    .team_box__content p {
        font-size: 14px;
        margin-top: 4px;
    }

    .global_content {
        margin-top: 1.5rem;
    }

    .footer_flex {
        margin-top: 10px;
    }

    .topNav {
        padding: 5px 0;
    }

    .topNav__content-left a,
    .lang-selector select {
        font-size: 12px;
    }

    .topNav__content-left {
        gap: 8px;
    }

    .lang-selector i {
        font-size: 20px;
    }

    .career_details__content h3 {
        font-size: 18px;
    }

    .career_details__content ul li {
        font-size: 14px;
        margin-bottom: 7px;
    }

    .breadcrumb_wrapper__content p {
        font-size: 14px;
    }
}

@media(max-width:576px) {
     .translator-container {
        right: -5px;
    }
    .header_btn{
        padding-right: 2rem;
    }
    .cancel_menu i {
        height: 34px;
        width: 34px;
        font-size: 22px;
    }

    .topNav__content-left a i {
        font-size: 15px;
    }

    .banner_content p {
        font-size: 16px;
        margin-top: 5px;
    }

    .service_grid__box h6,
    .industries_grid__box h6 {
        font-size: 18px;
        line-height: 25px;
    }

    .footer_flex h6,
    .footer_flex a {
        font-size: 14px;
        line-height: 24px;
    }

    .center_box {
        margin: 0 auto;
    }

    .team_box {
        margin-bottom: 1rem;
    }

    .logo img {
        width: 120px;
        padding: 10px 0;
    }

    .testimonial_box {
        margin: 0 2px;
        padding: 1.5rem 1rem;
    }

    .testimonial_box__content h3 {
        font-size: 18px;
    }

    .slick-dots {
        bottom: -2rem !important;
    }

    .service_grid__box p {
        font-size: 14px;
    }


}

@media(max-width:420px) {
    .topNav__content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 3px;
    }
    .logo img {
        width: 100px;
        padding: 10px 0;
    }
    .global_btn {
        padding: 5px;
        font-size: 10px;
    }
}


