* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: "Roboto Condensed", serif;
}

a {
    text-decoration: none;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 1px;
}


/* Divider Section */

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
}

.divider h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
}

.registerWrap {
    background-color: #c5dfff;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

/* To show the lines on right and left sides of the text */

.divider::after,
.divider::before {
    content: "";
    border: 1px solid #3a3a3a;
    flex: 1;
}


/* Space on left and right sides of text */

.divider:not(:empty)::before {
    margin-right: 1.25em;
}

.divider:not(:empty)::after {
    margin-left: 1.25em;
}


/* Button to top*/

#btn-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: none;
    border-radius: 30px;
    border: none;
    background-color: #0d6efd52;
    border-radius: 15px;
    z-index: 9999;
}


/* Button to top*/


/* loader */

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border-radius: 50%;
    background: transparent;
    border-top: 4px solid #0d6efd;
    border-right: 4px solid transparent;
    -webkit-animation: 1s spin linear infinite;
    animation: 1s spin 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);
    }
}


/* Add animation to "page content" */

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0px;
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

#myDiv {
    display: none;
    /* text-align: center; */
}


/* Loader */


/* Top */

.top {
    text-align: left;
    background-color: #3498db;
}

.top-text {
    padding: 6px 0;
    color: #fff;
    font-size: 12px;
}


/* Top */


/* Subscribe */

