/* Fontawesome Css */
@import url('all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
* h1,h2,h3,h4,h5,h6,p,ul {
    padding: 0;
    margin: 0;
}
*{ 
    scrollbar-width: thin; 
    scrollbar-color: var(--scroll-thumb-color) var(--scroll-track-color);
}
*::-webkit-scrollbar {
    width: 7px;
}
*::-webkit-scrollbar-track {
    background: var(--scroll-track-color);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
}
::selection {
    color: #fff;
    background: var(--hover-color);
}
:root{
    /* Colors Root */
    --body-bg-color: #ffffff;
    --body-color: #000000;
    --paragraph-color: #5A6A6D;
    --paragraph-light-color: #ffffff;
    --white-color: #ffffff;
    --black-color:  #000000;
    --main-color-one: red;
    --main-color-two: #034B5B;
    --main-color-three: #5A6A6D;
    --hover-color:  var(--main-color-one);
    --scroll-thumb-color: var(--main-color-one);
    --scroll-track-color: var(--main-color-three);
    --sub-menu-color:  #a6a6a6;
    --section-bg-color: #F7F6ED;
    /* Fonts Root */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-lexend: "Lexend", sans-serif;
    --font-thin: 100;
    --font-extra-light: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;
    --font-black: 900;
}
body{
    background-color: var(--body-bg-color);
    color: var(--body-color);
    font-family: var(--font-lexend);
    font-weight: var(--font-regular);
    overflow-x: hidden;
}
/* ------ Tooltip Start ------ */
.tooltip > .arrow {
    background-color: transparent;
}
.tooltip > .tooltip-inner {
    text-align: center;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 5px;
    color: #fff;
    background: var(--hover-color);
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.15);
    font-family: var(--font-montserrat);
}
.bs-tooltip-top,
.bs-tooltip-right,
.bs-tooltip-left,
.bs-tooltip-bottom {
  background-color: transparent;
  opacity: 1!important;
}
.tooltip.bs-tooltip-top .arrow:before,
.tooltip.bs-tooltip-bottom .arrow:before {
    border-top-color: var(--hover-color); 
    border-right-color: transparent; 
    border-bottom-color: var(--hover-color); 
    border-left-color: transparent; 
}
.tooltip.bs-tooltip-right .arrow:before,
.tooltip.bs-tooltip-left .arrow:before{
    border-top-color: transparent; 
    border-right-color: var(--hover-color); 
    border-bottom-color: transparent; 
    border-left-color: var(--hover-color); 
}
/* ------ Tooltip End ------ */
button:focus{
    outline: none;
    box-shadow: none;
}
.btn:focus{
    outline: none;
    box-shadow: none;
}
a.btn:hover{
    background-color:  var(--black-color);
    color: var(--white-color);
}
button.btn:hover{
    background-color:  var(--black-color);
    color: var(--white-color);
}
.btn-primary{
    background-color: var(--main-color-two);
    border-radius: 0;
    border: 0;
    padding: 15px 26px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 16px;
    font-family: var(--font-lexend);
    font-weight: var(--font-bold);
    color: var(--white-color);
}
.btn-primary:before{
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--hover-color);
    z-index: -1;
    transform: translateX(-102%);
    transition: all 0.5s ease;
}
.btn-primary:after{
    content: '';
    position: absolute;
    width: 51%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: var(--hover-color);
    z-index: -1;
    transform: translateX(102%);
    transition: all 0.5s ease;
}
.btn-primary:hover:after{
    transform: translateX(0%);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.btn-primary:hover:before{
    transform: translateX(0%);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.btn-primary.active:after{
    transform: translateX(0%);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.btn-primary.active:before{
    transform: translateX(0%);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.form-group{
    margin-bottom: 0;
    position: relative;
}
.form-group::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 50px;
    background-color: var(--hover-color);
    transition: all 1s ease;
}
.form-group.border-active::before{
    width: 100%;
}
.form-group.border-focus::before{
    width: 100%;
}
input.form-control{
    width: 100%;
    height: 50px;
    border: 0;
    background-color: #f0f0f0;
    padding-left: 21px;
    border: 0;
    font-size: 18px;
    line-height: 21px;
    color: var(--black-color);
}
.input-md{
    height: 50px;
    font-size: 15px;
}
input.form-control::placeholder{
    opacity: 1;
}
input.form-control:focus{
    outline: none;
    box-shadow: none;
    background-color: #f0f0f0;
}
input.form-control.error{
    border: solid 1px var(--danger-color);
}
textarea.form-control{
    width: 100%;
    height: 150px;
    border: 0;
    background-color: #f0f0f0;
    padding-left: 21px;
    padding-top: 20px;
    border: 0;
    font-size: 18px;
    line-height: 21px;
    color: var(--black-color);
}
textarea.form-control::placeholder{
    opacity: 1;
}
textarea.form-control:focus{
    outline: none;
    box-shadow: none;
    background-color: #f0f0f0;
}
textarea.form-control.error{
    border: solid 1px var(--danger-color);
}
select.form-control{
    width: 100%;
    height: 50px;
    border: 0;
    background-color: #f0f0f0;
    padding-left: 21px;
    border: 0;
    font-size: 18px;
    line-height: 21px;
    color: var(--black-color);
}
select.form-control::placeholder{
    opacity: 1;
}
select.form-control:focus{
    outline: none;
    box-shadow: none;
    background-color: #f0f0f0;
}
select.form-control.error{
    border: solid 1px var(--danger-color);
}
p.error{
    position: absolute;
    top: 100%;
    right: 15px;
    background-color: #ddd;
    color: var(--hover-color);
    font-size: 12px;
    padding: 3px 10px;
    z-index: 1;
    border-radius: 5px;
}
h1{
    font-weight: var(--font-bold);
    font-size: 40px;
    line-height: 50px;
    color: var(--main-color-two);
}
h1 span{
    color: var(--main-color-one);
}
h2{
    font-family: var(--heading-font);
    font-size: 30px;
    line-height: 36px;
    color: var(--heading-color);
}
h3{
    font-family: var(--heading-font);
    font-size: 25px;
    line-height: 30px;
    color: var(--heading-color);
}
h4{
    font-weight: var(--font-medium);
    font-size: 18px;
    color: var(--paragraph-color);
}
p{
    font-weight: var(--font-regular);
    font-size: 16px;
    color: var(--paragraph-color);
    text-align: justify;
}



.pre-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0,0,0,0.9);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    z-index: 9999999999;
}
.pre-loader .loader{
	-webkit-perspective:700px;
	perspective: 700px;
}

.pre-loader .loader>span{
	display: inline-block;
	animation:flip 4.3s infinite linear;
	transform-origin:0 70%;
	transform-style:preserve-3d;
	-webkit-transform-style:preserve-3d;
	color: var(--hover-color);
	font-family: var(--heading-font);
	font-weight: var(--font-extra-bold);
}

@keyframes flip{
	35%{
		transform: rotateX(360deg);
	}
	100%{
		transform: rotatex(360deg);
	}
}

.pre-loader .loader>span:nth-child(2){
	animation-delay: 0.3s;
}

.pre-loader .loader>span:nth-child(3){
	animation-delay: 0.6s;
}

.pre-loader .loader>span:nth-child(4){
	animation-delay: 0.9s;
}

.pre-loader .loader>span:nth-child(6){
	animation-delay: 1.2s;
}

.pre-loader .loader>span:nth-child(7){
	animation-delay: 1.5s
}

.pre-loader .loader>span:nth-child(8){
	animation-delay: 1.8s
}
.pre-loader .loader>span:nth-child(9){
	animation-delay: 2.1s
}
.pre-loader .loader>span:nth-child(10){
	animation-delay: 2.4s
}
.pre-loader .loader>span:nth-child(11){
	animation-delay: 2.7s
}
.pre-loader .loader>span:nth-child(12){
	animation-delay: 3s
}
.pre-loader .loader>span:nth-child(13){
	animation-delay: 3.3s
}
.pre-loader .loader>span:nth-child(14){
	animation-delay: 3.6s
}
.pre-loader .loader>span:nth-child(15){
	animation-delay: 3.9s
}
.image-loading::after{
    content: "Loading...";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgb(0,0,0,0.5);
    font-size: 16px;
    
}


/* .container {
    max-width: 1410px;
} */
.title-main h5{
    text-transform: uppercase;
    color: var(--hover-color);
    font-size: 14px;
    font-weight: var(--font-extra-bold);
}
.title-main h1{
    font-weight: var(--font-semi-bold);
}
.back-line{
    position: relative;
    padding-left: 60px;
    display: inline-block;
}
.dubble-line{
    padding-right: 60px;
}
.back-line::after {
    position: absolute;
    bottom: 5px;
    left: 0;
    content: "";
    background: linear-gradient(90.79deg, #E02E2E -6.97%, #A50C3A 62.52%, rgba(36, 36, 36, 0) 126.44%);
    width: 40px;
    height: 3px;
}
.dubble-line::before {
    position: absolute;
    bottom: 5px;
    right: 0;
    content: "";
    background: linear-gradient(90.79deg, #E02E2E -6.97%, #A50C3A 62.52%, rgba(36, 36, 36, 0) 126.44%);
    width: 40px;
    height: 3px;
}
.p-unset{
    position: unset !important;
}
/*-------------- Mega Menu Start ------------------*/
.mega-menu-main {
    position: absolute;
    width: 100%;
    left: 0;
    background-color: var(--black-color);
    padding: 25px;
    top: 100%;
    border-bottom: solid 3px var(--hover-color);
    transform: translateY(30px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}
.mega-dropdown:hover .mega-menu-main{
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}
.mega-menu-list h3 {
    color: var(--hover-color);
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: var(--font-extra-bold);
    margin-bottom: 10px;
}
.mega-menu-list ul {
    display: block;
    list-style: none;
}
.mega-menu-list ul li {
    padding: 5px 0;
}
.mega-menu-list ul li a {
    color: var(--white-color);
    font-size: 15px;
    letter-spacing: 1px;
}
/*-------------- Mega Menu End ------------------*/





/*----------------- Header Start -----------------*/
header{
    width: 100%;
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    padding: 0px;
    z-index: 9;
    transition: all 0.5s ease;
    background-color: var(--white-color);
}

.bg-dark{
    background-color: var(--black-color) !important;
}
.logo-main {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 18px 0;
}
.logo{
    height: 54px;
}
.header-top-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-top-right p{
    margin-right: 30px;
}
.header-top-right p img{
    margin-right: 8px;
}
.header-top-right p a{
    color: var(--paragraph-color);
    font-family: var(--font-lexend);
    font-weight: var(--font-medium);
    font-size: 16px;
}
.main-menu{
    background-color: var(--main-color-two);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px 0 20px;
}
.main-menu ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.main-menu ul li a{
    padding: 0 30px;
    font-family: var(--font-lexend);
    font-weight: var(--font-medium);
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.4s ease;
    display: block;
}
.main-menu ul li a span{
    position: relative;
}
.main-menu ul li a span:before{
    content: '';
    position: absolute;
    bottom: -3px;
    height: 1px;
    background-color: var(--hover-color);
    width: 100%;
    transform: scaleX(0);
    transition: all 0.4s ease;
    left: 0;
    transform-origin: top left;
}
.main-menu ul li:first-child a{
    padding-left: 0;
}
.main-menu ul li a:hover{
    text-decoration: none;
    color: var(--white-color);
}
.main-menu ul li a:hover span:before{
    transform: scaleX(1);
}
.main-menu ul li.dropdown:hover a span:before{
    transform: scaleX(1);
}
.main-menu ul li.dropdown a{
    /*height: 100px;*/
    display: flex;
    align-items: center;
}
.dropdown-menu{
    transition: all 0.3s ease;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    width: 230px;
    top: 101%;
    background-color: var(--main-color-two);
    padding: 27px 0 35px;
    border-radius: 0;
    transform: translateY(30px);
}
.dropdown-menu li a{
    display: block;
    padding: 5px 30px !important;
    font-size: 15px;
    line-height: 24px;
    color: var(--sub-menu-color);
}
.dropdown-menu li a:hover{
    color: var(--main-color-one) !important;
    text-decoration: none;
}
.main-menu li.dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.dropdown-sub{
    position: relative;
}
.dropdown-sub a{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
.dropdown-menu-sub{
    position: absolute;
    left: 100%;
    top: 0;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    width: 230px;
    background-color: var(--black-color);
    padding: 27px 0 35px;
    border-radius: 0;
    transform: translateX(20px);
    list-style: none;
}
.dropdown-sub:hover > .dropdown-menu-sub{
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
}
.dropdown-sub:hover > a{
    color: var(--white-color);
}
header.header-fixed{
    position: fixed;
    padding: 0;
    transition: all 0.5s ease;
}
header.header-fixed .main-menu{
    height: 40px;
}
header.header-fixed .logo-main {
    margin: 8px 0;
}
/* header.header-fixed .logo {
    height: 55px;
} */
header.header-fixed .main-menu > ul > li.dropdown > a {
    height: 80px;
}
.info-main{
    display: flex;
    align-items: center;
}
.info-main a{
    color: var(--white-color);
    margin-right: 15px;
    position: relative;
}
#cartCount {
    position: absolute;
    top: -11px;
    right: -11px;
    background-color: transparent;
    font-size: 11px;
}
/*------- Info Menu -------*/
.info-menu-button{
    background-color: transparent;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 12px;
    padding: 0;
    display: flex;
    align-items: center;
}
.info-menu-button svg{
    fill: var(--white-color);
}
.info-menu-main{
    position: fixed;
    top: 5px;
    right: -550px;
    width: 550px;
    height: calc(100% - 10px);
    min-height: calc(100% - 10px);
    padding: 35px 65px 36px;
    background-color: var(--black-color);
    text-align: left;
    overflow: hidden;
    visibility: hidden;
    z-index: 10;
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: -3px 0 3px rgba(0,0,0,.04);
    box-shadow: -3px 0 3px rgba(0,0,0,.04);
    -webkit-transition: all .6s cubic-bezier(.77,0,.175,1);
    -o-transition: all .6s cubic-bezier(.77,0,.175,1);
    transition: all .6s cubic-bezier(.77,0,.175,1);
}
.info-menu-main.info-menu-active{
    right: 5px;
    visibility: visible;
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.info-menu-close{
    background-color: transparent;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.info-menu-close span{
    font-size: 30px;
    transition: all 0.2s ease;
}
.info-menu-content{
    overflow-y: auto;
    height: 100%;
}
.info-menu-content p{
    font-size: 14px;
    padding: 10px 0;
}
.info-menu-content ul{
    list-style: none;
    display: block;
}
.info-menu-content ul li{
    display: block;
    color: var(--white-color);
    font-size: 14px;
    padding: 7px;
}
.info-menu-content ul li a{
    display: block;
    color: var(--white-color);
}
.info-menu-content ul li svg{
    margin-right: 10px;
}
.info-menu-content iframe{
    height: 35vh;
    margin-top: 30px;
}
.info-menu-text-contact{
    z-index: -1;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(104,104,104,.4);
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: var(--font-poppins);
    position: absolute;
    top: 384px;
    display: inline-block;
    width: auto;
    font-size: 150px;
    transform: rotate(90deg) translateX(100%);
    left: -7px;
    white-space: nowrap;
    -webkit-transition: .7s .2s;
    -o-transition: .7s .2s;
    transition: .7s .2s;
}
.info-menu-main.info-menu-active .info-menu-text-contact{
    transform: rotate(90deg) translateX(0%);
}
/*----------------- Header End -----------------*/




/*----------------- Banner Start -----------------*/
.banner-slide-main{
    position: relative;
}
.slider-bg{
    position: relative;
    z-index: 1;
}
.slider-bg img{
    width: 100%;
}
/* .slider-bg::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #08161B;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.92;
} */
.slider-main{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
}
.banner-shape{
    position: absolute;
    top: 0;
    z-index: -1;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.banner-shape img{
    width: 100%;
}
.banner-image{
    text-align: center;
}
.banner-image img{
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}
.slider-content{
    padding-left: 0px;
}
.slider-content h1{
    color: var(--white-color);
    font-size: 48px;
    font-family: var(--font-lexend);
    font-weight: var(--font-bold);
    letter-spacing: 2px;
    line-height: 75px;
    transform: translateX(200px);
    transition: all 0.5s ease;
}
.slider-content p{
    font-family: var(--font-lexend);
    font-weight: var(--font-regular);
    font-size: 20px;
    transform: translateX(200px);
    transition: all 0.5s ease;
    color: var(--paragraph-light-color);
}
.slider-content a{
    transform: translateY(100px);
    transition: all 0.5s ease;
    opacity: 0;
}
.slider-content a.link{
    font-weight: var(--font-bold);
    font-size: 16px;
    text-decoration: underline;
    color: var(--main-color-one);
    margin-left: 40px;
}
.carousel-item.active .slider-content h1{
    transform: translateY(0);
}
.carousel-item.active .slider-content p{
    transform: translateY(0);
}
.carousel-item.active .slider-content a{
    transform: translateX(0);
    opacity: 1;
}
.carousel-control{
    background-color: transparent;
    border: 0;
}
.carousel-control span{
    cursor: pointer;
}
/*----------------- Banner End -----------------*/







/*----------------- About Us Start -----------------*/
.price-support-section {
    margin-top: -60px;
}
.price-support-box{
    display: flex;
    padding: 40px 50px;
    background-color: var(--white-color);
    box-shadow: 0 0 25px -12px rgba(0, 0, 0, 0.5);
}
.price-support-icon{
    margin-right: 25px;
}
.price-support-content h1{
    font-size: 36px;
    margin-bottom: 10px;
}
.support-box-main{
    background-color: var(--main-color-two);
}
.support-box-main h1, .support-box-main p{
    color: var(--white-color);
}



.about-section{
    padding: 100px 0;
}
.about-image{
    position: relative;
    z-index: 1;
}
.about-content{
    padding-right: 30px;
}
.about-content h5{
    text-transform: uppercase;
    color: var(--hover-color);
    font-size: 14px;
    font-weight: var(--font-extra-bold);
}
.about-content p{
    max-width: 588px;
    text-align: justify;
}
.about-sub-section{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-sub-section-icon{
    background: #fff;
    -webkit-box-shadow: -1px 2px 14px rgba(0, 0, 0, 0.1);
    box-shadow: -1px 2px 14px rgba(0, 0, 0, 0.1);
    width: 65px;
    height: 65px;
    padding: 12px;
    margin-right: 17px;
}
.about-sub-section-icon img{
    width: 100%;
}
/*----------------- About Us End -----------------*/




/*----------------- Services Start -----------------*/
.services-section{
    padding: 120px 0;
    background-color: #F5F5F5;
}
.services-heading{
    margin-bottom: 50px;
}
.services-heading p{
    font-size: 20px;
}
.services-box-main{
    background-color: var(--white-color);
    padding: 50px 40px;
}
.services-icon{
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.services-content h1{
    font-size: 21px;
    margin: 10px 0 15px;
    line-height: 35px;
}
.services-content p{
    text-align: justify;
    margin-bottom: 30px;
}
.services-content a{
    color: var(--main-color-one);
    text-decoration: underline;
    font-weight: var(--font-bold);
}
/*----------------- Services End -----------------*/






/*----------------- Ware House Start -----------------*/
.ware-house-section{
    background-image: url('./../images/ware-house-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ware-house-box-main{
    width: 100%;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 50px;
    border-right: solid 1px #777;
    position: relative;
    z-index: 1;
}
.ware-house-box-main::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(25px);
    opacity: 0;
    transition: all 0.5s ease;
}
.ware-house-box-main:hover::before{
    height: 100%;
    opacity: 1;
}
.ware-house-box-main.active::before{
    height: 100%;
    opacity: 1;
}
.ware-house-content h3{
    font-size: 40px;
    font-weight: var(--font-bold);
    color: var(--main-color-one);
}
.ware-house-content h1{
    color: var(--white-color);
    margin: 20px 0;
}
/*----------------- Ware House End -----------------*/





/*----------------- People Say Start -----------------*/
.people-say-section{
    padding: 120px 0;
    background-image: url('./../images/people-say-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #F5F5F5;
}
.people-say-heading p{
    font-size: 20px;
    margin-top: 20px;
}
.people-say-box-main{
    background-color: var(--white-color);
    padding: 25px;
    box-shadow: 0 0 11px -9px rgba(0, 0, 0, 0.5);
}
.people-say-box-main h3{
    font-size: 18px;
    color: var(--main-color-two);
    font-weight: var(--font-bold);
}
.people-say-box-main p{
    font-size: 20px;
    margin: 10px 0 20px;
}
.people-say-box-main h5{
    font-size: 20px;
    color: var(--main-color-one);
    font-weight: var(--font-bold);
}
/*----------------- People Say End -----------------*/





/*----------------- Contract Start -----------------*/
.contract-section{
    background-image: url('./../images/contract-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 160px 0;
}
.contract-content{
    text-align: center;
}
.contract-content h1{
    font-size: 64px;
    color: var(--white-color);
    margin-bottom: 30px;
    line-height: 100px;
}
/*----------------- Contract End -----------------*/





/*----------------- Featured Products Start -----------------*/
.feature-products-section{
    background-color: var(--section-bg-color);
    padding: 100px 0;
}
.products-slider-main {
    margin-top: 40px;
}
.product-grid-col{
    border: solid 1px #EAEAEA;
}
.product-box-main{
    background-color: var(--white-color);
    padding: 15px;
    position: relative;
    overflow: hidden;
}
.product-box-image {
    position: relative;
}
.product-box-image img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.sec-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.5s ease;
}
.product-box-content{
    position: relative;
    margin-top: 15px;
    text-align: center;
}
.product-box-content a {
    color: var(--black-color);
    font-weight: 700;
    font-size: 20px;
}
.product-box-content p{
    font-size: 18px;
}
.product-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(0,0,0,0.09);
    z-index: 1;
    text-align: right;
    transition: all 0.3s ease;
    opacity: 0;
}
.product-overlay > a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.product-overlay ul {
    list-style: none;
    display: block;
    max-width: 65px;
    margin: 15px 13px 0 auto;
    position: relative;
    z-index: 2;
    transform: translateX(110%);
    transform-origin: right;
    transition: all 0.3s ease;
    transition-delay: 0.3s;
}
.product-overlay ul li a {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    color: var(--white-color);
    margin: 7px;
    font-size: 18px;
    padding: 0;
}
.product-overlay ul li button {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    color: var(--white-color);
    margin: 7px;
    font-size: 18px;
    padding: 0;
}
.product-box-main:hover .product-overlay{
    opacity: 1;
}
.product-box-main:hover .product-overlay ul{
    transform: translateX(0%);
}
.product-box-main:hover .sec-image{
    opacity: 1;
}
.owl-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--black-color) !important;
    color: var(--white-color) !important;
    font-size: 20px !important;
}
.owl-next {
    right: 0;
}
.owl-prev{
    left: 0;
}
.owl-buttons.disabled{
    cursor: not-allowed !important;
    opacity: 0.5;
}
/*----------------- Featured Products End -----------------*/









/*----------------- Categories Start -----------------*/
.category-main {
    position: relative;
    overflow: hidden;
}
.category-image img{
    transition: all 0.5s ease;
}
.category-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    z-index: 2;
}
.category-content h1{
    font-weight: var(--font-extra-bold);
    color: var(--white-color);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    width: 200%;
    max-width: 415px;
    margin: 0 auto;
    padding: 5px;
}
.category-content h1:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--black-color);
    z-index: -1;
    transition: all 0.4s ease;
}
.category-content a{
    margin-top: 30px;
}
.category-main > a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(0, 0, 0,0.3);
}
.category-main:hover .category-image img{
    transform: scale(1.04);
}
.category-main:hover .category-content h1:before{
    width: 100%;
}
/*----------------- Categories End -----------------*/








/*----------------- Instagram Start -----------------*/
.instagram-section{
    padding: 100px 0 70px;
}
.instagram-main {
    position: relative;
    margin-bottom: 30px;
}
.instagram-image img {
    height: 320px;
    object-fit: cover;
    object-position: center;
}
.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.5s ease;
}
.instagram-overlay a {
    color: var(--hover-color);
    font-size: 30px;
}
.instagram-main:hover .instagram-overlay{
    transform: scale(1);
}
.instagram-main > a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/*----------------- Instagram End -----------------*/


/*<!------------ News Letter Section Start ------------>*/
.news-section {
  background-color: #b71234;
  color: #fff;
  text-align: center;
}
.newsletter-rdx-content .title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: var(--font-extra-bold);
}
.social-icons li{
  display: inline-block;
}
.newsletter-rdx-content {
  padding: 100px 0;
}
.block_newsletter_info input{
  background-color: transparent;
  border: solid 1px #fff;
  padding: 12px 15px;
  width: 27%;
  color: #fff;
}
.block_newsletter_info button span{
  color: rgb(183, 18, 52);
  background-color: #fff;
  border: 0;
  padding: 15.5px 31px;
}
.block_newsletter_info button{
  border: 0;
  background-color: transparent;
  margin-left: -17px;
}
.block_newsletter_info form{
  padding: 10px;
}
.social-icons {
  padding-top: 20px;
}
/*<!------------ News Letter Section End ------------>*/


/*----------------- Footer Start -----------------*/
footer{
    background-color: #F5F5F5;
    padding: 70px 0;
}
.footer-main h3{
    color: var(--main-color-two);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    font-size: 22px;
}
.footer-main ul{
    list-style: none;
    display: block;
    margin-top: 30px;
}
.footer-main ul li{
    color: var(--paragraph-color);
    padding: 5px 0;
}
.footer-main ul li b{
    text-transform: uppercase;
}
.footer-main ul li a{
    color: var(--paragraph-color);
}
.footer-main ul li a svg{
    margin-right: 10px;
    font-size: 17px;
}
.footer-main ul li a:hover{
    color: var(--hover-color);
    text-decoration: none;
}
.copy-right{
    text-align: center;
    background-color: #F5F5F5;
    padding: 30px 15px;
    border-top: solid 1px #d9d9d9;
}
.copy-right p{
    font-size: 16px;
    color: var(--main-color-two);
    font-weight: var(--font-bold);
}
/*----------------- Footer End -----------------*/







/*----------------- Sub Pages Title Start -----------------*/
.sub-pages-wrapper .col-md-4.bg-dark{
    background-color: transparent !important;
}
.content-main {
    padding: 50px 0;
}
.page-title-main{
    padding: 100px 0 80px;
    background-image: url('../images/page-title-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.page-title{
    margin-top: 80px;
}
.page-title h1{
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
}
.breadcrumbs {
    margin-top: 20px;
}
.breadcrumbs ul{
   display: flex;
   align-items: center;
   justify-content: center;
   list-style: none;
}
.breadcrumbs ul li{
    color: var(--white-color);
    padding: 0 20px;
    font-weight: var(--font-semi-bold);
}
.breadcrumbs ul li a{
    color: var(--white-color);
    font-weight: var(--font-regular);
}
.breadcrumbs ul li a:hover{
    color: var(--hover-color);
}
.breadcrumbs ul svg{
    color:var(--white-color);
}
.sub-pages-wrapper header.header-fixed .col-md-4.bg-dark {
  background-color: var(--black-color) !important;
}
/*----------------- Sub Pages Title End -----------------*/




/*----------------- Quick View Start -----------------*/
#quickView{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.8);
    z-index: 10;
}
.quick-view-poup-main{
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--white-color);
    padding: 40px;
}
.quick-view-poup-close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.quick-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.quick-product-image a {
    flex: 1 0 47%;
    width: 48%;
    display: block;
    padding: 5px;
    border: solid 1px rgb(0,0,0,0.1);
    margin: 5px;
    cursor: zoom-in;
}
.quick-product-detail h1{
    color: var(--hover-color);
    font-size: 30px;
    font-weight: var(--font-semi-bold);
}
.quick-product-detail h3{
    font-size: 18px;
}
/* -- quantity box -- */
.quantity {
    display: inline-block; 
}
.quantity .input-text.qty {
    width: 100px;
    height: 41px;
    padding: 0 5px;
    text-align: center;
    background-color: var(--white-color);
    border: 1px solid #efefef;
}
.quantity.buttons_added {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}
.quantity.buttons_added .minus, .quantity.buttons_added .plus {
    padding: 7px 10px 8px;
    height: 41px;
    background-color: var(--white-color);
    border: 1px solid #efefef;
    cursor:pointer;
    width: 35px;
}
.quantity.buttons_added .minus {
    border-right: 0; 
}
.quantity.buttons_added .plus {
    border-left: 0; 
}

