@import url("https://fonts.googleapis.com/css?family=Poppins:wght@300,400,500,700");
@import url("https://fonts.googleapis.com/css?&family=Roboto:wght@300,400,500,700&display=swap");

/* Normal Desktop : 1200px */
/* Normal Desktop : 992px */
/* Tablet : 768px */
/* Large Mobile : 480px */
/* Small Mobile : 320px */
body {
	font-family: "Roboto", sans-serif;
}
a,
button {
	color: #1F1F1F;
	outline: medium none;
}
h1, h2, h3, h4, h5 {
	font-family: "Poppins", sans-serif;
	color: #1F1F1F;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}
ul {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none;
}
p {
}
label {
	color: #7e7e7e;
	cursor: pointer;
	font-weight: 400;
}
a,
.button {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
a:focus,
.button:focus, button:focus {
	text-decoration: none;
	outline: none;
}
a:focus {
	color: #fff;
	text-decoration: none;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
	text-decoration: none;
	color: #1F1F1F;
}
*::-moz-selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
*::-webkit-input-placeholder {
	color: #cccccc;
	font-size: 14px;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #cccccc;
	font-size: 14px;
	opacity: 1;
}
*::-ms-input-placeholder {
	color: #cccccc;
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: #cccccc;
	font-size: 14px;
	opacity: 1;
}

/* Header CSS */
.header-area {
	left: 0;
	right: 0;
	width: 100%;
	top: 0;
	z-index: 9;
}
@media (max-width: 767px) {
	.header-area {
		padding-top: 0;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.header-area {
		padding-top: 0;
	}
}
.header-area .main-header-area {
	padding: 18px 0;
	background: #fff;
}
.header-area .main-header-area .main-menu {
	text-align: right;
	padding: 12px 0;
}
.header-area .main-header-area .main-menu ul li {
	display: inline-block;
	position: relative;
	margin: 0 10px;
}
.header-area .main-header-area .main-menu ul li a {
	color: #aaa;
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	padding: 0px 0px 0px 0px;
	font-family: "Poppins", sans-serif;
	position: relative;
}
.header-area .main-header-area .main-menu ul li a:hover,
.header-area .main-header-area .main-menu ul li a.active{
	color: #ee9b11;
}
.header-area .main-header-area .main-menu ul li a.contact {
	background: #7d274c;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	position: relative;  
	padding: 12px 26px;
	border: 1px solid transparent;
	border-radius: 0px;
}
.header-area .main-header-area .main-menu ul li a.contact:hover{
	background: #fff;
	color: #7d274c;
	border: 1px solid #7d274c;
	text-decoration: none;
}
.header-area .main-header-area .main-menu ul li .submenu {
	position: absolute;
	left: 0;
	top: 160%;
	background: #fff;
	width: 200px;
	z-index: 2;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
	opacity: 0;
	visibility: hidden;
	text-align: left;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
.header-area .main-header-area .main-menu ul li .submenu li {
	display: block;
}
.header-area .main-header-area .main-menu ul li .submenu li a {
	color: #aaa;
	padding: 10px 15px;
	position: inherit;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: block;	
}
.header-area .main-header-area .main-menu ul li .submenu li a:hover {
	color: #ee9b11;
}
.header-area .main-header-area .main-menu ul li:hover > .submenu {
	opacity: 1;
	visibility: visible;
	top: 150%;
}
.header-area .main-header-area.sticky {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: -70px;
	left: 0;
	right: 0;
	z-index: 99;
	transform: translateY(70px);
	transition: transform 500ms ease, background 500ms ease;
	-webkit-transition: transform 500ms ease, background 500ms ease;
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.96);
}
@media (max-width: 767px) {
	.header-area .main-header-area.sticky {
		padding: 10px 10px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.header-area .main-header-area.sticky {
		padding: 10px 10px;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.header-area .main-header-area.sticky {
		padding: 10px 20px;
	}
}
@media (min-width: 1200px) and (max-width: 1500px) {
	.header-area .main-header-area.sticky {
		padding: 10px 20px;
	}
}
.header-area .main-header-area.sticky .main-menu {
	padding: 0;
}
.header-area .header-top-area {
	padding: 12px 0;
	background: #f8f4f6;
}

@media (max-width: 767px) {
	.header-area .header-top-area .social-media-links {
		text-align: center;
	}
}

.header-area .header-top-area .social-media-links a {
	font-size: 15px;
	color: #333;
	margin-right: 10px;
}
.header-area .header-top-area .social-media-links a i{
	color: #7d274c;
	margin-right: 10px;
	font-size: 20px;
}
.header-area .header-top-area .social-media-links a:hover, 
.header-area .header-top-area .social-media-links a i:hover {
	color: #ee9b11;
}
.header-area .header-top-area .quick-contact {
	text-align: right;
}
@media (max-width: 767px) {
	.header-area .header-top-area .quick-contact {
		text-align: center;
	}
}
.header-area .header-top-area .quick-contact ul li {
	display: inline-block;
}
.header-area .header-top-area .quick-contact ul li a {
	font-size: 16px;
	color: #aaa;
	margin-left: 50px;
}
@media (max-width: 767px) {
	.header-area .header-top-area .quick-contact ul li a {
		margin-left: 0;
		margin: 0 5px;
	}
}
.header-area .header-top-area .quick-contact ul li a i {
	color: #7d274c;
	margin-right: 10px;
	font-size: 20px;
}
.header-area .header-top-area .quick-contact ul li a:hover {
	color: #ee9b11;
}

/* Mobile Menu CSS */
@media (max-width: 991px) {
	.logo img{
		width: 170px !important;
		height: auto;
	}
}
@media (max-width: 767px) {
	.mobile_menu {
		position: absolute;
		right: 0px;
		width: 100%;
		z-index: 9;
	}
}
.slicknav_menu .slicknav_nav {
	background: #fff;
	float: right;
	margin-top: 0;
	padding: 0;
	width: 95%;
	padding: 0;
	border-radius: 0px;
	margin-top: 5px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 11px;
}
.slicknav_menu .slicknav_nav a:hover {
	background: transparent;
	color: #009DFF;
}
.slicknav_menu .slicknav_nav a.active {
	color: #009DFF;
}
@media (max-width: 767px) {
	.slicknav_menu .slicknav_nav a i {
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.slicknav_menu .slicknav_nav a i {
		display: none;
	}
}
.slicknav_menu .slicknav_nav .slicknav_btn {
	background-color: transparent;
	cursor: pointer;
	margin-bottom: 10px;
	margin-top: -40px;
	position: relative;
	z-index: 99;
	border: 1px solid #ddd;
	top: 3px;
	right: 5px;
	top: -36px;
}
.slicknav_menu .slicknav_nav .slicknav_btn .slicknav_icon {
	margin-right: 6px;
	margin-top: 3px;
	position: relative;
	padding-bottom: 3px;
	top: -11px;
	right: -5px;
}
@media (max-width: 767px) {
	.slicknav_menu {
		margin-right: 0px;
	}
}
.slicknav_nav .slicknav_arrow {
	float: right;
	font-size: 22px;
	position: relative;
	top: -9px;
}
.slicknav_btn {
	background-color: transparent;
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	z-index: 99;
	border: none;
	border-radius: 3px;
	top: 5px;
	padding: 5px;
	right: 5px;
	margin-top: -5px;
	top: -31px;
}
.slicknav_btn {
	background-color: transparent;
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	z-index: 99;
	border: none;
	border-radius: 3px;
	top: 5px;
	padding: 5px;
	right: 0;
	margin-top: -5px;
	top: -50px;
}

/* Slider CSS */
.slider_bg_1 {
	background-image: url(../images/banner/slider1.jpg);
}
.slider_bg_2 {
	background-image: url(../images/banner/slider2.jpg);
}
.slider_bg_3 {
	background-image: url(../images/banner/slider3.jpg);
}
.slider_bg_4 {
	background-image: url(../images/banner/slider4.jpg);
}
.slider_area .single_slider {
	height: 700px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
@media (max-width: 767px) {
	.slider_area .single_slider {
		height: 420px;
	}
}
.slider_area .single_slider .slider_text {
	background-color: #9c7235;
	padding: 20px;
	opacity: 0.7;
	width: 60%;
}
.slider_area .single_slider .slider_text h3 {
	color: #fff;
	font-size: 70px;
	letter-spacing: 2px;
	font-weight: 300;
}
.slider_area .single_slider .slider_text h3 span {
	font-weight: 700;
}
@media (max-width: 767px) {
	.slider_area .single_slider .slider_text h3 {
		font-size: 33px;
		letter-spacing: 3px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.slider_area .single_slider .slider_text h3 {
		font-size: 30px;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.slider_area .single_slider .slider_text h3 {
		font-size: 35px;
		letter-spacing: 3px;
	}
}
.slider_area .single_slider .slider_text p {
	font-size: 18px;
	font-weight: 400;
	color: #727272;
	margin-bottom: 40px;
	margin-top: 10px;
}
@media (min-width: 992px) and (max-width: 1200px) {
	.slider_area .single_slider .slider_text p {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.slider_area .single_slider .slider_text p {
		font-size: 16px;
	}
}

.owl-carousel .owl-nav div {
  background: transparent;
  height: 50px;
  left: 0px;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 50px;
  color: #fff;
  background-color: transparent;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  left: 50px;
  font-size: 15px;
  line-height: 50px;
  border: 1px solid #fff;
  left: 140px;
}
.owl-carousel .owl-nav div.owl-next {
  left: auto;
  right: 140px;
}
.owl-carousel .owl-nav div.owl-next i {
  position: relative;
  right: 0;
}
.owl-carousel .owl-nav div.owl-prev i {
  position: relative;
  top: 0px;
}
.owl-carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}
.owl-carousel:hover .owl-nav div:hover {
  color: #fff;
  background: #009DFF;
  border: 1px solid transparent;
}

/* Title CSS */
.section_title {
	margin-bottom: 50px;
}
.section_title h3 {
	font-weight: 500;
	color: #1F1F1F;
	position: relative;
	z-index: 9;
	padding-bottom: 15px;
}
.section_title h3::before {
	position: absolute;
	left: 0;
	background: #ee9b11;
	height: 2px;
	width: 150px;
	content: '';
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}


/* Button CSS */
.btn-contact {
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	background-color: #7d274c;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding: 12px 26px;
    border: 1px solid transparent;
    border-radius: 0px;
	text-align: center;
}
.btn-contact:hover {
	background: #fff;
	color: #7d274c !important;
	border: 1px solid #7d274c;
}
.btn-white {
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	background-color: #fff;
    color: #7d274c;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding: 12px 26px;
    border: 1px solid transparent;
    border-radius: 0px;
	text-align: center;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.btn-white:hover {
	background: #fff;
	color: #7d274c !important;
	border: 1px solid #7d274c;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.btn-calculate, .btn-view{
	font-family: "Poppins", sans-serif;
	cursor: pointer;	
	background-color: #ee9b11;
	color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding: 12px 26px;
    border: 1px solid transparent;
    border-radius: 0px;
	text-align: center;
}
.btn-calculate:hover, .btn-view:hover{
	background: #fff;
    color: #ee9b11 !important;
    border: 1px solid #ee9b11;
}

/* Welcome Area CSS */
.welcome_area {
	padding-top: 120px;
	padding-bottom: 80px;
}
@media (max-width: 767px) {
	.welcome_area {
		padding-bottom: 80px;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.welcome_area {
		padding-bottom: 80px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.welcome_area {
		padding-bottom: 80px;
	}
}
.welcome_area .welcome_docmed_info {
	padding-left: 90px;
}
@media (max-width: 767px) {
	.welcome_area .welcome_docmed_info {
		padding-left: 0;
		margin-top: 40px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.welcome_area .welcome_docmed_info {
		padding-left: 0;
		margin-top: 100px;
	}
}
.welcome_area .welcome_docmed_info h2 {
	font-size: 18px;
	font-weight: 400;
	color: #1F1F1F;
	margin-bottom: 40px;
	position: relative;
	z-index: 9;
	padding-bottom: 9px;
}
.welcome_area .welcome_docmed_info h2:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 50px;
	background: #ee9b11;
}
.welcome_area .welcome_docmed_info h3 {
	font-weight: 500;
	font-size: 36px;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.welcome_area .welcome_docmed_info h3 {
		font-size: 30px;
	}
}
.welcome_area .welcome_docmed_info p {
	font-size: 16px;
	color: #727272;
	line-height: 28px;
}
.welcome_area .welcome_docmed_info ul {
	margin-bottom: 40px;
	margin-top: 25px;
}
.welcome_area .welcome_docmed_info ul li {
	color: #727272;
	font-size: 16px;
	line-height: 28px;
}
.welcome_area .welcome_docmed_info ul li i {
	margin-right: 10px;
	color: #7d274c;
	font-weight: 16px;
}

/* Breadcrumbs CSS */
.breadcam_bg {
	background-image: url(../images/banner/bradcam.png);
}
.breadcam_bg_1 {
	background-image: url(../images/banner/bradcam2.png);
}
.breadcam_bg_2 {
	background-image: url(../images/banner/bradcam3.png);
}
.bradcam_area {
	background-size: cover;
	background-position: center center;
	padding: 50px 0px;
	background-repeat: no-repeat;
}

@media (max-width: 767px) {
	.bradcam_area {
		padding: 120px 0;
	}
}
.bradcam_area h3 {
	font-size: 50px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.bradcam_area h3 {
		font-size: 30px;
	}
}
.bradcam_area p {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	text-transform: capitalize;
}
.bradcam_area p a {
	color: #fff;
}
.bradcam_area p a:hover {
	color: #fff;
}

.overlay {
	position: relative;
	z-index: 0;
}
.overlay::before {
	position: absolute;
	content: "";
	background-color: #1f1f1f;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .5;
}
.overlay2 {
	position: relative;
	z-index: 0;
}
.overlay2::before {
	position: absolute;
	content: "";
	background-color: #000000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.3;
}
.overlay_skyblue {
	position: relative;
	z-index: 0;
}
.overlay_skyblue::before {
	position: absolute;
	content: "";
	background-color: #7d274c;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.8;
}
.bradcam_overlay {
	position: relative;
	z-index: 0;
}
.bradcam_overlay::before {
	position: absolute;
	content: "";
	background: -moz-linear-gradient(left, #ee9b11 0%, #7d274c 24%, rgba(124, 185, 233, 0) 96%, rgba(125, 185, 232, 0) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ee9b11 0%, #7d274c 24%, rgba(124, 185, 233, 0) 96%, rgba(125, 185, 232, 0) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ee9b11 0%, #7d274c 24%, rgba(124, 185, 233, 0) 96%, rgba(125, 185, 232, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d274c', endColorstr='#007db9e8',GradientType=1 );
	/* IE6-9 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 1;
}

/* Content Area CSS */
.our_content_area {
	background: #f8f4f6;
	padding-top: 80px;
	padding-bottom: 80px;
}
.our_content_area .single-tile {
	background: #fff;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.04);
	-moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.04);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.04);
}
.our_content_area .single-tile .tile-thumb {
	overflow: hidden;
}
.our_content_area .single-tile .tile-thumb img {
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.our_content_area .single-tile .tile-content {
	padding: 22px 30px 24px 30px;
}
.our_content_area .single-tile .tile-content h3 {
	margin-bottom: 0;
}
.our_content_area .single-tile .tile-content h3 a {
	font-size: 22px;
	color: #1F1F1F;
	line-height: 33px;
	font-weight: 500;
}
.our_content_area .single-tile .tile-content h3 a:hover {
	color: #7d274c;
}
.our_content_area .single-tile .tile-content p {
	font-size: 16px;
	line-height: 28px;
	color: #727272;
	margin-top: 5px;
	margin-bottom: 10px;
}
.our_content_area .single-tile .tile-content a.learn_more {
	color: #7d274c;
	font-size: 16px;
}
.our_content_area .single-tile .tile-content a.learn_more:hover {
	text-decoration: underline;
}
.our_content_area .single-tile:hover .tile-thumb img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

/* Service Area CSS */
.service_area {
	background: #7d274c;
}
.service_area .single_service {
	padding: 40px 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .service_area .single_service {
		padding: 40px 20px;
  }
}
.service_area .single_service .icon {
	margin-bottom: 10px;
}
.service_area .single_service .icon i {
	font-size: 50px;
	color: #fff;
}
.service_area .single_service h3 {
	font-size: 26px;
	font-weight: 500;
	color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
	.service_area .single_service h3 {
		font-size: 20px;
	}
}
.service_area .single_service p {
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #fff;
	margin-top: 10px;
	margin-bottom: 26px;
}
.service_area .col-xl-4:nth-child(1) .single_service {
	background: #7d274c;
}
.service_area .col-xl-4:nth-child(2) .single_service {
	background: #ee9b11;
}
.service_area .col-xl-4:nth-child(3) .single_service {
	background: #7d274c;
}

/* Our Team CSS */
.our-team {
	padding-top: 120px;
	padding-bottom: 120px;
}
@media (max-width: 767px) {
	.our-team {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
.our-team .single_expert .expert_thumb {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	overflow: hidden;
}
.our-team .single_expert .expert_thumb img {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	width: 100%;
}
.our-team .single_expert .experts_name {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	background: #f8f4f6;
	padding-top: 16px;
	padding-bottom: 18px;
}
.our-team .single_expert .experts_name h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 1px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.our-team .single_expert .experts_name span {
	color: #919191;
	font-size: 13px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.our-team .single_expert:hover .expert_thumb img {
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
.our-team .single_expert:hover .experts_name {
	background: #7d274c;
}
.our-team .single_expert:hover .experts_name h3 {
	color: #fff;
}
.our-team .single_expert:hover .experts_name span {
	color: #fff;
}
.our-team .owl-carousel .owl-nav div {
	background: transparent;
	height: 40px;
	left: 0px;
	text-align: center;
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	width: 40px;
	color: #919191;
	background-color: transparent;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 15px;
	line-height: 40px;
	border: 1px solid #EEEEEE;
	left: auto;
	left: auto;
	top: -100px;
	right: 55px;
}
.our-team .owl-carousel .owl-nav div.owl-next {
	left: auto;
	right: 0;
}
.our-team .owl-carousel .owl-nav div.owl-next i {
	position: relative;
	right: 0;
}
.our-team .owl-carousel .owl-nav div.owl-prev i {
	position: relative;
	top: 0px;
}

/* Calculator and Countries CSS */
.calculator-bg {
    padding: 20px;
    background: #f8f4f6;	
}
.countries {
    background: #f8f4f6;
    padding: 50px 0px;
}
.countries-white-bg {
    background: #fff;
    padding: 50px 0px;
}

/* Call to Action and Contact Us Page CSS */
.cta .single {
	padding: 150px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	.cta .single {
		padding: 80px;
		display: block !important;
	}
}
.cta .single .info {
	margin-right: 30px;
}
.cta .single .info h3 {
	color: #fff;
}
.cta .single .info_button a{	
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid #fff;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	text-align: center;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}
.cta .single .info_button a:hover {
	background: #fff;
	color: #7d274c !important;
	border: 1px solid transparent;
}
.cta .contact_bg_1 {
	background-image: url(../images/banner/contact.jpg);
}
.contact-form-bg {
    padding: 20px;
    background: #f8f4f6;
}
.contact-info {
	margin-bottom: 25px;
}
.contact-info__icon {
	margin-right: 20px;
}
.contact-info__icon i {
	color: #8f9195;
	font-size: 27px;
}
.contact-info .media-body h3 {
	font-size: 16px;
	margin-bottom: 0;
	font-size: 16px;
	color: #2a2a2a;
}
.contact-info .media-body h3 a:hover {
	color: #ff5e13;
}
.contact-info .media-body p {
	color: #8a8a8a;
}
.contact-title {
	font-size: 27px;
	font-weight: 600;
	margin-bottom: 20px;
}
.form-contact label {
	font-size: 14px;
}
.form-contact .form-group {
	/*margin-bottom: 30px;*/
}
.form-contact .form-control {
	border: 1px solid #e5e6e9;
	border-radius: 0px;
	height: 48px;
	padding-left: 18px;
	font-size: 14px;
	background: transparent;
}
.form-contact .form-control:focus {
	outline: 0;
	box-shadow: none;
}
.form-contact .form-control::placeholder {
	font-weight: 300;
	color: #999999;
}
.form-contact textarea {
	border-radius: 0px;
	height: 100% !important;
}
.contact-section {
	padding: 80px 0;
}

@media (max-width: 991px) {
	.contact-section {
		padding: 60px 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.contact-section {
		padding: 80px 0 50px;
	}
}
.contact-section .btn_2 {
	background-color: #191d34;
	padding: 18px 60px;
	border-radius: 50px;
	margin-top: 0;
}
.contact-section .btn_2:hover {
	background-color: #ff5e13;
}

/* Footer CSS */
.footer {
	background-repeat: no-repeat;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.footer .footer_top {
	padding: 50px 0px;
	background-color: #7d274c;
}
@media (max-width: 767px) {
	.footer .footer_top {
		padding: 30px;
	}
}
@media (max-width: 767px) {
	.footer .footer_top .footer_widget {
		margin-bottom: 30px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.footer .footer_top .footer_widget {
		margin-bottom: 30px;
	}
}
.footer .footer_top .footer_widget .footer_title {
	font-size: 22px;
	font-weight: 400;
	color: #ee9b11;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.footer .footer_top .footer_widget .footer_title {
		margin-bottom: 20px;
	}
}
.footer .footer_top .footer_widget ul li a {
	font-size: 16px;
	color: #fff;
	line-height: 36px;
}
.footer .footer_top .footer_widget ul li a:hover {
	color: #ee9b11;
}
.footer .copyright {
	background-color: #7d274c;
}
.footer .copyright p {
	font-size: 12px;  
	line-height: 22px;
	color: #fff;
	margin-bottom: 0;
	font-weight: 300;
	text-align: center;
	border-top: 1px solid #999;  
	padding: 20px 0px;
}
.footer .copyright a {
	color: #ee9b11;
}
.footer .copyright a:hover {
	text-decoration: underline;
}

/* Nice Select CSS */
.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	border-radius: 5px;
	border: solid 1px #e8e8e8;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	height: 42px;
	line-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;
}
.nice-select:hover {
	border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
	border-color: #999;
}
.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none; 
}
.nice-select.disabled:after {
	border-color: #cccccc; 
}
.nice-select.wide {
	width: 100%;
}
.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important; 
}
.nice-select.right {
	float: right;
}
.nice-select.right .list {
	left: auto;
	right: 0;
}
.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}
.nice-select.small:after {
	height: 4px;
	width: 4px;
}
.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}
.nice-select .list {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}
.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
	background-color: #f6f6f6;
}
.nice-select .option.selected {
	font-weight: bold;
}
.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}
.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}
.nice-select:after {
	content: "\e64b";
	display: block;
	height: 5px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 30px;
	top: 8px;
	transition: all 0.15s ease-in-out;
	width: 5px;
	font-family: 'themify';
	color: #ddd;
}
.nice-select.open:after {
}
.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}