html {
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Be Vietnam Pro", sans-serif;
	font-weight: 300;
	color: #000000;
	font-size: 16px;
	background-color: #fdf6f6;
}

button {
	box-shadow: none;
	border: none;
}

section {
	padding: 70px 0;
}

a {
	text-decoration: none;
	color: #000;
}

.container-fluid {
	width: 98%;
}

.form-control {
	border-radius: 4px;
	padding: .7rem .75rem;
	border: 1px solid #E5E5E5
}

.form-control:focus {
	box-shadow: none;
	border: 1px solid #D12026;
}
label{
	font-weight: 400;
}
label span {
	color: #D12026;
}
ul{
	padding-left: 0;
	list-style: none;
}
ul li{
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 8px;
}
ul li:last-child{
	margin-bottom: 0;
}
.with-rounder-arrow-ul ul li{
	position: relative;
	padding-left: 30px;
}
.with-rounder-arrow-ul ul li::before{
	position: absolute;
	content: '';
	top: 3px;
	left: 0;
	background-image: url(../images/icon/right-arrow-circle.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
}
.with-bullet-point-ul li{
	position: relative;
	padding-left: 18px;
}
.with-bullet-point-ul li::before{
	position: absolute;
	content: '';
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: #D12026;
	border-radius: 50%;
}
/* ------------------------- Hexagone Shape Top Right CSS Start ------------------------- */
.hexagone-shape-top-right {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hexagone-shape-top-right::before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 400px;
	height: 100%;
	background-image: url(../images/shape/hexagon-shape-right-top.png);
	background-repeat: no-repeat;
	background-position: top right;
	opacity: 0.8;
	z-index: -1;
}

/* ------------------------- Hexagone Shape Top Right CSS End ------------------------- */

/* ------------------------- Hexagone Shape Top Right CSS Start ------------------------- */
.hexagone-shape-bottom-left {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hexagone-shape-bottom-left::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 400px;
	height: 100%;
	background-image: url(../images/shape/hexagon-shape-left-bottom.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	opacity: 0.8;
	z-index: -1;
}

/* ------------------------- Hexagone Shape Top Right CSS End ------------------------- */

/* ------------------------- Theme Button CSS Start ------------------------- */
.theme-btn {
	padding: 11px 20px;
	background-color: #D12026;
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	border-radius: 3px;
	transition: all 0.6s ease;
	display: inline-block;
}

.theme-btn:hover {
	background-color: #1f1d1d;
}
.btn-with-border{
	padding: 8px 15px;
	border: 1px solid #DEE2E7;
	font-weight: 400;
	display: inline-block;
	border-radius: 3px;
	line-height: normal;
	transition: all 0.4s ease;
	font-size: 16px;
}
.btn-with-border.text-primary-color{
	color: #FA3434;
}
.btn-with-border.text-primary-color:hover{
	background-color: #D12026;
	color: #fff;
}
.btn-with-border.text-gray-color{
	color: #6A6C6B;
	padding: 10px 20px;
	font-weight: 500;
	transition: all 0.4s ease;
}
.btn-with-border.text-gray-color:hover{
	background-color: #D12026;
	color: #fff;
}
/* ------------------------- Theme Button CSS End ------------------------- */

/* ------------------------- Theme Title CSS Start ------------------------- */
.theme-title-wrap .mini-title {
	font-size: 15px;
	color: #D12026;
	font-weight: 500;
	margin-bottom: 5px;
	display: inline-block;
	text-transform: uppercase;
}

.theme-title-wrap .main-title {
	font-size: 40px;
	font-weight: 700;
	color: #000;
	line-height: normal;
}

.theme-title-wrap .main-title span {
	color: #D12026;
}

/* ------------------------- Theme Title CSS End ------------------------- */

/* ------------------------- Header section CSS Start ------------------------- */
.header-wrp-sec {
	z-index: 9;
}

.header-wrp-sec .navbar {
	z-index: 9;
	background-color: #fff;
	margin: 30px 30px 30px;
	border-radius: 20px;
	padding: 15px 0;
}

.header-wrp-sec.without-margin-nav .navbar {
	margin: 0;
	border-radius: 0;
}

header.fixed-top-header.sticky .navbar {
	position: fixed;
	z-index: 100;
	animation: slideDown 0.6s ease-out;
	transition: none;
	background-color: #fff;
	box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
	width: 100%;
	margin: 0 !important;
	border-radius: 0;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.navbar-brand img {
	max-width: 200px;
	width: 100%;
}

.header-wrp-sec .nav-link {
	font-size: 17px;
	color: #000000;
	padding: 20px 0;
	margin: 0 20px;
	font-weight: 400;
	text-transform: capitalize;
}

.header-wrp-sec .nav-item:first-child .nav-link {
	margin-left: 0;
}

.header-wrp-sec .nav-item:last-child .nav-link {
	margin-right: 0;
}

.header-wrp-sec .nav-link:hover {
	color: #D12026;
}

.header-wrp-sec .nav-link.active {
	color: #D12026;
	font-weight: 500;
}

.dropdown-menu li a.active {
	color: #D12026;
	padding-left: 18px;
}

.navbar-nav .dropdown-menu a {
	font-weight: 400;
	font-size: 15px;
	text-transform: capitalize;
}

.right-header-icon {
	margin-right: 5px;
}

.cart-icon-wrap {
	width: 45px;
	height: 45px;
	background: #FAE9E9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-icon-wrap img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.cart-items-num {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 18px;
	height: 18px;
	background: #d12026;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-items-num p {
	font-size: 8px;
	color: #fff;
	font-weight: 500;
}

/* ------------------------- Header section CSS End ------------------------- */

/* ------------------------- Home Main Slider CSS Start ------------------------- */
.home-main-slider-items .row {
	height: 100%;
}

.home-main-slider-img-wrap {
	height: 100%;
}

.home-main-slider-img-wrap img {
	width: 100%;
	aspect-ratio: 1/0.8;
	object-fit: cover;
	border-radius: 10px;
	height: 100%;
}

.banner-caption-wrap {
	position: absolute;
	bottom: 50px;
	left: 30px;
}

.banner-caption-wrap .mini-title {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
	line-height: normal;
}

.banner-caption-wrap .main-title {
	font-size: 80px;
	color: #D12026;
	font-weight: 700;
	margin-bottom: 0;
	line-height: normal;
}

.banner-caption-wrap .desc {
	font-size: 20px;
	color: #fff;
	font-weight: 500;
}

.home-main-slider-text-wrap {
	aspect-ratio: 1 / 0.8;
	background: linear-gradient(234.87deg, #F9F9F9 1.35%, #E9A8AA 98.26%);
	border-radius: 10px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	height: 100%;
}

.home-main-slider-text-wrap .home-text-title {
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 15px;
}

.home-main-slider-text-wrap .home-text-desc {
	font-weight: 500;
}

.home-main-slider-text-wrap .home-text-medium {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 0;
}

#carouselExample .carousel-item .banner-caption-wrap,
#carouselExample .carousel-item .home-main-slider-text-wrap {
	opacity: 0;
	transform: translateX(200px);
	transition: all 0.9s ease;
	visibility: hidden;
}

#carouselExample .carousel-item.active .banner-caption-wrap,
#carouselExample .carousel-item.active .home-main-slider-text-wrap {
	opacity: 1;
	transform: translateX(0);
	visibility: visible;
}

.carousel-control-next,
.carousel-control-prev {
	position: unset;
	opacity: 1;
}

#carouselExample .owl-nav {
	position: absolute;
	bottom: 30px;
	transform: translateX(-50%) !important;
	left: 70%;
	display: flex;
}

#carouselExample .owl-nav button {
	width: 50px;
	height: 50px;
	background-color: #FAE1E1 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin: 0 3px;
}