.quantity.buttons_added .minus:hover, .quantity.buttons_added .plus:hover {
    background: var(--hover-color); 
    color: var(--white-color);
}
.quantity input::-webkit-outer-spin-button, .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0; 
}
.quantity.buttons_added .minus:focus, .quantity.buttons_added .plus:focus {
    outline: none; 
}
/*----------------- Quick View End -----------------*/




/*----------------- Loading start -----------------*/
.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 9999999;
    display: none;
}
.spinner {
    width: 70px;
    height: 70px;
    position: relative;
}
.spinner div {
    width: 100%;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    border: 10px solid transparent;
    border-radius: 50%;
    border-top-color: var(--hover-color);
    animation: spinnerOne 1.2s linear infinite;
}
.spinner div:nth-child(2) {
    border: 10px solid transparent;
    border-bottom-color: var(--hover-color);
    animation: spinnerTwo 1.2s linear infinite;
}
@keyframes spinnerOne {
    0%{ transform: rotate(0deg); 
        border-width: 10px;
    }
    50% {
        transform: rotate(180deg);
        border-width: 1px;
    }
    100% {
        transform: rotate(360deg);
        border-width: 10px;
    }
  
}
@keyframes spinnerTwo {
    0%{ transform: rotate(0deg); 
        border-width: 1px;
    }
    50% {
        transform: rotate(180deg);
        border-width: 10px;
    }
    100% {
        transform: rotate(360deg);
        border-width: 1px;
    }
}
/*----------------- Loading End -----------------*/






