@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin-right: 0;
    font-family: 'Poppins', sans-serif;
}

ul{
    padding-left: 0%;
}

.nav-item a{
    color: #000000;
}

.nav-item a:hover{
    color: #5567ee;
    text-decoration: underline;
}

.nav-item a:active{
    color: #007bff;
    text-decoration: underline;
}

h2 {
    color: #333333;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
}

h6 {
    color: #333333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.btn{
    color: #ffffff;
    border-radius: 0%;
}

.btn-gray{
    background-color: #333333;
    border: 2px solid #333333;
    color: #ffffff;
    border-radius: 0%;
}

.btn-gray:hover{
    color: #ffffff;
    background-color: #5567ee;
    border-radius: 0%;
}

.title-para {
    color: #666;
    max-width: 50%;
    margin: 15px auto 0;
    line-height: 25px;
    font-size: 14px;
}

.navbar {
    border: 5px solid transparent;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    padding: 0;
    color: #333333;
    font-size: 16px;
}

.mob-icon{
    display: none;
}

.navbar-toggler {
    font-size: 1.25rem;
}

.nav-link{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.icon i{
    margin-right: 15px;
    font-size: 1.25rem;
    padding-right: 12px;
}

.icon i:hover{
    color: #007bff;
}

.para {
    font-size: large;
}

/* Carousel controls and captions */
.carousel-control-prev,
.carousel-control-next {
    background-color: transparent;
    border: 2px solid black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    font-size: 20px;
}

.carousel-control-prev:hover{
    background-color: #000000;
    color: #ffffff;
}
.carousel-control-next:hover{
    background-color: #000000;
    color: #ffffff;
}

.carousel-control-prev {
    left: 51%;
}

.carousel-control-next {
    left: 55%;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
}

.carousel h2 {
    color: #232323;
    font-size: 60px;
}

.carousel-para {
    font-size: 24px;
    color: #232323;
}

.carousel-caption .btn {
    background-color: #5567EE;
    margin-top: 16px;
    padding: 15px 45px;
}

.icons {
    margin-right: 15px;
}

/* Watches section */

.img-wrapper {
    position: relative;
}

.img-wrapper img {
    width: 100%;
    height: auto;
}

.icons {
    position: absolute;
    bottom: 10px;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.icons i {
    font-size: 18px;
    background-color: #007bff;
    border: 1px solid #ffffff;
    padding: 7px;
    cursor: pointer;
    border-radius: 10%;
    opacity: 0;
    transform: translateY(100%);
}

.img-wrapper:hover .icons i {
    animation: fadeInUp 0.3s ease-in forwards;
}

.img-wrapper:hover .icons i:nth-child(1) {
    animation-delay: 0.3s;
}

.img-wrapper:hover .icons i:nth-child(2) {
    animation-delay: 0.2s;
}

.img-wrapper:hover .icons i:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.icons i:hover {
    color: #000000;
    background-color: #ffffff;
}

.discount-circle {
    background-color: #5567EE;
    color: white;
    padding-top: 8px;
    border-radius: 50%;
    text-align: center;
    height: 35px;
    width: 35px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    z-index: 10;
    top: 15%;
    left: 15%;
}

.cross {
    text-decoration: line-through;
    color: #999;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    /* .row.g-3 > div {
        margin-bottom: 1rem;
    } */
    .col-12.col-md-6.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


/*   Breadcrumbs   */

.breadcrumbs {
    background: #f0f0f0;
    color: #212121;
    margin-bottom: 50px;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol a {
    color: #212121;
    transition: 0.3s;
    text-decoration: none;
  }
  
  .breadcrumbs ol a:hover {
    text-decoration: underline;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #212121;
    content: ">";
  }


/* warranty */


  
  .contact .warranty-form {
    background: #f0f0f0;
    padding: 30px;
    height: 100%;
    margin-bottom: 50px;
  }
  
  .contact .warranty-form input,
  .contact .warranty-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
  }
  
  .contact .warranty-form input:focus,
  .contact .warranty-form textarea:focus {
    border-color: #333333;
  }
  
  .contact .warranty-form input[type=text],
  .contact .warranty-form input[type=number],
  .contact .warranty-form input[type=file],
  .contact .warranty-form input[type=date] {
    padding: 10px 15px;
  }
  
  .contact .warranty-form textarea {
    padding: 12px 15px;
  }

  .hr-line{
    margin-top: 50px;
    border: 15px solid transparent;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
}
  /* Warranty section end */


/* Banner section */

.banner {
    background-image: url(./images/banner.png);
    background-position: center;
}

.banner h2{
    font-size: 60px;
    color: #5567EE;
    font-weight: 600;
}

ul, li {
    list-style: none;
    margin-top: 10px;
    font-size: large;
}

footer {
    text-align: left;
    font-size: large;
    font-weight: 500;
    color: #000000;
    margin-top: -10px;
}


/* Gradient */

.newsletter-custom {
    position: relative;
    overflow: hidden;
    padding: 180px 0;
    margin-bottom: 30px;
}

.newsletter-custom:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 99%;
    height: 80%;
    background: #f1f1fc;
    transform: skewY(0) translateY(-50%);
    transform-origin: top;
    border-radius: 20px;
    z-index: -1;
    margin: 0 auto;
    right: 0;
}

.newsletter-custom:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to right, #5567ee, #8795ff);
    transform: skewY(2deg) translateY(-50%);
    transform-origin: top;
    border-radius: 20px;
    z-index: -1;
}

