﻿/********************************* Slider Top ***********************************/

/* Slideshow container */
.top-slideshow-container {
    width: 100%;
    height: 750px;
    overflow: hidden;
    position: relative;
    margin: auto;
    margin-top: 77px;
}

/* Wrapper for slides */
.top-slides-wrapper {
    display: flex;
    transition: transform 1s ease;
}

/* Individual slides */
.top-caro-slide {
    flex: 0 0 100%; /* Each slide takes full width of the container */
    width: 100%;
}

/* Image styling */
.top-slideshow-container img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}



.lSAction > a {
    z-index: 0;
}
/***************** Popular Products ************/
/* Popular Products Heading */
.popular-products-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Popular Products Carosel */

    .popular-products-heading p {
        color: black;
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        font-size: 40px;
    }



/* Mobile Version warning for popular products */

.popular-products-warning-container-mobile {
    display: none;
}



.box {
    width: 300px;
    /* height: auto; */
    border-right: 1px solid #ddd;
    box-shadow: 10px 0px 5px 1px #eaeaea;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    /* position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%); */
    margin: 25px;
    border: none;
}

.slide-img {
    height: 300px;
    width: auto;
    position: relative;
    border: none;
}

    .slide-img img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-sizing: border-box;
        border: none;
    }



.detail-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    height: auto;
    padding-bottom: 40px;
    flex-direction: column;
    text-align: center;
}

    .detail-box .packetSize {
        font-family: 'Open Sans', sans-serif;
        font-weight: bolder;
    }

.type {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

    .type a {
        color: black;
        margin: 5px 0px;
        font-size: 16px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        padding-right: 8px;
        text-decoration: none;
    }

.price {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: black;
    font-size: 20px;
    text-decoration: none;
}



.overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(51, 153, 204, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.buy-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    width: auto;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    color: #3399cc;
    padding: 8px;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
}

    .buy-btn:hover {
        color: white;
        background-color: red;
        transition: all ease 0.3s;
    }

.add-cart {
    display: none;
}

.overlay {
    visibility: hidden;
}

.slide-img:hover .overlay {
    visibility: visible;
    animation: fade 0.5s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Button Under feautered products */

.click-to-shop-top-featured-section {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

    /* Button */

    .click-to-shop-top-featured-section button {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        background: #3399cc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 550px;
    }



.click-to-shop-top-featured-section button:hover {
    color: #3399cc;
    background: white;
    border: #3399cc;
    border-style: solid;
}

/* Dot next to button */
.dot-for-shop-now {
    height: 15px;
    width: 15px;
    background-color: orange;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
}



button:hover .dot-for-shop-now {
    background-color: rgb(0, 226, 0);
}

/********************************** Product Catagory Section  */

/* Container */

.product-catagory-section {
    display: flex;
    margin-top: 40px;
}



.product-cata-mobile-section {
    display: none;
}



.product-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-product-catagory {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s ease;
    backface-visibility: hidden;
}

.middle-product-catagory {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

    .middle-product-catagory p {
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
        font-size: 30px;
        color: black;
    }




.middle-product-catagory i {
    font-size: 50px;
    color: black;
    animation: grow 1s infinite;
}

@keyframes grow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.333);
    }
}

.middle-product-catagory button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    background: #3399cc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
}

    .middle-product-catagory button:hover {
        color: #3399cc;
        background: white;
        border: #3399cc;
        border-style: solid;
    }

.product-container:hover .image-product-catagory {
    opacity: 0.3;
}

.product-container:hover .middle-product-catagory {
    opacity: 1;
}

/* Aeroshell (Keep things running smoothly) Section */

.aeroshell-section {
    display: flex;
    width: 100%;
    margin-top: 50px;

    height: auto;
}

/* Aeroshell */


/*Aeroshell Picture container */

.aeroshell-pic-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:auto ;

}

/* Aeroshell Picture */

    .aeroshell-pic-container img {
        width: 100%;
        height: 700px;
        object-fit: cover;
  
    }



    .aeroshell-pic-container p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        color: white;
        font-size: 40px;
    }

/* Aeroshell Info Container */

.aeroshell-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    margin: 47px;
}



/* 13" Screen */

