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: #F9F9F9;
	color: #4A4A4A;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 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: #0D0C22;
	margin-top: 16px;
	font-family: 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.01em;
	text-transform: capitalize;
}

h1 {
	font-size: 2.986rem;
}

h2 {
	font-size: 2.488rem;
}

h3 {
	font-size: 2.074rem;
}

h4 {
	font-size: 1.728rem;
}

h5 {
	font-size: 1.44rem;
}

h6 {
	font-size: 1.2rem;
}

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: #F378B8;
	font-weight: 400;
	display: inline-block;
}

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

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

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

.btn {
	outline: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: 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: #66D3FA;
	border-radius: 2px;
	outline: none;
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	font-size: 12px;
	padding: 14px 32px;
	transition: all 0.3s ease;
	appearance: none;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.custom-btn:hover, .custom-btn:focus {
	background-color: #3C99DC;
	box-shadow: none;
	outline: none;
	color: #fff;
}

.btn_read {
	position: relative;
	background-color: transparent;
	border-radius: 2px;
	border: 2px solid #66D3FA;
	outline: none;
	color: #66D3FA;
	cursor: pointer;
	display: inline-block;
	font-weight: 500;
	font-size: 12px;
	padding: 8px 32px;
	transition: all 0.3s ease;
	appearance: none;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn_read a {
	color: #66D3FA;
}

#button-3 {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

#button-3 a {
	position: relative;
	transition: all .45s ease-Out;
}

#circle {
	width: 0%;
	height: 0%;
	opacity: 0;
	border-radius: 50%;
	background: #66D3FA;
	border: 2px solid #66D3FA;
	position: absolute;
	transition: all .5s ease-Out;
	top: 20px;
	left: 70px;
}

#button-3:hover #circle {
	width: 200%;
	height: 500%;
	opacity: 1;
	top: -70px;
	left: -70px;
}

#button-3:hover a {
	color: #fff;
}

.btn_read span {
	color: #66D3FA;
	font-size: 18px;
	margin-right: 10px;
}


.read_more {
	display: inline-flex;
	align-items: center;
	position: relative;
	color: #484848;
	font-size: 0.875em;
	font-weight: 700;
	font-style: normal;
	text-decoration: none;
	text-transform: capitalize;
}

.read_more span {
	color: #E19F00;
	font-size: 20px;
	margin-left: 10px;
}

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

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

.read_more:hover,
.read_more:focus {
	background-color: none;
	border: none;
	box-shadow: none;
	outline: none;
	color: #E19F00;
}

.form-group {
	position: relative;
}

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

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

input.form-control:focus,
textarea.form-control:focus,
select.form-control: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;
}

.title-widget {
	position: relative;
}

.title-widget small {
	color: #3C99DC;
	text-transform: capitalize;
}

.title-widget h1,
.title-widget h2,
.title-widget h3,
.title-widget h4,
.title-widget h5,
.title-widget h6 {
	position: relative;
	font-family: 'Outfit', sans-serif;
	font-size: 2.625rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
	text-transform: capitalize;
}

.title__line {
	background: url(../assets/images/title-bottom-border\ 1.png) center bottom no-repeat;
	text-align: center;
	margin: 0 auto;
	width: 119px;
	height: 15px;
}