.sub-text {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 20px;
    height: auto;
}

.sub-text h2{
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
}


.writer{
    font-weight: 600;
    font-size: larger;
}

.ios{
    font-size: 15px;
    font-weight: 100;
    margin-left: 20px;
}



.form {
    background: #ffffff;
    width: 100%;
    max-width: 390px;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form input {
    border: none;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    width: 70%;
}

.form button {
    border: none;
    padding: 10px;
    border-radius: 0 10px 10px 0;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    width: 30%;
}

/* Gradient section end */

.news {
    background-color: #F1F1FC;
}

.card {
    position: relative;
    color: #ffffff;
    text-align: center;
    margin-bottom: 180px;
}

.card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card .date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #5567EE;
    padding: 2px 15px;
}

.card .card-body {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 20px;
    width: 80%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.card-2 {
    text-align: center;
}

.features-section {
    box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.3);
}

/* Footer */
.list a {
    list-style: none;
    color: #000000;
    font-size: medium;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.list a:after {
    content: '';
    position: absolute;
    transform: translateY(50%);
    bottom: 50%;
    left: -10px;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background-color: #222;
}

.newsletter {
    background-color: lightgray;
}

.copyright-section, p {
    font-weight: 300;
    margin-bottom: 0;
}


/* Back to top button */

#myBtn {
    display: none; 
    position: fixed; 
    bottom: 80px; 
    right: 50px; 
    z-index: 99; 
    border: none;
    outline: none;
    background-color: #5567ee; 
    color: white;
    cursor: pointer;
    padding: 15px;
    height: 45px;
    width: 45px; 
    border-radius: 50%; 
    font-size: 15px; 
    text-align: center;
  }
  
  #myBtn:hover {
    background-color: #007bff; 
  }

  /* Owl carosel control */

  .main-slider{
    position: relative;
  }
  
  .main-slider .fa-arrow-left{
    position: absolute;
    left:3%;
    top: 40%;
    font-size: 20px;
    color: #000000;
  }
  
  .main-slider .fa-arrow-right{
    position: absolute;
    right:3%;
    top: 40%;
    font-size: 20px;
    color: #000000;
  }

  .dot {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
  }

  /* control end */

/* Media queries for max 992px */
@media (max-width: 992px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 25px;
        height: 25px;
        bottom: 10px;
    }

    .carousel-control-prev {
        left: 45%;
    }

    .carousel-control-next {
        left: 55%;
    }

    .carousel h2 {
        font-size: 34px;
    }

    .carousel-caption {
        left: 10%;
        transform: translateX(-10%);
        top: 40%;
        transform: translateY(-40%);
    }

    .carousel-para {
        font-size: 20px;
    }

    .carousel-caption .btn {
        font-size: 18px;
        color: #ffffff;
        padding: 16px 40px;
    }
}

/* Media queries for max 768px */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel h2 {
        font-size: 26px;
        margin-left: 0%;
    }

    .carousel-caption {
        left: 5%;
        transform: translateX(-5%);
        top: 30%;
        transform: translateY(-30%);
    }

    .carousel-para {
        font-size: 18px;
    }

    .carousel-caption .btn {
        padding: 14px 32px;
        font-size: 16px;
        margin-top: 0px;
        color: #ffffff;
    }

    .carousel-item img{
        height: 270px;
        object-fit: cover;
    }
}


/* Media queries for max 576px */
@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel h2 {
        font-size: 24px;
        margin-left: 0%;
    }


    .carousel-para {
        font-size: 16px;
    }

    .carousel-caption .btn {
        padding: 13px 30px;
        font-size: 14px;
        margin-top: 0px;
        color: #ffffff;
    }

    .carousel-caption {
        left: 5%;
        transform: translateX(-5%);
        top: 30%;
        transform: translateY(-30%);
    }

    h2{
        font-size: 20px;
        color: #333333;
    }

    .sub-footer{
        text-align: center;
    }

    .sub-footer .list{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .product{
        text-align: center;
    }

    .sub-text h2{
        font-size: 18px;
        line-height: 1.5;
        font-weight: 500;
        color: #ffffff;
        text-transform: capitalize;
    }

    .nav-top{
        font-size: 13px;
        
    }

    .banner h2{
        font-size: 24px;
    }

    .nav-bar{
        justify-content: center;
        text-align: center;
        align-content: center;
    }

    .mob-icon{
        display: block;
    }

    .web-icon{
        display: none;
    }

    .nav{
        display: inline;
    }
}
.shine {
	
	background-size: 150px;
	color: rgba(0, 0, 0, 0.3);
	background-clip: text;
	animation-name: shine;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
}
@-webkit-keyframes shine {
	0% {
		background-position: -1000px;
	}
	10% {
		background-position: -1000px;
	}
	20% {
		background-position: top left;
	}
	90% {
		background-position: top right;
	}
	100% {
		background-position: 1000px;
	}
}