@media (max-width: 1300px) and (min-width: 1200px) {
    .aeroshell-info-container {
        margin: 31px;
    }
}

/* 15" Screen */

@media (max-width: 1500px) and (min-width: 1301px) {
    .aeroshell-info-container {
        margin: 37px;
    }
}

/* 17" Screen */

@media (max-width: 1700px) and (min-width: 1501px) {
    .aeroshell-info-container {
        margin: 40px;
    }
}



/* Image of Aeroshell */

.aeroshell-info-container img {
    position: relative;
    bottom: 60px;
    height: auto;
    width: 650px;
}



/* 13' Screen */

@media (max-width: 1440px) and (min-width: 1026px) {
    .aeroshell-mobile-info-container img {
        margin-top: 35px;
    }
    
}

/* 15' Screen */

@media (max-width: 1700px) and (min-width: 1441px) {
    .aeroshell-mobile-info-container img {
        margin-top: 35px;
    }
}




.aeroshell-info-container .aeroshell-heading-wording-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .aeroshell-info-container
    .aeroshell-heading-wording-container
    .keep-things-text {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        color: black;
        margin-top: 0;
        font-size: 20px;
        text-align: center;
    }



.aeroshell-info-container p {
    position: relative;
    bottom: 40px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: black;
    text-align: center;
    margin-bottom: 30px;
}

.aeroshell-info-container .link-bold-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

    .aeroshell-info-container .link-bold-text:hover {
        color: red;
    }

.aeroshell-info-container .special-a {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

.aeroshell-info-container .bold-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    color: black;
}

/* Button Shoop Now */

.aeroshell-info-container button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    background: #3399cc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
}



.aeroshell-info-container button:hover {
    color: #3399cc;
    background: rgba(255, 255, 255, 0);
    border: #3399cc;
    border-style: solid;
}

/* Tectyl Section */



.tectyl-mobile-info-container img {
    width: 300px;
}



/* Picture Section */


.tectyl-home-logo-container img {
    width: 450px;
    margin-bottom: 20px;
    margin-top: 40px;
}



/* 13' Screen */

@media (max-width: 1440px) and (min-width: 1026px) {

    .tectyl-home-logo-container img {
        width: 300px;
        margin-top: 70px;
        margin-bottom: 0;
    }
}

.tectyl-home-logo-container .tectyl-heading-inner-container {
    color: black;
    font-size: 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.tectyl-img {
    height: auto;
    width: 200px;
}


    .tectyl-container .tectyl-text {
        font-size: 25px;
        margin: 30px;
        margin-top: 300px;
    }




/* Review Section */

/* Mobile version */

/* Slideshow container */
.mobile-review-slideshow-container {
    display: none;
    position: relative;
    background: #3399cc;
    height: auto;
    width: 300px;
    border-radius: 5px;
}



/* Slides */
.reviewMobileSlides {
    display: none;
    padding: 40px;
    text-align: center;
}

/* Next & previous buttons */
.mr-prev,
.mr-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.mr-next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .mr-prev:hover,
    .mr-next:hover {
        background-color: red;
        color: white;
    }

/* The dot/bullet/indicator container */
.mr-dot-container {
    text-align: center;
   
    background: rgba(221, 221, 221, 0);
}

/* The dots/bullets/indicators */
.mr-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    /* Add a background color to the active dot/circle */
    .mractive,
    .mr-dot:hover {
        background-color: #717171;
    }

/* Mobile review MAin Subject */

.mobile-review-subject {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    color: white;
    font-size: 18px;
}

/* Mobile Review Message */
.mobile-review-msg {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: white;
}

/* Mobile Review User */
.mobile-review-user {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    color: white;
}

/* PC version */
.review-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

    margin-top: 50px;
}

    /* Heading */

    .review-section .our-service-heading {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: black;
        font-size: 40px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
    }



/* Review Slider */

/* Slideshow container */
.review-slideshow-container {
    position: relative;
    background: #f1f1f100;
    width: 95%;
}