/*----------------- Left Menu Start -----------------*/
.card{
    border: 1px solid #ddd;
    border-radius: 0;
}
.card-header{
    background-color: #eee;
    padding: 10px 20px;
    transition: all 0.5s ease;
    cursor: pointer;
    border-bottom: none;
    border: 0;
    border-radius: 0 !important;
}
.card-header .title{
    font-size: 18px;
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
    transition: all 0.5s ease;
}
.card-header .accicon{
    float: right;
    font-size: 20px;  
    width: 1.2em;
    transition: all 0.5s ease;
}
/*.card-header:hover{*/
/*    background-color: var(--hover-color);*/
/*}*/
.card-header:hover .title{
    color: var(--hover-color);
}
.card-header:hover .accicon{
    color: var(--hover-color);
}
.card-header-active{
    background-color: var(--hover-color) !important;
}
.card-header-active .title{
    color: var(--white-color) !important;
}
.card-header-active .accicon{
    color: var(--hover-color);
}
.card-header .rotate-icon{
    transform: rotate(0deg);
}
.card-header:not(.collapsed) .rotate-icon{
    transform: rotate(180deg);
}
.card:hover a{
    text-decoration: none;
}
.card-body{
    border-top: 1px solid #ddd;
}
.card-body ul{
    list-style: none;
}
.card-body ul li a{
    color: var(--black-color);
    padding: 5px 10px;
    display: block;
    transition: all 0.5s ease;
}
.card-body ul li a:hover{
    color: var(--hover-color);
}
.card-body ul .left-menu-active a{
    color: var(--hover-color);
    font-weight: var(--font-semi-bold);
}
.main-card .card-body{
    padding: 0;
    border: 0;
}
.sub-card{
    border: 0;
}
.sub-card .card-header{
    background-color: #f4f4f4;
    border: 0;
}
.sub-card .card-header .title{
    font-size: 15px;
    color: #404040;
}
.sub-card .card-header .accicon{
    color: #404040;
}
.sub-card .card-body{
    background-color: #f4f4f4;
    border: 0;
    padding: 0 25px 11px;
}
.card-header.collapsed .accicon .fa-minus{
    display: none;
}
.card-header .accicon .fa-plus{
    display: none;
}
.card-header.collapsed .accicon .fa-plus{
    display: block;
}
/*----------------- Left Menu End -----------------*/







