body{
	line-height: 1.4;
}
.btn {
	font-weight: 600;
	font-family: 'SF Pro Display', sans-serif;
	border-radius: 8px;
	font-size: 16px;
	padding: 10px 20px;
}
.btn:hover{
	transform: none !important;
}
.btn-theme {
	background: #113DFA;
	color: #fff !important;
}
.btn-outline, .btn-outline:hover, .btn-outline:focus{
	border: 1px solid #303841;
	border-radius: 100px;
	color: #1F252A;
}
.btn-outline-light, .btn-outline-light:hover, .btn-outline-light:focus{
	border: 1px solid #fff;
	border-radius: 100px;
	color: #fff;
	background: transparent;
}
.btn-outline-theme, .btn-outline-theme:hover, .btn-outline-theme:focus{
	border: 1px solid #AABAFD;
	background: transparent;
	color: #375CFB;
	border-radius: 8px;
}
.bg-lblue {
  background: #f1f3f5 !important;
}
.bg-transparent {
	background-color: transparent !important;
}
.bg-blk140 {
  background: #1F252A;
}
.bg-blk1{
	background: #1C1C1E;
}
.owl-padding {
	max-width: 1920px;
	margin: 0 auto;
}
.fs-12{
	font-size: 12px !important;
}
.fs-14{
	font-size: 14px !important;	
}
.fs-20{
	font-size: 20px !important;
}
.fs-24{
	font-size: 24px !important;
}
.text-dim {
  color: #c4cbd3 !important;
}
.text-gb {
  color: #dadfe4 !important;
}
.text-bl120 {
  color: #375cfb !important;
}
.text-bl40 {
  color: #8090a1 !important;
}
.text-bl60 {
  color: #627285 !important;
}
.text-bl80 {
  color: #849bfd;
}
.text-bl100 {
  color: #414b58 !important;
}
.text-wt120 {
  color: #fcfdfd !important;
}
.text-wt20{
  color: #ADB7C3 !important
}
.text-wt60 {
  color: #D9D9D9 !important;
}
.text-blk {
  color: #1f252a;
}
.text-blk20 {
  color: #97a4b2 !important;
}
.text-blk-10 {
  color: #414b58;
}
.text-blk80 {
  color: #515f6e !important;
}
.text-blk120 {
  color: #303841 !important;
}
.lh-1{
	line-height: 1.1 !important;
}
.br-16{
	border-radius: 16px;
}
.t-h1, h1{
  font-size: 3.5rem;
  line-height: 1.2;
}
.t-h2, h2{
  font-size: 3rem;
  line-height: 1.2;
}
.t-h3, h3{
  font-size: 2.5rem;
}
.t-h4, h4{
  font-size: 2rem;
}
.t-h5, h5{
  font-size: 1.3rem;
}
.t-h6, h6 {
  font-size: 1.22rem;
}
.line-clamp2{
	overflow: hidden;
	display: -webkit-box;
  	-webkit-line-clamp: 2;
  	line-clamp: 2;
  	-webkit-box-orient: vertical;
}

.custom-check [type="checkbox"]:checked,
.custom-check [type="checkbox"]:not(:checked) {
    position: absolute;
    left: 0;
    opacity: 0;
    margin-left: 0;
}
.custom-check [type="checkbox"]:checked + label,
.custom-check [type="checkbox"]:not(:checked) + label{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-weight: 400;
}
.custom-check [type="checkbox"]:checked + label:before,
.custom-check [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    /*border: 1px solid #1F252A;*/
    border: 1px solid white;
    border-radius: 3px;
    
}

.custom-check [type="checkbox"]:checked + label:before{
    border: 1px solid #1F252A;
    background: #1F252A;
}
.custom-check [type="checkbox"]:not(:checked) + label:after {
	content: '';
    position: absolute;
    left: 4px;
    top: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
}
.custom-check [type="checkbox"]:checked + label:after{
    content: '\e930';
    font-family: icomoon;
    position: absolute;
    left: 4px;
    top: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
}
/*custom radios*/