#carouselExample .owl-nav button img {
	width: 12px;
	height: 12px;
	object-fit: contain;
}

/* ------------------------- Home Main Slider CSS End ------------------------- */

/* ------------------------- Home About Us CSS Start ------------------------- */
.aboutus-img-1-wrap img,
.aboutus-img-2-wrap img {
	aspect-ratio: 1/1.5;
	object-fit: cover;
}

.aboutus-img-1-wrap {
	position: relative;
}

.aboutus-img-1-wrap::before {
	position: absolute;
	content: '';
	bottom: 0;
	right: 0;
	width: 15px;
	height: 80px;
	background-color: #D12026;
}

.aboutus-img-2-wrap {
	position: relative;
	padding-top: 104px;
}

.aboutus-img-2-wrap::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 15px;
	height: 80px;
	background-color: #D12026;
}

.aboutus-img-1-wrap img,
.aboutus-img-2-wrap img {
	border-radius: 10px;
}

.year-exp-wrap {
	background-color: #D12026;
	border-radius: 14px 14px 14px 0;
	padding: 15px;
	max-width: 80%;
	display: flex;
	margin-top: 20px;
}

.year-exp-num {
	font-size: 35px;
	color: #fff;
	font-weight: 700;
}

.year-exp-text {
	font-size: 17px;
	font-weight: 400;
	color: #fff;
	line-height: normal;
}

/* ------------------------- Home About Us CSS End ------------------------- */

/* ------------------------- Our Products Section CSS Start ------------------------- */
.our-products-wrap-box::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
	transition: all 0.5s ease;
	border-radius: 10px;
	z-index: 1;
}

.our-products-wrap-box:hover::before {
	background-color: #D12026;
	opacity: 0.3;
}

.our-products-wrap-box,
.our-products-img,
.our-products-img img {
	border-radius: 10px;
	height: 100%;
}

.our-products-img {
	overflow: hidden;
}

.our-products-img img {
	aspect-ratio: 1/0.45;
	transform: scale(1);
	transition: all 0.5s ease;
	object-fit: cover;
}

.our-products-wrap-box:hover img {
	transform: scale(1.12);
}

.home-our-products-section .products-name {
	position: absolute;
	top: 15px;
	padding: 0 50px 0 15px;
	z-index: 3;
}

.home-our-products-section .products-name h2 {
	font-size: 22px;
	color: #fff;
	font-weight: 700;
}

.btn-round {
	position: absolute;
	top: 15px;
	right: 10px;
	width: 33px;
	height: 33px;
	border: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	z-index: 3;
}

.btn-round {
	opacity: 0;
	transition: all 0.5s ease;
}

.our-products-wrap-box:hover .btn-round {
	opacity: 1;
}

.btn-round img {
	width: 15px;
	filter: brightness(0) invert(1);
}