.subscribe-header {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.subscribe-header h2 {
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.subscribe-header p {
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #9195a2;
}

.subscribe {
    margin-top: 10vh;
    padding: 5vh 0;
    background: url('../res/newslater-bw.jpg') center center no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    min-height: auto;
}

.subscribe:before {
    content: "";
    background: rgba(6, 12, 34, 0.76);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.subscribe .subscribe-header h2,
.subscribe p {
    color: #fff;
}

.subscribe input {
    background: #fff;
    color: #060c22;
    border: 0;
    outline: none;
    margin: 0;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 14px;
}

.subscribe button {
    border: 0;
    padding: 9px 25px;
    cursor: pointer;
    background: #f82249;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
    font-size: 14px;
    border-radius: 50px;
}

.subscribe button:hover {
    background: #e0072f;
}

.form-row {
    display: flex !important;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    position: relative;
}

@media only screen and (min-width: 768px) {
    .subscribe input {
        min-width: 400px;
    }
}


/* Subscribe */


/* Style Nav-New */

.top-header {
    margin-top: 0;
}

.logo {
    text-align: left;
}

.logo img {
    width: 215px;
    height: auto;
    padding: 18px 8px;
    padding-left: 0;
    margin-left: 0;
}

.logo a:hover {
    text-decoration: none;
    list-style: none;
    background: transparent;
}


/**Menyisipkan icon di form input dan memberi lebar pada form**/

.search-box {
    margin: 30px 0;
    padding-left: 5%;
    padding-right: 0;
}

form,
form .icon-search {
    width: 100%;
}

form .icon-search {
    position: relative;
}

form input {
    border: 1px solid #e9e9e9;
    border-radius: 25px;
    background-color: #fafafa;
    color: #adadad;
    outline: none;
    margin: 0;
    font-size: inherit;
    display: block;
    padding: 8px;
    padding-left: 14px;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/**Mengatur posisi icon di dalam form**/

form input+i {
    position: absolute;
    right: 14px;
    top: 12px;
    color: #adadad;
}

form input:focus {
    border: 1px solid #b2b2b2;
    background-color: #ffffff;
    color: #000;
}

form input:focus+i {
    color: #777;
}

/* form>div:last-child {
    display: inline-block;
    width: 100%;
} */


/* Navigation Menu */

.sticky {
    position: sticky;
    top: 0;
    z-index: 8;
    background: #ffffff;
    box-shadow: 0 4px 4px 0 #dbdbdb;
    margin-bottom: 24px;
}

nav {
    height: auto;
    width: 100%;
}

nav a {
    color: #ffffff;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
}

.dropdown-item {
    text-align: center;
    /* min-width: 0; */
}

.dropdown-menu li {
    width: 10rem;
}

label.logo {
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 18px;
    font-weight: bold;
    float: left;
}

label.logo img {
    display: none;
    width: 145px;
    margin: 18px 0;
}

nav ul {
    /*float: right;
margin-right: 20px;
margin-bottom: 0;*/
    margin: 0;
    top: 0;
    z-index: 9;
}

nav ul li {
    display: inline-block;
    line-height: 40px;
    margin: 0;
    font-weight: 500;
}

nav ul li a {
    color: #000000;
    font-size: 14px;
    padding: 7px;
    border-radius: 4px;
    text-transform: uppercase;
}

li.search-li {
    display: none;
}

a.active,
a:hover {
    background: #ffffff;
    transition: .5s;
    color: #3498db !important;
}

.checkbtn {
    font-size: 35px;
    color: #58b4a6;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    margin-top: 24px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

.navbar-toggler-icon{
    font-size: 25px; 
}

.navbar-toggler {
    padding: 0;
    border:0;
}

/* styling search bar */

.search-navi {
    display: none;
}

@media (max-width: 920px) {
    label.logo {
        font-size: 30px;
        padding-left: 0;
        margin: 5px 0;
    }
    nav ul {
        margin-right: 0;
    }
    nav ul li a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-header {
        /* display: none; */
    }
    nav {
        top: 0;
        height: 80px;
        position: sticky;
    }
    label.logo img {
        display: block;
        margin: 10px 0;
        width: 160px;
    }
    .logo img {
        padding: 0;
    }
    .search-navi {
        display: block;
        float: right;
        margin: 20px 25px;
        width: 45%;
    }
    .checkbtn {
        display: block;
        margin-right: 18px;
    }
    nav ul {
        /* position: fixed;
        width: 40%;
        height: 100vh;
        background: #00121bf5; */
        /* top: 0; */
        /* left: -100%; */
        background-color: #3498db;
        text-align: left;
        transition: all .5s;
    }
    .navbar-nav {
        z-index: 999999;
        position: relative;
        top: -5px

    }
    nav ul li {
        display: block;
        margin: 5px 0;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 14px;
        color: #fff;
    }

    .navbar-nav .nav-link {
        padding-left: 10px;
    }
    a:hover,
    a.active {
        background: #ffffff;
        color: #58b4a6;
    }
    #check:checked~ul {
        left: 0;
        padding-left: 0;
    }
}

@media (max-width: 425px) {
    .search-navi {
        display: none;
    }
    nav ul {
        width: 100%;
    }
    li.search-li {
        display: block;
        margin: 30px 5px;
    }

    .navbar-nav {
        z-index: 999999;
        position: relative;
        top: -5px

    }
}

.navbar-collapse {
    z-index: 9999999;
}


/* Navigation Menu */


/* Style Nav-New */


/* Style slider testimoni */
.testimoni-area {
    background-color: #f3f3f3;
}

.testimoni {
    display: block;
    width: 100%;
    margin: 50px 0;
    /*box-shadow: 0px 0px 6px 2px;
    border-radius: 5px;*/
}


/* Style slider testimoni*/


/* Style company info*/

.companyinfo {
    margin-bottom: 30px;
    text-align: justify;
}

.companyinfo p {
    color: #838383;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
}


/* Style company info*/


/* Style slider */

.area-carousel {
    display: block;
    width: 100%;
    /* margin: 12px 0; */
    /*box-shadow: 0px 0px 6px 2px;
    border-radius: 5px;*/
}

.carousel-inner {
    border-radius: 0;
}


/* Style slider */


/* Style service */
.service-area {
    background-color: #f3f3f3;
    padding: 20px 0;
}

.aa-support {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
}

.aa-support-area {
    /*display: flex;*/
    padding: 20px 0;
    width: 100%;
}

.aa-support-area .aa-support-single {
    /*display: block;*/
    text-align: center;
    padding: 5px 10px;
    float: left;
    width: 100%;
}

.aa-support-area .aa-support-single span {
    font-size: 50px;
    color: #444444;
}

.aa-support-area .aa-support-single h5 {
    color: #444444;
    font-weight: bold;
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 7px;
}

.aa-support-area .aa-support-single p {
    color: #696763;
    font-size: 12px;
    margin-bottom: 0;
}

@media screen and (max-width: 425px) {
    .aa-support-area .col-md-3 {
        width: 50%;
        padding: 0;
    }
}


/* Style service */


/* Style sidebar */

.sidebar {
    padding: 0;
}

.collapsible {
    background-color: #00121b;
    color: white;
    cursor: pointer;
    padding: 8px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    border-radius: 12px;
    margin-bottom: 5px;
}

.collapsible .active,
.collapsible:hover {
    background-color: #555;
    color: #0d6efd;
    transition: all 300ms;
}

.collapsible:after {
    content: '\002B';
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.collapsible .active:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #fff;
}

.content ul {
    padding: 0;
    margin: 0 10px;
    text-align: left;
}

.content ul li {
    margin: 5px 0;
    font-weight: 600;
}

.content ul a {
    text-decoration: none;
    outline: none;
    color: #000;
    transition: 0.3s;
}

.content.content ul a:hover {
    color: #0d6efd;
}


/* Style sidebar */


/* Style Carousel category product */

.owl-category {
    margin-top: 20px;
    margin-bottom: 55px;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
    display: none;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: #000;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*background: rgba(255, 255, 255, 0.38) !important;*/
    background: transparent;
}

/* span {
    font-size: 70px;
    position: relative;
    top: -5px;
    margin: 0 5px;
} */

.select2-results, .select2-search, .select2-selection__rendered {
    font-size: 16px;
}

.selection, .select2-selection {
    margin: 0;
    font-size: 16px;
    top: 0;
}

.select2-container .select2-selection--single {
    height: 50px !important;
}

.select2-selection__rendered {
    top: 0;
    line-height: 50px !important;
}

.select2-selection__arrow {
    margin: 0 !important;
    top: 10px !important;
}

.owl-nav button:focus {
    outline: none;
}


/* Style Carousel category product */
.category-title {
    background-color: #74b9ff;
    padding: 30px 0;
    margin-bottom: 30px;
}

.category-title h2{
    font-size: 3.8rem;
    color: #ffffff;
    text-align: left;
}

.review .main_star {
    font-size: 18px;
    color: #fdcb6e;
    margin-right: 0;
}
/* Style product index */

.more-product {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    padding: 0.375rem 2.75rem;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    background-color: #0d6efd;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.more-product a {
    text-decoration: none;
    font-size: 1.05rem;
    color: #FFF;
    font-weight: 400;
}

.more-product:hover {
    box-shadow: 0 0 3px 3px rgba(0, 255, 255, 0.50);
}

.homeprod {
    text-align: center !important;
    margin: 10px 0;
}

.product-card {
    width: auto;
    position: relative;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    margin: 5px auto;
    background: #fafafa;
    transition: 0.3s;
    border-radius: 10px;
}

.product-card:hover {
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.2);
}

.product-card .badge {
    position: absolute;
    left: 10px;
    top: 10px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: #31B3A6;
    color: #fff;
    padding: 4px 10px;
}

.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 235px;
    padding: 0;
    background: #f0f0f0;
    overflow: hidden;
}

.product-details h4 {
    height: 70px;
    overflow: hidden;
}

.product-tumb img {
    max-width: 100%;
    max-height: 100%;
}

.product-details {
    padding: 15px;
}

.product-catagory {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 18px;
}

.product-details h4 a {
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: #363636;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
    font-size: 15px;
}

.product-details h4 a:hover {
    color: #0d6efd;
    background-color: transparent;
}

.product-details p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 18px;
    color: #999;
}

.product-bottom-details {
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-bottom-details div {
    float: left;
}

.product-price {
    font-size: 18px;
    color: #363636;
    font-weight: 600;
    width: 80%;
    text-align: left;
}

.product-price small {
    font-size: 75%;
    font-weight: 400;
    display: inline-block;
    margin-right: 5px;
    color: #f82249;
}

.product-links {
    text-align: right;
    padding: 14px 0;
    width: 20%;
}

.product-links a {
    display: inline-block;
    margin-left: 5px;
    color: #00121b;
    transition: 0.3s;
    font-size: 17px;
}

.product-links a:hover {
    color: #0d6efd;
    background-color: transparent;
}

@media (max-width: 425px) {
    .homeprod .row .col-xs-4 {
        width: 50%;
    }
    .product-price {
        font-size: 16px;
    }
}


/* Style product index */


/* Style client */

.wrapper {
    width: 100%;
    margin-bottom: 50px;
}

.carouselowl {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
}

.carouselowl .card-owl {
    color: #fff;
    text-align: center;
    margin: 20px 0;
    line-height: 250px;
    font-size: 90px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0px 0 4px rgba(0, 0, 0, 0.2);
}


/* Style client */


/* Detail Product */

.card {
    
    margin: 20px 0;
    border-radius: 5px;
}

.card-detail {
    /* margin: 20px; */
}

.card-body {
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

.card-image {
    background: transparent;
    position: relative;
    height: auto;
    align-items: center;
    padding: 0;
    border-radius: 10px;
}

.card-image img {
    width: 100%;
    /* border-radius: 10px; */
}

.page-header {
    margin: 0 -1rem 1rem -1rem;
    background: #70b4e7;
    border-bottom: 1px solid #ccc;
    border-radius: 7px 7px 0 0;
    -webkit-border-radius: 7px 7px 0 0;
}

.page-header h1 {
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 1.75rem;
    margin: 0
}

.breadcrumb_container {
    counter-reset: flag;
}

.breadcrumb_container .breadcrumb {
    margin-left: 0;
}

.breadcrumb_container .breadcrumb {
    background-color: rgba(0, 0, 0, 0);
    padding: .5rem .5rem .5rem 0;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 0.75rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.breadcrumb_container .breadcrumb.breadcrumb_arrow>li+li:before {
    color: #ccc;
    content: ">";
    display: inline-block;
    position: static;
    font-family: "Roboto Condensed", serif;
    padding: 0 .5rem;
    font-weight: 600;
}

.title h1 {
    color: #363636;
    font-size: 30px;
    font-weight: 600;
}

.subtitle p {
    margin-bottom: 2px;
    color: #9c9d9f;
    font-size: small;
}

.subtitle a {
    color: #363636;
    text-decoration: none;
}

.subtitle a:hover {
    background-color: transparent;
    color: #9c9d9f;
}

.subtitle i {
    margin-right: 2px;
    color: #9c9d9f;
}

.price {
    margin: 15px 0;
}

.price span {
    font-size: 22px;
    font-weight: 600;
    color: #363636;
}

.btn-order {
    margin: 15px 0;
    font-family: "Montserrat", sans-serif;
}

.btn-order a {
    text-decoration: none;
}

.btn-order a:hover {
    background: #495057;
    color: #fff;
}

.cart {
    background: #363636;
    border: 0 none;
    color: #FFFFFF;
    font-size: 20px;
    border-radius: 8px;
    width: auto;
    margin-bottom: 5px;
}

.cart i {
    color: #fff;
    margin: 0 0 0 5px;
}

.wa {
    background-color: #25d366;
    display: block;
}

.tele {
    background-color: #229ED9;
    display: block;
}

.btn-share {
    margin: 20px 0 0;
}

.btn-share ul {
    padding-left: 0;
    overflow: visible;
    /*float: left;*/
}

.btn-share ul li {
    list-style: none;
    float: left;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 4px;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #3d4c5a;
}

.btn-share ul li:hover {
    background-color: #0d6efd;
    transition: 0.3s ease-in-out;
}

.btn-share ul li a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.btn-share a:hover {
    background-color: transparent;
}

.btn-share i {
    color: #fff;
}

.tab-detail {
    margin: 20px;
}

.tab-detail button {
    font-weight: 600;
    background-color: #fafafa;
}

.tab-detail h2 {
    text-align: center;
    margin: 10px 0;
    font-size: 26px;
}

.tab-detail p {
    margin: 12px 8px;
    text-align: justify;
}

.nav-tabs {
    margin-bottom: 0;
}

.nav-tabs li {
    float: left;
    width: 50%;
    display: flex;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fafafa;
    border-color: #dee2e6 #dee2e6 #fff;
    position: relative;
}

#home button {
    color: #fff;
    background: #0d6efd;
    float: right;
}

#home button:hover {
    background: #495057;
}

#home i {
    color: #fff;
}

@media (max-width: 768px) {
    .card-detail {
        margin-bottom: 0;
    }
    .tab-detail {
        margin-top: 0;
    }
}


/* Detail Product */


/* Gallery Product */

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: 4;
    align-content: start;
    max-width: 800px;
    margin: 0 auto;
    transition: all 150ms linear;
}

