body{
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    display: none;
}

.start {
    padding: 65px 0px;
}

.carousel-section{
    background-color: #F39E26;
    padding: 75px 0px 75px 120px;
}

#carouselIndicators {
    width: 580px;
}

.carousel-item img {
    height: 390px;
}

.start .row, .products .row, .cta .row{
    --bs-gutter-x: 0rem;
}

.welcome-container {
    padding-left: 120px;
}

.welcome-container h2, .services h2 {
    font-weight: 800;
}

.default-margin {
    margin-bottom: 20px;
}

.divider {
    padding: 15px 0px;
}

.divider hr{
    color: #F39E26;
    height: 3px;
    width: 70px;
    opacity: 0.8;
}

.services-margin {
    margin-left: 50px;
}

.services-container {
    margin: 30px 0px;
    padding: 50px;
}

.services-container .card {
    height: 330px;
    border: none;
}

.service {
    padding: 50px;
    text-align: center;
    background-color: #F2F2F2;
    border-radius: 15px;
}

.service img {
    min-width: 100px;
    height: 110px;
    transition: 0.5s all ease-in-out;
}

.service img:hover {
    transform: scale(1.4);
}

.service-margin {
    margin-top: 20px;
    margin-bottom: 50px;
}

.products{
    padding: 100px 0px;
}

.products h1 {
    font-weight: 700;
}

.product {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    padding: 20px;
    background-color: #e9ead9;
    border-radius: 20px;
}

.text {
    padding: 15px 30px;
    background-color: transparent;
    height: auto;
}

.cta {
    padding: 20px 0px 70px 0px;
}

.form-container {
    padding: 60px;
    background-color: whitesmoke;
    width: 620px;
}

.social-media-cta span {
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 2px;
    color: white;
}


/* individual product page */
.hero-banner {
    height: 100vh;
}

.hero-banner-card {
    height: inherit;
    border: none;
}

.hero-banner-text {
    padding-left: 7%;
}

.hero-banner-content{
    width: 40%;
}

.product-about {
    margin: 10% auto;
    display: flex;
    justify-content: center;
}

.product-about-content {
    width: 80%;
}

.product-content{
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 5%;
}

.product-link {
    text-decoration: none;
    color: black;
}

.product-link:hover {
    color: rgb(0, 0, 0, 0.8);
}

.product-box {
    border: none;
}

.product-box:hover {
    cursor: pointer;
}

.product-box img {
    height: auto;
    width: 150px;
    transition: 0.5s all ease-in-out;
}

.product-box h5 {
    height: 60px;
}

.product-box img:hover{
    transform: scale(1.1);
}

.product-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 210px;
    width: 210px;
    border-radius: 50%;
    border: 3px solid #d03c3c;
    margin-left: auto;
    margin-right: auto;
}

/* tablet screen  */
@media (max-width: 768px) {
    .services-container .card {
        height: 345px;
    }

    .service img {
        min-width: 125px;
        height: 125px;
    }

    .product{
        height: 340px;
    }

    .text {
        height: auto;
    }

    .monitor {
        width: 400px;
    }

    .hero-banner-content{
        width: 55%;
    }

    .product-about-content {
        width: 90%;
    }
}

/* mobile screen */
@media (max-width: 600px) {
    .carousel-section{
        padding-left: 70px;
    }

    #carouselIndicators{
        width: 350px;
    }

    .carousel-item img {
        height: 250px;
    }

    .welcome-container {
        padding-left: 70px;
    }

    .services-container .card {
        height: 365px
    }

    .form-container {
        width: 350px;
    }

    .service img {
        min-width: 125px;
        height: 125px;
    }

    .product{
        height: 300px;
    }

    .text {
        height: auto;
    }

    .hero-banner-content{
        width: 90%;
    }

    .product-box h5 {
        height: 35px;
    }
}