/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 32px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .sticky-top {
        margin-top: -34px;
    }

    .navbar {
        height: 68px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 20px;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header-carousel,
    .page-header {
        margin-top: -34px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
   background: rgb(0 0 0 / 30%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--bs-primary);
    border: 15px solid var(--bs-primary);
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/testimonial.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}


/*** Features ***/
.feature {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/feature.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.experience .nav-pills .nav-link {
    color: var(--dark);
}

.experience .nav-pills .nav-link.active {
    color: #FFFFFF;
}

.experience .tab-content hr {
    width: 30px;
}


/*** About ***/
.about-fact {
    width: 220px;
    height: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px;
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.container-service {
    position: relative;
}

.container-service::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
    z-index: -1;
}

.service-item {
    position: relative;
    height: 100%;
    padding: 45px 30px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--bs-primary);
}

.service-item:hover::before {
    height: 100%;
    top: 0;
}

.service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--bs-white);
}

.service-item:hover .icon-box-primary::before {
    background: var(--bs-dark);
}

.service-item:hover .icon-box-primary i {
    color: var(--bs-white) !important;
}


/*** Team ***/
.container-team {
    position: relative;
}

.container-team::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    z-index: -1;
}

.team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/testimonial.jpg) left center no-repeat;
    background-size: cover;
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    color: var(--bs-primary);
    font-size: 30px;
    line-height: 0;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px solid rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}




.bg-primary {
      background-color: #3368c6;
}


p.mb-4 {
    color: #000;
}


a.h1.text-white.mb-0.logo {
    margin-top: 6px;
    float: right;
    margin-left: 11px;
}

h1.display-6.mb-4 { 
   font-size: 35px;
    text-align: center;
}

p.lookno {
    color: #000;
}

img.img-fluid {
    border: 1px solid;
}


strong.font-weight-extra-bold {
    font-weight: bold;
    font-size: 28px;
    color: #000;
}


.numberp {
    
    color:#fff;
}

ul.aboutusul li {
    color: #000;
}

p.drop-caps {
    color: #000;
}



p.text-3  {
    color: #000;
}

 .col-md-12.row.critical p {
    color: #000;
}


.col-md-12.row.critical li {
    color: #000;
}


table.mname tr td {
    border: 1px solid;
}

h2.mail {
    font-size: 22px;
}

.btm {
    
    padding-bottom: 3rem ;
}

/* Style for dropdown submenu */
/*.dropdown-submenu {
    position: relative;
}*/

/* Style for submenu trigger */
/*.dropdown-submenu .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}*/

/* Style for submenu */
/*.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-top: -1px;
}*/

p.logooscar a {
    font-size: 40px;
}


.logo-container {
    position: relative;
    display: inline-block;
}

