html {
    overflow-y: scroll ;
    overflow-x: hidden
}

.common-width{
    width: 1250px;
    margin: 0 auto !important;
}

/* .fixed-nav{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
} */

.g-recaptcha div{
    margin: 0 auto !important;
}

p{
    letter-spacing: 2px;
}

.head-font{
    font-family: 'Poppins', sans-serif;
}

.para-font{
    font-family: 'Open Sans', sans-serif;
}

/*HEADER START*/

.header-section{
    background-color: #2b569a;
}

.header-left{
    padding: 0px !important;
}

.linkedin-img , .email-img , .mobile-img {
    width: 20px;
    height: 20px;
}

.header-right{
    color: #fff;
}

.float-right{
    float: right;
}

.email-info{
    margin-right: 40px;
}

.card-link{
    color: #fff !important;
    text-decoration: none !important;
    white-space: nowrap;
    font-size: 14px;
}

.mobile-info p {
    display: inline;
    white-space: nowrap;
    letter-spacing: initial;
}

.header-desktop{
    display: block;
}

.header-mobile{
    display: none;
}

.ml-20{
    margin-left: 20px;
}
/*HEADER END*/

/*NAVBAR START*/
.navbar-section{
    background-color: #fff;
    border-bottom: 1px solid lightgrey;
}

.navbar-expand-lg{
    margin: 0px !important;
    padding: 0px !important;
}

.p-10{
    padding: 10px !important;
}

.logo{
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.navbar-collapse{
    padding: 0px !important;
}

.enquire-btn{
    border: none !important;
    border-radius: 0px !important;
    background-color: #2b569a !important;
    font-size: 14px !important;
    padding: 0px 25px !important;
    margin-left: 20px;
}

.navbar-nav>li{
    padding: 0px 20px;
}

.nav-link{
    text-decoration: none !important;
}

.submit-btn{
    text-align: center;
}

#submitBtn:focus , #submitBtn:active{
    background-color: green;
}

#loader {
  display: none;
  position: relative;
  bottom: 30px;
  left: 330px;
  margin-left:5px;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid green;
  border-bottom: 3px solid green;
  width: 25px;
  height: 25px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 160px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
}
  
  /* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/*--------------- Form Content ---------------*/