/*----------------- Product Detail Page Start -----------------*/
.product-detail-box {
    padding: 20px 50px 40px;
    background-color: #f4f4f4;
}
.product-detail-box h1 {
    font-weight: var(--font-bold);
    font-size: 30px;
    color: var(--hover-color);
}
.product-detail-box h4 {
    font-size: 20px;
    font-weight: var(--font-semi-bold);
}
.product-detial{
    margin: 30px 0;
}
.product-options {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.product-options h3 {
    font-size: 20px;
    font-weight: var(--font-semi-bold);
    margin-right: 15px;
    width: 115px;
}
.product-options select{
    border: 0;
    border-radius: 0;
}
.related-product-title{
    font-size: 35px;
    font-weight: var(--font-bold);
    margin: 50px 0 30px;
}
/*----------------- Product Detail Page End -----------------*/






/*----------------- Search Popup Start -----------------*/
.search-popup-main {
    position: fixed;
    top: 20px;
    bottom: 0;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    background-color: #fff;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 99999999;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    overflow: hidden;
}
.search-popup-main.search-active{
    visibility: visible;
    opacity: 1;
}
.search-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0 0 15px;
    margin-bottom: 20px;
}
.search-header h4{
    font-size: 25px;
    font-weight: 800;
}
.search-header button{
    width: 50px;
    height: 50px;
    padding: 0;
}
.search {
    margin-bottom: 50px;
}
.search input{
    width: 100%;
    height: 60px;
    background-color: #eee;
    border: 0;
    padding: 0 20px;
    color: #000;
    font-weight: 600;
}
.search-grid{
    position: relative;
    height: calc(100% - 200px);
    overflow-y: auto;
}
.search-grid .product-box-image img{
    height: 180px;
}
/*----------------- Search Popup End -----------------*/