.gallery input[type="radio"] {
    display: none;
    border-radius: 10px;
}

.gallery label {
    position: relative;
    display: block;
    padding-bottom: 100%;
    margin: 0;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 10px;
}

.gallery label:before {
    border: 1px solid #e3e3e3;
    content: '';
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: -3px;
    top: -3px;
    border-radius: 10px;
}

.gallery img {
    display: none;
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 2;
    width: 100%;
    transition: all 150ms linear;
}

.gallery input[name="select"]:checked+label+img {
    display: block;
}

.gallery input[name="select"]:checked+label:before {
    border: 1px solid #31B3A6;
    border-radius: 10px;
}


/* Gallery Product */


/* Contact */

.contact-section {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact {
    background-image: linear-gradient(to bottom, #ffffff, #e8e8e8, #d2d2d2, #bcbcbc, #a6a6a6);
    border: none;
}

.card-contact {
    margin: 0;
}

.contact-title h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 2px 5px #7c7c7c;
}

.card-contact ul {
    padding: 0;
}

.card-contact ul li {
    margin-bottom: 10px;
    height: auto;
    display: flex;
}

.card-contact ul li i {
    margin: 0 13px;
    padding: 4px 0;
    text-align: center;
    width: 20px;
    font-size: 18px;
}

.card-contact ul li p {
    margin: 0;
}

.responsive-map-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 5px #616161;
}