/* Slides */
.reviewMySlides {
    display: none;
    padding: 25px;
    text-align: center;
}

    .reviewMySlides .review-slider-container-section {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

/* Next & previous buttons */
.review-prev,
.review-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.review-next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .review-prev:hover,
    .review-next:hover {
        background-color: rgba(255, 0, 0, 0.8);
        color: white;
    }

/* The dot/bullet/indicator container */
.review-dot-container {
    text-align: center;
    padding: 20px;
    background: rgba(221, 221, 221, 0);
}

/* The dots/bullets/indicators */
.review-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    /* Add a background color to the active dot/circle */
    .review-active,
    .review-dot:hover {
        background-color: #717171;
    }

/* Info inside the Review Box */

.reviewMySlides .review-slider-container-section .review-testi-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #3399cc;
    padding: 8px;
    border-radius: 5px;
    height: 200px;
    width: 400px;
    margin: 10px;
}

    .reviewMySlides
    .review-slider-container-section
    .review-testi-container
    .review-subject-heading {
        font-family: 'Open Sans', sans-serif;
        font-weight: bolder;
        color: white;
    }

    .reviewMySlides .review-slider-container-section .review-testi-container .review-msg {
        font-family: 'Open Sans', sans-serif;
        font-weight: 500;
        font-size: 16px;
        margin-bottom: 0;
        color: white;
    }

    .reviewMySlides
    .review-slider-container-section
    .review-testi-container
    .review-user-testi {
        font-family: 'Open Sans', sans-serif;
        font-weight: bolder;
        color: white;
        margin-bottom: 0;
    }

/* Writing underneath the review */
.underneath-msg-review-text {
    margin-top: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: black;
}



.underneath-msg-review-text a {
    color: red;
    text-decoration: none;
}

/* Shop Now button */

.review-section button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    background: #3399cc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 300px;
    margin-top: 30px;
    margin-bottom: 50px;
}



.review-section button:hover {
    color: #3399cc;
    background: white;
    border: #3399cc;
    border-style: solid;
}


/* Products View */

/* View Product Modal Styling */

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 30px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* 13' Screen */

@media (max-width: 1300px) and (min-width: 1200px) {
    .modal {
        padding-top: 20px;
    }
}



/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

/* 13' Screen */

@media (max-width: 1300px) and (min-width: 1200px) {
    .modal-content {
        width: 80%;
    }
}



/* The Close Button */
.close {
    color: #3399cc;
    float: right;
    font-size: 35px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/* Inside Modal Styling */
.product-view-container {
    display: flex;
}



/* product view img container */

.product-view-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    /* Image */

    .product-view-img-container img {
        width: 300px;
        height: auto;
    }

    /* Product View Button */
.product-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    width: auto;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    color: #3399cc;
    padding: 8px;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 2px 2px 30px rgb(0 0 0 / 20%);
    text-decoration: none;
    font-size: 20px;
}

    .product-btn:hover {
        color: white;
        background-color: red;
        transition: all ease 0.3s;
    }



/* Product View Info Container */
.product-view-info-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .product-view-info-container .product-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 20px;
    }

        /* Product Distubtor Heading */
        .product-view-info-container .product-info .product-view-brand {
            font-family: 'Open Sans', sans-serif;
            font-weight: 900;
            font-size: 25px;
            margin-bottom: 10px;
            color: #3399cc;
        }



/* Product Name */

        .product-view-info-container .product-info .product-view-name {
            font-family: 'Open Sans', sans-serif;
            font-weight: 900;
            font-size: 20px;
            margin-bottom: 10px;
        }



/* Product Price */

.product-view-info-container .product-info .product-view-price-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .product-view-info-container .product-info .product-view-price-container p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        font-size: 20px;
        color: #3399cc;
    }



/* product-view-description */

        .product-view-info-container .product-info .product-view-description {
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
        }

.product-view-sku {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}
/* In Stock Value */
/* In Stock */
.product-view-info-container .product-info .product-view-instock {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: green;
    font-size: 16px;
    margin-bottom: 10px;
}



/* Out Of Stock */

        .product-view-info-container .product-info .product-view-outofstock {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            color: red;
            font-size: 16px;
            margin-bottom: 10px;
        }