.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: 0;
    opacity: 0;
}
.custom-radio [type="radio"]:checked + label,
.custom-radio [type="radio"]:not(:checked) + label{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
}
.custom-radio [type="radio"]:checked + label:before,
.custom-radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.custom-radio [type="radio"]:checked + label:after,
.custom-radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #849BFD;
    position: absolute;
    top: 5px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.custom-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.custom-radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/*Custom Radio Ends*/
.section {
	padding: 60px 0px;
	width: 100%;
	float: none;
	position: relative;
}
.flex-h{
	scrollbar-width: thin;
  	scrollbar-color: #1C1C1E transparent;
	display: flex;
	overflow: auto;
	margin-left: -.5rem;
	margin-right: -.5rem;
}
.custom-scroll{
	scrollbar-width: thin;
  	scrollbar-color: #1C1C1E transparent;
}
.countries-filter{
	background: #1C1C1E;
	color: #fff;
	width: auto;
	margin-left: -15px;
	margin-right: -15px;
	padding-bottom: 20px;
	text-align: center;
	padding-top: 100px;
}
.country-col span{
	white-space: nowrap;
	display: block;
}
.country-col img {
	width: 48px;
	margin-bottom: 10px;
	transform: scale(1);
	-webkit-transform: scale(1);
	transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
}
.country-col:hover img, .country-col:focus img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
}
.country-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 30px 20px 30px;
}