.our-products-wrap-box:hover .btn-round img {
	transform: scale(1);
}

/* ------------------------- Our Products Section CSS End ------------------------- */

/* ------------------------- Our Client Section CSS Start ------------------------- */
.our-client-slider-img-wrap {
	background-color: #fff;
	border-radius: 10px;
	padding: 15px;
	border: 1px solid #E8E8E8;
}

.our-client-slider-img-wrap img {
	aspect-ratio: 1/0.4;
	object-fit: contain;
}

/* ------------------------- Our Client Section CSS End ------------------------- */

/* ------------------------- Our Blogs Section CSS End ------------------------- */
.blogs-wrap-box {
	background-color: #fff;
	box-shadow: 0px 40.88px 70.45px -4.35px #0000000D;
	padding: 10px;
	border-radius: 10px;
}

.blogs-wrap-box img {
	border-radius: 10px;
}

.blog-date img {
	width: 18px;
	border-radius: 0;
}

.blog-date p {
	color: #696969;
	font-size: 16px;
	font-weight: 400;
}

.blog-title h2 {
	line-height: normal;
	font-size: 17px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.blog-title a {
	font-weight: 500;
	line-height: normal;
}

.btn-with-border-bottom {
	color: #D12026;
	border-bottom: 1px solid #d12026;
	font-size: 16px;
	font-weight: 500;
}

.blogs-detail-section .blogs-img-wrap img{
	border-radius: 18px;
}
.blogs-detail-section .blog-title h2{
	font-size: 25px;
	font-weight: 500;
}
.blog-detail-desc a{
	color: #D12026;
	font-weight: 500;
}
.blog-detail-desc h1, .blog-detail-desc h2, .blog-detail-desc h3, .blog-detail-desc h4, .blog-detail-desc h5, .blog-detail-desc h6{
	font-size: 20px;
	font-weight: 600;
	margin: 15px 0 10px;
}
.blog-detail-desc ul li strong,
.blog-detail-desc ul li span{
	color: #D12026;
	font-weight: 500;
}
.blog-detail-desc ul li p{
	margin-bottom: 0;
}

.blog-detail-desc b, .blog-detail-desc strong{
	font-weight: 600;
	margin-bottom: 10px;
}
/* ------------------------- Our Blogs Section CSS End ------------------------- */

/* ------------------------- Inquiry And Testimonials Section CSS Start ------------------------- */
.testimonials-items {
	margin-top: 20px;
}

.testimonials-wrap-box {
	position: relative;
	background-color: #D12026;
	padding: 40px 30px;
	border-radius: 10px;
	z-index: 1;
}

.testimonials-wrap-box::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/shape/testimonials-bg-shape.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.testimonials-desc {
	position: relative;
	display: inline;
	padding-left: 45px;
	/* padding-top: 30px; */
	margin-top: 10px;
}

.testimonials-desc::before {
	position: absolute;
	content: '';
	top: -24px;
	left: 0px;
	width: 59px;
	height: 46px;
	background-image: url(../images/icon/left-quaote.png);
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.3;
}

.testimonials-wrap-box p,
.testimonials-designation,
.testimonials-name {
	color: #fff;
}

.testimonials-name {
	font-size: 18px;
	line-height: normal;
	font-weight: 500;
}

.testimonials-designation {
	font-size: 16px;
}

.testimonials-logo {
	width: 55px;
	height: 55px;
	background: #fff;
	border-radius: 50%;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.testimonials-logo img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	padding: 2px;
}

.testimonials-wrap-box .owl-nav {
	position: absolute;
	bottom: -115px;
	right: 0;
	display: flex;
}

.testimonials-wrap-box .owl-nav button {
	width: 50px;
	height: 50px;
	background-color: #000000 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin: 0 3px;
}

.testimonials-wrap-box .owl-nav button img {
	width: 12px;
	height: 12px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.testimonials-wrap-box .owl-next.disabled,
.testimonials-wrap-box .owl-prev.disabled {
	opacity: 0.4;
}

/* ------------------------- Inquiry And Testimonials Section CSS End ------------------------- */

/* ------------------------- Footer Section CSS Start ------------------------- */
.footer-section {
	position: relative;
	background-image: url(../images/about/footer-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}
.footer-section::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(90deg, #282828 0%, #000000 100%); */
	background-color: #000;
	opacity: 0.9;
	z-index: -1;
}
.footer-section::after{
	position: absolute;
	content: '';
	bottom: 50px;
	right: 20px;
	width: 250px;
	height: 250px;
	background-image: url(../images/shape/footer-bg-shape.png);
	background-size: contain;
	background-position: right;
	filter: brightness(0) invert(1);
	opacity: 0.1;
	z-index: 9;
	-webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
	-webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.main-footer {
	padding: 70px 0;
}

.f-border-right {
	position: relative;
	border-right: 1px solid #fff;
}

.f-border-right {
	position: relative;
}

.f-border-right::before {
	position: absolute;
	content: '';
	top: 0;
	right: -4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #fff;
}

.f-border-right::after {
	position: absolute;
	content: '';
	bottom: 0;
	right: -4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #fff;
}

.f-title {
	font-size: 22px;
	font-weight: 500px;
	color: #fff;
	margin-bottom: 20px;
}

.f-contact-wrap {
	position: relative;
	/* background: linear-gradient(90deg, #2D2D2D 0%, #000000 100%); */
	background-color: #000;
	padding: 30px;
	border-radius: 30px;
	max-width: 95%;
	width: 100%;
}

.f-com-title {
	font-size: 17px;
	font-weight: 600;
	color: #fff;
}

.footer-widget ul {
	padding-left: 0;
	list-style: none;
}

.footer-widget ul li {
	margin-bottom: 10px;
}

.footer-widget ul li p {
	margin-bottom: 0;
}

.footer-widget ul li p,
.footer-widget ul li a,
.f-certificate-text {
	color: #fff;
	font-size: 16px;
	transition: all 0.5s ease;
}

.footer-widget ul li p:hover,
.footer-widget ul li a:hover {
	color: #D12026;
}

.f-contact-wrap ul li img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 8px;
}

.bottom-footer {
	border-top: 1px solid #878787;
	padding: 20px 0;
}

.bottom-footer p {
	font-size: 15px;
}

.bottom-footer img {
	width: 18px;
	filter: brightness(0) invert(0.9);
	float: right;
	transition: all 0.4s ease;
}

.bottom-footer img:hover {
	filter: none;
}

/* ------------------------- Footer Section CSS End ------------------------- */
/* ------------------------- Inner Banner Section CSS Start ------------------------- */
.inner-banner-section {
	position: relative;
	padding: 70px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.inner-banner-section::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: -1;
}

.inner-banner-caption .page-title {
	color: #fff;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 700;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a{
	color: #fff;
	font-weight: 400;
	text-transform: capitalize;
}
.breadcrumb-item+.breadcrumb-item::before{
	content: '';
	color: #fff;
	opacity: 1;
	margin-top: 6px;
	margin-right: 5px;
	background-image: url(../images/icon/right-arrow-breadcrumbs.png);
	filter: brightness(0) invert(1);
	width: 13px;
	height: 13px;
	background-size: contain;
}
/* ------------------------- Inner Banner Section CSS End ------------------------- */

/* ------------------- Our Journey CSS Start ------------------- */
.transparent-title{
	position: absolute;
	top: -30px;
	left: 10px;
	color: #000;
    font-size: 210px;
	font-weight: 700;
    -webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #D12026;
	opacity: 0.2;
}
.our-journey-wrapper{
	padding-top: 100px;
}
.timeline-carousel{
	position: relative;
	margin-top: 80px;
}
.timeline-carousel::before{
	position: absolute;
	content: '';
	top: 48px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #D1202633;
}
.timeline-item{
	text-align: center;
	position: relative;
}
.timeline-item::before{
	position: absolute;
	content: '';
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #D12026;
}
.timeline-item::after{
	position: absolute;
    content: '';
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #D12026;
}
/* .history-text-wrp{
	background: aliceblue;
} */
.timeline-item h3{
	font-size: 20px;
	color: #D12026;
	font-weight: 700;
}
.timeline-item .between-space{
	height: 40px;
}
.history-desc{
	margin-bottom: 15px;
}
.history-desc:last-child{
	margin-bottom: 0;
}
.history-desc p{
	margin-bottom: 10px;
}
.history-desc p strong{
	font-weight: 600;
	font-size: 17px;
	color: #000;
}
.our-journey-wrapper .owl-dots{
	text-align: center;
	margin-top: 20px;
}
.our-journey-wrapper .owl-dots button{
	margin: 0 4px;
}
.our-journey-wrapper .owl-dots button span{
	display: block;
	width: 10px;
	height: 10px;
	background-color: #D1202633;
	border-radius: 50%;
}
.our-journey-wrapper .owl-dots button.active span{
	width: 20px;
	background-color: #D12026;
	border-radius: 10px;
}
.iso-certificate-img-wrap img{
	border-radius: 10px;
}
/* ------------------- Our Journey CSS End ------------------- */

/* ------------------- Research & Development Section CSS Start ------------------- */
.desc p span{
	color: #D12026;
	font-weight: 500;
}
.research-and-development-img-wrap img{
	border-radius: 10px;
}
/* ------------------- Research & Development Section CSS End ------------------- */

/* ------------------- Quality Control & Testing Section CSS Start ------------------- */
.qc-testing-points ul{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 50px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.qc-testing-points ul li{
	border-bottom: 1px solid #D2D2D2;
	padding: 12px 0 12px 30px;
	margin-bottom: 0;
}
.qc-testing-points ul li:first-child{
	border-top: 1px solid #D2D2D2;
}
.qc-testing-points ul li:nth-child(2){
	border-top: 1px solid #D2D2D2;
}
.qc-testing-points ul li::before{
	top: 15px;
}
/* ------------------- Quality Control & Testing Section CSS End ------------------- */

/* ------------------- Events Section CSS Start ------------------- */
.nav-pills .nav-item{
	margin: 5px;
}
.nav-pills .nav-link{
	background-color: #FAE9E9;
	color: #000;
	font-weight: 500;
	border-radius: 5px;
	font-size: 18px;
}
.nav-pills .nav-link.active{
	background-color: #D12026;
	color: #fff;
}
.upcoming-events-wrap-box{
	box-shadow: 0px 8px 24px 0px #959DA533;
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
}
.evensts-img-wrap img{
	border-radius: 10px;
	transform: scale(0.98);
	transition: all 0.4s ease;
}
.upcoming-events-wrap-box:hover .evensts-img-wrap img{
	transform: scale(1);
}
.events-name{
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}
.events-details ul li{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.events-details ul li img{
	width: 18px;
	height: 18px;
	object-fit: contain;
	margin-right: 5px;
}
.schedule-a-meeting-wrapper{
	padding-top: 50px;
}
.past-events-wrap-box{
	box-shadow: 0px 8px 24px 0px #959DA533;
	padding: 10px 10px 10px;
	border-radius: 10px 10px 0 0;
	background-color: #fff;
}
.pas-evensts-img-wrap img{
	border-radius: 15px;
	transform: scale(0.98);
	transition: all 0.4s ease;
}
.past-events-wrap-box:hover .pas-evensts-img-wrap img{
	transform: scale(1);
} 
.pas-evensts-title{
	background-color: #CACACA;
	padding: 10px;
}
.pas-evensts-title h2{
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}
/* ------------------- Events Section CSS End ------------------- */

/* ------------------- Certificates Section CSS Start ------------------- */
.certificate-wrap-box{
	border: 1px solid #E0E0E0;
	box-shadow: 0px 8px 24px 0px #959DA533;
	padding: 10px;
	border-radius: 8px;
}
.certificate-img{
	display: block;
	overflow: hidden;
}
.certificate-wrap-box img{
	aspect-ratio: 1/1.4;
	object-fit: cover;
	transform: scale(0.98);
	transition: all 0.3s ease;
}
.certificate-wrap-box:hover img{
	transform: scale(1);
}
/* ------------------- Certificates Section CSS End ------------------- */

/* ------------------- Contact US Section CSS Start ------------------- */
.contact-info-wrap{
	background-color: #D12026;
	padding: 30px;
	border-radius: 10px;
	height: 100%;
}
.contact-info-wrap h2,
.c-inquiry-form-wrapper h2{
	font-size: 25px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
}
.contact-info-wrap p,
.contact-info-wrap a{
	color: #fff;
}
.c-contact-info-icon{
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	margin-top: 3px;
}
.contact-info-text p{
	margin-bottom: 5px;
}
.contact-info-text a{
	position: relative;
	display: block;
}
.c-social-wrap ul{
	display: flex;
	flex-wrap: wrap;
}
.c-social-wrap ul li{
	margin-bottom: 0;
	margin-right: 5px;
}
.c-social-wrap ul li:last-child{
	margin-right: 0;
}
.c-social-wrap ul li a{
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.c-social-wrap ul li a img{
	width: 18px;
	height: 18px;
	object-fit: contain;
}
.contact-info-items {
	margin-bottom: 15px;
}
.c-inquiry-form-wrapper h2{
	color: #000;
}
.c-inquiry-form-wrapper{
	box-shadow: 0px 0px 60px 30px #00000008;
	background-color: #fff;
	padding: 50px;
	border-radius: 0 10px 10px 0;
	height: 100%;
}
.c-inquiry-form-wrapper .form-control{
	border-top: 0;
	border-bottom: 1px solid #8D8D8D;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
}
.c-inquiry-form-wrapper .form-control:focus{
	border-bottom: 1px solid #D12026;
}
.c-inquiry-form-wrapper .form-control::-webkit-input-placeholder {
  color: #cfcfcf;
  opacity: 1;
  font-weight: 300;
}

.c-inquiry-form-wrapper .form-control::-moz-placeholder {
  color: #cfcfcf;
  opacity: 1;
  font-weight: 300;
}

.c-inquiry-form-wrapper .form-control:-ms-input-placeholder {
  color: #cfcfcf;
  opacity: 1;
  font-weight: 300;
}

.c-inquiry-form-wrapper .form-control::-ms-input-placeholder {
  color: #cfcfcf;
  opacity: 1;
  font-weight: 300;
}
.map-wrapper iframe{
	border-radius: 18px;
}
/* ------------------- Contact US Section CSS End ------------------- */

/* ------------------- Career Section CSS Start ------------------- */
.currect-openings-wrap-box{
	border: 1px solid #FFD3D4;
	background-color: #FFF4F5;
	padding: 30px;
	border-radius: 20px;
}
.currect-openings-wrap-box h2{
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}
.current-openigs-wrapper ul{
	margin: 15px 0;
}
.current-openigs-wrapper ul li{
	display: flex;
	align-items: start;
	margin-right: 20px;
}
.current-openigs-wrapper ul li img{
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 5px;
	margin-top: 2px;
}
/* ------------------- Career Section CSS End ------------------- */

/* ------------------- Enquiry Form Section CSS Start ------------------- */
.enquiry-form-wrapper{
	background: #FFFFFF;
	box-shadow: 0px 4px 10px 0px #0000001A;
	padding: 50px;
	border-radius: 20px;
}
/* ------------------- Enquiry Form Section CSS End ------------------- */

/* ------------------- Awards Section CSS Start ------------------- */
.awards-wrap-box{
	border: 1px solid #cecdcd;
	padding: 10px;
	overflow: hidden;
}
.awards-wrap-box img{
	aspect-ratio: 1/1.1;
	object-fit: contain;
	transition: all 0.3s ease-in-out;
	    transform: scale(0.97);
}
.awards-wrap-box:hover img{
	transform: scale(1);
}
/* ------------------- Awards Section CSS End ------------------- */

/* ------------------- Gallery Section CSS Start ------------------- */
.gallery-wrap-box,
.video-wrap-box{
	border: 1px solid #cecdcd;
	padding: 10px;
	overflow: hidden;
}
.gallery-wrap-box img{
	aspect-ratio: 1/1;
	object-fit: contain;
	transition: all 0.3s ease-in-out;
	transform: scale(0.97);
}
.gallery-img{
	position: relative;
	display: block;
}
.gallery-wrap-box .gallery-img::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: all 0.4s ease;
	opacity: 0;
	z-index: 3;
}
.gallery-wrap-box .gallery-img::after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) !important;
	width: 100%;
	height: 100%;
	background-image: url(../images/icon/full-screen.png);
	background-position: center;
	background-size: contain;
	filter: brightness(0) invert(1);
	width: 35px;
	height: 35px;
	margin-top: 20px;
	transition: all 0.4s ease;
	opacity: 0;
	z-index: 3;
}
.gallery-wrap-box .gallery-img:hover::after{
	margin-top: 0;
	opacity: 1;
}
.gallery-wrap-box .gallery-img:hover::before{
	opacity: 0.6;
}
.gallery-wrap-box:hover img{
	transform: scale(1);
}
.video-wrap-box .video-youtube-icon{
	width: 70px;
	transition: all 0.3s ease-in-out;
}
/* ------------------- Gallery Section CSS End ------------------- */

/* ------------------- CSR Section CSS End ------------------- */
.csr-wrap-box{
	border: 1px solid #cecdcd;
	padding: 10px;
	overflow: hidden;
}
.csr-img{
	overflow: hidden;
    display: block;
}
.csr-wrap-box img{
	aspect-ratio: 1/0.75;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
	transform: scale(1);
}
.csr-wrap-box:hover img{
	transform: scale(1.1);
}
.csr-wrap-box .gallery-img::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: all 0.4s ease;
	opacity: 0;
	z-index: 3;
}
.csr-wrap-box .gallery-img::after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) !important;
	width: 100%;
	height: 100%;
	background-image: url(../images/icon/full-screen.png);
	background-position: center;
	background-size: contain;
	filter: brightness(0) invert(1);
	width: 35px;
	height: 35px;
	margin-top: 20px;
	transition: all 0.4s ease;
	opacity: 0;
	z-index: 3;
}
/* ------------------- CSR Section CSS End ------------------- */