.enquiry-form-header{
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.form-comment-area{
    border: 1px solid #000 !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}

.form-comment-area:focus{
    border: 1px solid #5264AE !important;

}

.form-comment-area:focus ~ label{
    color: #5264AE;
    font-weight: 800;
    transform: scale(1) translateY(-1rem) translateX(0rem) !important;
}



/****  floating-Lable style start ****/
.floating-label { 
    position:relative; 
    margin-bottom:20px; 
  }
  .floating-input , .floating-select {
    font-size:14px;
    padding:4px 4px;
    display:block;
    width:100%;
    height:30px;
    background-color: transparent;
    border:none;
    border-bottom:1px solid #757575;
  }
  
  .floating-input:focus , .floating-select:focus {
       outline:none;
       border-bottom:2px solid #5264AE; 
  }
  
  label {
    color:#999; 
    font-size:14px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:5px;
    top:5px;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  
  .floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
    top:-18px;
    font-size:14px;
    color:#5264AE;
  }
  
  .floating-select:focus ~ label , .floating-select:not([value=""]):valid ~ label {
    top:-18px;
    font-size:14px;
    color:#5264AE;
  }
  
  /* active state */
  .floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
    width:50%;
  }
  
  *, *:before, *:after {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  }
  
  .floating-textarea {
     min-height: 30px;
     max-height: 260px; 
     overflow:hidden;
    overflow-x: hidden; 
  }
  
  /* highlighter */
  .highlight {
    position:absolute;
    height:50%; 
    width:100%; 
    top:15%; 
    left:0;
    pointer-events:none;
    opacity:0.5;
  }
  
  /* active state */
  .floating-input:focus ~ .highlight , .floating-select:focus ~ .highlight {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
  }
  
  /* animation */
  @-webkit-keyframes inputHighlighter {
      from { background:#5264AE; }
    to 	{ width:0; background:transparent; }
  }
  @-moz-keyframes inputHighlighter {
      from { background:#5264AE; }
    to 	{ width:0; background:transparent; }
  }
  @keyframes inputHighlighter {
      from { background:#5264AE; }
    to 	{ width:0; background:transparent; }
  }
  
  /****  floating-Lable style end ****/



/*NAVBAR END*/

/*CAROUSEL START*/

/* .carousel-section{
    margin-top: 140px;
} */

.carousel-control{
    width: 8% !important;
}

.carousel-caption{
    left: 0% !important;
    right: 0% !important;
    text-align: left !important;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-content{
    position: relative;
    top: 70%;
}

.view-products-btn{
    border: none !important;
    border-radius: 0px !important;
    background-color: #00afef !important;
    font-size: 14px !important;
    padding: 15px 25px !important;
}

.carousel-p1{
    font-size: 16px;
}

.carousel-p2{
    font-size: 40px;
    line-height: 1.1;
    font-weight: 900;
}

.carousel-indicators li{
    background-color: #fff !important;
    margin: 5px !important;
}

.carousel-indicators .active{
    background-color: #00afef !important;
    border: 1px solid #00afef !important;
}
/*CAROUSEL END*/

/*ABOUT START*/

.about-section{
    position: relative;
}

.about-img{
    position: absolute;
    bottom: 20%;
}

.pt-80{
    padding-top: 80px;
}

.pb-80{
    padding-bottom: 80px;
}

.about-left-p1{
    font-size: 18px;
    color: #00afef;
}

.about-left-p2{
    font-size: 32px;
    font-weight: 900;
}

.about-right-p{
    margin-bottom: 20px;
    line-height: 2;
    letter-spacing: initial;
}

.name-highlight{
    color: #2b569a;
    font-size: 15px;
    font-weight: bold;
}

/*ABOUT END*/

/*DIRECTOR START*/

.director-section{
    background-color: #2b569a;
    height: 900px;
    position: relative;
    border-bottom: 1px solid lightgray;
}

.director-1{
    position: absolute;
    right: 0;
}

.director-2{
    position: absolute;
    bottom: 0;
}

.director-profile{
    width: 600px;
    height: 600px;
    background-color: #fff;
    padding: 30px 50px;
}

.profile{
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: block;
}

.director-center-p1{
    font-size: 18px;
    color: #00afef;
    text-align: center;
}

.director-center-p2{
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.director-p{
    margin-top: 30px;
    text-align: justify;
}

.director-p2{
    font-size: 22px;
    font-weight: bold;
    color: #2b569a;
    text-align: center;
}

.mt-20{
    margin-top: 20px;
}

.mt-40{
    margin-top: 40px;
}

/*DIRECTOR END*/

/*EXPORT START*/
.export-section{
    background-color: #eaf2ff;
}

.export-p1{
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

.export-p2{
    text-align: center;
}

.export-category{
    text-align: center;
    margin-bottom: 20px;
}

.export-category p{
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.slider-img{
    width: 280px;
    height: 320px;
    border: 5px solid #fff;
    box-shadow: rgb(0 0 0 / 20%) 5px 5px 12px;
}

.items {
    width: 100%;
    margin: 0 auto;
    margin-top: 60px
}

.slick-slide {
    margin: 10px
}

.slick-slide img {
    width: 100%;
}

.slick-prev{
    background-image: url("./assets/images/arrow-l.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    border: 1px solid #2b569a;
    border-radius: 50%;
    padding: 30px;
    left: -75px;
    top: 45%;
}

.slick-next{
    background-image: url("./assets/images/arrow-r.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    border: 1px solid #2b569a;
    border-radius: 50%;
    padding: 30px;
    right: -75px;
    top: 45%;
}

.slick-prev::before , .slick-next::before{
    content: none;
}

.slick-prev:hover , .slick-prev:focus {
    background: url("./assets/images/arrow-l.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.slick-next:hover , .slick-next:focus{
    background: url("./assets/images/arrow-r.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.mt-10{
    margin-top: 10px;
}

.pt-30{
    padding-top: 30px;
}

.ptb-30{
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

/*EXPORT END*/

/*REVIEW START*/

.review-section{
    display: block;
    height: 550px;
    background-color: #f8f8f8;
    position: relative;
}

.review-section-mobile {
    display: none;
}

.client-1{
    position: absolute;
    top: 5%;
    right: 0;
}

.client-2{
    position: absolute;
    bottom: 5%;
}

.review-content1{
    background-color: #fff;
    padding: 20px 20px 40px 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.review-content2{
    background-color: #fff;
    padding: 20px 20px 40px 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.review-content3{
    background-color: #fff;
    padding: 20px 30px 40px 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#carouselExampleIndicators{
    margin-top: 20px;
}

.stars{
    width: 110px;
    height: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.quotes{
    float: right;
    width: 60px;
    height: 50px;
}

.review-img{
    position: relative;
    height: 60px;
    margin-bottom: 20px;
}

.review-text{
    display: inline-block;
}

.review-p2{
    font-size: 18px;
    font-weight: bold;
    color: #2b569a;
}

#review-navigation{
    bottom: 0px;
}

.review-btn{
    border: 2px solid #adadad !important;
    border-radius: 50% !important;
    height: 10px !important;
    width: 10px !important;
    margin: 0px 5px !important;
}

#review-navigation .active{
    height: 12px !important;
    width: 12px !important;
}

.mr-70{
    margin-right: 70px;
}

.h-300{
    height: 300px;
}

.mb-30{
    margin-bottom: 30px;
}

/*REVIEW END*/

/*FOOTER START*/

.footer-section{
    height: 400px;
    background-color: #2b569a;
    position: relative;
}

.footer-section>.row{
    position: relative;
    z-index: 3;
}

.map{
    width: 780px;
    height: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-section p{
    color: #fff;
}

.footer-a a{
    font-size: 14px;
}

.footer-p1{
    font-size: 20px;
    font-weight: bold;
}

.contact-info{
    display: flex;
}

.contact-img{
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.mt-8{
    margin-top: 8px;
}

.mb-10{
    margin-bottom: 10px;
}

.mb-20{
    margin-bottom: 20px;
}

.ml-3{
    margin-left: 3px;
}

/*FOOTER END*/

/*COPYRIGHT END*/

.copyright-section{
    background-color: #2b569a;
    border-top: 1px solid lightgray;
}

.copyright-content{
    display: flex;
    justify-content: center;
}

.copyright-p{
    color: #fff;
    margin: 15px 10px;
}

.copyright-separator{
    color: #fff;
    margin-top: 12px;
}

.designedby{
    color: #fff;
    margin: 15px 10px;
}

.beakmedia-lnk , .beakmedia-lnk:hover , .beakmedia-lnk:focus{
    color: #fff;
    text-decoration: none;
}

/*COPYRIGHT END*/

/*---------- PRODUCT PAGE CSS ----------*/

.prodDesc-section{
    position: relative;
}

.showreel-section {
    background-color: #eaf2ff;
}

.dropdownAdjust-desktop{
    display: block;
}

.dropdownAdjust-mobile{
    display: none;
}

.categories-dropdown{
    display: inline-block;
}

.dropdown-padding{
    font-size: 16px;
    color: #000;
    padding: 12px 0px !important;
}

.dropdown-padding:focus{
    color: #000 !important;
}

.dropdown-padding:hover{
    color: #00afef !important;
}

.dropdown-toggle::after {
    color: #00afef;
}

.dropdown-item:hover {
    color: #fff !important;
    background-color: #2b569a !important;
}

.productDesc-btn{
    padding: 0px;
    border: 0px;
    background-color: transparent;
}

.modal-product-content{
    width: 100% !important;
}

.sub-category p{
    font-size: 18px;
    font-weight: bold;
    border-bottom: 5px solid #00afef;
    width: fit-content;
}

.modalDetails-container{
    margin: 5px 25px;
}

.modal-prodDesc{
    font-size: 14px !important;
    font-weight: normal !important;
    margin-top: 0px !important;
    line-height: 1.2;
    text-align: justify;
}

.prodDetails{
    text-align: left !important;
    margin-bottom: 0px;
}

.prodClose-btn{
    color: #fff;
    background-color: #00afef;
    padding: 10px 50px;
    margin-top: 10px;
    border: 0px !important;
}

/* .whatsapp-icon{
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 999;
} */


.pb-40{
    padding-bottom: 40px;
}

.pt-initial{
    padding-top: initial !important;
}

/*---------- PRODUCT PAGE CSS ----------*/




/*---------- WHATSAPP CHAT CSS ----------*/

#whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    right: 30px;
    overflow: hidden;
    z-index: 1111;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
    border: 1px solid #fff;
}

.whatsapp-icon{
    width: 50px;
}

.blantershow-chat {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

.blantershow-chat i {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    background: #2b569a;
    color: #fff;
    padding: 15px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
}

.info-avatar:before {
    content: "\f232";
    z-index: 1;
    font-family: "Font Awesome 5 Brands";
    background: #23ab23;
    color: #fff;
    padding: 0px 4px;
    border-radius: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
}

.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 2.5s;
}

.informasi:hover {
    background: #f1f1f1;
}

.info-chat span {
    display: block;
}

#get-label,
.chat-label {
    font-size: 12px;
    color: #888;
}

#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

#get-label,
#get-nama {
    color: #fff;
}

.my-number {
    display: none;
}

.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}

@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}

.chat-hide {
    display: none;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
}

.chat-show {
    display: block;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
}

/*---------- WHATSAPP CHAT CSS ----------*/



/*MOBILE VIEW*/
@media only screen and (max-width: 600px) {

    .common-width{
        width: auto;
    }

    .header-desktop{
        display: none;
    }

    .header-mobile{
        display: block;
    }

    .cusCol-5{
        flex: 0 0 auto;
        width: 45%;
        padding: 0px;
    }

    .cusCol-7{
        flex: 0 0 auto;
        width: 55%;
        padding: 0px;
    }

    .email-img, .mobile-img {
        width: 12px;
        height: 12px;
    }

    .card-link {
        font-size: 12px;
    }

    .mobile-info p {
        font-size: 12px;
    }

    .email-info {
        margin-right: 5px;
    }

    .logo-a{
        width: 85%;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    #navbarTogglerDemo02{
        margin: 0;
    }

    .navbar-nav{
        width: 100%;
    }

    .nav-link {
        text-align: center;
        border-bottom: 1px solid lightgray;
    }

    .nav-link:focus , .nav-link:hover{
        background-color: #2b569a;
        color: #fff !important;
    }

    .navbar-nav>li {
        padding: 0px 10px;
    }

    .enquire-btn {
        padding: 5px 12px !important;
        margin: 10px auto;
    }

    .enquiry-modal-content{
        width: 90%;
    }
    
    #loader {
        left: 200px !important;
    }

    /* .carousel-section{
        margin-top: 100px;
    } */

    .banner-img{
        height: 185px !important;
    }

    .carousel-content {
        margin-left: 20px;
        padding: 8px;
        /* width: 210px; */
        /* background: rgba(255,255,255,0.7); */
    }

    .carousel-p1 {
        /* font-size: 10px;
        margin-left: 0px;
        color: #00afef; */
        display: none;
    }

    .carousel-p2 {
        font-size: 13px;
        margin-bottom: 6px;
        /* color: #2b569a; */
    }

    .view-products-btn {
        font-size: 10px !important;
        padding: 8px !important;
    }

    .carousel-indicators {
        bottom: -10px !important;
    }

    .pt-80{
        padding-top: 30px;
    }

    .pb-80{
        padding-bottom: 30px;
    }

    .pb-40{
        padding-bottom: 30px;
    }

    .pt-30 {
        padding-top: 10px;
    }

    .about-img {
        display: none;
    }

    .about-left-p1{
        font-size: 14px;
        text-align: center;
    }

    .about-left-p2 {
        font-size: 20px;
        text-align: center;
    }

    .about-right-p {
        margin-bottom: 10px;
        line-height: 1.5;
        text-align: justify;
    }

    .director-section {
        height: 1500px;
    }

    .director-1 , .director-2 {
        display: none;
    }

    .director-center-p1 {
        font-size: 14px;
    }

    .director-center-p2 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .director-profile{
        width: 330px;
        height: auto;
        padding: 20px 30px;
        margin-top: 20px;
    }

    .profile {
        width: 200px;
        height: 200px;
    }

    .director-p {
        margin-top: 20px;
        text-align: justify;
    }

    .director-p2 {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .mt-40{
        margin-top: 20px;
    }

    .slider-img {
        width: 150px;
        height: auto;
        border: 2px solid #fff;
    }

    .export-category p {
        font-size: 14px;
    }

    .review-section {
        display: none;
    }

    .review-section-mobile {
        display: block;
        height: 420px;
        background-color: #f8f8f8;
        position: relative;
    }

    #carouselExampleIndicators {
        margin-top: 0px;
    }

    .review-content {
        background-color: #fff;
        padding: 25px;
        margin: 20px;
        box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    }

    .review-p1{
        text-align: justify;
    }

    #review-navigation {
        bottom: -20px !important;
    }

    .footer-section {
        height: auto;
    }
    
    .map{
        width: 340px;
        height: 150px;
    }

    .footer-mb{
        margin-bottom: 10px;
    }

    .copyright-content{
        display: block;
    }

    .copyright-p {
        font-size: 12px;
        text-align: center;
        margin: 10px 0px 3px;
    }
    
    .copyright-separator{
        display: none;
    }
    
    .designedby{
        font-size: 12px;
        text-align: center;
        margin: 3px 0px 10px;
    }


    .dropdownAdjust-desktop{
        display: none;
    }
    .dropdownAdjust-mobile{
        display: block;
    }
    .dropdown-toggle::after {
        margin-left: 0px !important;
    }
    .sub-category p {
        margin: 12px auto;
    }
    .modalDetails-container{
        margin: 0px;
    }

}
/*MOBILE VIEW*/