.title-widget h1 span,
.title-widget h2 span,
.title-widget h3 span,
.title-widget h4 span,
.title-widget h5 span,
.title-widget h6 span {
	position: relative;
	color: #3C99DC;
	font-family: 'Outfit', sans-serif;
	font-size: 2.625rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.title__about h1 {
	color: #284394;
	font-family: 'Inknut Antiqua', serif;
}

.title__about h1 span {
	color: #3C99DC;
}

.title-widget-site h1,
.title-widget-site h2,
.title-widget-site h3,
.title-widget-site h4,
.title-widget-site h5,
.title-widget-site h6 {
	position: relative;
	font-family: 'Outfit', sans-serif;
	font-size: 2.625rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.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(237, 237, 237, 1);
	opacity: 1;
}

.line {
	width: 100%;
	height: 1px;
	margin: 10px 0;
	border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.site-bg {
	background-color: #3C99DC !important;
}

.site-light {
	background-color: #F4F4F4 !important;
}

.site-blue {
	background-color: #284394;
}

.site-sky {
	background-color: #66D3FA;
}

.linear-gradient {
	background-image: linear-gradient(62deg, rgba(10, 40, 67, 0.9) 0%, rgba(60, 153, 220, 1) 100%);
}

.section-content {
	position: relative;
	padding: 60px 0 80px 0;
	z-index: 1;
}

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

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

.top__info {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top__right {
	margin-left: 30px;
	margin: 6px 0;
}

.contact__widget {
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-transform: lowercase;
	margin-left: 30px;
}

.contact__widget a {
	color: #fff;
}

.contact__widget:hover {
	color: #E19F00;
}

.call__icon {
	margin-right: 10px;
}

.social_widget {
	display: inline-flex;
	align-items: center;
}

.social_widget ul {
	margin-bottom: 0;
}

.social_widget ul li {
	color: #fff;
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	margin-left: 15px;
}

.social_widget ul li a {
	color: #fff;
}

header {
	position: relative;
	background-color: #fbfbfb;
}

.sticky-top {
	z-index: 3;
}

.sticky.is-sticky {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	width: 100%;
	background-color: #fff;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: stickyTransition;
	animation-name: stickyTransition;
}

.bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(143deg, rgba(238, 93, 31, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}

/******** welcome section ********/
.widget__container {
	position: relative;
	background: url(../assets/images/bg-sercives-02.jpg) no-repeat;
	background-size: cover;
}

.widget__about-holder {
	position: relative;
}

.arrow__down {
	margin-left: 120px;
}

.block__btn {
	display: flex;
	align-items: center;
}

.why__box {
	position: relative;
	border-radius: 8px;
	padding: 30px 20px;
	height: 100%;
}

.bg_1 {
	background-color: rgba(0, 94, 182, 0.1);
}

.bg_2 {
	background-color: rgba(225, 159, 0, 0.1);
}

.bg_3 {
	background-color: rgba(167, 43, 216, 0.1);
}

.wy_icon {
	float: left;
	background-color: #fafafa;
	border-radius: 100%;
	overflow: hidden;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
}

.whyinfo {
	margin-left: 80px;
}


.p__right-0 {
	padding-right: 0;
}

.p__left-0 {
	padding-left: 0;
}

.site__container__container {
	position: relative;

}

.radious__65 {
	border-radius: 0 0 65px 65px;
}

.wrapper-content {
	position: relative;
	border: 1px solid #CECECE;
	padding: 12px;
}

.border-radious_16 {
	border-radius: 16px;
}

.border-radious_8 {
	border-radius: 8px;
}

.images-card, .image-370 {
	position: relative;
	overflow: hidden;
}

.images-card figure {
	margin-bottom: 0 !important;
}

.img-180 img {
	border-radius: 8px;
	display: block;
	height: 180px;
	object-fit: cover;
}

.img-250 img {
	height: 250px;
}

.wrapper-content .images-card img {
	transform: scale(1);
}

.img__overlay {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	text-transform: capitalize;
	padding: 5px 10px;
	border-radius: 0 0 8px 8px;
	z-index: 9;
}

.trip_info span {
	margin-right: 10px;
}

.popular__tag {
	position: absolute;
	content: '';
	left: 0;
	top: 20px;
	background: url(../assets/images/patter_overlay.png) no-repeat;
	height: 34px;
	width: 100%;
	padding: 4px 10px;
	z-index: 9;
}

.content-holder {
	justify-content: space-between;
	padding: 20px 0;
}

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

.rating-info ul li {
	color: #E19F00;
	list-style: none;
	display: inline-block;
	font-size: 14px;
	margin-right: 0px;
	padding: 0 !important;
	margin: 0;
}

.rating-info ul li span {
	color: #4D4D4D;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;

}

.pkg__dtl {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.p__tag small {
	font-weight: 500;
}

.pp-tag {
	color: #005EB6;
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
}

.site__section {
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	margin-top: -70px;
	margin-bottom: 0px;
	padding: 120px 0px 80px 0px;
}

.package__section {
	position: relative;
	z-index: 6;
}

.company__section {
	position: relative;
	z-index: 5;
	color: #fff;
}

.feature__section {
	position: relative;
	z-index: 4;
}

.blog__section {
	position: relative;
	z-index: 2;
}

.company__section h3, .company__section h4, .company__section h5, .company__section h6 {
	color: #fff;
	font-weight: 500;
}

.company_box p {
	color: #ADDDFF;
	font-size: 14px;
}

.title__company {
	display: flex;
	align-items: center;
}

.cm_icon {
	margin-right: 10px;
}

.tittle {
	color: #fff;
	font-size: 36px;
	font-weight: 900;
}

.client-card {
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	overflow: hidden;
}

.client-card img {
	background-color: #fff;
	width: 150px;
	height: 150px;
	border-radius: 100%;
}

.client__section {
	position: relative;
	background: url(../assets/images/car_banner.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 3;
}

.overlay__bg {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	background-image: linear-gradient(62deg, rgba(10, 40, 67, 0.9) 0%, rgba(60, 153, 220, 1) 100%);
	width: 100%;
	height: 100%;
	border-radius: 0 0 65px 65px;
}


.blog__content {
	position: relative;

}

.blog__wrap {
	position: relative;
	border-radius: 8px 0 0 8px;
	height: 100%;
	padding: 20px;
}

.text_content h6 a {
	color: #0D0C22;
}

.img-330 img {
	height: 330px;
	border-radius: 0 8px 8px 0;
}

.testi__wrap {
	position: relative;
	background: url(../assets/images/h1-background-1.png) no-repeat;
	padding: 40px 30px;
}

.associated__logo ul {
	padding-left: 0;
}

.associated__logo ul li {
	background-color: #fff;
	border-radius: 8px;
	padding: 10px;
	display: inline-block;
	margin-right: 10px;
	line-height: 40px;
}

.associated__logo ul li img {
	width: auto;
	height: 40px;
}

.ps__0 {
	padding-left: 0;
}

.pe__0 {
	padding-right: 0;
}

footer {
	position: relative;
	color: #fff;
}

.logo__foter {
/* 	background-color: #fff; */
	border-radius: 0 0 65px 65px;
	display: inline-block;
	padding: 10px;
}

.footer__tittle {
	color: #fff;
	font-weight: 600;
	line-height: 120%;
	font-size: 1rem;
	text-transform: uppercase;
}

.fot__pattern img {
	width: 100%;
	height: 140px;
	margin: 0;
}

.footer_link ul {
	padding-left: 0;
	float: right;
}

.footer_link ul li {
	color: #ACDCFF;
	display: inline-block;
	list-style: none;
	font-size: 14px;
	font-weight: 500;
	padding-left: 12px;
	text-align: right;
}

.footer_link ul li a {
	color: #fff;
}

.footer_link ul li a:hover {
	color: #E19F00;
}

.footer__list ul {
	padding-left: 0;
}

.footer__list ul li {
	color: #fff;
	list-style: none;
	font-size: 14px;
	font-weight: 500;
	padding-bottom: 8px;
}

.footer__list ul li a {
	color: #fff;
}

.footer__list ul li span {
	color: #fff;
	margin-right: 12px;
}

.fot__line {
	height: 1px;
	background-color: #5AB0EF;
	margin-top: 20px;
}

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

.subscribe-from {
	position: relative;
}

.subscribe-from {
	position: relative;
}

.subscribe-from input {
	position: relative;
	background: #fff;
	border: none;
	color: #8F8F8F;
	font-size: 14px;
	outline: none;
	line-height: 46px;
	height: 46px;
	text-align: left;
	padding: 10px 20px;
	width: 100%;
	float: left;
	margin-right: 4px;
}

.subscribe-from .subscribe-button {
	position: absolute;
	background-color: #E19F00;
	top: 0;
	right: 0;
	width: 50px;
	line-height: 46px;
	height: 46px;
	text-align: center;
	outline: none;
	border: none;
}

.subscribe-from .subscribe-button i {
	color: #fff;
	font-size: 20px;
}

.copyrit p {
	font-size: 13px;
	line-height: 24px;
	padding-bottom: 0 !important;
	text-transform: capitalize;
	margin: 0;
}

.copyrit p a {
	color: #9BD5FF;
}

.copyrit p a:hover {
	color: #E19F00;
	text-decoration: underline;
}

.design_info {
	text-align: right;
}





/******** all page css *******/
.site_page-title-inner {
	position: relative;
}

.page-titleShape {
	position: relative;
	padding: 70px 0 40px 0;
}

.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: 12px;
	font-weight: 400;
	color: #3C99DC;
	text-transform: uppercase;
	text-align: left;
	padding: 10px 0;
}

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

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

}

.page-title h3 {
	color: #fff;
	font-size: 28px;
	margin-top: 0;
	margin-bottom: 20px;
}

.list-item li {
	position: relative;
	font-size: 1rem;
	font-weight: 400;
	list-style-type: disc;
	list-style-position: inside;
	margin: 5px 0;
}

.site_page .page-link {
	position: relative;
	display: block;
	color: #334E7A;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #dee2e6;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.site_page .page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: #334E7A;
	border-color: #334E7A;
}

.site_page .page-link:focus {
	z-index: 3;
	color: #334E7A;
	background-color: #e9ecef;
	outline: 0;
	box-shadow: none;
}

.img-250 img {
	object-fit: cover;
	height: 280px;
}

.contact__form {
	position: relative;
	background-color: #340A58;
	border-radius: 0 20px 20px 0;
	border-top: 1px solid #4b1c73;
	border-right: 1px solid #4b1c73;
	border-bottom: 1px solid #4b1c73;
	height: 100%;
	padding: 50px 30px;

}

.form-title {
	font-size: 30px;
}

.contact__form .form-group .form-control {
	-webkit-box-shadow: none;
	border-bottom: 1px;
	border-style: none none solid none;
	border-radius: 4px;
	border-color: #edd8ff;
	background-color: #edd8ff;
}

.contact__form .form-group .form-control:focus {
	background-color: none;
	box-shadow: none;
	border-width: 0 0 2px 0;
	border-color: #e4c6ff;
}

.contact__form textarea {
	resize: none;
}

.contact__form .form-check-label {
	color: #9A78B7;
}

.contact__form .form-check-input {
	border: none;
}

.contact__form .form-check-input:checked {
	background-color: #9A5AD0;
	border-color: #9A5AD0;
	border: none;
	box-shadow: none;
}

.contact__form .form-check-input:focus {
	border-color: #9A5AD0;
	outline: 0;
	box-shadow: none;
}

.btn-mod.btn-large {
	height: auto;
	padding: 13px 52px;
	font-size: 15px;
}

.btn-mod.btn-border {
	color: #fff;
	border: 1px solid #9A5AD0;
	background: #9A5AD0;
	border-radius: 4px;
}

.btn-mod, a.btn-mod {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 4px 13px;
	color: #fff;
	background: rgba(34, 34, 34, .9);
	border: 1px solid transparent;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-mod.btn-border:hover, .btn-mod.btn-border:active, .btn-mod.btn-border:focus, .btn-mod.btn-border:active:focus {
	color: #fff;
	border-color: #ad66e8;
	background: #ad66e8;
	outline: none;
}

@media only screen and (max-width: 500px) {
	.btn-mod.btn-large {
		padding: 6px 16px;
		font-size: 11px;
	}

	.form-title {
		font-size: 20px;
	}
}

.sort-box {
	display: flex;
	align-items: center;
}

.sort_items {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.btn_1 {
	border: 1px solid #3C99DC;
	height: 30px;
	width: 30px;
	border-radius: 2px;
	background: none;
	cursor: pointer;
}

.btn-icon {
	width: 15px;
	height: 15px;
	stroke: #3C99DC;
}

.btn_1:hover {
	background-color: #3C99DC;
}

.btn_1:hover .btn-icon {
	stroke: #fff;
}

.page-link:link,
.page-link:visited {
	text-decoration: none;
	color: #3C99DC;
	font-size: 15px;
	height: 30px;
	width: 30px;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-link:hover,
.page-link:active,
.page-link.page-link--current {
	background-color: #3C99DC;
	color: #fff;
}

/********responsive css*********/

@media (max-width: 1366px) {

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

}

@media (max-width: 1280px) {
	.container {
		max-width: 1140px;
	}

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

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

	.nav-menu > li > a {
		padding: 32px 12px;
    }

}

@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;
	}

	.slider-banner .carousel-inner .carousel-item img {
		height: 520px;
	}
	  

}

@media (max-width: 768px) {

	.title-widget h1,
	.title-widget h2,
	.title-widget h3,
	.title-widget h4,
	.title-widget h5,
	.title-widget h6 {
	font-size: 1.75rem;

	line-height: 120%;

}

.title-widget h1 span, .title-widget h2 span, .title-widget h3 span, .title-widget h4 span, .title-widget h5 span, .title-widget h6 span {
	font-size: 1.75rem;
  }

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

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

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

	.sticky.is-sticky {
		position: static;
		height: auto;
	}

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

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

	.nav-header {
		padding: 10px 0;
	}

	.slider-content h3 {
		font-size: 32px;
		line-height: 40px;
	}

	.wy_icon {
		float: none;
		margin-bottom: 20px;
	}
	
	.wy_icon span i {
		color: #66D3FA;
		font-size: 40px;
		text-align: center;
	}
	.whyinfo {
		margin-left: 0;
	}

	.associated__logo ul li {
		margin-right: 3px;
	}

	.top__info {
		display: inline-block;
		align-items: center;
		justify-content: flex-end;
	}

	.contact__widget {
		margin-left: 0;
		margin-right: 20px;
	}

	.social_widget ul {
		padding-left: 0;
	}
}

@media (max-width: 576px) {
	.slider-banner .carousel-inner .carousel-item img {
		height: 350px;
	}

	.block__btn {
		display: inline-block;
	}
}

@media (max-width: 480px) {
	.client-card {
		width: 110px;
		height: 110px;
		margin: 0 auto;
	}

	.client-card img {
		width: 110px;
		height: 110px;
	}
}

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

.vh_spcial ul li {
	display: inline-block;
	font-size: 13px;
	margin-right: 10px;
}

.vh_spcial ul li {
	color: #fff;
	display: inline-block;
	font-size: 13px;
	margin-right: 10px;
}

.vh_spcial ul li span {
	color: #fff;
	display: inline-block;
	font-size: 13px;
	margin-right: 4px;
}


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

.vh_spcial_1 ul li {
	display: inline-block;
	font-size: 13px;
	margin-right: 10px;
}

.vh_spcial_1 ul li {
	display: inline-block;
	font-size: 13px;
	margin-right: 10px;
}

.vh_spcial_1 ul li span {
	display: inline-block;
	font-size: 13px;
	margin-right: 4px;
}

.date {
    position: relative;
}

.date h6 {
    position: relative;
    color: #626262;
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    display: inline-block;
    text-transform: uppercase;
}

.date span.date-line {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    top: -4px;
    width: 60px;
    height: 1px;
    background: #E89B26;
}

.tags a {
    color: #626262;
    font-size: 13px;
    font-weight: 600;
    font-weight: 600;
    line-height: 13px;
    text-transform: uppercase;
}

.new-title {
    font-size: 20px;
}

.n-side {
    position: relative;
}

.n-img {
    float: left;
    width: 92px;
    margin-right: 20px;
}

.n-info {
    margin-left: 112px;
}

.n-info h5 {
	font-size: 16px;
	font-weight: 500;
}

.date-bx {
    float: left;
    width: 50px;
    margin-right: 20px;
}

.month-info {
    background-color: #fff;
    border-radius: 3px 3px 0 0;
    font-size: 12px;
    color: #6A6A6A;
    text-align: center;
    text-transform: uppercase;
}

.day-info {
    background-color: #619DC5;
    border-radius: 0 0 3px 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.news-item {
    margin-left: 70px;
    color: #fff;
}

.news-item h6 a {
    color: #fff;
}

.evt-time {
    color: #fff;
    font-size: 0.75em;
    font-weight: 500;
}

