@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/*font-family: 'Poppins', sans-serif;*/
 
/*************** DEFAULT CSS ***************/
:root {
	--body-font: 'Poppins', sans-serif;
	--body-color: #fff;
	--primary-color: #23192e;
	--secondary-color: #f1c290;
	--tertiary-color: #40344D;
	--black: #000;
	--white: #fff;
	--grey: #e6e6e4;
	--heading-font: 'Poppins', sans-serif;

}

body {

	font-family: var(--body-font);
	font-size: 14px;
	font-style: normal;
	line-height: 24px;
	font-weight: 400;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--primary-color);

}

html {
	scroll-behavior: smooth;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color: #fff;
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color: #fff;
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--secondary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
}

hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255 ,0.2);
	display: block;
	width: 100%;
	position: relative;
}

img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/
.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-green {
	color: var(--secondary-color) !important;
}

.text-blue {
	color: var(--primary-color) !important;
}

.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

.uppercase {
	text-transform: uppercase;
}

/*-----------background styles------------*/
.bg-secondary {
	background: var(--secondary-color);
}

.bg-primary {
	background: var(--primary-color)
}
.bg-tertiary {
	background: var(--tertiary-color)
}
.bg-white {
	background: var(--white)
}


/*************** PRELOADER ***************/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
}

#status {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color:var(--primary-color);
	left: 0;
	top: 0;
	background-image: url(../images/loading.png);
	background-repeat: no-repeat;
	background-position: center;
	margin: 0;
}

#status {
	/*-webkit-animation: flipInY 1s infinite alternate;
	-moz-animation: flipInY 1s infinite alternate;
	-ms-animation: flipInY 1s infinite alternate;
	-o-animation: flipInY 1s infinite alternate;
	animation: flipInY 1s infinite alternate;*/
}

/*************** BACK TO TOP ***************/
 
.column-reverse {
	flex-direction: none;
}


 
/*********************************/

.container {
	width: 1320px;
	margin: 0 auto;
}

.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 15px;
	width:100%;
	display:block;
	}
	
.img-div{
    width:100%;
    height:620px;
}
.img-div img{
   height:100%;
}
.corner-radius{
	border-radius: 10px 10px 40px 40px;
	}	
/*************HOVER EFFECT*******/
.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 15px;*/	
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}
	
	

.hover-effect img {
 display:block;
  -moz-transition: all 7s ease;
  -o-transition: all 7s ease;
  -webkit-transition: all 7s ease;
  transition: all 7s ease;
	width:100%;
}
.hover-effect:hover img {

}


.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}

section {
	width: 100%;
	display:flex;
	overflow:auto;
	position: relative;
}
  
 

/*************** HOME PAGE CSS ***************/
 
/*************** FIXED HEADER ***************/

