@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    padding: 80px 0;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.title {
    font-size: 30px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    background: #01505c;
    background: linear-gradient(to right, #1098ad 57%, #07b39b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Splash Screen */
.intro {
    font-family: 'Poppins', sans-serif;
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url(img/bg5.jpg);
    background-size: cover;
    background-position: center;
    transition: 1s;

}

.logo-header {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #016e8b;
    font-weight: 400;

}

.logos {
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
    font-size: 28px;
}

.logos.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.logos.fade {
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s;
}


.footer1 {
    margin-right: 30px;
}

@keyframes move {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 20px;
    }
}


.phone a {
    font-size: 25px;
    font-family: Helvetica;
    color: #000;
    margin-bottom: 10px;
}

.phone_1 {
    font-size: 21px;
}

.button {
    font-family: "Roboto";
}

.btn-info {
    background-color: #016e8b !important;
}

.btn-outline-info {
    color: #000 !important;
}

.btn-outline-info:hover {
    background-color: #016e8b !important;
    transition: all 1s ease-in-out;
    color: #fff !important;
}

/* Selling Products */
.section_bg1 {
    background-color: #f3f3f3;
}

.row {
    display: flex !important;
}

.Box {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

img {
    width: 100%;
    transition: all linear 0.7s;
}

img.hover_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;

}

.Box:hover img {
    opacity: 0;
}

.Box:hover img.hover_img {
    opacity: 1;
}

/* About */
.about {
    text-align: justify;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: 14%;
    line-height: 40px;
    letter-spacing: 1px;
}

.fblink {
    font-size: 19px;
    font-weight: 500;
}

.about_icon {
    font-size: 20px;

}

/* New Arrival */
#arrival {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-family: "Roboto", Helvetica, sans-serif;
    padding: 70px;
}

.swiper-navBtn {
    color: #6E93f7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: #000000;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 40px;
}

.swiper-pagination {
    bottom: 75px;
}

a {
    text-decoration: none !important;
}

.product {
    text-align: center;
    /* background-color: #fff; */
}