/*----------------- Other Css Start -----------------*/
.cart-success{
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10;
}
.no-products-massage{
    font-weight: 600;
    font-size: 29px;
    color: red;
}
.pagination{
    justify-content: flex-end;
    margin-top: 30px;
}
.pagination a{
    color: var(--black-color);
}
.pagination a:hover{
    color: var(--hover-color);
}
.page-item.active .page-link{
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}
.security-code{
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}
.main-card{
    border: 0;
}
/*----------------- Other Css End -----------------*/







/*----------------- Responsive Start -----------------*/
@media (max-width:  1550px){
    .main-menu > ul > li > a {
        padding: 0 12px;
    }
    .ware-house-content h1{
        font-size: 30px;
    }
}



@media (max-width:  1300px){
    .main-menu{
        padding: 0;
    }
    .logo-main{
        padding: 0;
    }
    .slider-bg img {
        height: 620px;
    }
    .about-section {
        padding: 70px 0;
    }
    h1 {
        font-size: 38px;
        line-height: 45px;
    }
    .feature-products-section{
        padding: 70px 0;
    }
    .instagram-section {
        padding: 70px 0 40px;
    }
}




@media (max-width:  1199px){
    .main-menu > ul > li > a {
        padding: 0 14px;
    }
    .slider-content h1 {
        font-size: 41px;
        line-height: 50px;
    }
}