header {
	width: 100%;
	z-index: 9;
	top: 0;
	left: 0px;
	position:absolute;
	display:flex;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

header.smaller {
	padding:5px 0;
	position: fixed;	
	/*-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	-moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	-moz-box-shadow: 0px 4px 20px #00000059;*/
	background-color:#23192e;
	
}

.logo { 
	padding:10px 0 0 0;
}

.logo img {
	width: 250px;
}
header.smaller .logo img{
	width:150px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:10px 0;
}

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

.top-btn {	 
	padding: 0; 
	color: var(--white);
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
}

.top-btn .fa-whatsapp{
	background-color:#2AB318;
	color:#fff;
	font-size:20px;
	padding:5px;
	border-radius: 50%;
	margin:0 5px 0 0;
}
.top-btn:hover {
	color: var(--secondary-color);
}

.social {
 	display:inline-block;
}

.social a  {
	color:#0069F9;
	font-size:30px;
	padding:0;
	border-radius: 50%;
	margin:0 10px;
 
}

.social a:hover  {
	color: var(--primary-color);
	
}

.link {}

.link a {
	color: var(--secondary-color);
	font-size: 14px;
	line-height: normal;
	padding: 15px 20px 15px 50px;
	line-height: 14px;
	font-style: normal;
	font-weight: 600;
	display: inline-block;
	/*border-radius: 50px;*/
	position: relative;
	margin: 0 0 30px 0;
	border: 1px solid var(--secondary-color);
}
 
.link a:after {
	content: "";
	width: 33px;
	height: 20px;
	position: absolute;
	top: 30%;
	left: 10px;
	background: url(../images/icons/arrow.png) no-repeat center center;
}

 
.link a:hover {
	background-color: var(--secondary-color);
	color: #FFF;
} 
.link:hover a:after {
	filter: brightness(0) invert(1);
}

.subtitle {
	display: inline-block;
	font-size: 16px;
	color: var(--white);
	padding: 0 0 20px 0;
	position: relative;
	font-weight: 600;
	margin-bottom: 10px;

}

.subtitle:after {
	content: '';
	position: absolute;
	left:0;
	bottom:0;
	width: 50px;
	height: 1px;
	background-color: var(--secondary-color)
}

.heading {
	font-weight: 600;
	font-size: 50px;
	line-height: normal;
	color: var(--secondary-color);
	font-family:var(--heading-font);
}
 .heading span, .subheading {
	font-weight: 400;
}
 .subheading {
	font-weight: 600;
	font-size: 35px;
	line-height: 45px;
	color: var(--secondary-color);
	font-family:var(--heading-font);
}
 
 .title-small {
	font-weight: 600;
	font-size: 20px;
	line-height:30px;
	color: var(--secondary-color);
	font-family:var(--heading-font);
}	
	/******/ 
.thumb-box {
	width: 33.3333333333333%;
	padding: 20px 30px 30px 30px;
	text-align: center;
	color: #323232;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	min-height: 298px;
}

.thumb-box:hover {
	padding-top: 46px;
	background: var(--primary-color);
	color: var(--white)
}

.thumb-box .thumb-icon {
	margin-bottom: 15px;
	display: inline-block;
	text-align: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.thumb-box:hover .thumb-icon {
	margin-bottom: 5px;
	filter: brightness(0) invert(1);
}

.thumb-box:hover a {
	color: var(--white)
}

.thumb-box h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.thumb-box p {
	margin-bottom: 0px;
}
  
.text-underline {
	text-decoration: underline;
}
 

 
.font14 {
	font-size: 14px;
}
 
.bold {
	font-weight: 600;
}
 

.name {
	margin-bottom: 5px;
	display: inline-block;
	color: var(--primary-color);
	font-size:16px;
	padding:20px 0;
	text-align:center;
	font-weight:600;
	width:100%;
}
.name span{
	font-size:14px;
	color:#000;
	font-weight:400;
}

/*---------------sbox---------*/
 .dp-style{ 
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: center;
	background-color:var(--primary-color);
	color:var(--white);
	font-size:14px;
	line-height:normal;
	font-weight:600;
	position:relative;  
	padding:20px  0;
	border-bottom:2px solid var(--secondary-color);
	/*border-radius:0 0 15px 15px;*/
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
} 
 .dp-style:hover{
 	background-color:var(--secondary-color);
	color:var(--primary-color);
	padding:20px  20px;
 }
 .dp-style img{
 	width:60px;
	margin:0 15px 0 0;
 } 
 
 /**********************news**********************/
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 25px 120px;
}
.iconic h2{
	font-size:24px;
	margin:0 0 15px 0;
	line-height:20px;
	color:#fff;
}
.webicon{	
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	padding:10px;
	border-radius:50%;
	border:1px solid var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--secondary-color);
}
 
 /**********************news**********************/
 .news-style{
	background-color:var(--white);	 
	border-radius: 20px;
	overflow:hidden;
	box-shadow: 0 15px 80px 0 rgba(0,0,0,0.17);
} 
.news-desc{
    padding: 40px 40px;
    color: var(--body-color);
	background-color:var(--white);
	z-index:1;
	border-radius: 0 0 20px 20px;
}
.date{
    font-size: 12px;
	margin:0 0 10px 0;
	text-transform:uppercase;
}
.date i{
	margin:0 10px 0 0;
}
.news-desc h2{
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--primary-color);
 
}
.news-desc p:last-chile{
    margin-bottom:0;
}
.news-desc a{
	 color: var(--secondary-color);
	 text-decoration:underline;
	 }


 .flex-grid-four {
  	display: flex;
	flex-wrap: wrap;
 	justify-content: center;  	
    width:100%;
}

 
  
