body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	transition: background-color .5s;
}

html {
	scroll-behavior: smooth;
	font-size: 100%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

*:focus {
	outline: 0;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: #cccccc;
}

::-webkit-scrollbar-thumb {
	background: #505050;
	border-radius: 5px;
}

body {
	background: #ffffff;
	color: #5C5C5C;
	/*font-family: "Public Sans", sans-serif;*/
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	font-style: normal;
	line-height: 1.6rem;
	visibility: visible;
	-webkit-transition: opacity 0.24s ease-in-out;
	-moz-transition: opacity 0.24s ease-in-out;
	transition: opacity 0.24s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #464646;
	/*font-family: "Public Sans", sans-serif;*/
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 120%;
	letter-spacing: -0.01em;
}

h1 {
	font-size: 2.25rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.875rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 0.5rem;
}

small {
	font-size: 0.833rem;
}

table,
pre,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	max-width: 100%;
}

.img-fluid {
	width: 100%;
}

a,
a:hover,
button,
button:hover,
input[type="submit"],
input[type="submit"]:hover {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

a:focus {
	text-decoration: none;
}

button,
input,
select,
select option,
textarea,
input:focus,
button:focus,
select:focus,
textarea:focus {
	outline: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.active-text,
.active-link,
.active-link:focus {
	color: #3EB7A9;
	font-weight: 400;
	display: inline-block;
}

.active-link:hover {
	text-decoration: none;
	color: #3EB7A9;
}

a,
dt {
	color: #5C5C5C;
	outline: none;
	text-decoration: none;
}

a:focus,
a:hover,
dt:hover,
dt:focus {
	color: #5C5C5C;
	text-decoration: none;
}

.btn {
	outline: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
	box-shadow: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:active,
.btn.active {
	outline: none;
	box-shadow: none;
}

/******** custom-btn ********/

.custom-btn {
	position: relative;
	background-color: #32998D;
	border-radius: 45px;
	outline: none;
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-block !important;
	font-weight: 600;
	font-size: 15px;
	/*font-family: "Public Sans", sans-serif;*/
	font-family: "Poppins", sans-serif;
	padding: 8px 24px;
	transition: all 0.3s ease;
	appearance: none;
	text-decoration: none;
	text-transform: uppercase;
}

.custom-btn:hover,
.custom-btn:focus {
	background-color: #1B887B;
	color: #fff;
}

.custom-btn span {
	line-height: 24px;
	font-size: 14px;
	margin-left: 8px;
}

.btn_read {
	position: relative;
	background-color: transparent;
	border-radius: 2px;
	border: 1px solid #3EB7A9;
	outline: none;
	color: #3EB7A9;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 24px;
	transition: all 0.3s ease;
	appearance: none;
	text-decoration: none;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

.btn_read a {
	color: #3EB7A9;
}

.read__btn {
	color: #3EB7A9;
	cursor: pointer;
	display: flex;
	font-weight: 700;
	font-size: 14px;
	text-transform: capitalize;
}

.read__btn span {
	color: #3EB7A9;
	font-size: 18px;
	margin-left: 10px;
}

.btn-read {
	display: inline-block;
	position: relative;
	color: #3EB7A9;
	font-size: 0.875em;
	font-weight: 700;
	font-style: normal;
	text-decoration: none;
	text-transform: capitalize;
}

.btn-read i {
	font-size: 12px;
	margin-left: 10px;
}

.btn-read:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #3EB7A9;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.btn-read:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.btn-read:hover,
.btn-read:focus {
	background-color: none;
	border: none;
	box-shadow: none;
	outline: none;
	color: #3EB7A9;
}

.form-group {
	position: relative;
}

input,
textarea,
select,
button {
	outline: none;
	font-size: 0.875rem;
}

input.form-control,
.form-select,
textarea.form-control,
select.form-control,
.form-select {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	background-color: transparent;
	border-radius: 4px;
	border: 1px solid #939393;
	height: 50px;
	font-size: 0.875rem !important;
	padding: 0 20px !important;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
	border: 1px solid rgb(122, 122, 122);
	outline: none;
	box-shadow: none;
	border-color: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-moz-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-webkit-appearance: textfield;
}

textarea.form-control {
	height: 100px;
}

.form-control.ndate-picker {
	background-color: #ffffff;
}

.form-label {
	margin-bottom: .2rem;
}

label {
	display: inline-block;
	font-weight: 400;
	font-size: 0.833rem;
	margin-bottom: 0;
}

.tittle__wrap {
	display: flex;
	align-items: start;
}

.title-widget {
	position: relative;
	z-index: 1;
}

.title-widget h1,
.title-widget h2,
.title-widget h3,
.title-widget h4,
.title-widget h5,
.title-widget h6 {
	position: relative;
	font-size: 28px;
	font-weight: 600;
	font-style: normal;
	line-height: 34px;
	text-transform: uppercase;
	-webkit-animation: animatedIntro 1.5s;
	-ms-animation: animatedIntro 1.5s;
	-o-animation: animatedIntro 1.5s;
	animation: animatedIntro 1.5s;
}

.tit__sm {
	color: #ED2126;
	display: block;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 20px;
}

.position-relative {
	position: relative !important;
	z-index: 1;
}

.py-100 {
	padding: 100px 0;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.py-80 {
	padding: 80px 0;
}

.pt-80 {
	padding-top: 80px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pt-70 {
	padding-top: 70px;
}

.pb-70 {
	padding-bottom: 70px;
}

.py-60 {
	padding: 60px 0;
}

.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}

.py-50 {
	padding: 50px 0;
}

.pt-50 {
	padding-top: 50px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pt-40 {
	padding-top: 40px;
}

.pb-40 {
	padding-bottom: 40px;
}

.py-30 {
	padding: 30px 0;
}

.pt-30 {
	padding-top: 30px;
}

.pb-30 {
	padding-bottom: 30px;
}

.py-20 {
	padding: 20px 0;
}

.pt-20 {
	padding-top: 20px;
}

.mt-80 {
	margin-top: 80px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mt-60 {
	margin-top: 60px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mt-50 {
	margin-top: 50px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mt-40 {
	margin-top: 40px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}

.p-0 {
	padding: 0 !important;
}

.ps-0 {
	padding-left: 0 !important;
}

.pe-0 {
	padding-right: 0 !important;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-10 {
	margin-bottom: 10px;
}

hr {
	background-color: rgba(234, 237, 255);
	opacity: 1;
}

.line {
	width: 100%;
	height: 1px;
	margin-top: 10px;
	border-bottom: 1px solid rgb(234, 237, 255);
}

.site-bg {
	background-color: #1D60C0;
}

.site-light {
	background-color: #F5F5F5;
}

.site-black {
	background-color: #EEEEEE;
}

.section-content {
	position: relative;
	padding: 50px 0 50px 0;
}

main.section-all {
	min-height: 700px;
}

.container-fluid {
	padding: 0 90px;
}

/******** header ********/
header {
	position: relative;
}

.sticky {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9;
	width: 100%;
	background-color: #fff;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: stickyTransition;
	animation-name: stickyTransition;
}

/* .sticky .nav-brand_scroll {
	display: block;
	float: left;
	width: 80px;
	padding-bottom: 10px;
}

.sticky .nav-brand {
	display: none;
} */

/* 
.sticky .nav-menu>li>a {
	color: #415373;
	text-transform: uppercase;
} */

/* .sticky .nav-menu>li>a {
	color: #415373;
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	padding: 30px 20px;
	text-decoration: none;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s, background 0.3s;
} */

/* .sticky .user__login span {
	color: #231f20;
	font-size: 24px;
} */

/* .sticky .nav-toggle::before {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #415373;
	border-radius: 10px;
	box-shadow: 0 0.5em 0 0 #415373, 0 1em 0 0 #415373;
} */

.header_top {
	background-color: #3EB7A9;
	display: flex;
	align-items: center;
}

.top_right {
	text-align: right;
}

.nav_rit {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 10px;
	float: right;
}

.logo__widget {
	position: relative;
	margin: 10px 0;
}

.header__top {
	display: flex;
	justify-content: flex-end;
}

.top__right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 40px;
}

.h_rit-info {
	margin-left: 25px;
	margin-top: 12px;
}


.search__box {
	position: relative;
	display: inline-block;
	margin-top: 0;
	vertical-align: middle;
	border-right: 1px solid #D1D1D1;
	/* z-index: 9; */
	padding-right: 15px;
}

.openBtn {
	background: transparent;
	border: none;
	cursor: pointer;
	color: #124A94;
	font-size: 18px;
	padding: 0;
}

.openBtn:hover {
	background: transparent;
}

.overlay {
	height: 100%;
	width: 100%;
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.75);
}

.overlay-content {
	position: relative;
	top: 46%;
	width: 50%;
	text-align: center;
	margin-top: 30px;
	margin: auto;
}

.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 60px;
	cursor: pointer;
	color: white;
	z-index: 99999;
	font-size: 36px;
}

.overlay .closebtn:hover {
	color: white;
}

.overlay input[type=text] {
	padding: 15px 20px;
	font-size: 17px;
	border: none;
	float: left;
	width: 1000%;
	background: white;
}

.overlay input[type=text]:hover {
	background: white;
}

.overlay button {
	float: left;
	width: auto;
	padding: 15px;
	background: #124A94;
	color: #fff;
	font-size: 24px;
	border: none;
	cursor: pointer;
}

.overlay button:hover {
	background: #124A94;
}

.learnbtn {
	background-color: #D4A518;
	border: 1px solid #D4A518;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 20px;
}

.banner__svg {
	position: relative;
	margin-top: -89px;
	z-index: 2;
}

/**** service ****/
.box-card {
	background-color: #F5F5F5;
	text-align: center;
	padding: 60px 20px;
	height: 100%;
	min-height: 290px;
}

.iconbox {
	background-color: #fff;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	line-height: 80px;
	text-align: center;
}

.container__custom {
	padding-top: 20px;
}

.container__custom h6 {
	color: #12436B;
	font-size: 18px;
}


.product-container {
	background-color: #EEEEEE;
}

.content__card {
	position: relative;
	background-color: #fff;
}

.card-img-wrap {
	position: relative;
}

.img__370 img {
	object-fit: cover;
	height: 370px;
	width: 100%;
}

.title-caption h4 {
	font-size: 18px;
	 /*font-family: "Public Sans", sans-serif;*/
	 font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	padding: 20px;
}

.testi-content {
	position: relative;
}

.testi__container {
	position: relative;
	background: #1D60C0; 
	padding: 30px 20px 30px 0;
}

.testi__container::before {
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1D60C0;
    max-width: 1300px;
    height: 100%;
    line-height: 80px;
}

.testi__container::after {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	background: url(../assets/images/shape__2.png) no-repeat; 
	width: 129px;
	height: 449px;
	z-index: 1;
}

.testimonials__inner {
	position: relative;
	margin-bottom: 10px;
}

.testimonials__inner p {
	color: #fff;
}

.testi__profile {
	position: relative;
}

.test__img {
	float: left;
	width: 80px;
	margin-right: 20px;
}

.avatar {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	margin-right: 20px;
	border: 2px solid #ffffff;
}

.testi__wrap {
	margin-left: 100px;
}

.name {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	text-transform: capitalize;
	margin: 0;
}

.title {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	text-transform: capitalize;
}

.explore__inner {
	position: relative;
	padding: 50px;
}

.explore__inner h4 {
	color: #fff;
	font-size: 32px;
	margin-bottom: 20px;
}

.explore__inner p {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}

.whyicon {
	position: relative;
	padding:20px;
	/* min-height: 150px; */
}

.d__tittle {
	text-align: center;
}

.ser__icon span {
	color: #415373;
	font-size: 60px;
}

.whyicon span {
	color: #415373;
	font-size: 40px;
}

.titlewidget {
	font-size: 18px;
	font-weight: 500;
	margin-left: 20px;
}

.title-wrap h6 {
	font-size: 20px;
}

.content_text p {
	color: #5A5A5A;
}

.blogcontent p {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
}

.associated-list ul li {
	display: inline-block;
	height: 50px;
	padding: 0 20px 0 0;
	margin: 0 0 20px;
}

.associated-list ul li img {
	display: inline-block;
	height: 50px;
}

.rating-widget ul {
	padding-left: 0;
}

.rating-widget ul li {
	color: #FF6600;
	list-style: inherit;
	display: inline-block;
	font-size: 18px;
	margin-right: 0px;
	padding: 0 !important;
}

.img400 img {
	height: 400px;
	object-fit: cover;
}

.whyus__section {
	position: relative;
	padding-top: 300px;
	padding-bottom: 50px;
}

.associated__container {
	position: relative;
	top: -50px;
	z-index: 99;
}

.associted__wrap {
	background-color: #fff;
	padding: 0 20px 10px 20px;
}

.affilation_info {
	position: relative;
	float: right;
}

.affilation ul {
	padding-left: 0;
}

.affilation li {
	display: inline-block;
	list-style: none;
	margin-right: 10px;
}

.affilation li img {
	display: inline-block;
}

footer {
	position: relative;
	background-color: #1D60C0;
}

.assicatesection {
	position: relative;
	background-color: #fff;
}

.footer__tittle {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
}

.cont_icons {
	float: left;
	color: #fff;
	font-size: 20px;
	margin-right: 10px;
}

.cont_icons span i {
	font-size: 20px;
}

.contact-info address {
	margin-left: 30px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
}

.contact-info address strong {
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 500;
}

.contact-info address span a {
	color: #fff;
}

.contact-info p {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.listing {
	padding-left: 0;
}

.listing li {
	position: relative;
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 4px;
}

.listing li a {
	color: #fff;
}

.listing li a:hover {
	color: #7BB1FF;
}

.brochure-btn {
	background-color: #fff;
	border-radius: 3px;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	padding: 6px 12px;
	text-transform: capitalize;
}

.brochure-btn span {
   margin-right: 8px;
}

.subscribe__text {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
}

.subscribe-from {
	position: relative;
}

.input-box {
	position: relative;
}

.input-box input {
	height: 46px;
	width: 100%;
	border: none;
	background-color: #fff;
	border-radius: 3px;
	color: #575757;
	outline: none;
	font-size: 14px;
	padding: 0 20px;
	margin-bottom: 10px;
}

.input-box .button {
	height: 46px;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	border: none;
	padding: 0 20px;
	border-radius: 3px;
	background-color: #ED2126;
	cursor: pointer;
	text-transform: uppercase;
}

.social-icons ul {
	padding-left: 0;
	margin-bottom: 0;
}

.social-icons ul li {
	display: inline-block;
	font-size: 16px;
	text-align: center;
	margin-left: 8px;
	margin-top: 6px;
	margin-bottom: 6px;
}

.social-icons ul li a {
	background-color: #3679D9;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	line-height: 30px;
	display: block;
	color: #FFFFFF;
	padding: 0 2px;
	text-align: center;
}

.h__line {
	border-top: 1px solid #4387E8;
    border-bottom: 1px solid #15478E;
}

.copy-right {
	padding-top: 20px;
	padding-bottom: 20px;
}

.copy-right p {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	text-transform: capitalize;
}

.copy-right p a {
	color: #fff;
}

.copy-right p a:hover {
	color: #B3CAF3;
	text-decoration: underline;
}

.cart__container {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 3;
}

.cartbox {
	position: relative;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
	border-radius: 4px 0 0 4px;
	display: inline-block;
	text-align: center;
	
}

.amtbx {
	position: absolute;
	width: 26px;
	height: 26px;
	background-color: #1D60C0;
	border-radius: 100%;
	color: #fff;
	font-size: 16px;
	left: -10px;
	top: -10px;
}
.cart__icon {
	padding: 10px 20px;
}

.cart__icon span {
	color: #1D60C0;
	font-size: 30px;
	text-align: center;
}

.bgitems {
	background-color: #1D60C0;
	border-radius: 0 0 0 4px;
	color: #ffffff;
	font-size: 12px;
	 /*font-family: "Public Sans", sans-serif;*/
	 font-family: "Poppins", sans-serif;
	text-align: center;
	text-transform: uppercase;
	padding: 4px 6px;
}
/******** a
ll page css *******/
.site_page-title-inner {
	position: relative;
}

.page-titleShape {
	position: relative;
	padding: 70px 0 50px 0;
	text-align: center;
}

.page-titleShape::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #070707 3.98%, rgba(7, 7, 7, 0.00) 127.57%);
	background-size: cover !important;
	background-position: center top !important;
	background-repeat: no-repeat !important;
	z-index: 1;
}

.page-title {
	position: relative;
	z-index: 2;
}

.page-title ul li {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-transform: capitalize;
	padding: 10px 0;
}

.page-title ul li a {
	color: #2AA81A;
}

.page-title ul li+li::before {
	content: "\f054";
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 900;
	font-size: 10px;
	display: inline-block;
	margin: 0 5px 0 8px;
}

.page-title h3 {
	color: #fff;
	font-size: 24px;
	text-transform: capitalize;
	margin-top: 0;
	margin-bottom: 0;
}

ul.list-item {
	padding-left: 0 !important;
}

.list-item li {
	position: relative;
	color: #393939;
	font-size: 16px;
	font-weight: 500;
	list-style: disc;
	list-style-position: inside;
	line-height: 32px;
	margin: 0;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
  }
  
  .btn_1 {
	border: 1px solid #12436B;
	height: 30px;
	width: 30px;
	border-radius: 2px;
	background: none;
	cursor: pointer;
  }
  
  .btn-icon {
	width: 15px;
	height: 15px;
	stroke: #12436B;
  }
  
  .btn_1:hover {
	background-color: #12436B;
  }
  
  .btn_1:hover .btn-icon {
	stroke: #fff;
  }
  
  .page-link:link,
  .page-link:visited {
	text-decoration: none;
	color: #12436B;
	font-size: 15px;
	height: 30px;
	width: 30px;
	border-radius: 2px;
	border: 1px solid #12436B;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .page-link:hover,
  .page-link:active,
  .page-link.page-link--current {
	background-color: #12436B;
	color: #fff;
  }
  

.categories__box {
	background-color: #fdfdfd;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
    text-align: center;
    padding: 30px 10px;
    height: 100%;
    min-height: 120px;
}

.product-card {
	position: relative;
	background-color: #fff;
	box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
	border-radius: 4px;
	padding: 20px;
}

.product__image {
	position: relative;
}

.img__280 img {
	position: relative;
	height: 280px;
	object-fit: cover;
	width: 100%;
}

.title__product h6 {
	font-size: 16px;
	font-weight: 500;
}

.pptag {
    color: #12436B;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.pptag strike {
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
}



.title__categories {
	position: relative;
}

.content__paragraph p {
	font-size: 18px;
	line-height: 30px;
}



.product-inventory ul {
	padding-left: 0;
}






.social-buttons a {
	color: #ffffff;
	display: block;
	margin-top: 15px;

}

.social-buttons a:hover {
	color: white;
	opacity: 0.9;
}

.social-buttons .btn-facebook {
	background: #3b5998;
}

.social-buttons .btn-twitter {
	background: #00aced;
}

.social-buttons .btn-google {
	background: #c32f10;
}

.social-buttons a>span {
	padding-left: 5px;
}

.nav-side {
	padding: 20px 15px;
	box-shadow: rgb(38 38 38 / 6%) 0px 6px 45px;
	border-radius: 4px;
}

.nav-list ul {
	padding-left: 0;
}

.nav-list ul li {
	position: relative;
	border-top: 1px solid #f0f0f0;
	font-size: 0.875rem;
	font-weight: 500;
	list-style-type: none;
	list-style-position: inside;
	padding: 8px;
}

.book-tittle {
	position: relative;
	display: flex;
	align-items: center;
}

.book-icon {
	display: flex;
	background-color: #415373;
	border-radius: 100%;
	color: #fff;
	display: inline-block;
	line-height: 45px;
	width: 45px;
	height: 45px;
	font-size: 20px;
	text-align: center;
	padding: 0px 10px;
	margin-right: 10px;
}

.title-payment {
	display: flex;
	margin-left: 10px;
	align-items: center;
}

.comment-wrap {
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 30px;
}

.profile-img {
	width: 70px;
	height: 70px;
	float: left;
	margin-right: 20px;
	padding: 3px;
	border-radius: 100%;
	overflow: hidden;
	text-align: center;
}

.profile-img img {
	width: 70px;
	height: 70px;
	border-radius: 100%;
}

.profile-info {
	margin-left: 90px;
}

.header__inner {
	position: relative;
}

.title-instagram h3 {
	font-size: 24px;
}

.title-instagram h3 span {
	margin-right: 10px;
}

.frame-img {
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.instagram-wrap {
	position: relative;
}

.instagram-img {
	position: relative;
}

.instagram-img img {
	object-fit: cover;
	height: 270px;
}

.inst-icon {
	position: absolute;
	right: 20px;
	top: 20px;
	color: #fff;
	font-size: 24px;
}

.instagram-wrap .content-overlay {
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	z-index: 1;
}

.instagram-wrap:hover .content-overlay {
	opacity: 1;
}

.instagram-img {
	width: 100%;
}

.content-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	z-index: 2;

}

.instagram-wrap:hover .content-details {
	top: 50%;
	left: 50%;
	opacity: 1;
}

.content-details h3 {
	color: #fff;
	font-size: 1em;
	font-weight: 500;
	letter-spacing: 0;
	margin-bottom: 0.5em;
	text-transform: capitalize;
}

.content-title i {
	margin-right: 5px;
}

.content-details p {
	color: #fff;
	font-size: 0.8em;
	line-height: 18px;
}

.fadeIn-bottom {
	top: 80%;
}

.padding_left-0 {
	padding-left: 7px !important;
}

.padding_rit-0 {
	padding-right: 7px !important;
}

.content__paragraph p {
	font-size: 16px;
}

.poppup__modal {
	padding: 20px 40px 20px 40px;
}

.modal-header {
	padding: 0 1rem;
	border-bottom: none;
}

.btn-close {
	color: #fff;
	text-decoration: none;
	opacity: 1;
	height: 20px;
	right: 0;
	top: 0;
	z-index: 99;
	width: 20px;
	line-height: 20px;
	position: absolute;
	background: #000;
	border-radius: 100%;
	font-size: 14px;
}

.btn-close:focus {
	outline: 0;
	box-shadow: none;
	opacity: 1;
}

.btn-close:hover {
	background-color: #000;
}

.searchwrap {
	display: inline-block;
}

.mbl__screen {
	display: none;
}


.book-tittle {
	position: relative;
	display: flex;
	align-items: center;
}

.book-icon {
	display: flex;
	background-color: #3EB7A9;
	border-radius: 100%;
	color: #fff;
	display: inline-block;
	line-height: 45px;
	width: 45px;
	height: 45px;
	font-size: 20px;
	text-align: center;
	padding: 0px 10px;
	margin-right: 10px;
}

.title-payment {
	display: flex;
	margin-left: 10px;
	align-items: center;
}



.brands_icons {
	float: left;
	color: #12436B;
	font-size: 20px;
	margin-right: 10px;
}

.brands_icons span i {
	font-size: 20px;
}
.contact__brands address {
	margin-left: 30px;
	color: #4A4A4A;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
}

.contact__brands address strong {
	color: #12436B;
	display: block;
	font-size: 18px;
	font-weight: 500;
}

.contact__brands address span a {
	color: #4A4A4A;
}

.contact__brands p {
	color: #4A4A4A;
	font-size: 16px;
	font-weight: 400;
}


.cntdtl {
	background-color: transparent;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
	padding: 30px;
}


.gallery-image {
	position: relative;
	/* padding: 20px; */
	/* display: flex;
	flex-wrap: wrap; */
	/* justify-content: center; */
  }
  
  .gallery-image img {
	height: 250px;
	width: 100%;
	transform: scale(1.0);
	transition: transform 0.4s ease;
  }
  
  .img-box {
	box-sizing: content-box;
	height: 250px;
	width: 100%;
	overflow: hidden;
	display: inline-block;
	color: white;
	position: relative;
	background-color: white;
  }
  
  .caption {
	position: absolute;
	bottom: 5px;
	left: 20px;
	opacity: 0.0;
	transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .caption h6 {
	color: #fff;
  }
  
  .transparent-box {
	height: 250px;
	width: 350px;
	background-color:rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	transition: background-color 0.3s ease;
  }
  
  .img-box:hover img { 
	transform: scale(1.1);
  }
  
  .img-box:hover .transparent-box {
	background-color:rgba(0, 0, 0, 0.5);
  }
  
  .img-box:hover .caption {
	transform: translateY(-20px);
	opacity: 1.0;
  }
  
  .img-box:hover {
	cursor: pointer;
  }
  
  .caption > p:nth-child(2) {
	font-size: 0.8em;
  }

  .team-wrapper {
	position: relative;
	text-align: center;
	padding: 20px;
	height: 100%;
	box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  }

  .team__images {
	width: 120px;
	height: 120px;
	border-radius: 100%;
	margin: 0 auto;
	overflow: hidden;
  }

  .team-container p {
	 text-align: justify;
  }
  
/********responsive css*********/

@media (max-width: 1280px) {

	.container {
		max-width: calc(100% - 20px);
		padding: 0 20px;
	}
	.container-fluid {
		padding: 0 20px;
	}
	
	.section-content {
		padding: 40px 0;
	}

	.nav-header {
		float: left;
		margin-right: 10px;
	}

	.nav-menu > li > a {
		font-size: 14px;
		padding: 30px 10px;
	}

	.submenu-indicator {
		margin-left: 5px;
		margin-top: 5px;
	}

}

@media (max-width: 1080px) {

	.h_rit-info {
		margin-left: 10px;
		margin-top: 12px;
	}

	.search__box {
		border-right: none;
		padding-right: 10px;
	}

	.kb-caption {
		bottom: 36%;
	}

	.kb-caption h5 {
		font-size: 40px;
	}

	.kb-caption h6 {
		font-size: 24px;
	}

	.custom-btn {
		font-size: 15px;
		padding: 8px 18px;
	}

	.custom-btn span {
		margin-right: 4px;
	}

	.title-widget h1,
	.title-widget h2,
	.title-widget h3,
	.title-widget h4,
	.title-widget h5,
	.title-widget h6 {
		position: relative;
		font-size: 24px;
		line-height: 32px;
	}

	.tit__sm {
		font-size: 12px;
		line-height: 12px;
	}

	.title__icons {
		font-size: 30px;
	}

	.title__icons {
		font-size: 40px;
		margin-right: 10px;
	}

	.carousel-item > img, .kb-carousel > .carousel-inner > .carousel-item > a > img {
		height: 500px;
		object-fit: cover;
	}

	.kb-caption h5 {
		font-size: 24px;
		line-height: 34px;
	}

}

@media (max-width: 992px) {
	.pt-100 {
		padding-top: 40px;
	}

	.pb-100 {
		padding-bottom: 40px;
	}

	.py-80 {
		padding: 40px 0;
	}

	.pb-80 {
		padding-bottom: 30px;
	}

	.py-60 {
		padding: 30px 0;
	}

	.pb-60 {
		padding-bottom: 30px;
	}

	.mt-30 {
		margin-top: 20px;
	}

	.mb-30 {
		margin-bottom: 20px;
	}

	.mt-50 {
		margin-top: 30px;
	}

	.menu_toogle {
		display: none;
	}

	.section-content {
		padding: 30px 0;
	}

	.main_header_area {
		padding-bottom: 0;
	}

	.nav-header {
		margin-right: 0;
	}

	.nav-toggle {
		top: 34px;
	}

	.mbl__screen {
		position: absolute;
		right: 50px;
		top: 35px;
		display: block;
	}

	.slider-caption {
		left: 30px;
	}

	.top__rit {
		display: none;
	}

	.topinfo {
		display: inline-block;
		position: absolute;
		top: 26px;
		right: 45px;
		z-index: 99;
	}

	.h_top {
		display: inline-block;
	}

	.user__login span {
		width: 24px;
		font-size: 24px;
		margin-right: 8px;
	}

	.user__login {
		border-right: none;
	}

	.user__login {
		padding-right: 10px;
	}

	.custom-btn {
		font-size: 12px;
        padding: 6px 16px;
	}

	.nav_rit {
		margin-right: 50px;
	}
}

@media (max-width: 768px) {
	.container {
		max-width: calc(100% - 15px);
		padding: 0 15px;
	}

	.pt-40 {
		padding-top: 30px;
	}

	.pb-40 {
		padding-bottom: 30px;
	}

	.btn-button {
		font-size: 0.875rem;
		padding: 0.5em 1.4em;
	}

	.title-widget h1,
	.title-widget h2,
	.title-widget h3,
	.title-widget h4,
	.title-widget h5,
	.title-widget h6 {
		position: relative;
		font-size: 30px;
		font-style: normal;
		font-weight: 700;
		line-height: 120%;
		margin-bottom: 16px;
	}

	.overlay-content {
		top: 35%;
		width: 90%;
	}

	.nav_rit {
		margin-right: 40px;
	}

	.nav-toggle {
		top: 28px;
	}

	.menu-bar {
		display: flex;
		justify-content: inherit;
	}

	.menu-link {
		padding: 8px 16px;
	}

	.slider-banner .carousel-inner .carousel-item {
		background-position: 20% center !important;
		background-size: cover !important;
	}

	.kb-carousel .carousel-item img {
		object-fit: cover;
		height: calc(470px - 100px);
	}

	.kb-caption {
		bottom: 15%;
	}

	.kb-caption h5 {
		font-size: 24px;
		margin-bottom: 0px;
	}

	.kb-caption h6 {
		font-size: 18px;
	}


}

@media (max-width: 576px) {

	h1 {
		font-size: 1.5rem;
	}

	.title-widget h1,
	.title-widget h2,
	.title-widget h3,
	.title-widget h4,
	.title-widget h5,
	.title-widget h6 {
		font-size: 20px;
	}

	.nav-brand img {
		width: 120px;
	}

	.h_rit-info {
		margin-left: 8px;
		margin-top: 10px;
	}

	.overlay-content {
		width: 90%;
	}

	.test__img {
		float: inherit;
		margin-right: 0;
	}

	.kb-caption {
		bottom: 40%;
	}

	.kb-caption h5 {
		font-size: 20px;
		line-height: 26px;
	}

	.container__custom h6 {
		font-size: 14px;
	}

	.box-card {
		padding: 30px 20px;
		min-height: 180px;
	}
	.whyicon {
		position: relative;
		padding:10px 0;
		min-height: auto;
	  }

	.d__tittle h3 {
		font-size: 20px;
	}

}

@media (max-width: 480px) {


}