.normal-text, .upside-down-text {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.upside-down-text {
    transform: rotate(180deg);
    top: 50%;
    transform-origin: center top;
}

h5.text-white.mb-0.oscarlogo {
    font-size: 57px;
    FONT-FAMILY: MONOSPACE;
    margin-top:27px;
}
.pb-5g {
    padding-bottom: 24px;
}
span.since {
    float: right;
}


table.myTableProduct tr td {
    border-bottom: 1px solid #000;
    text-align: center;
    color: #000;
    padding: 6px;
}

h5.text-white.mb-0.oscarlogo



.oscarphone {
    
     margin-top: 14px;
    
    
}


img.productImg {
    width: 100%;
}

p.m-1 {
    color: #000;
}


.text-secondary1 {
    color: #000;
    font-size: 34px;
}

.py-55 {
padding-top: 2rem !important;
}


p.col-md-12.text-2 {
    color: #000;
}


 .gallery-item {
      margin-bottom: 20px;
      position: relative;
    }
    
    .gallery-item img {
      width: 100%;
      cursor: pointer;
    }
    
    .product-name {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background-color: rgba(255, 255, 255, 0.7);
      padding: 5px 10px;
      border-radius: 5px;
    }
    .modal-dialog {
      max-width: 800px;
    }
    
    
    h1.veteth1.mb-4 {
    text-align: center;
}

h2.career {

    color: #fff;
}

p.hiring {
    font-size: 28px;
    color: color: rgba(255, 255, 255, .5);
}

p.check {
    color: color: rgba(255, 255, 255, .5);
}
/*ul.dropdown-menu.dropdown-menu1.bg-light.m-0 {
    top: 19%;*/
   /* display: none;
    z-index: 1;
    position: absolute;
    line-height: 33px;*/
/*}*/

h5.maillink a
{
   color: #fff;
    top: 12px;
    position: relative; 
 
}

.whatsapp-button {
   position: fixed;
    top: 50%;
    left: 3%;
    transform: translate(-50%, -50%);
    background-color: green;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    line-height: 100%;
    font-size: 4vw;
    cursor: pointer;
    z-index: 1000;
}

i.fab.fa-whatsapp.my-float {
    font-size: 56px;
    color: #fff;
}

.mail {
    
    display:none;
    
    
    
}

.telp {
    
    
       display:none;
    
}

.py-5oscar {
    
    margin-bottom:10px;
    
}

.my-float {
      font-size: 20px;
    }
    
    
    @media (max-width: 576px) {
          .whatsapp-button {
        bottom: 70px;
        left: 40px;
        position: fixed;
    }
    
    
    
    
   .mail {
    
    display:block;
     font-weight:600;
    font-size: 15px;
    color:#0000FF;
}
a.navbar-brand.d-lg-none {
    font-weight: bold;
}
.telp {
     color:#0000FF;
    font-weight:300;
       display:block;
    font-size: 15px;
     font-weight:600;
}

.about-fact {
    margin: 0 auto;
}

.manutab {
    
   
    margin-top: 20px;
}
    
    .py-5 {
        padding:0px;
        margin:0px;
        
        
    }
}

    .product-name1 {
    position: absolute;
    bottom: 51px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}



.gitem 
{
     
 border: 1px solid #000;   
}

i.fab.fa-whatsapp.my-float.wnumber {
    font-size: 16px;
}



.ms-56 .callsn {
    color: #fff;
    font-size: 20px;
    font-family: system-ui;
    line-height: 27px;
}


span.cnow {
    color: #fff;
    font-size: 20px;
    font-family: system-ui;
    margin-top: 34px;
}


.ms-56 {
    margin-top: 9px;
}

span.whatsapp {
    font-size: 17px;
}


.call-icon {
  position: fixed;
  top: 75%;
  left: 12px; /* Adjust as needed */
  transform: translateY(-50%);
  z-index: 1000; /* Ensure it stays on top */
  background-color:#00008B; /* Background cohttps://github.com/ajaxorg/ace/wiki/Default-Keyboard-Shortcutslor */
  border-radius: 50%; /* Make it round */
  padding: 10px; /* Adjust as needed */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
  width: 59px;
    height: 58px;
}

.call-icon i {
  color: #fff; /* Icon color */
  font-size: 33px; /* Icon size */
}

 


h2.numberscon {
    color: #fff;
    font-size: 20px;
}


a.d-flex.justify-content-lg-center.bg-primary.p-7 {
    padding-bottom: 42px;
    padding-top: 48px;
}
.col-lg-8.colleft8 {
border-left: 1px solid rgba(255, 255, 255, .2);
}


td.snumber {
    width: 6%;
}

td.snumber1 {
    width: 20%;
}

td.snumber3 {
    width: 7%;
}

table.mname1 tr td {
    
    border:1px #000 solid;
    
}

table.mname1 tr td {
    border: 1px solid #000;
    
}

td.srnumberoit {
    width: 6%;
}

td.srnumberoit1 {
    width:6%;
}
td.srnumberoit2 {
       width: 69%;
}
.blackp {
 color:#000;   
     
}

.blackp {
    color: #000;
    margin-top: 20px;
}

.hydrotable {
   padding-bottom: 19px;

}

.container.py-2.bordr {
box-shadow: 0 0 10px rgba(204,204,204,0.67);
margin-top: 12px;
}


h5.font-weight-semibold.text-5 {
    padding: 11px;
}


table.col-12.myTableProduct {
    margin-bottom: 23px;
}

.container.pbtm.py-2 {
    margin-bottom: 21px;
    margin-top: 21px;
}

 p.logooscar img { top: 0px; width: 60px; height: 60px;
 
 }
 
h2.text-white.mb-0.mail1 {
    font-size: 18px;
}

.address {
      float: left;
      width: 45%;
      box-sizing: 
      padding: 0 15px; 
    }

    .divider {
      border-right: 1px solid #000; 
    float:left;
      margin: 0 15px; 
      height: 146px;
    }

.address p 
{
    color:#000;
    
}


.ch2 {
    
            font-size: 19px;
    
}

@media screen and (min-width: 250px) and (max-width: 768px) {
    
    
    p.logooscar img {
        
        width: 29%;
    height: 45%;
        
        
    }
    
    
    .row.g-5.fmenu a {
    text-align: center;
}
    
    a.btn.btn-lg-square.btn-primary.me-2 {
    margin: 0 auto;
}
    
    .row.g-5.footr {
    text-align: center;
}
    
    div#navbarCollapse {
    margin-left: 5px;
}
    
            p {
                font-size: 14px;
            }
            
            .text-secondary1 {
        font-size: 28px;
        text-align: center;
        margin-top: 20px;
    }
            
            table.col-12.myTableProduct {
           width: 100%;
                   margin-bottom: 40px;
}

        .havlightbox-thumbnail {
    margin: 0 auto;
    width:100%;
}   
h5.font-weight-semibold.text-5 {
    text-align: center;
}

.hydrotable {
    padding-bottom: 2px;
}

.blackp {
    color: #000;
    margin-top: 20px;
}
       h2.text-white.mb-0.mail1 {
    font-size: 10px;
}   
        }

.borbx {
    box-shadow: 0 0 10px rgba(204, 204, 204, 0.67);
    margin-top: 15px;
}
  /* Dropdown Menu Styles */
/*.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;*/ /* Text color */
    /*transition: background-color 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0;*/ /* Hover background color */
/*}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    min-width: 200px;*/ /* Adjust as needed */
    /*z-index: 1000;
    background-color: #fff;*/ /* Dropdown background color */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/ /* Dropdown shadow */
/*}*/

.dropdown-submenu:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    
    position: relative !important;
}

.dropdown-menu .dropdown-submenu {
    display: none !important;
    position: absolute !important;
    left: 100% !important;
    top: 0px !important;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100% !important;
    left: auto !important;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block !important;
}



/* Custom classes for mobile */
@media (max-width: 768px) {
    .dropdown-submenu .dropdown-menu {
        position: static;
        display: none;
        width: auto;
        margin-top: 10px;
        box-shadow: none;
    }

    .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }
}