.product-view-info {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

.product-view-spec {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

.product-view-unit-size {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

.product-view-packet-size {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}
/* Product Review Section */
.product-review-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* User Input Container for reviews container */

.user-review-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    /* Heading */

    .user-review-container h3 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 30px;
        color: #3399cc;
        margin-bottom: 10px;
    }



/* Star rating Container */

.star-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Star rating Styling */
.wrapper {
    position: relative;
    left: 5%;
    border: none;
    font-size: 14px;
    transform: translateX(-50%);
}


.wrapper input {
    border: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0;
}

.wrapper label {
    position: relative;
    float: right;
    color: #c8c8c8;
}

    .wrapper label:before {
        margin: 5px;
        content: "\f005";
        font-family: FontAwesome;
        display: inline-block;
        font-size: 1.5em;
        color: #ccc;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

.wrapper input:checked ~ label:before {
    color: #ffc107;
}

.wrapper label:hover ~ label:before {
    color: #ffdb70;
}

.wrapper label:hover:before {
    color: #ffc107;
}

/* User NAme for Review */

.review-user-name {
    width: 300px;
    height: 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #3399cc;
    border: 1px solid rgb(141, 141, 141);
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
}



/* Text Area For Write A Review  */

.review-textarea {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    width: 100%;
    height: 100px;
    border: 1px solid rgb(141, 141, 141);
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 10px;
}

/* Submit Button for Review */

.submit-review-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    background-color: #3399cc;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
}

    .submit-review-btn:hover {
        background-color: #fff;
        color: #3399cc;
        border: solid 2px #3399cc;
    }

/* Processed Review Section */

.processed-review-container span {
    font-size: 20px;
}

.processed-review-container .checked {
    color: #ffc107;
}

/* Display for Reviews already made container */

.review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
    padding: 50px;
    max-width: 90%;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}



/* Processed review container */

.processed-review-container {
    background-color: rgb(231, 231, 231);
    padding: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}

    /* User Name */

    .processed-review-container .user-review-name {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 20px;
        color: #3399cc;
        margin-bottom: 10px;
    }

    /* User Review */

    .processed-review-container .written-user-review {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: #000;
        margin-bottom: 10px;
    }


/* Out of Stock Product */

/* Out of stock banner */

.out-of-stock-banner-container {
    position: absolute;
    z-index: 1;
    background-color: #ff0000;
    top: 180px;
    width: 100%;
    text-align: center;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}

.out-of-stock-banner-container p {
    font-size: 20px;
}
/* Out of stock Image grey overlay */
.out-of-stock-image {
    filter: brightness(50%) grayscale(60%);
}

/* Out of stock name of product */

.type .out-of-stock-name-product {
    text-decoration: line-through;
    color: #999;
}

/* Price Out of stock */

.out-of-stock-price {
    text-decoration: line-through;
    color: #999;
}

/*  Price on Request Button*/

.request-price-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    color: #3399cc;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 2px 2px 30px rgb(0 0 0 / 20%);
    text-decoration: none;
    display: none;
    
}

.product-view-quantity-request-input {
    width: 40px;
}

.request-price-btn:hover {
    color: white;
    background-color: red;
    transition: all ease 0.3s;
}

.product-view-package-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.product-view-package-list {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    list-style: none;
}


/* Mobile Portrait */