.lead-form{
	background-image: url(../img/overseas/bg-img329.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.lead-form .info {
     padding: 150px 100px 150px 0;
}
.lead-form .form-wrp {
	padding: 40px;
	border-radius: 16px;
	border: 2px solid #3D3737;
	background: rgba(58, 58, 60, 0.10);
}
.btn-form {
     display: flex;
     margin-top: 40px;
}
.btn-form .reca {
	width: 250px;
	height: auto;
}
.btn-form .btn {
     height: 62px;
     /*max-width: 280px;*/
     width: 180px;
     font-size: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
}
.form-control {
	border-radius: 6px;
	font-size: 16px;
	height: 48px;
}
.form-control.form-control-a {
	background-color: #1C1C1E;
	border-color: #1C1C1E;
	border-width: 0px;
	padding: .575rem .75rem;
	color: #fff;
}
textarea.form-control{
	height: auto;
}
.tabs-rounded.nav-tabs {
	border-bottom: none;
}
#faqTabs {
	display: flex;
	flex-wrap: nowrap;
	overflow: auto;
	padding-bottom: 10px;
	padding-top: 1px;
}
li.nav-item {
	align-items: center;
	display: inline-flex;
}
.nav-tabs .nav-link {
	font-weight: 600;
	font-size: 16px;
}
.tabs-rounded.nav-tabs .nav-link {
	background: transparent;
	color: #1F252A;
	border: 1px solid #DADFE4;
	padding: 10px 30px;
	display: inline-block;
	min-width: 75px;
	border-radius: 80px;
	margin-right: 10px;
}
.tabs-rounded.nav-tabs .nav-link.active {
	background: #1F252A;
	border-color: #1F252A;
	color: #fff !important;
}

.accordion-faq {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	/*max-width: 942px;
  	margin: 0 auto;*/
}
.card {
	background: #fff;
	border: 1px solid #DADFE4;
	border-radius: 16px;
}
.card .card-header{
	border-radius: 16px 16px 0 0;
}
.card .card-footer{
	border-radius: 0 0 16px 16px;
}
.accordion-faq .card {
	width: 100%;
	padding: 20px 0;
	border: 0;
	border-top: 1px solid #DADFE4;
	border-radius: 0;
}
.accordion-faq .card-header span{
	display: block;
	cursor: pointer;
	padding-right: 30px;
}
.accordion-faq .card-header span::after {
	position: absolute;
	font-family: icomoon;
	font-weight: 100;
	right: 0;
	content: '\e94c';
	height: 24px;
	width: 24px;
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
	transition: 0.3s ease;
	top: 22px;
	transform: rotate(-45deg);
	border: 2px solid #1F252A;
	border-radius: 24px;
	font-size: 13px;
	padding: 1px 4px;
}
.accordion-faq .card-header span.collapsed::after {
	transition: 0.3s ease;
	transform: rotate(-0deg);
}
.accordion-arrows .card-header a::after {
	position: absolute;
	font-family: icomoon;
	right: 15px;
	content: '\e991';
	height: 24px;
	width: 24px;
	transition: 0.3s ease;
	top: 15px;
	font-size: 13px;
}
.accordion-arrows .card-header a.collapsed::after {
	transition: 0.3s ease;
	content: "\e990";
}
.card-header{
	background: transparent;
	border-bottom: none;
}
.project-List {
	list-style: none;
	padding: 15px;
	margin: 0;
	border: 1px solid #DADFE4;
	border-radius: 8px;
	overflow: auto;
	height: calc(100% - 92px);
	scrollbar-width: thin;
	scrollbar-color: #1C1C1E transparent;
	max-height: 460px;
	position: relative;
}
.project-List li {
	padding: 10px 0;
	border-bottom: 1px solid #DADFE4;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.project-List li:last-child{
	border-bottom: none;
}
.fcn-wrapper::after {
	position: absolute;
	bottom: 0;
	height: 80px;
	left: 0;
	right: 0;
	content: '';
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+49,ffffff+100&0+0,0.6+49,1+100 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.6) 49%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.topC-explore {
	background-image: url(../img/overseas/bg-img326.png);
	padding: 15px;
	border-radius: 16px;
	background-size: cover;
}
.btn-wapp, .btn-wapp:hover, .btn-wapp:focus{
	background: #25D366;
	color: #fff;
	border: 1px solid #25D366;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  	-webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.has-shadow{
	box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow:0px 4px 24px 0px rgba(0, 0, 0, 0.12);
}
.btn-call, .btn-call:hover, .btn-call:focus{
	background: #DADFE4;
	color: #414B58;
}
.search-group {
	position: relative;
	max-width: 400px;
	margin-left: auto;
}
.search-group .icon {
	position: absolute;
	left: 10px;
	top: 20px;
	font-size: 20px;
}
.search-group .form-control {
	padding-left: 40px;
	background: #F1F3F5;
	border: 1px solid #C4CBD3;
}
.search-dark .form-control{
	background: #1F252A;
	border-color: #8090A1;
	color: #fff;
}
.search-dark .icon{
	color: #8090A1;
}
.pi-wrap {
	border: 1px solid #DADFE4;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}
.pi-wrap > img{
	width: 100%;
	height: 380px;
	object-fit: cover;
}
.pi-logo {
	position: absolute;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+12,ffffff+34,ffffff+100&0+0,0.6+12,0.9+34,1+100 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.6) 12%,rgba(255,255,255,0.9) 34%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

	bottom: 0;
	width: 100%;
	padding: 20px;
	text-align: center;
}
.sticky-col{
	position: sticky;
	top: 20px;
}
.loadmore{
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}
.loadmore a {
	background: #fff;
	padding: 10px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -22px;
	width: 205px;
}
.loadmore a span {
	font-size: 10px;
	border-radius: 30px;
	width: 19px;
	height: 19px;
	border: 1px solid #113DFA;
	padding: 4px 3px;
	display: inline-block;
	margin-left: 3px;
}
.blog-hero{
	position: relative;
	display: block;
}
.blog-hero img{
	width: 100%;
	min-height: 350px;
	object-fit: cover;
}
.blog-hero .blog-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 32px 20px 32px;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,1c1c1e+25,1c1c1e+50,1c1c1e+75,1c1c1e+100&0+0,0.3+25,0.6+50,0.75+75,1+100 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(28,28,30,0.3) 25%,rgba(28,28,30,0.6) 50%,rgba(28,28,30,0.75) 75%,rgba(28,28,30,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 0 0 16px 16px;
}
.uc-events .item {
	background: #fff;
	color: #1F252A;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
	height: calc(100% - 1.5rem);
	border: 1px solid #DADFE4;
}
.e-item-content {
	padding: 15px;
}
.e-item-img a {
	display: block;
}
.e-item-img {
	position: relative;
}
.amenities-grid {
	display: flex;
	flex-direction: column;
	overflow: auto;
	height: calc(100% - 92px);
	scrollbar-width: thin;
	scrollbar-color: #1C1C1E transparent;
	max-height: 460px;
}
.ag-col{
	border-radius: 8px;
	margin-bottom: 15px;
	border: 1px solid #DADFE4;
	background: #fff;
}
.ag-ico {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	text-align: center;
	padding: 5px;
	margin-right: 20px;
	display: inline-block;
}
.ag-ico img {
	width: 30px;
}
.ag-header {
	padding: 10px;
	position: relative;
}
.ag-body {
	padding: 0 15px;
}
.ag-list{
	margin-bottom: 0;
}
.ag-body.show{
	border-top: 1px solid #DADFE4;
}
.ag-list-item {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-right: 60px;
	margin: 10px 0;
	border-bottom: 1px solid #DADFE4;
	padding-bottom: 10px;
}
.ag-list-item:last-child{
	border-bottom: 0;
}
.accordion .ag-header:after{
	position: absolute;
	content: '\e991';
	font-family: icomoon;
	position: absolute;
	right: 20px;
	top: 18px;
}
.accordion .ag-header.collapsed:after{
	content: '\e990';
}
.walk-distane {
	position: absolute;
	right: 0;
	top: 0;
	text-align: right;
	font-weight: 500;
}
.walk-distane img{
	width: 10px;
	margin-right: 4px;
}
	
.walk-distane small{
	display: block;
	color: #fff;
}

.ag-green .ag-ico, .ag-green .ag-list-item::before {
	background: #409CFF;
}
.ag-purple .ag-ico, .ag-purple .ag-list-item::before {
	background: #CAB2FD;
}
.ag-brown .ag-ico, .ag-brown .ag-list-item::before {
	background: #D7B89B;
}
.ag-orange .ag-ico, .ag-orange .ag-list-item::before {
	background: #FFB340;
}
.ag-red .ag-ico, .ag-red .ag-list-item::before {
	background: #FF6961;
}
.ag-yellow .ag-ico, .ag-yellow .ag-list-item::before {
	background: #FFDD95;
}
.ag-blue .ag-ico, .ag-blue .ag-list-item::before {
	background: #30DB5B;
}
.owl-nav {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	left: 50%;
	height: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.uc-events{
	position: relative;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-prev:hover {
	background: url("../img/overseas/arrow_black.png") no-repeat center center;
	background-size: 18px;
	width: 30px;
	position: relative;
	top: 0;
	height: 30px;
	background-color: #fff;
	border-radius: 30px;
	background-size: 10px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-next:hover {
	background: url("../img/overseas/arrow_black.png") no-repeat center center;
	background-size: 18px;
	transform: rotate(180deg);
	width: 30px;
	position: relative;
	top: 0;
	height: 30px;
	background-color: #fff;
	border-radius: 30px;
	background-size: 10px;
}
.owl-carousel .owl-nav button span {
	font-size: 0;
	color: #ffffff;
	opacity: 0;
}
.events-section{
	background-image: url(../img/overseas/bg-img332.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.h2-ico{
	width: 30px;
}
.mc-wrp {
  background: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  position: relative;
  height: 62px;
  color: #1F252A;
}

.mc-wrp .img-wrp {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.mc-wrp .img-wrp img {
  width: 30px;
}

.mc-wrp.active {
  background: #113DFA;
  color: #000;
}

.mc-text {
  font-weight: 700;
  font-size: 20px;
  padding: 6px 0 0 0;
}

.project-info-links{
  padding-top: 3rem;
  padding-bottom: 3rem;
  transition: 0.2s ease-in all;
  position: relative;
}
.project-info-links.sticky{
  position: sticky;
  z-index: 99;
  top: 72px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: 0.2s ease-in all;
  box-shadow: 0px 1px 12px rgba(0,0,0,0.2);
}
.project-info-links.sticky .mc-wrp{
  height: 50px;
}
.project-info-links.sticky .mc-wrp .img-wrp{
  top: 2px;
}
.sf-hours{
	max-height: 360px;
	overflow: auto;
	padding-right: 5px;
}
.sf-hero{
	height: 420px;
	width: 100%;
	object-fit: cover;
}
.sf-hours .d-wrp {
	border: 1px solid #DADFE4;
	padding: 10px;
	position: relative;
	border-radius: 6px;
	margin-bottom: 5px;
}
/*.sf-hours .d-wrp:hover, .sf-hours .d-wrp:focus{
	background: #1F252A;
	border-color: #1F252A;
	color: #fff;
}*/
.sf-hours .d-wrp.active{
	background: #1F252A;
	border-color: #1F252A;
	color: #fff;
}
.sf-hours::after {
	position: absolute;
	bottom: 0;
	height: 80px;
	left: 0;
	right: 0;
	content: '';
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.6) 49%,rgba(255,255,255,1) 100%);
}
.st-tag{
	font-size: 14px;
	font-family: 'SF Pro Display', sans-serif;
	padding: 6px 12px;
	display: inline-block;
	border-radius: 4px;
}
.st-success{
	background: #34C759;
	color: #fff;
}
.oc-members {
	margin-top: 40px;
}
.ocm-img {
	width: 160px;
	height: 160px;
	margin: 0 auto;
	display: block;
	border-radius: 160px;
	overflow: hidden;
	border: 1px solid #fff;
	position: relative;
	background: #fff;
}
.ocm-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
}
.ocm-info .agent-email {
	color: #627285;
	font-weight: 600;
}
.agent-code{
	color: #627285;
}
.cf-members .item {
	background: #29292C;
	color: #FFFFFF;
	padding: 20px;
}
.pg-overview{
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 0;
}
.pg-overview li{
  padding: 20px;
  border: 1px solid #DADFE4;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 20px;
}
.pg-overview li:first-child{
  background: #F1F3F5;
}
.ocm-connects{
	display: flex;
	align-items: center;
	justify-content: center;
}
.ocm-connects span{
	width: 48px;
	height: 48px;
	border-radius: 48px;
}
.btn-icon-round{
	height: 48px;
	width: 48px;
	border-radius: 48px;
	font-size: 24px;
  padding: 9px;
	text-align: center;
}
.active.lastactiveitem::before{
	position: absolute;
	left: 0;
	right: 0;
	background: #1F252AB3;
	content: '';
	right: ;
	top: 0;
	bottom: 0;
	content: '';
	z-index: 1;
}
.hero-mc > img{
	max-height: 700px;
	width: 100%;
	object-fit: cover;
}
.overlay-mc {
	width: 100%;
	padding: 40px 0;
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(180deg, rgba(31, 37, 42, 0.00) 0%, rgba(31, 37, 42, 0.70) 26.04%, rgba(31, 37, 42, 0.80) 52.08%, rgba(31, 37, 42, 0.90) 75.03%, #1F252A 100%);
}
.media-count {
	background: rgba(31, 37, 42, 0.8);
	color: #fff;
	padding: 10px;
	border-radius: 4px;
	display: flex;
	align-items: center;
}
#thumbGallery img{
	border-radius: 8px;
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}
#thumbs img{
	border-radius: 8px;
	height: 160px;
  object-fit: cover;
}
.modal-header .close-top {
	position: absolute;
	background: #fff;
	height: 32px;
	width: 32px;
	font-size: 15px;
	top: -21px;
	padding: 0;
	opacity: 1;
	border-radius: 32px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	left: 0;
}
.modal .modal-ct{
	padding-top: 40px;
}
.mc-owl.owl-carousel .owl-stage-outer{
	margin-left: 15px;
}
#map{
	height: 600px;
}
#map .leaflet-popup-content{
	min-width: 260px;
}
@media screen and (min-width:1300px) {
  .container {
    max-width: 1240px !important;
  }
}
@media screen and (min-width:1500px) {
  .container {
    max-width: 1440px !important;
  }
}
@media screen and (max-width:1366px) {
	
	.t-h1, h1 {
		font-size: 3rem;
	}
	.t-h2, h2 {
		font-size: 2.5rem;
	}
	.t-h3, h3 {
		font-size: 1.75rem;
	}
	.t-h4, h4 {
		font-size: 1.5rem;
	}
	.t-h5, h5 {
		font-size: 1.25rem;
	}
	.t-h6, h6 {
		font-size: 1.1rem;
	}
  	.blog-hero .blog-info{
		padding: 40px 15px 20px 15px;
	}
}
@media screen and (max-width:1199px) {
	.pi-wrap > img{
		height: 300px;
	}
}
@media screen and (max-width:991px) {
	.countries-filter .flex-h {
		justify-content: flex-start !important;
	}
	.country-col {
		padding: 10px 20px;
	}
	.country-col span{
		font-size: 14px;
	}
	.countries-filter{
		padding-left: 15px;
		padding-right: 15px;
	}
	#map{
		height: 300px;
	}
	.project-List{
		max-height: 300px;
	}
	.mc-wrp{
		padding: 0 20px;
		height: 52px;
	}
	.project-info-links {
	  padding-top: 1rem;
	  padding-bottom: 1.5rem;
	}
	.overlay-mc{
		padding: 20px 0
	}
	.ocm-img {
	  width: 120px;
	  height: 120px;
	}
}

