@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Robotowght@100;300;400;500;700;900&display=swap')

*{
    margin: 0;
    padding: 0;
}

*,
*:after{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:focus{
    outline: 0 !important;
    outline-offset: 0;
}
:active{
    outline: 0 !important;
    outline-offset: 0;
}
:hover{
    outline: 0 !important;
    outline-offset: 0;
}

a,
a:hover{
    text-decoration: none;
}

a:hover{
    color: var(--primary-color) !important;
}

ul{
    margin: 0;
    padding: 0;
}

li{
    margin: 0;
    padding: 0;
}

/* Variables */
:root{
    --primary-color: #000000d0;
    --secondary-color: #43121d;
    --third-color: #f98169;
    --white-color: #fff;
    --text-color: #555;
    --text-gray: #999;
    --black-color: #000;
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Quicksand', sans-serif;    
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 100%;
}

/* Logo Design */
.navbar-brand img{
    width: 80%;
}

/*--- Custom Scrollbar ---*/
/* Direct Webkit */
::-webkit-scrollbar{
    width: 0.625rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color)
}

::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}

/*--- Custom CSS ---*/
h1{
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
}

h2{
    font-size: 3rem;
    font-weight: 900;
    line-height: 3rem;
    color: var(--secondary-color);
    text-transform: capitalize;
    font-family: var(--secondary-font);
}

h4{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    text-transform: capitalize;
    font-family: var(--secondary-font);
}

h5{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-transform: capitalize;
    font-family: var(--secondary-font);
}

p{
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.75rem;
    letter-spacing: 1px;
}

.main-btn{
    display: inline-block;
    line-height: 1.5625rem;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
    padding: 0.625rem 1.875rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 0.1875rem solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.white-btn{

    line-height: 1.5625rem;
    padding: 0.625rem 1.875rem;
    background-color: var(--white-color);
    border: 0.1875rem solid var(--white-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: capitalize;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.main-btn:hover{
    background-color: transparent;
    color: var(--primary-color);
}

.white-btn:hover{
    border-color: var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

.wrapper{
    padding-top: 8.25rem;
    padding-bottom: 8.25rem;
}

.text-content{
    margin: auto;
    width: 70%;
}

.counter-section h2{
    color: var(--white-color);
}

.testimonial-section h2{
    color: var(--white-color);
}

.products-text h2{
    color: var(--white-color);
}

/* Header */
.navigation-wrap{
    position: fixed;
    height: 120px;
    width: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1000;
}
.navigation-wrap .nav-item{
    padding: 0 0.625rem;
    transition: all 200ms linear;
}

.navbar-toggler:focus{
    outline: unset;
    border: unset;
    box-shadow: none;
}

.nav-link{
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--primary-color);   
}

.navigation-wrap .main-btn{
    padding: 0.3125rem 1.4375rem;
    box-shadow: none;
    margin-left: 0.625rem;
}

/* Scrollbar Styling */
.navigation-wrap.scroll-on{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--white-color);
    box-shadow: 0 0.125rem 1.75rem 0 rgba(234, 115, 115, 0.09);
    transition: all .15s ease-in-out 0s;
}

/* Top Banner */
.top-banner{
    width: 100%;
    background:url('/Images/background/Background\ Image.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    padding:16.875rem 0 9.375rem;
    perspective:400px;                                        ASK From SIR
}
.top-banner-url{
    transform: rotateY('45deg');                                 ASK From SIR
}

/*Counter*/
.counter-section{
    background-color: var(--secondary-color);
    padding:2.5rem 0;
}

.counter-section p{
    color: var(--white-color);
    text-transform: uppercase;
}

/*About*/
.about-section{
    background: #fad6ca;
}
.about-section .card{
        border-radius: 0.625rem;
}
.about-section .card img{
    border-radius: 0.625rem;
}
.about-section .text-sec{
    padding-left: 2rem;
}

/* About: Appliances Design */
.appliances{
    padding-top: 3.25rem;
}
.appliances{
    font-size: 1rem;
    color: var(--text-color);
    line-height: 32px;
    position: relative;
}
.appliances ul li::before{
    position: relative;
    left: -0.1875rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    display: inline-block;
    padding-right:3px;
    vertical-align:middle;
    font-weight: 900;
}
.middle-banner-section{
    height: 28.125rem;
    width: 100%;
    background: url('/Images/img/banner\ air-conditioner-split.png') no-repeat center;
    background-size: cover;
    padding-top: 100px;
    text-align: center;
}
.middle-banner-section h2{
    color: var(--primary-color);
}

/* Products */
.products .card{
    border: none;
    border-radius: 0.9375rem;
    background-color: transparent;
}

.products .card img{
    object-fit: cover;
    border-radius: 0.9375rem;
}
.products .card span{
    margin-top: 28px;
    margin-bottom: -35px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    padding-bottom: 1rem;
    border-bottom: 0.0625rem solid white;
}
.products .card span del{
    color: var(--text-gray);
    margin-left: 0.5rem;
}
.products .card p{
    margin-bottom: 1px;
}
.products .card button{
    margin-bottom: 80px;
}

/* Review */
.testimonial-section{
background-color: rgb(230, 169, 141);
}
.testimonial-section .carousel-item{
    margin-top: 2rem;
    padding: 18rem 3.125rem;
    background-color: var(--white-color);
    border-radius: 0.9375rem;
    text-align: center;
}
.testimonial-section .carousel-item .carousel-caption p{
    line-height: 2.0625rem;
    padding: 0 10% 0.625rem;
    font-size: 1.3125rem;
}
.testimonial-section .carousel-caption img{
    border-radius: 50%;
    max-width: 8rem;

    padding: 0.3125rem;
}
.testimonial-section .carousel-indicators button{
    outline: none;
    border: none;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    margin-right: 1rem;
    opacity: 0.3k;
}
.testimonial-section .carousel-indicators{
 bottom: -2.8125rem;   
}
.testimonial-section .carousel-indicators button.active{
    opacity: 1;
}