@media (max-width: 768px) and (orientation: portrait) {
    .top-slider-section {
        max-width: 100%;
    }



    .top-slideshow-container {
        margin-top: 50px;
        height: 330px;
    }

        .top-slideshow-container img {
            height: 300px;
        }

    .popular-products-heading p {
        font-size: 25px;
    }

    .detail-box {
        padding-top: 45px;
        height: auto;
        padding-bottom: 30px;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }


    .click-to-shop-top-featured-section button {
        width: 250px;
    }

    .dot-for-shop-now {
        display: none;
    }

    .product-catagory-section {
        display: none;
    }

    .product-cata-mobile-section {
        display: flex;
        flex-direction: column;
    }


    .row-service {
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .mobile-service-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 200px;
    }


    .msc-1 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-peo.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-2 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-teo.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-3 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-grease.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-4 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-fluid.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-5 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-tectyl.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .mobile-service-container p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 13px;
        color: black;
    }


    .mobile-service-container i {
        color: black;
        font-size: 30px;
        margin-bottom: 10px;
        animation: grow 1s infinite;
    }

    @keyframes grow {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.333);
        }
    }

    .mobile-service-container button {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        background: #3399cc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100px;
        font-size: 10px;
    }


    .mobile-aeroshell-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .mobile-tectyl-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .aeroshell-pic-container {
        height: 300px;
    }

    .aeroshell-mobile-info-container {
        margin: 20px;
        margin-top: 60px;
    }

        .aeroshell-mobile-info-container img {
            bottom: 0;
            width: 250px;
            margin-top: 20px;
            margin-bottom: 30px;
        }


        .aeroshell-mobile-info-container .aeroshell-mobile-info {
            padding: 15px;
            font-size: 12px;
            text-align: center;
        }


    .mobile-tectyl-section .tectyl-mobile-info {
        padding: 15px;
        font-size: 13px;
        text-align:center;
    }

    .aeroshell-info-container
    .aeroshell-heading-wording-container
    .keep-things-text {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        color: black;
        font-size: 20px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .aeroshell-mobile-info-container button {
        height: 40px;
        width: 150px;
        margin-bottom: 40px;
    }


    .tectyl-mobile-info-container {
        display: flex;
        flex-direction: column;
        order: 1;
        margin: 20px;
        margin-top: 100px;
        height: 400px;
    }


        .tectyl-mobile-info-container img {
            width: 150px;
        }

    .tectyl-mobile-pic-container {
        display: flex;
        order: 0;
    }

    .tectyl-home-logo-container img {
        width: 200px;
        margin-top: 70px;
        margin-bottom: 0;
    }

    .tectyl-container .tectyl-text {
        position: relative;
        top: 90px;
        margin: 0;
        font-size: 15px;
    }

    .tectyl-mobile-info-container button {
        height: 40px;
        width: 150px;
    }

    .mobile-review-slideshow-container {
        display: block;
    }

    .review-section .our-service-heading {
        font-size: 20px;
        text-align: center;
    }

    .review-slideshow-container {
        display: none;
    }

    .underneath-msg-review-text {
        font-size: 14px;
        text-align: center;
    }

    .review-section button {
        height: 40px;
        width: 150px;
    }

    .modal {
        padding-top: 10px;
    }

    .modal-content {
        width: 80%;
    }

    .product-view-container {
        flex-direction: column;
    }

    .product-view-img-container img {
        width: 70px;
    }

    .product-view-info-container .product-info .product-view-brand {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-name {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-price-container p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-description {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-instock {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-outofstock {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .user-review-container h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .wrapper {
        font-size: 12px;
        left: 25%;
    }

    @-moz-document url-prefix() {
        /* CSS rules here will only apply to Firefox */
        .wrapper {
            font-size: 12px;
            left: 18%;
        }
    }

    .review-user-name {
        width: 100%;
        height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .review-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 10px;
    }

    .product-view-package-list {
        font-size: 14px;
    }

    .review-section {
        margin-top: 0;
    }

}



/* Mobile Landscape */

@media (max-width: 846px) and (orientation: landscape) {
    .top-slider-section {
        max-width: 100%;
    }

    .top-slideshow-container {
        margin-top: 50px;
        height:330px;
    }

    .detail-box {
        padding-top: 45px;
        height: auto;
        padding-bottom: 30px;
    }

        .top-slideshow-container img {
            height: 300px;
        }

    .popular-products-heading p {
        font-size: 25px;
    }



    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }


    .click-to-shop-top-featured-section button {
        width: 250px;
    }

    .dot-for-shop-now {
        display: none;
    }

    .product-catagory-section {
        display: none;
    }

    .product-cata-mobile-section {
        display: flex;
        flex-direction: column;
    }


    .row-service {
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .mobile-service-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 200px;
    }


    .msc-1 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-peo.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-2 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-teo.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-3 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-grease.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-4 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-fluid.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .msc-5 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-tectyl.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }


    .mobile-service-container p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 13px;
        color: black;
    }


    .mobile-service-container i {
        color: black;
        font-size: 30px;
        margin-bottom: 10px;
        animation: grow 1s infinite;
    }

    @keyframes grow {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.333);
        }
    }

    .mobile-service-container button {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        background: #3399cc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100px;
        font-size: 10px;
    }


    .mobile-aeroshell-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .mobile-tectyl-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .aeroshell-pic-container {
        height: 600px;
    }

    .aeroshell-mobile-info-container {
        margin: 20px;
        margin-top: 60px;
    }

        .aeroshell-mobile-info-container img {
            bottom: 0;
            width: 250px;
            margin-top: 20px;
            margin-bottom: 30px;
        }


        .aeroshell-mobile-info-container .aeroshell-mobile-info {
            padding: 15px;
            font-size: 12px;
            text-align: center;
        }


    .mobile-tectyl-section .tectyl-mobile-info {
        padding: 15px;
        font-size: 13px;
        text-align: center;
    }

    .aeroshell-info-container
    .aeroshell-heading-wording-container
    .keep-things-text {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        color: black;
        font-size: 20px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .aeroshell-mobile-info-container button {
        height: 40px;
        width: 150px;
        margin-bottom: 40px;
    }


    .tectyl-mobile-info-container {
        display: flex;
        flex-direction: column;
        order: 1;
        margin: 20px;
        margin-top: 100px;
        height: 400px;
    }


        .tectyl-mobile-info-container img {
            width: 150px;
        }

    .tectyl-mobile-pic-container {
        display: flex;
        order: 0;
    }

    .tectyl-home-logo-container img {
        width: 200px;
        margin-top: 70px;
        margin-bottom: 0;
    }

    .tectyl-container .tectyl-text {
        position: relative;
        top: 90px;
        margin: 0;
        font-size: 15px;
    }

    .tectyl-mobile-info-container button {
        height: 40px;
        width: 150px;
    }

    .mobile-review-slideshow-container {
        display: block;
    }

    .review-section .our-service-heading {
        font-size: 20px;
        text-align: center;
    }

    .review-slideshow-container {
        display: none;
    }

    .underneath-msg-review-text {
        font-size: 14px;
        text-align: center;
    }

    .review-section button {
        height: 40px;
        width: 150px;
    }

    .modal {
        padding-top: 10px;
    }

    .modal-content {
        width: 80%;
    }

    .product-view-container {
        
        flex-direction: column;
    }

    .product-view-img-container img {
        width: 70px;
    }

    .product-view-info-container .product-info .product-view-brand {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-name {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-price-container p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-description {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-instock {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-outofstock {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-view-package-list {
        font-size: 14px;
    }

    .user-review-container h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .wrapper {
        font-size: 12px;
        left: 25%;
    }

    @-moz-document url-prefix() {
        /* CSS rules here will only apply to Firefox */
        .wrapper {
            font-size: 12px;
            left: 18%;
        }
    }

    .review-user-name {
        width: 100%;
        height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .review-container {
        gap: 40px;
        padding: 10px;
    }
}



/* Tablet Portrait */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .top-slideshow-container {
        margin-top: 50px;
        height: auto;
    }


        .top-slideshow-container img {
            height: 500px;
        }


    .detail-box {
        padding-top: 35px;
        height: auto;
        padding-bottom: 30px;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px;
        line-height: 5px;
    }


    .click-to-shop-top-featured-section button {
        width: 350px;
    }

    .dot-for-shop-now {
        display: none;
    }

    .product-catagory-section {
        display: none;
    }

    .product-cata-mobile-section {
        display: flex;
        flex-direction: column;
    }

    .row-service {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-service-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 200px;
    }

    .msc-1 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-peo.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }

    .msc-2 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-teo.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }

    .msc-3 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-grease.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }

    .msc-4 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-fluid.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }

    .msc-5 {
        padding: 5px;
        background-image: url('../content/images/product catagory images/atlas-aviation-lubricants-shop-now-tectyl.png');
        background-position: center;
        background-size: cover;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.623);
    }

    .mobile-service-container p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 18px;
        color: black;
    }

    .mobile-service-container i {
        color: black;
        font-size: 30px;
        margin-bottom: 10px;
        animation: grow 1s infinite;
    }

    @keyframes grow {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.333);
        }
    }

    .mobile-service-container button {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        background: #3399cc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 120px;
        font-size: 13px;
    }

    .mobile-aeroshell-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .mobile-tectyl-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .aeroshell-pic-container {
        height: 600px;
    }

    .aeroshell-mobile-info-container {
        margin:30px;
        margin-top: 120px;
    }

        .aeroshell-mobile-info-container img {
            margin-top: 0;
            width: 350px;
        }

        .aeroshell-mobile-info-container .aeroshell-mobile-info {
            padding: 15px;
            font-size: 18px;
            text-align: center;
        }

    .mobile-tectyl-section .tectyl-mobile-info {
        padding: 15px;
        font-size: 20px;
        text-align: center;
    }

    .aeroshell-mobile-info-container button {
        height: 40px;
        width: 200px;
        margin-bottom: 40px;
    }

    .tectyl-mobile-info-container {
        display: flex;
        flex-direction: column;
        order: 1;
        margin: 30px;
        margin-top: 140px;
        height: 400px;
    }

        .tectyl-mobile-info-container img {
            width: 250px;
        }

    .tectyl-mobile-pic-container {
        display: flex;
        order: 0;
    }

    .tectyl-container .tectyl-text {
        position: relative;
        top: 90px;
        margin: 0;
        font-size: 35px;
    }

    .tectyl-mobile-info-container button {
        height: 40px;
        width: 200px;
    }

    .mobile-review-slideshow-container {
        display: block;
    }

    .review-section .our-service-heading {
        font-size: 25px;
        text-align: center;
    }

    .review-slideshow-container {
        display: none;
    }

    .underneath-msg-review-text {
        font-size: 16px;
        text-align: center;
    }

    .review-section button {
        height: 40px;
        width: 200px;
    }
    .tectyl-mobile-info-container
    .modal {
        padding-top: 10px;
    }

    .modal-content {
        width: 80%;
    }

    .product-view-container {
        flex-direction: column;
    }

    .product-view-info-container .product-info .product-view-brand {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-name {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-price-container p {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-description {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-instock {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-outofstock {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .user-review-container h3 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .wrapper {
        font-size: 14px;
        left: 10%;
    }
    @-moz-document url-prefix() {
        /* CSS rules here will only apply to Firefox */
        .wrapper {
            font-size: 12px;
            left: 15%;
        }
    }

    .review-user-name {
        width: 100%;
        height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .review-container {
        gap: 40px;
        padding: 10px;
    }
}



/* Tablet Landscape */


@media only screen and (min-width: 1024px) and (max-width: 1112px) and (orientation: landscape) {
    .mobile-aeroshell-section {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .detail-box {
        padding-top: 50px;
        height: auto;
        padding-bottom: 40px;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;

        line-height: 5px;
    }

    .mobile-tectyl-section {
        display: flex;
        flex-direction: column;
        height: auto;
        order: -1;
    }

    .tectyl-mobile-info-container {
        order: 1;
    }

    .mobile-topnav {
        
        position:inherit;
    }

    .mobile-menu-section {
        max-width: 100%;

    }

    .mobile-cart {
        left: 680px;
    }

    .mobile-topnav a.icon {
        
        top: 10px;
    }

    .middle-product-catagory p {
        font-size: 20px;
    }

    .reviewMySlides .review-slider-container-section .review-testi-container {
        height: 272px;
    }

    .aeroshell-info-container {
        margin-top : 80px;

                   }
   
}

/* Bigger Tablet Portraight */

@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .aeroshell-pic-container {
        height: 700px;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        line-height: 5px;
    }

    .detail-box {
        padding-top: 45px;
        height: auto;
        padding-bottom: 30px;
    }

    .aeroshell-mobile-info-container .aeroshell-mobile-info {
        text-align:center;
    }

    .tectyl-mobile-info-container {
        margin: 50px;
        margin-top: 110px;
    }

    .middle-product-catagory p {
        font-size: 20px;
    }
}

/* Bigger Tablet Landscape */

@media only screen and (min-width: 1112px) and (max-width: 1366px) and (orientation: landscape) {
    .footer-contact-container-split .links-footer {
        width: 100%;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        line-height: 5px;
    }

    .detail-box {
        padding-top: 45px;
        height: auto;
        padding-bottom: 30px;
    }
}

/* 13" screen*/

@media only screen and (min-width: 1200px) and (max-width: 1390px) {
    .middle-product-catagory p {
        font-size: 20px ;
    }

    .middle-product-catagory i {
        font-size: 40px;
    }

    .aeroshell-info-container img {
        width: 550px;
    }

    .tectyl-home-logo-container img {
        width: 380px;
    }
}