.flex-grid-four .col {
  width: 25%;
   padding:20px;
}

 
/*************** footer CSS ***************/
footer {
	padding:50px 0;
 
}

footer a {
	color: #fff;
}
.footer a:hover {
	color: rgb(255, 255, 255, 0.7);
}


.footer-social a:hover i {
	color: var(--secondary-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding:40px 0;
	margin-top:30px;
	}
	
 
.footer-logo, .copy, .footer-social{
	flex: 0 0 33.33333333333333%; 
}
.footer-logo img{
	width:150px;
	display:inline-block;
}
 
.footer-logo{
	text-align:center;
} 
.footer-social{
	text-align:right;
}
 
.footer-social a {
	margin: 5px;
	font-size: 22px;
	color: #fff;
}

 
 
ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
 
}

ul.list li:before {
	/*content: "\f111";*/
	content: "*";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--secondary-color);
	font-size: 14px;
}

.cnt-wrap {
	background-color: var(--primary-color);
	/*border-radius: 25px;*/
	/* box-shadow: 0px 3px 40px #0000002e; */
	/* -webkit-box-shadow: 0px 3px 40px #0000002e; */
	-moz-box-shadow: 0px 3px 40px #0000002e;
	color: var(--white);
	border-radius: 15px;
	padding: 20px 10px;	
}

.icon_box {
	padding: 40px 30px;
	background-color:var(--tertiary-color);
	margin-bottom:20px;
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
}

 

.icon_box i {
	 
	float: left;
	margin: 0px 30px 0px 0px;
	padding: 8px;
	/*border-radius: 100%;*/
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 30px;
	color:  var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	border:1px solid  var(--secondary-color);
 
}

.icon_box .descripion {
	display: block;
	overflow: hidden
}

.icon_box .descripion h5 {
	font-size: 18px;
	margin: 0 0 8px 0;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 600;
}

.icon_box p {
	margin: 0;
}

.icon_box a {
	color: var(--white)
}

.gallery{}
.gallery .hover-effect img {
	display:block;
	-moz-transition: all 7s ease;
	-o-transition: all 7s ease;
	-webkit-transition: all 7s ease;
	transition: all 7s ease;
	width:100%;
  height: 250px;
  object-fit: cover;
}

/*.icon_box:last-child{ margin-bottom:0px; padding-bottom:0px; border-bottom:none;}*/
.cnt-form {}

.map {
	line-height: 0;
	width: 100%
}

.google-map {
	width: 100%;
	height: 450px;
	border: 0;
	overflow: hidden;
	display: block;
}
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
}
.table-style {
	border-collapse: collapse;
	width: 100%;
}
.thead-first,  .thead-second{
	background-color: var(--primary-color);
	color:#fff;
	font-size:20px;
	text-align:center !important;
 }
 .thead-second{
	background-color: var(--secondary-color);
 }
.table-style th,
.table-style td {	 
	padding: 10px;
	border: 1px solid #d9d9d9;
	text-align: left;
	 
}
 

.table-style tr:nth-child(even) {
	background-color: #f2f2f2
}

.table-style th {
	background-color: var(--secondary-color);
	color: white;
}

/******************************team-style*****************/

.radius-circle{
	border-radius:50%;
	overflow:hidden;
}

.team-style{
	position:relative;
	width:100%;
	padding:0 0 0 280px;
	margin:0 0 50px 0;
}

.team-foto{
	width:150px;
	border-radius:50%;
	position:absolute;
	padding:10px;
	top:0;
	left:50px;
	overflow:hidden;
	border:2px dashed rgba(255, 255, 255 ,0.2);
	
}
.team-foto img{
	display:block;
	width:100%;
	border-radius:50%;
	
}

.team-style:before{
	width:1px;
	height:100%;
	position:absolute;
	left:235px;
	top:0;
	content:'';
	background-color:var(--secondary-color);
}


/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:70vh;
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/banners/banner.jpg);
	
}

.banner-caption h2 {
	color: var(--primary-color);
	font-size: 50px;
	font-weight: 600;
	line-height: normal;
	margin:0;
	padding:0;
}