@media (min-width:  992px){
    .mobile-button{
        display: none;
    }
    .mobile-menu{
        display: none;
    }
}





@media (max-width:  991px){
    .md-hidden{
        display: none;
    }
    .desktop-button{
        display: none;
    }
    .main-menu{
        justify-content: flex-end;
    }
    .main-menu > ul{
        display: none;
    }
    .slider-main {
        top: 11%;
        align-items: center;
    }
    footer{
        padding: 50px 0 0;
    }
    .footer-main{
        margin-bottom: 50px;
    }
    .footer-main ul{
        margin-top: 10px;
    }
    .mobile-menu{
        overflow-y: auto;
        height: auto;
    }
    .mobile-menu ul{
        display: block;
    }
    .mobile-menu ul li{
        display: block;
    }
    .mobile-menu ul li a {
        color: var(--white-color);
        font-weight: var(--font-bold);
        font-size: 25px;
        padding: 7px 0;
        display: block;
        transition: all 0.5s ease;
    }
    .mobile-menu ul li a:hover{
        color: var(--hover-color);
    }
}


@media (min-width:  768px){
    .menu-open{
        display: none;
    }
    .menu-close{
        display: none;
    }
}


@media (max-width:  767px){
    .about-content{
       margin-bottom: 30px;
    }
    .info-menu-main{
       width: 97%;
       padding: 35px 35px 36px;
       overflow-y: auto;
    }
    #leftMenu{
       margin-bottom: 15px;
    }
    .breadcrumbs ul{
        flex-wrap: wrap;
    }
    .quick-product-image a {
        flex: 1 0 46%;
    }
    .product-detail-box {
        margin-top: 20px;
        padding: 20px 15px 30px;
    }
    .product-detail-box h1{
        font-size: 20px;
    }
    .product-options h3 {
        font-size: 15px;
        margin-right: 10px;
    }
    .related-product-title {
        font-size: 30px;
        margin: 38px 0 15px;
    }
    .mobile-dropdown-menu #leftMenu{
       margin-bottom: 0px;
    }
    .mobile-dropdown-menu .col-lg-3{
        padding: 0;
    }
    .mobile-dropdown-menu .card{
        background-color: transparent;
    }
    .mobile-dropdown-menu .card-header{
        background-color: transparent;
        padding: 10px 0;
    }
    .mobile-dropdown-menu .card-header .title {
        font-size: 27px;
        color: var(--white-color);
    }
    .mobile-dropdown-menu .card-header .accicon{
        color: var(--white-color);
    }
    .mobile-dropdown-menu .card-header:hover .title {
        color: var(--hover-color);
    }
    .mobile-dropdown-menu .card-header:hover .accicon {
        color: var(--hover-color);
    }
    .mobile-dropdown-menu .sub-card .card-header{
        padding-left: 20px;
    }
    .mobile-dropdown-menu .sub-card .card-header .title {
        font-size: 20px;
    }
    .mobile-dropdown-menu .sub-card .card-body {
        background-color: transparent;
        padding-left: 40px;
    }
    .mobile-dropdown-menu .sub-card .card-body ul li a{
        font-size: 16px;
    }
    .header-top-right p{
        display: none;
    }
    .header-top-right a{
        display: none;
    }
    .menu-open{
        margin-left: 10px;
    }
    .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 100% !important;
        align-items: flex-start;
        padding-top: 50px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }
    .main-menu.active{
        width: 320px;
        opacity: 1;
        visibility: visible;
    }
    .menu-close {
        position: absolute;
        top: 0;
        font-size: 25px;
    }
    .main-menu ul{
        display: block;
    }
    .main-menu ul li a{
        padding: 10px 20px;
    }
    .main-menu ul li:first-child a {
        padding-left: 20px;
    }
    .slider-bg img {
        height: 500px;
    }
    .slider-main {
        top: 50%;
    }
    .price-support-section{
        margin-top: 30px;
    }
    .price-support-section .col-md-6{
        padding: 0 15px !important;
    }
    .services-section {
        padding: 50px 0;
    }
    .services-box-main{
        margin-bottom: 15px;
    }
    .ware-house-box-main{
        padding: 15px;
        height: 400px;
    }
    .people-say-heading{
        margin-bottom: 20px;
    }
    .people-say-box-main{
        margin-bottom: 15px;
    }
    .people-say-section {
        padding: 50px 0;
    }
    .contract-content h1 {
        font-size: 32px;
        line-height: inherit;
    }
    .contract-section{
        padding: 60px 0;
    }
}