.product .product-image {
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.product {
    --borderWidth: 3px;
    position: relative;
}

.product:after {
    content: '';
    position: absolute;
    border-radius: var(--borderWidth);
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(70deg, #ef4e7b, #7a94c9, #1098ad, #07b39b, #6fba82);
    border-radius: calc(2 * var(--borderWidth));
    z-index: -1;
    animation: productA 3s ease alternate infinite;
    background-size: 300% 300%;
    -webkit-animation: productA 3s ease alternate infinite;
}

@keyframes productA {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.product .product-image a.image {
    display: block;

}

.product .product-image img {
    width: 100%;
    height: auto;
}

.product .product-image .pic_1 {
    transition: .5s;
}

.product .product-image:hover .pic_1 {
    opacity: 0;
}

.product .product-image .pic_2 {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s;
}

.product .product-image:hover .pic_2 {
    opacity: 1;
}

.product .discount {
    color: #fff;
    background: #016e8b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 30px;
    width: 50px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 10px;
    font-weight: bold;
}

.product .cart {
    color: #000;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    padding: 4px 14px;
    opacity: .85;
    transform: translateX(-50%);
    position: absolute;
    bottom: -75px;
    left: 50%;
    transition: .5s;
}

.product .cart:hover {
    opacity: 1;
    color: #fff;
    background: #016e8b;
}

.product:hover .cart {
    bottom: 3px;
}

.product .links {
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: 10px;
    right: -50px;
    transition: .5s;
    margin-bottom: 5px;
}

.product .links:hover {
    opacity: 1;
    right: 10px;
}

.product .links li a {
    color: #fff;
    font-size: 12px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: block;
    background: #000;
    transition: .5s;
    margin-bottom: 5px;
}

.product:hover .links li a:hover {
    color: #fff;
    /* background: #c66; */
}

.product .content {
    padding: 12px;
}

.product .title3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;

}

.product .title3 a {
    color: #ffffff;
    transition: .5s;
}

.product .title3 a:hover {
    color: #444;
}

.product .price {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.product .price span {
    margin: 0 5px 0 0;
    font-weight: 500;
    font-size: 16px;
}

@media screen and (max-width: 990px) {
    .product {
        margin: 0 0 30px;
    }
}


/* .arrival {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
    padding: 10px;
} */

.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    /* background: #262626; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

/* Brand */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Test */
.testimonials {
    float: left;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 13px;
    text-align: center;
    font-family: "Roboto";
    overflow-x: hidden;
    margin-bottom: 30px;
}

.section-title {
    float: left;
    position: relative;
    width: 100%;
    padding-bottom: 40px;
}

.section-title p {
    color: #7d93b2;
    font-size: 13px;
    line-height: 20px;
    max-width: 550px;
    margin: 0 auto;
}

.section-title h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: #016e8b;
    font-size: 34px;
    font-weight: 800;
    position: relative;
}

.section-separator {
    float: left;
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.section-separator:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 3px;
    width: 50px;
    border-radius: 3px;
    z-index: 2;
    background-color: #016e8b;
    margin-left: -25px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.listing-carousel-button {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    z-index: 100;
    cursor: pointer;
    background: #016e8b;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.45);
    transition: all 200ms linear;
    outline: none;
}

.listing-carousel-button.listing-carousel-button-next {
    right: -30px;
    padding-right: 20px;
    border-radius: 60px 0 0 60px;
}

.listing-carousel-button.listing-carousel-button-prev {
    left: -30px;
    padding-left: 20px;
    border-radius: 0 60px 60px 0;
}

.listing-carousel-button.listing-carousel-button-next:hover {
    right: -15px;
    background: rgba(6, 27, 65, 0.4);
}

.listing-carousel-button.listing-carousel-button-prev:hover {
    left: -15px;
    background: rgba(6, 27, 65, 0.4);
}

.testi-item {
    transition: all .3s ease-in-out;
    transform: scale(0.9);
    opacity: 0.9;
}

.testimonials-text {
    padding: 75px 50px 75px;
    overflow: hidden;
    background: #f5f6fa;
    border: 1ps solid #f1f1f1;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.testimonials-text-after {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 35px;
    transition: all 400ms linear;
    bottom: 25px;
    right: 30px;
}

.testimonials-text-before {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 35px;
    transition: all 400ms linear;
    top: 25px;
    left: 30px;
}

.testimonials-text .listing-rating {
    float: none;
    display: inline-block;
    margin-bottom: 12px;
}

.listing-rating i {
    color: #016e8b;
}

.testimonials-avatar h3 {
    font-weight: 600;
    color: #7d93b2;
    font-size: 18px;
}

.testimonials-avatar h4 {
    font-weight: 400;
    font-size: 12px;
    padding-top: 6px;
    color: #016e8b;
}

.testimonials-carousel .swiper-slide {
    padding: 30px 0;
}

.testi-avatar {
    position: absolute;
    left: 50%;
    top: -30px;
    width: 90px;
    height: 90px;
    margin-left: -45px;
    z-index: 20;
}

.testi-avatar img {
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 100%;
    border: 6px solid #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.swiper-slide-active .testimonials-text {
    background: #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.testimonials-text p {
    color: #000;
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
}

.text-link {
    position: absolute;
    bottom: 0;
    padding: 15px 0;
    border-radius: 10px 10px 0 0;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
    left: 50%;
    width: 200px;
    margin-left: -100px;
}

.swiper-slide-active .testi-item {
    opacity: 1;
    transform: scale(1.0);
}

/* 
.tc-pagination {
    float: left;
    margin-top: -27px;
    width: 100% !important;
    align-items: center;
}

.tc-pagination_wrap {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
}

.tc-pagination2 {
    float: none;
    display: inline-block;
    padding: 14px 0;
    background: #fff;
    border-radius: 30px;
    min-width: 250px;
    border-bottom: 0;
}

.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
    opacity: 1;
    background: #384f95;
    margin: 0 2px;
    width: 10px;
    height: 10px;
    transition: all 300ms ease-in-out;
} */

/* Count */
.counter_up {
    background: url("img/bg3.jpg") no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background-size: cover;
    background-attachment: fixed;
    position: relative;

}

.counter_up::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.815);
}

.counter_up .content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.counter {
    animation-duration: 1s;
    animation-delay: 0s;
}

.content .box {
    width: calc(25% - 30px);
    border: 1px dashed rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    flex-direction: column;
    border-radius: 5px;
}

.content .box .icon {
    font-size: 48px;
    color: #e6e6e6;
}

.content .box .icon1 img {
    width: 140px;
    color: #e6e6e6;
}

.content .box .counter {
    font-size: 50px;
    color: #f2f2f2;
    font-weight: 500;
    font-family: sans-serif;
}

.content .box .text {
    color: #ccc;
    font-weight: 400;

}

/* Services */
.bOx h3 {
    font-size: 25px;
    align-items: center;
    padding: 15px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.bOx p {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
}

.bOx {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.bOx i {
    font-size: 40px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    margin: 10px 0;
    color: #999;
}

.bOx .number {
    position: absolute;
    top: 5px;
    left: 15px;
    font-weight: bolder;
    font-size: 50px;
    color: #fff;
}

.bOx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: .3s linear;
    background: #016e8b;
    clip-path: circle(28% at 5% 0);
}

.bOx:hover::before {
    clip-path: circle(100%);

}

.bOx:hover>* {
    color: #fff;
}

/* Contact */
.titlE {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    text-align: center;
    font-family: "Roboto";
    text-transform: uppercase;
}

.titlE a {
    font-size: 25px;
    color: #016e8b;
    font-weight: 500;
    text-align: center;
}

hr {
    width: 60%;
    color: #000;
}

.iconn {
    color: #016e8b;
    font-size: 27px;
}

.titlE a:hover {
    color: #000;
    text-decoration: none;
}

.Img_edit img {
    border-radius: 10px 120px;
    padding: 7px;
    box-shadow: 4px 6px #016e8b;
}

.over {
    overflow-x: hidden;
}

/* Footer */
.bgColor {
    background: #016e8b;
}

.text_size {
    padding: 10px;
    font-size: 17px;
}