@media screen and (max-width:767px) {
	
	.t-h1, h1 {
		font-size: 2.75rem;
	}
	.t-h2, h2 {
		font-size: 2.25rem;
	}
	.t-h3, h3 {
		font-size: 1.75rem;
	}
	.t-h4, h4 {
		font-size: 1.5rem;
	}
	.t-h5, h5 {
		font-size: 1.15rem;
	}
	.t-h6, h6 {
		font-size: 1.1rem;
	}
	.owl-carousel .owl-item img{
		width: 100% !important;
	}
	.country-col {
		padding: 10px;
	}
	.country-col img {
		width: 30px;
	}
	.country-col span{
		font-size: 12px;
	}
	#map{
		height: 300px;
	}
	.pg-overview li{
		padding: 10px;
		font-size: 16px;
		margin-right: 10px;
  	smargin-bottom: 10px;
	}
	.lead-form .form-wrp{
		padding: 20px;
	}
	.pi-wrap > img {
		height: 280px;
	}
	.tabs-rounded.nav-tabs .nav-link{
		white-space: nowrap;
		padding: 10px 20px;
	}
	.countries-filter{
		padding-top: 40px;
	}
	.search-group{
		margin-left: 0;
	}
	.blog-hero .blog-info{
		top: 0;
	  display: flex;
	  flex-direction: column;
	  justify-content: flex-end;
	  text-align: right;
	  padding-left: 150px;
	}
}
@media screen and (max-width:576px) {
	.t-h1, h1 {
		font-size: 2.25rem;
	}
	.t-h2, h2 {
		font-size: 2rem;
	}
	.search-group .form-control{
		height: 52px;
	}
	.search-group .icon{
		top: 16px;
	}
	.section {
	  padding: 40px 0px;
	}
	.pi-wrap > img {
		height: auto;
		max-height: 280px;
	}
	.blog-hero img{
		min-height: 250px;
	}
	.countries-filter{
		padding-top: 20px;
	}
	.active.firstactiveitem::before, .active.lastactiveitem::before{
		content: none;
	}
}