@media (max-width:  550px){
    .logo-main {
        height: 75px;
    }
    .main-menu{
        height: 75px;
    }
    .logo {
        height: 50px;
    }
    header.header-fixed .logo-main {
        height: 55px;
    }
    header.header-fixed .main-menu {
        height: 55px;
    }
    header.header-fixed .logo {
        height: 40px;
    }
    .slider-bg img {
        height: 500px;
    }
    .slider-content {
        padding-left: 0;
    }
    .slider-main{
        padding: 0 40px;
    }
    .slider-content h1 {
        font-size: 29px;
        line-height: 35px;
    }
    .page-title-main {
        padding: 80px 0 60px;
    }
    .page-title {
        margin-top: 40px;
    }
    .slider-content h1 {
        font-size: 20px;
    }
    .slider-content p {
        font-size: 13px;
    }
    .slider-bg img {
        height: 400px;
    }
    .slider-main {
        padding: 0 0px;
    }
    .price-support-box {
        display: block;
        padding: 15px;
    }
    .price-support-content h1 {
        font-size: 25px;
        margin: 10px 0;
    }
    h1 {
        font-size: 25px;
        line-height: 32px;
    }
    p{
        font-size: 14px;
    }
    .services-heading p {
        font-size: 16px;
    }
    .services-content h1 {
        font-size: 25px;
    }
    .people-say-box-main p {
        font-size: 15px;
    }
}





/* @media (max-width:  450px){
    .slider-main {
        padding: 0 25px;
    }
    .slider-content h1 {
        font-size: 23px;
        line-height: 31px;
    }
    .slider-content p{
        font-size: 17px;
        margin-bottom: 30px !important;
    }
    h1 {
        font-size: 23px;
        line-height: 31px;
    }
    p{
        font-size: 16px;
    }
    .title-main h5{
        font-size: 12px;
    }
    .instagram-image img {
        height: 240px;
    }
} */
/*----------------- Responsive End -----------------*/
