@import url(fonts.css);
@import url(responsive.css);

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::-webkit-scrollbar-track {
    background: #f8f8f8;
}

::selection {
    color: #fff;
    background: #197C82;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    font-family: inherit;
    outline: none!important;
    list-style: none!important;
}

*:after,
*:before {
    box-sizing: border-box;
}
.breadcrumbs {
	background: url('../../img/header_bg.jpg') center center / cover no-repeat;
	min-height: 320px;
	position: relative;
	z-index: 1;
}

#searchBox {
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #ddd;
}


html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #F4F5F6!important;
    color: #000;
    font-family: 'Poppins', sans-serif!important;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

p {
    color: #000;
    line-height: 28px;
    margin-bottom: 25px;
}

a {
    color: #000;
    text-decoration: none!important;
    transition: all .3s ease-in-out;
    box-shadow: none!important;
}

a:hover {
    color: #030349;
    text-decoration: none!important;
}

img {
    max-width: 100%;
}

button, input:focus, textarea:focus, .btn:focus, .btn:active:focus, .btn.active:focus {
    outline: none!important;
    box-shadow: none!important;
}

ul, li, ol, fieldset {
    margin: 0;
    padding: 0;
}

label {
    color: #000;
}

iframe {
    border: 0;
    display: block;
}

video {
    width: 100%;
}

header {
    padding: 15px 0;
}

header nav.navbar {
    padding: 0!important;
}

header .navbar-nav .nav-item li {
    margin-left: 10px;
}

header .navbar-nav .nav-item .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 12px;
    color: #707070;
    position: relative;
}

header .navbar-nav .navbar li:hover,
header .navbar-nav .navbar li:active,
header .navbar-nav .navbar li.show {
    background: #FFF!important;
    border-radius: 40px;
    transition: all 0.3s ease-in-out;
}

header .headerExtra a {
    color: #707070;
}

header select {
    border: none;
    background: none;
}

.headerLogo {
    width: 130px;
}

section {
    padding-top: 80px;
}

/* Owl Carousel */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-nav [class*='owl-'] {
    transition: all .3s ease;
}

.owl-carousel .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

.owl-theme .owl-dots {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* Background Sections */
/*
.addBg {
  background: url('../img/header_bg.webp') no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-bottom: 0;
}
 */
.addSectionBg {
    background: url('../img/section_bg.png') no-repeat;
    background-size: 100%;
    padding-bottom: 0;
}

.addProductBg {
    background: url('../img/product_bg.png') no-repeat;
    background-size: 100%;
    background-color: #FFF!important;
}

/* Buttons */
.btn-outline-other {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    background: none;
    border: 1px solid #FFF;
    color: #FFF;
    line-height: 1.5;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    display: inline-block;
    overflow: hidden;
}

.btn-other {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    background: #197C82;
    color: #FFF;
    line-height: 1.5;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 20px;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.btn-other:before {
    content: " ";
    display: block;
    width: 200px;
    height: 80px;
    background: rgba(255, 255, 255, .2);
    position: absolute;
    top: -10px;
    left: -200px;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.btn-other:hover:before {
    margin-left: 300%;
}

/* Popup */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
 background-color: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 95%;
    width: 400px;
    text-align: center;
    position: relative; 
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #197C82;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 22px;
    line-height: 30px;
    cursor: pointer;
    z-index: 10000;
}

.popup-button {
    background-color: #197C82;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 6px;
}

@media screen and (max-width: 768px) {
    .popup-content {
        max-width: 90vw;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 10px;
        padding: 20px;
    }

    .popup-button {
        padding: 12px 24px;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .popup-button:hover {
        background-color: #145e61;
    }

    .popup-close {
        font-size: 30px;
        background: rgba(0, 0, 0, 0.4);
        width: 36px;
        height: 36px;
        line-height: 36px;
        transition: background 0.3s, color 0.3s;
    }

    .popup-close:hover {
        background: rgba(255, 255, 255, 0.8);
        color: #197C82;
    }
}

@media screen and (max-width: 480px) {
    .popup-content {
        width: 95vw;
        padding: 10px;
    }

    .popup-button {
        width: 90%;
        font-size: 14px;
    }
}
img[loading="eager"] {
  content-visibility: auto;
  contain-intrinsic-size: 1600px 600px;
}
.site-header {
  position: relative;
  overflow: hidden;
}

.header-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 2;
}
