@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

:root{
	--red:#dc3545;
	--orange: #fd7e14;
	--green: #28a745;
	--teal: #20c997;
	--info: #17a2b8; 
	--blue: #007bff;
	--primary: #ff253a;
	--background: linear-gradient(135deg, #e70606 0%, #830101 100%);
	--background-btn: linear-gradient(135deg, #e70606 0%, #a50404 100%);
}

/* :root {
	--red: #dc3545;
	--orange: #fd7e14;
	--green: #28a745;
	--teal: #20c997;
	--info: #17a2b8;
	--blue: #007bff;
	--primary: #ff253a;
	--background: linear-gradient(135deg, #8ec50c 0%, #2bd891 100%);
	--background-btn: linear-gradient(135deg, #ff934b 0%, #ff5e62 100%);
} */

*{
	font-family: 'Nunito', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	text-transform: capitalize;
	text-decoration: none;
	border: none;
	transition: all .3s linear;
}
*::section{
	background: var(--teal);
	color: #fff;
}
html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 6.5rem;
}
html::-webkit-scrollbar{
	width: .8rem;
}
html::-webkit-scrollbar-track{
	background: transparent;
}
html::-webkit-scrollbar-thumb{
	background: var(--red);
	border-radius: 5rem;
}
.logo img{
	width: 40px;
}
body{
	background: #dde2e4;
	color: #888;
}

section{
	padding: 3rem 9%;
}
li{
	list-style: none;
}

/*-----------------header section start--------------------*/

.header-1{
	background: var(--background);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 7%;
}
.header-1 .search-box-container{
	display: flex;
	width: 50rem;
	height: 4rem;
	background: #fff;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}
.header-1 .search-box-container #search-box{
	width: 100%;
	height: 100%;
	padding: 1rem;
	font-size: 1.5rem;
	color: #333;
	font-style: italic;
	background: none;
	text-transform: none;
	border-radius: .5rem;
}
.header-1 .search-box-container label{
	width: 8rem;
	height: 100%;
	line-height: 4rem;
	text-align: center;
	background: var(--background-btn);
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
}
.header-2{
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 7%;
	height: 5rem;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
	position: relative;
}

/* js active navbar */
.header-2 .navbar.active{
	display: initial;
}

.header-2 .navbar a{
	font-size: 1.5rem;
	color: #000;
	padding: 1.5rem;
	font-weight: normal;
	margin: 0 .1rem;
	text-decoration: none;
}
.header-2 .navbar a:hover{
	color: #fff;
	background: var(--background-btn);
	transition: .2s linear;
}
.header-2 .shop-nav .active{
	background: var(--background-btn);
	color: #fff;
}
.header-2 .icon a{
	font-size: 1.5rem;
	color: #888;
	padding-left: 1rem;
	font-weight: normal;
}
.header-2 .icon a i{
	color: var(--red);
	margin-right: 0.5rem;
}
.header-2 .icon a:hover{
	color: var(--red);
}
.header-2 #menu-bar{
	font-size: 2rem;
	border-radius: .5rem;
	padding: .8rem 1.5rem;
	color: #fff;
	background: var(--background-btn);
	display: none;
}

/*-----------------header section end--------------------*/


/*-----------------Home section start--------------------*/