/* ------------------- Product Category List Section CSS Start ------------------- */
.products-list-wrap-box{
	z-index: 9;
}
.products-list-wrap-box::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.83%, #000000 100%);
	border-radius: 10px;
	transition: all 0.4s ease;
}
.products-list-wrap-box:hover::before{
	opacity: 0;
}
.products-list-wrap-box::after{
	opacity: 0;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #d12026;
	border-radius: 10px;
	transition: all 0.4s ease;
}
.products-list-wrap-box:hover::after{
	opacity: 0.6;
}
.products-list-img img{
	aspect-ratio: 1/0.7;
	object-fit: cover;
	border-radius: 10px;
}
.products-sr-no{
	position: absolute;
	top: 15px;
	left: 15px;
	opacity: 0;
	margin-top: -20px;
	transition: all 0.5s ease;
	z-index: 3;
}
.products-list-wrap-box .products-sr-no h2{
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}
.products-list-wrap-box:hover .products-sr-no{
	opacity: 1;
	margin-top: 0;
}
.products-list-wrap-box .products-name{
	position: absolute;
	bottom: 20px;
	left: 15px;
	margin-bottom: -10px;
	transition: all 0.4s ease;
	z-index: 3;
}
.products-list-wrap-box .products-name h2{
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}
.products-list-wrap-box:hover .products-name{
	margin-bottom: 0;
}
.products-subcategory-wrap-box{
	position: relative;
	box-shadow: 0px 8px 24px 0px #959DA533;
	z-index: 1;
	border-radius: 10px;
}
.products-subcategory-wrap-box::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	transition: all 0.4s ease;
	border-radius: 10px;
}
.products-subcategory-wrap-box:hover::before{
	opacity: 0.5;
}
.products-subcategory-wrap-box img{
	aspect-ratio: 1/0.85;
	object-fit: contain;
}
.products-subcategory-wrap-box .hover-detail{
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%) !important;
	opacity: 0;
	transition: all 0.4s ease;
}
.products-subcategory-wrap-box:hover .hover-detail{
	opacity: 1;
}
.products-subcategory-wrap-box .hover-detail h2{
	color: #fff;
	font-weight: 600;
	font-size: 25px;
}
.productslist-wrap-box{
	box-shadow: 0px 8px 24px 0px #959DA533;
	border-radius: 10px;
	height: 100%;
	z-index: 1;
	transition: all 0.4s ease;
}
.productslist-wrap-box::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	transition: all 0.4s ease;
	border-radius: 10px;
}
.productslist-wrap-box:hover::before{
	opacity: 0.7;
}
.productslist-wrap-box .products-name h2{
	font-size: 18px;
	font-weight: 400;
	overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}