.responsive-map-container iframe,
.responsive-map-container object,
.responsive-map-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Contact */


/* Widget */

.fixed-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.btn-circle.btn-xl {
    width: 65px;
    height: 65px;
    padding: 15px 17px;
    border-radius: 50%;
    font-size: 35px;
    text-align: center;
}

.fixed-shp {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 70px;
    z-index: 99;
}

.fixed-tpd {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 75px;
    z-index: 99;
}

@media (max-width: 480px) {
    .fixed-btn {
        /* bottom: 0;
        right: 0; */
        position: fixed;
    }
    .btn-circle.btn-xl {
        padding: 15px 17px;
        font-size: 30px;
    }
    .fixed-shp {
        width: 66px;
    }
    .fixed-tpd {
        width: 70px;
    }
}


/* Widget */


/* Footer */

.footer {
    width: 100%;
    background: #f3f3f3;
    display: block;
}

.inner-footer {
    width: 100%;
    margin: auto;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: center;
}

.inner-footer .col-md-3 {
    width: 25%;
}

.inner-footer .col-md-9 {
    width: 75%;
}

.footer-items-brand {
    width: 100%;
    padding: 10px 30px 10px 5px;
    box-sizing: border-box;
    color: #060c22;
}

.footer-items-brand h1 {
    text-align: left;
}

