
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/

.btn-1 {
    border: 1px solid #3b3b3b;
    background: gold;
    color: #3b3b3b;
    transition: .5s;
}

.btn-1:hover {
    border: 1px solid gold;
    background: white;
    color: gold;
    transition: .5s;
}
.btn-2 {
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    transition: .5s;
}

.btn-2:hover {
    
    background:  #ffffff;
    color: #303030 !important;
    transition: .5s;
}


.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    
}

.btn.btn-primary:hover {
    background: #ffffff;
    border: 1px solid #000;
}

.btn.btn-secondary {
    color: var(--bs-dark);
   background: gold;
}

.btn.btn-putih {
    color: var(--bs-white);
    background: transparent;
    border: 2px solid #ffffff;
}

.btn.btn-putih:hover {
    background: #fff000;

}

.btn.btn-secondary:hover {
    background: #fff000;
    border: 1px solid #fff000;
    color: #000;
}
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff000;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 65px;
    margin-top: -5px;
}
.sticky-top.navbar-light .text-primary {
    max-height: 60px;
    
}
.text-primary

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .navbar-brand{margin-right: 0;
    }
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

   

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        
        background: linear-gradient(360deg, #0000005e, transparent);
        border-left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-white);
        border-bottom: 1px solid gold;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 3px;
        bottom: -1px;
        left: 50%;
        background: #f5f500;;
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent #f5f500; transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff000;
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: #fff;
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}

.text-capitalize{
   
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: left !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 280px 0 60px 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgb(0 0 0 / 28%) 0%, rgba(0, 0, 0, 0.16) 30.31%, rgb(0 0 0 / 70%) 101.05%);
}
.chat-wa{
    border-radius: 7px;
    background: #3ba15a;
    color: #fff;
}

.bg-gold{
    background: linear-gradient(305deg, #ffa00b, #ffeb003b);    
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 260px 0 15px 0;
    }
    .blog .blog-item-1 {
        height: auto;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 0px;
    transition: 0.5s;
    border: solid 2px #fff000;
    height: 350px;

}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-icon {
    width: 100%;
    height: 350px;
    border-radius: 0;
    display: flex;
    
    justify-content: center;
    border: 1px solid #121013;
}

.feature .feature-item .feature-icon {
    width: 100%;
    height: 150px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px; 
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: #000;

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: #000;
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: #000;
    color: var(--bs-white);
    border: 1px solid #000;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: 130px;
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: ;
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
    color: #303030;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-white);
    
}
.service-item:hover{
    transform: scale(1.1);
    transition: 0.5s;
}

.service-item:hover .service-content p {
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff8609;
    transition: 0.5s;
    margin-top: -10px;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(0 0 0 / 65%), rgb(0 0 0 / 54%)), url(../img/background-counter-1.PNG.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-1 .counter-map .counter-vh{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon .counter-1 .counter-map .counter-vh{
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #fff000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.counter-1 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(0 0 0 / 65%), rgb(0 0 0 / 54%)), url(../img/founder-breadcrumb-2.1-atas.jpeg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-map {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(0 0 0 / 78%), rgb(0 0 0 / 82%)), url(../img/map-indo-2.1.png.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-vh {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(0 0 0 / 78%), rgb(0 0 0 / 82%)), url(../img/home-visit.2.1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    
    border-radius: 10px;
    border: 1px solid #EFEFEF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product .product-item:hover{
    transition: 0.7s;
    transform: scale(1.1);
    border: 2px solid #fff000;
    
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    
    transition: 0.5s;
}

.blog .blog-item-1 {
    border-radius: 10px;
    background: #ffffff;
    height: 500px;

}

.blog .blog-item-1:hover {
    transition: 0.5s;
    transform: scale(1.1);
    background: gold
}



.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}


.blog .blog-layanan .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-layanan .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}
.blog-img{
    
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.blog .blog-item .blog-date {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 10px;
    background: linear-gradient(1deg, #0000007a, transparent);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-date-1 {
    
    position: absolute;
    bottom: 0;
    left: 50%;
    
    color: var(--bs-white);
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    background: linear-gradient(45deg, #2a2a2a9e, #484848d4);
}


.blog .blog-item .blog-content a {
    transition: 0.5s;
}
.cabang {
    display: flex;
}
.blog-cabang {
    position: relative;
    border: 1px solid #fff;
    padding: 0;
}
.blog-cabang:hover {
    transition: 0.5s;
    transform: scale(1.1);
    border: 5px solid #fff000;
    z-index: 2;
}

.blog-cabang.active {
    transition: 0.5s;
    transform: scale(1.1);
    border: 5px solid #fff000;
    z-index: 2;
}
.cabang-date {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(179deg, #00000014, #00000070);
}
.cabang-date-1 {
    position: absolute;
    bottom: 0;
    
}


.blog .blog-item:hover .blog-content a:hover {
    color: #070707 !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/


/*** testimonial Start ***/
.owl-nav{
display: none;    
}
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: #fff000;
    color: #000;
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid #000;
    background: #fff000;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid #000;
    background: #000 !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .col-xl-2{
    width: 50%;
}
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: #121013;
    
}

.footer .footer-item a {
    line-height: 35px;
    color: gold;
    transition: 0.5s;
}
.img-logo{
    width: 35px;
    height: 35px;
    margin-top: -5px;
    margin-right: 10px;
}
.img-logo img{
    width: 80px;
    height: 80px;
}

.footer .footer-item p {
    color: var(--bs-white);
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-white);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
.footer-1{font-family:serif;font-size: x-large;font-weight: 700;color: gold;}

/*** Footer End ***/

.link-gb{color: #fff7ad;}

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: gold;
}
/*** copyright end ***/

@media (max-width: 459px) {
    .about .about-img .about-exp{font-size: 1.5rem;padding: 10px 20px;}
    


}

@media (max-width: 401px) {
    .navbar{padding: 1rem !important;}   
    .navbar-brand{margin-right: 0;}
    .text-primary{font-size: 1.15em !important;}
    .link-1{float: left;}
    .col-xl-2{width: 50%;}
    .fs-6{font-size: 0.85rem !important;}
    .p-5{padding: 1.5rem !important;}
    .footer-1{font-size: x-large;}
    .about .about-img .about-exp{font-size: 1rem;padding: 10px 20px;}

}



@media (max-width: 355px) {
    .navbar{padding: 0.75rem !important;}
    .text-primary{font-size: 1em !important;}
    .navbar.navbar-expand-lg .navbar-toggler{padding: 5px 10px;}
    .p-5{padding: 1.5rem !important;}
    .footer-1{font-size: x-large;}
    .pading-top{padding-top: 20px;}
    .about .about-img .about-exp{font-size: 1rem;padding: 10px 20px;}
    


}