.productslist-wrap-box > .products-name h2{
	text-align: center;
}
.productslist-wrap-box:hover > .products-name{
	opacity: 0;
}
.productslist-wrap-box img{
	aspect-ratio: 1 / 0.85;
	object-fit: contain;
}
.productslist-wrap-box .hover-text{
	position: absolute;
	top: 25px;
	left: 0;
	padding: 0 20px;
	opacity: 0;
	transition: all 0.4s ease;
	width: 100%;
}
.productslist-wrap-box:hover .hover-text{
	opacity: 1;
	transition: all 0.4s ease;
}
.productslist-wrap-box .hover-text .products-name h2{
	opacity: 0;
	transform: translateX(130px);
	transition: all 0.5s ease;
	color: #fff;
} 
.productslist-wrap-box:hover .hover-text .products-name h2{
	transform: translateX(0);
	opacity: 1;
}
.productslist-wrap-box .productslist-specification ul li{
	color: #fff;
}

/* ------------------- Product Category List Section CSS End ------------------- */

/* ------------------- Product Detail Section CSS End ------------------- */
.product-thumble-slider{
	max-width: 96%;
	width: 100%;
	margin: auto;
}
.products-img-wrap{
	background-color: #F1F1F1;
	border-radius: 10px;
	padding: 20px;
	aspect-ratio: 1/1;
	object-fit: contain;
	display: flex;
    align-items: center;
    justify-content: center;
}
.products-img-wrap .main-display img,
.products-img-wrap .main-display iframe{
	aspect-ratio: 1/1;
	object-fit: contain;
	mix-blend-mode: multiply;
	object-position: center;
}
.thumb iframe,
.thumb img{
	aspect-ratio: 1/1;
	object-fit: contain;
	padding: 10px;
	border: 1px solid #dedede;
	border-radius: 5px;
}
.thumb.active img,
.thumb.active iframe {
    border: 1px solid #D12026; /* Blue border */
    border-radius: 5px;
}
.thumbnail-carousel .thumb iframe {
    pointer-events: none; /* Disable clicking inside iframe */
}
.product-thumble-slider{
	position: relative;
}
.product-thumble-slider .owl-nav{
	display: flex;
	justify-content: space-between;
}
.product-thumble-slider .owl-nav button{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.product-thumble-slider .owl-nav button.owl-prev{
	left: -20px;
}
.product-thumble-slider .owl-nav button.owl-next{
	right: -20px;
}

.product-thumble-slider .owl-nav button:first-child{
	margin-left: 0;
}
.product-thumble-slider .owl-nav button:last-child{
	margin-right: 0;
}
.product-thumble-slider .owl-nav button img{
	width: 15px;
    height: 15px;
    object-fit: contain;
}
.produds-detail-desc-wrapper ul li span,
.produds-detail-desc-wrapper ul li strong,
.produds-detail-desc-wrapper ul li b{
	color: #D12026;
	font-weight: 500;
}
.produds-detail-desc-wrapper .product-name{
	font-weight: 600;
	font-size: 30px;
	margin: 20px 0;
}
.produds-detail-desc-wrapper .desc h2{
	font-size: 20px;
	color: #D12026;
	margin-bottom: 10px;
}
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  overflow: hidden;
  width: 150px;
}