.footer-items-brand h2 {
    text-align: left;
}

.footer-items-brand p {
    font-size: 16px;
    text-align: justify;
    line-height: 25px;
    color: #060c22;
}

.footer-items {
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
    color: #060c22;
    text-align: left;
}

.footer-items h3 {
    color: #060c22;
    font-weight: 400;
    font-size: 21px;
}

.footer-items ul {
    list-style: none;
    color: #060c22;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding-left: 0;
}

.footer-items ul a {
    text-decoration: none;
    outline: none;
    color: #060c22;
    transition: 0.3s;
    margin: 0 3px;
}

.footer-items.footer-items ul a:hover {
    color: #0d6efd;
}

.footer-items ul li {
    margin: 10px 0;
    height: auto;
    display: flex;
}

.footer-items ul li p {
    margin-bottom: 0;
}

.footer-items li i {
    margin-right: 20px;
    padding-top: 4px;
}

.footer-items li img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.footer-items a img {
    text-decoration: none;
    list-style: none;
}

.border1 {
    height: 3px;
    width: auto;
    background: #060c22;
    color: #060c22;
    border: 0px;
}

.social-media {
    color: #060c22;
    font-size: 20px;
}

.social-media a {
    text-decoration: none;
}

.social-media i {
    height: 25px;
    width: 25px;
    margin: 20px 10px;
    padding: 4px;
    color: #fff;
    transition: 0.5s;
}

.social-media i:hover {
    transform: scale(1.5);
}

.footer-bottom {
    padding: 10px;
    background: #2980b9;
    color: #fff;
    font-size: 12px;
    text-align: center;
}


/* for tablet mode view */

@media screen and (max-width: 1275px) {
    .footer-items-brand {
        width: 100%;
    }
    .footer-items {
        width: 100%;
    }
}


/* for mobile screen view */

@media screen and (max-width: 768px) {
    .inner-footer .col-md-3 {
        width: 100%;
    }
    .inner-footer .col-md-9 {
        width: 100%;
    }
    .footer-items-brand {
        width: 100%;
    }
    .footer-items {
        width: 100%;
    }
}


/* for small mobile screen view */

@media screen and (max-width: 320px) {
    .footer-items-brand {
        width: 100%;
    }
    .footer-items {
        width: 100%;
    }
}


/* Footer */


/* Selected Product */

.boxs {
    width: 100%;
    height: auto;
    padding: 10px;
    border: 1px solid #0400ff;
    border-radius: 8px;
    display: flex;
    margin: 50px 0;
}

.product-selected {
    margin: 20px;
    display: block;
}

.product-selected-side {
    margin: 20px;
    margin-bottom: 0;
    display: block;
}

.selected-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform .5s ease;
}

.selected-img img {
    width: 100%;
}

.selected-img:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 425px) {
    .product-selected-side {
        margin: 0 20px;
    }
    .boxs .col-md-4 {
        width: 50%;
        padding: 0;
    }
}


/* Selected Product */