/************/
  .breadcrumb {
    width: 100%;
    display: flex;
	color:var(--primary-color);	
	margin:0 0 50px 0;
	align-self: end;
	justify-content: center;	
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 15px 25px;
	background-color:var(--secondary-color);
	border-radius: 0 0 15px 15px;
}
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " → ";
 
}
 .breadcrumb a{
    color:var(--primary-color);
}
 .breadcrumb a:hover{
   color:var(--primary-color);
   opacity:0.5;
}
 .breadcrumb  span{
  color:var(--primary-color);
}

 
/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/
 
/*************** JARALLAX ***************/
.jarallax, .cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.split-bg-right{
	width:50%;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	z-index:-1;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.left-image-box{
    width: 50%;
    position: absolute;
    top:0;
    left:0;
	overflow:hidden;

}
.right-image-box{
    width: 50%;
    position: absolute;
    top:0;
    left:auto;
    right:0;
	overflow:hidden !important;

}

.split-bg-left{
	right:auto;
	left:0;
}
.bg1 {
	background: url(../images/parallax/1.jpg);
}

.bg2 {
	background: url(../images/bg2.jpg) no-repeat top center;
}

.bg3 {
	background: url(../images/bg3.jpg) no-repeat top center;
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding: 15px 20px;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 1px solid rgba(255 ,255 ,255, 0.2);
	margin: 0;
	color:#fff;
	font-size: 14px;
 
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0;
	display: inline-block;
	color:var(--primary-color);
	font-size: 20px;
	cursor: pointer;
	vertical-align: top;
	padding: 15px 30px;
	text-align: center;
	background-color: var(--secondary-color);
	text-transform: uppercase;
	font-weight: 700;	 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;


}

.sendbutton:hover {
	color:var(--white);
	background-color: var(--tertiary-color);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}

.contact-form {
	float: left;
	width: 100%;
}

.contact-form .fieldset {
	margin-bottom: 0px;
}

::-webkit-input-placeholder {
	color: #fff !important;
}

:-moz-placeholder {
	/* Firefox 18- */
	color: #fff !important;
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: #fff !important;
}

:-ms-input-placeholder {
	color: #fff !important;
}

.ftr-form ::-webkit-input-placeholder {
	color: #fff !important;
}

.ftr-form :-moz-placeholder {
	/* Firefox 18- */
	color: #fff !important;
}

.ftr-form ::-moz-placeholder {
	/* Firefox 19+ */
	color: #fff !important;
}

.ftr-form :-ms-input-placeholder {
	color: #fff !important;
}

.wpcf7-form-control-wrap {
	position: relative;
	float: left;
	width: 100%;
}


/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {}

/************************************* 1366px *************************************/
@media only screen and (max-width: 1320px) {
	.copy {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		text-align: center;
	}

}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {
	.container {
		width: 100%;
		padding:0 20px;
	}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 


}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {

	header,
	header.smaller {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		background-color:var(--primary-color);
	}


	.header {
		flex-direction: column;
		padding-bottom: 10px;
	}

	.logo img {
		width: 150px;
	}
 
	.column-reverse {
		flex-direction: column-reverse;
	}

	hr {
		margin: 20px 0;

	}
	
	.banner { 
	 height: 150px;
	}
	
.footer-logo, .copy, .footer-social{
	flex: 0 0 100%; 
	text-align:center;
 
	}
	
.footer-logo img{
	width:100px;
	margin:20px 0;
}
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {


.heading { 
	font-size: 30px;
	line-height: 40px;
 
}
 
 .subheading {
	font-size: 24px;
	line-height: 34px;
}

.banner-caption h1{
	font-size:20px;
	}
 
 .iconic{
	padding:0 0 20px 100px;
	 
}

.webicon{	
	width:80px;
	height:80px;
	padding:10px;
	top:10px;
 
}	

.team-style{
	padding:180px 0 0 0;
	text-align:center;
 
}

.team-foto{
	width:150px;
	left:50%;
	margin-left:-75px;
	
} 

.team-style:before{
	display:none;
}
.flex-grid-four .col{
	width:50%;
	padding:5px;
}	
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
.gallery .hover-effect img {
  height: 150px;
 
}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}