.qty-btn {
  width: 50px;
  height: 45px;
  border: none;
  background: transparent;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #f7f7f7;
}
.qty-btn.minus{
	border-right: 1px solid #F0F0F0;
}
.qty-btn.plus{
	border-left: 1px solid #F0F0F0;
}
.qty-input {
  width: 50px;
  text-align: center;
  font-weight: 500;
  border: none;
  outline: none;
}
.cart-btn a span{
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid #981216;
}
.cart-btn img{
	filter: brightness(0) invert(1);
	width: 22px;
	height: 22px;
	object-fit: contain;
}
.share-wrapper ul{
	display: flex;
	flex-wrap: wrap;
}
.share-wrapper ul li{
	margin-right: 8px;
	margin-bottom: 0;
}
.share-wrapper ul li:last-child{
	margin-right: 0;
}
.share-wrapper ul li .share-icon{
	display: block;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.share-wrapper ul li .share-icon.blue-bg{
	background-color: #0866FF;
}
.share-wrapper ul li .share-icon.black-bg{
	background-color: #000;
}
.share-wrapper ul li .share-icon.darkred-bg{
	background-color: #CE2427;
}
.share-wrapper ul li .share-icon.darkblue-bg{
	background-color: #0A66C2;
}
.share-wrapper ul li .share-icon.red-bg{
	background-color: #FF0302;
}
.share-wrapper ul li .share-icon img{
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.tech-specification-wrapper h2{
	font-size: 25px;
	font-weight: 600;
}
.tech-specification-wrapper ul{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.tech-specification-wrapper li{
	border-bottom: 1px solid #D2D2D2;
    padding: 12px 0 12px 30px;
    margin-bottom: 0;
}
.tech-specification-wrapper li strong,
.tech-specification-wrapper li b{
	/* font-weight: 600; */
	font-weight: 300;
}
.tech-specification-wrapper ul li::before {
    top: 15px;
}
.tech-specification-wrapper li p{
	margin-bottom: 0;
}
.product-detail-box{
	position: relative;
	background-color: #6A6C6B;
	padding: 40px 20px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	z-index: 1;
	overflow: hidden;
	transition: all 0.4s ease;
}
.product-detail-box:hover{
	background-color: #D12026;
}
.product-detail-box .box-icon{
	margin-right: 15px;
}
.product-detail-box .box-icon img{
	width: 25px;
	height: 25px;
	object-fit: contain;
}
.product-detail-box p{
	margin-bottom: 0;
	color: #fff;
}
.shopping-cart-wrapper{
	border: 1px solid #DEE2E7;
	border-radius: 6px;
	padding: 20px;
}
.empty-cart-wrapper{
	padding: 40px 10px;
}
.empty-cart-wrapper img{
	width: 150px;
}
.empty-cart-wrapper p{
	font-size: 35px;
	font-weight: 600;
	line-height: normal;
	margin-top: 20px;
}
.shopping-cart-wrap .product-img-wrp{
	width: 100px;
	height: 100px;
	background-color: #F7F7F7;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
	padding: 10px;
}
.shopping-cart-items{
	border-bottom: 1px solid #DEE2E7;
	padding: 30px 0;
}
.shopping-cart-wrap .product-img-wrp img{
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: contain;
}
.about-products-wrap h2{
	font-size: 19px;
	color: #1C1C1C;
	font-weight: 600;
}
.about-products-wrap ul{
	display: flex;
	flex-wrap: wrap;
}
.about-products-wrap ul li{
	position: relative;
	font-size: 16px;
	color: #8B96A5;
	padding: 0 10px;
}
.about-products-wrap ul li::before{
	position: absolute;
	content: '|';
	top: 0;
	right: -2px;
	color: #8B96A5;
}
.about-products-wrap ul li:last-child::before{
	content: '';
}
.total-qty-wrap{
	border: 1px solid #DEE2E7;
	box-shadow: 0px 4px 10px 0px #3838381A;
	padding: 20px;
	border-radius: 6px;
}
.total-qty-wrap strong{
	font-weight: 600;
}
/* ------------------- Product Detail Section CSS End ------------------- */

/* ------------------- Documentation Section CSS Start ------------------- */
.no-documention-wrapper img{
	width: 300px;
}
/* ------------------- Documentation Section CSS End ------------------- */

/* ------------------- Download Software Section CSS End ------------------- */
.download-software-wrap-box{
	border: 1px solid #d3d3d3;
}
.download-software-text h2{
	font-size: 16px;
	color: #D12026;
}
.download-btn-wrap a{
	width: 40px;
    height: 40px;
    border: 1px solid #D12026;
	background-color: #D12026;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.5s ease
}
.download-btn-wrap a:hover{
	background-color: #000;
	border: 1px solid #000;
}
.download-btn-wrap a img{
	width: 20px;
    height: 20px;
    object-fit: contain;
	filter: brightness(0) invert(1);
}
.download-software-text-wrapper{
	padding: 10px;
    border-top: 1px solid #d3d3d3;
    align-items: center;
}
.download-btn-wrap{
	border-left: 1px solid #d3d3d3;
    padding-left: 15px;
}
/* ------------------- Download Software Section CSS End ------------------- */

/* ------------------- Whatsaap Sticky Icon CSS Start ------------------- */
.sticky-whatsaap-icon{
	position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 3;
}
.sticky-whatsaap-icon a img{
	width: 50px;
}
/* ------------------- Whatsaap Sticky Icon CSS End ------------------- */

/* ------------------- Scroll Bottom to Top Sticky CSS Start ------------------- */
.sticky-scoll-btn{
	position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3;
}
.scoll-bottom-top{
	width: 45px;
    height: 45px;
    background: #D12026;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.5s ease;
}
.scoll-bottom-top:hover{
	background-color: #000;
}
.scoll-bottom-top img{
	width: 25px;
	height: 25px;
	filter: brightness(0) invert(1);
}
/* ------------------- Scroll Bottom to Top Sticky CSS End ------------------- */

/* ------------------- Download Brochure Sticky CSS Start ------------------- */
.download-brochure-sticky-btn{
	writing-mode: sideways-lr;
    text-orientation: upright;
    /* right: -70px !important; */
    z-index: 3;
    display: flex;
    align-items: center;
}
.download-brochure-sticky-btn a img{
	transform: rotate(-90deg);
	width: 20px;
	filter: brightness(0) invert(1);
}
/* ------------------- Download Brochure Sticky CSS End ------------------- */

/* ------------------- Error 404 CSS Start ------------------- */
.error-text-wrap h2{
	font-size: 60px;
    font-weight: 700;
    color: #d12026;
}
.error-text-wrap h3{
	color: #d12026;
}
/* ------------------- Error 404 CSS End ------------------- */

/* ------------- Thank you Page CSS Start ------------- */
.thank-you-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.thank-you-section::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/about/emailer-textture.png);
	background-size: 250px;
	background-position: center;
	background-repeat: repeat;
	opacity: 0.1;
	z-index: -1;
}

.thank-you-section .thank-you-box {
	padding: 40px;
	background-color: #fff;
	border-left: 2px solid #D12026;
	border-radius: 6px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.thank-you-section .thank-you-box h1 {
	font-size: 50px;
	color: #D12026;
	font-weight: 700;
}

.thank-you-section .thank-you-box h4 {
	font-size: 18px;
}

.thank-you-section .thank-you-box h4 a {
	color: #D12026;
	font-weight: 600;
}

.thank-you-section .thank-you-box p {
	color: #000;
	font-weight: 400;
}

/* ------------- Thank you Page CSS End ------------- */