.box-container{
	display: grid;
	grid-template-columns: .8fr 2.5fr;
	gap: 1.5rem;
}
.box-container .left-col .title{
	padding: 1.5rem;
	font-size: 2rem;
	color: #fff;
	background: var(--background-btn);
	text-transform: capitalize;
}
.box-container .left-col .box{
	padding: 0;
	background: #fff;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}
.box-container .left-col .box a{
	padding: .5rem;
	font-size: 1.3rem;
	color: #000;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.box-container .left-col .box a p {
	margin-left: .8rem;
}

.box-container .left-col .box a span {
	margin-left: 13rem;
	color: #808080;
	background: rgba(0, 0, 0, .1);
	border-radius: .5rem;
	padding: .5rem;
}

.box-container .left-col .box a span {
	display: flex;
	justify-content: flex-end;
}

.box-container .left-col .box a:hover {
	border-left: .3rem solid var(--green);
	text-decoration: none;
	background: #eff7fa;
	border-right: .1rem solid var(--green);
}

.box-container .left-col .box a:hover span {
	background: var(--orange);
	color: #fff;
}

.box-container .left-col .box img {
	width: 30px;
}

.box-container .right-col img {
	width: 100%;
}

/* oe brand menu */
.box-container .left-col .box ul{
	overflow:hidden;
}
.sub-menu-1{
	display: none;
}
.box-container .left-col .box ul li:hover .sub-menu-1{
	display: block;
}
.fa-angle-right{
	float: right;
	margin: 0;
}
.sub-menu-2{
	display: none;
}
.hover-me:hover .sub-menu-2{
	position: absolute;
	display: block;
	margin-top: -40px;
	margin-left: 140px;
	background: var(--background-btn);
	color: white;
	width: 300px;
}
/*-----------------Home section end--------------------*/

/* --------------Product section start-------------- */

.heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.heading h2 {
	color: #333;
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 1px;
}

.heading a {
	font-size: 1.7rem;
	color: var(--blue);
	font-family: sans-serif;
}

.heading a:hover {
	color: #000;
}

.product .box-container {
	padding-top: 4rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: 2rem;
}

.product .box-container .box {
	flex: 1 1 23rem;
	text-align: center;
	padding: 1.5rem;
	background: #fff;
	border-radius: .3rem;
	position: relative;
	box-shadow: 0 2px 8px 0 rgba(0 0 0 / 7%);
}

.product .box-container .box:hover img {
	transform: scale(1.1);
	transition: .2s linear;
}

.product .box-container .box .discount {
	position: absolute;
	top: 2rem;
	left: 2rem;
	background: rgba(0, 255, 0, .1);
	color: var(--green);
	padding: .7rem 1rem;
	font-size: 1.2rem;
	z-index: 10000;
}

.product .box-container .box h3 {
	color: var(--blue);
	font-size: 1.5rem;
	margin-top: .5rem;
	margin-bottom: .5rem;
}

.product .box-container .box p {
	font-size: 1.3rem;
	color: #808080;
	font-weight: bold;
	letter-spacing: .1rem;
}

/* .product .box-container .box p span{
	margin-right: .3rem;
} */
.product .box-container .box .btn {
	font-size: 1.3rem;
	padding: .5rem 1.5rem;
	background: var(--background-btn);
	color: #fff;
	font-weight: bold;
	border-radius: 5rem;
	outline: none;
	cursor: pointer;
	border: none;
}

.product .box-container .box .corner-box {
	position: absolute;
	top: 2rem;
	right: 1.5rem;
	width: 2.5rem;
	height: 2.5rem;
	border: .1rem solid var(--green);
	z-index: 1000;
}

.product .box-container .box .corner-box span {
	position: absolute;
	height: 1rem;
	width: 1rem;
	top: .6rem;
	right: .6rem;
	background: var(--green);
	border-radius: 50%;
}

/* --------------Product section end-------------- */

.container .box-container {
	background: url('images/ripon\ autos.jpg');
	padding: 8.5rem;
}

/* --------------brands section start-------------- */

.brands .title {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 4rem;
	text-align: center;
	color: var(--red);
	text-transform: uppercase;
}

.brands .owl-carousel .item img {
	width: 150px;
	height: 100px;
}


/* --------------brands section end-------------- */

/* mobil section start */

.mobil .box-container .box {
	flex: 1 1 20rem;
}

/* mobil section end */

/* ---------footer section start--------- */

.footer {
	background: rgb(243, 241, 241);
	margin-top: 3rem;
}

.footer .wrapper {
	padding-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding-bottom: 5rem;
	border-bottom: .1rem solid rgba(0, 0, 0, .1);
}

.footer .wrapper .feature-box {
	flex: 1 1 30rem;
	display: flex;
	align-items: center;
}

.footer .wrapper .feature-box i {
	width: 7rem;
	height: 7rem;
	border: .1rem solid var(--blue);
	text-align: center;
	line-height: 7rem;
	font-size: 2rem;
	border-radius: 50%;
	color: var(--blue);
	margin-right: 1.5rem;
}

.footer .wrapper .feature-box .content h3 {
	font-size: 1.5rem;
	color: var(--blue);
	padding-bottom: .5rem;
	font-weight: bold;
}

.footer .wrapper .feature-box .content p {
	font-size: 1.3rem;
	color: #333;
	font-weight: 500;
}

.footer .box-container {
	padding-top: 5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: space-between;
}

.footer .box-container .box {
	flex-basis: 1 1 30rem;
	padding: 0 3rem;
}

.footer .box-container .box .icons {
	margin-top: 2.5rem;
}

.footer .box-container .box .icons a {
	display: block;
	padding: .4rem 0;
	font-size: 1.3rem;
	color: #808080;
}

.footer .box-container .box .icons-1 a:nth-child(2) {
	color: var(--teal);
	text-transform: none;
}

.footer .box-container .box .icons-1 a:nth-child(1) {
	color: var(--blue);
}

.footer .box-container .box .icons i {
	margin-right: .5rem;
}

.footer .box-container .box img {
	width: 13rem;
	margin-right: 1rem;
	cursor: pointer;
}

.cradit {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	background: var(--background);
	padding: 3rem 0;
	letter-spacing: .1rem;
}

.cradit span {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 1rem;
}

/* ---------footer section end--------- */


/*--------------- about section css  start----------------*/
.about{
	background: #fff;
}
.about .heading-1{
	text-align: center;
	font-size: 4rem;
	color: #333;
	text-transform: uppercase;
	padding: 7rem 0;
}
.about .heading-1 span{
	color: var(--red);
	font-size: 4rem;
	text-transform: uppercase;
}
.about .box-container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.about .box-container .left-col img{
	width: 90%;
	align-items: center;
}
.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.about .box-container .left-col{
	flex: 1 1 25rem;
}
.about .box-container .left-col .authorised{
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: var(--red);
}
.about .box-container .right-col{
	flex: 1 1 50rem;
}
.about .box-container .right-col .riponlogos img{
	display: flex;
	width: 40rem;
}
.companyprofile h2{
	font-size: 3rem;
	font-weight: bold;
}
.companyprofile p{
	font-size: 1.5rem;
	line-height: 1.7;
	padding: 1rem 0;
}

tr td{
	font-size: 1.5rem;
}
/* service section cess start */
.service{
	background-color: #ebf3fc;
}
.service .content{
	text-align: center;
	padding-bottom: 3rem;
}
.service .content .heading-1{
	font-size: 3rem;
	color: #000;
	padding: 0.7rem;
	font-weight: bold;
}
.service .content .pera{
	font-size: 1.2rem;
	color: #333;
}
.service .box-container{
	padding-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.service .box-container .box{
	flex: 1 1 30rem;
	padding: 2rem 0;
}
.service .box-container .box i{
	font-size: 4rem;
	color: var(--teal);
}
.service .box-container .box .content-1{
	padding-top: 2.5rem;
}
.service .box-container .box .content-1 h2{
	font-size: 2rem;
	color: var(--blue);
	padding-bottom: 1rem;
}
.service .box-container .box .content-1 p{
	font-size: 1.2rem;
	letter-spacing: .1rem;
	color: #808080;
	line-height: 1.7;
}

/* service section cess end */

/*--------------- about section css  end----------------*/



/* ===========================Css for blog pages start============================= */

.blog .box-container{
	display: grid;
	 grid-template-columns: 2.5fr 1.2fr;
	 gap: 2rem;
}
.blog .box-container .b-left-col .box{
	background: rgb(243, 240, 240);
	padding: .5rem;
	border-radius: .5rem;
	margin: 2rem 0;
}
.blog .box-container .b-left-col .box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: .5rem;
}
.blog .box-container .b-left-col .box .content{
	padding: 2rem;
}
.blog .box-container .b-left-col .box .content h2{
	font-size: 2rem;
	color: #000;
	font-weight: 600;
	padding-bottom: .5rem;
}
.blog .box-container .b-left-col .box .content a{
	font-size: 1.3rem;
	margin-right: 1.3rem;
	color: #808080;
}
.blog .box-container .b-left-col .box .content a i{
	margin-right: .5rem   ;
}
.blog .box-container .b-left-col .box .content p{
	padding: 1.8rem 0;
	font-size: 1.3rem;
	letter-spacing: .1rem;
	line-height: 1.7;
	text-transform: none;
}
.blog .box-container .b-left-col .box .content .btn{
	font-size: 1.3rem;
	color: var(--green);
	text-transform: uppercase;
}
.blog .box-container .b-left-col .box .content .btn i{
	margin-left: 1rem;
	margin-top: 4px;
}
.blog .box-container .b-left-col .box .content .btn:hover{
	background-color: red;
	color: white;
}
.blog .box-container .b-left-col .next-page{
	padding: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog .box-container .b-left-col .next-page .page{
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	border: .1rem solid rgba(0,0,0,.1);
	text-align: center;
	font-size: 1.5rem;
	cursor: pointer;
	color: red;
	background: rgb(248, 242, 242);
}
.blog .box-container .b-left-col .next-page .page:nth-child(3){
	width: 6rem;
}
.blog .box-container .b-left-col .next-page .page:nth-child(1){
	color: #fff;
	background: var(--background-btn);
}


.box-container .b-right-col .box{
	margin: 2rem;
}
.box-container .b-right-col .box .search-box{
	display: flex;
	width: 30rem;
	height: 4rem;
	background: #fff;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}
.box-container .b-right-col .box .search-box #b-search-box{
	width: 100%;
	height: 100%;
	padding: 1rem;
	font-size: 1.5rem;
	color: #333;
	font-style: italic;
	background: none;
	text-transform: none;
	border-radius: .5rem;
}
.box-container .b-right-col .box .search-box label{
	width: 8rem;
	height: 100%;
	line-height: 4rem;
	text-align: center;
	background: var(--background-btn);
	color: #fff;
}


.box-container .b-right-col .b-r-1{
	margin-top: 5rem;
	background: #fff;
	padding: 1rem;
	padding-bottom: 0;
	border-radius: .5rem;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}
.box-container .b-right-col .b-r-1 .title{
	font-size: 2rem;
	letter-spacing: .1rem;
}
.box-container .b-right-col .b-r-1 .content{
	padding: 1.5rem 0;
}
.box-container .b-right-col .b-r-1 .content a{
	display: block;
	padding: .8rem 0;
	font-size: 1.3rem;
	color: #808080;
	border-bottom: .1rem solid rgba(0, 0, 0, .1);
	margin: .8rem 0;
}
.box-container .b-right-col .b-r-1 .content a:last-child{
	border: none;
}
.box-container .b-right-col .b-r-1 .box .tags{
	padding: 1rem;
}
.box-container .b-right-col .b-r-1 .box .tags a{
	display: inline-block;
	text-transform: uppercase;
	padding: 1rem;
	font-size: 1.2rem;
	color: #fff;
	border-radius: .5rem;
	margin: .2rem;
	background: #ccc;
	text-decoration: none;
}
.box-container .b-right-col .b-r-1 .box .tags a:hover{
	background: #000;
}

/* ===========================Css for blog pages end============================= */


/* ===========================Css for contact pages start============================= */

.contact{
	background: #eff7fa;
}
.contact .box-container{
	display: flex;
	flex-wrap: wrap;
}
.contact .box-container .left{
	flex-basis: 40%;
}
.contact .box-container .right{
	flex-basis: 52%;
}
.contact .box-container .right .box{
	padding: 2rem;
	background: #fff;
	border-radius: .5rem;
	width: 100%;
	height: 45rem;
}
.contact .box-container .right .box iframe{
	width: 100%;
	height: 100%;
}
.contact .box-container .left h1{
	padding-bottom: 4rem;
	font-size: 2.5rem;
	color: #222;
}
.contact .box-container .left .Box a{
	font-size: 1.8rem;
	color: #444;
	font-weight: bold;
	text-decoration: none;
}
.contact .box-container .left .Box a i{
	font-size: 1.6rem;
	margin-right: 1rem;
}
.contact .box-container .left .Box p{
	font-size: 1.3rem;
	color: #808080;
	padding: 1rem 0;
}
.contact .box-container .left .Box a:hover{
	color: var(--red);
	transition: .3s linear;
}
.contact .box-container .left .box .links{
	display: flex;
	text-align: center;
}
.contact .box-container .left .box .links p{
	font-size: 1.5rem;
	color: #444;
	margin-right: 1rem;
	font-weight: 700;
}
.contact .box-container .left .box .links a i{
	font-size: 1.5rem;
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	text-align: center;
	background: #fff;
	border-radius: 50%;
	color: #808080;
	margin-right: .5rem;
}
.contact .box-container .left .box .links a i:hover{
	background: var(--background-btn);
	color: #fff;
	font-size: 1.7rem;
}

/* form section start */
#contact{
	background: #fff;
}
.contact .heading{
	font-size: 3.5rem;
	color: #333;
	font-weight: bold;
	padding: 1.5rem 0;
	text-transform: capitalize;
}
.contact form .inputBox{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contact form .inputBox input, .contact form textarea{
	padding: 1rem;
	font-size: 1.7rem;
	background: #f7f7f7;
	text-transform: none;
	margin: 1rem 0;
	border: .1rem solid rgba(0, 0, 0, .3);
	width: 49%;
}
.contact form textarea{
	height: 20rem;
	resize: none;
	width: 100%;
}
.contact form .btn{
	background: var(--background-btn);
	color: #fff;
	padding: .8rem 3rem;
	cursor: pointer;
	font-size: 1.5rem;
}

/* ===========================Css for contact pages end============================= */



/* ===========================Css for Product page start============================= */

.cat-product{
	padding-top: 5rem;
}
.box-container .left-col{
	margin-right: 2rem;
}
.box-container .left-col .box{
	padding-top: 2rem;
}
.box-container .left-col .left-col-1 .check{
	padding: 1rem;
	display: flex;
	align-items: center;
}
.box-container .left-col .left-col-1 .check i{
	font-size: 1.5rem;
	margin-right: 1rem;
	cursor: pointer;
	color: var(--red);
}
.box-container .left-col .left-col-1 .check a{
	font-size: 1.3rem;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	color: #808080;
}
.box-container .left-col .left-col-1 .check a:hover{
	color: var(--red);
	letter-spacing: 1px;
}
.box-container .left-col .col-3{
	max-width: 100%;
	margin: 0;
	padding: 0;
	margin-top: 2rem;
}
.box-container .left-col .col-3 .image{
	display: flex;
	align-items: center;
	padding: .5rem 1rem;
}
.box-container .left-col .col-3 .image img{
	width: 5rem;
	margin-right: 1rem;
}
.box-container .left-col .col-3 .image .content h3{
	font-size: 1.5rem;
	font-weight: 500;
	padding: .5rem 0;
	cursor: pointer;
	text-align: right;
}
.box-container .left-col .col-3 .image .content h3:hover{
	color: red;
}
.box-container .right-col .right-col-1 .product{
	padding: 0;
}
.box-container .right-col .right-col-1 .product .box-container .box{
	flex: 1 1 22rem;
}
.box-container .right-col .right-col-1 .product .box-container .box img{
	width: 18rem;
}
.box-container .right-col .next-page{
	padding: 3rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.box-container .right-col .next-page .page{
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	border: .1rem solid rgba(0, 0, 0, .1);
	text-align: center;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--red);
}
.box-container .right-col .next-page .page:nth-child(1){
	background: var(--background-btn);
	color: #fff;
}

/* ===========================Css for Product page end============================= */

