@import "animate.css";
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
@import url(//fonts.googleapis.com/css?family=Changa+One);
@import url(//fonts.googleapis.com/css?family=Open+Sans:700);
@import url(//fonts.googleapis.com/css?family=Open+Sans:400);
@import url(//fonts.googleapis.com/css?family=Open+Sans:800);
@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic);
/*========================================================
                    Main layout styles
=========================================================*/

@font-face {
  font-family: Quicksand;
  src: url(fonts/format/Quicksand-Light.woff) format('woff'),
  src: url(fonts/format/Quicksand-Light.woff2) format('woff2'),
  src: url(fonts/static/format/Quicksand-Medium.woff) format('woff'),
  src: url(fonts/static/format/Quicksand-Medium.woff2) format('woff2'),
  src: url(fonts/static/format/Quicksand-Regular.woff) format('woff'),
  src: url(fonts/static/format/Quicksand-Regular.woff2) format('woff2'),
  src: url(fonts/static/format/Quicksand-SemiBold.woff) format('woff'),
  src: url(fonts/static/format/Quicksand-SemiBold.woff2) format('woff2'),
  src: url(fonts/static/format/Quicksand-Bold.woff) format('woff'),
  src: url(fonts/static/format/Quicksand-Bold.woff2) format('woff2'),
  src: url(fonts/Quicksand-VariableFont_wght.ttf) format('truetype'),
}

@font-face {
  font-family: Poppins_200;
  src: url(fonts/format/Poppins-Thin.woff) format('woff'),
  src: url(fonts/format/Poppins-Thin.woff2) format('woff2'),
}

@font-face {
  font-family: Poppins_300;
  src: url(fonts/format/Poppins-Light.woff) format('woff'),
  src: url(fonts/format/Poppins-Light.woff2) format('woff2'),
}

@font-face {
  font-family: Poppins_700;
  src: url(fonts/format/Poppins-Bold.woff) format('woff'),
  src: url(fonts/format/Poppins-Bold.woff2) format('woff2'),
}

@font-face {
  font-family: Poppins_800;
  src: url(fonts/format/Poppins-ExtraBold.woff) format('woff'),
  src: url(fonts/format/Poppins-ExtraBold.woff2) format('woff2'),
}

@font-face {
  font-family: AnonymousPro;
  src: url(fonts/format/AnonymousPro-Regular.woff) format('woff'),
  src: url(fonts/format/AnonymousPro-Regular.woff2) format('woff2'),
}

#slider-container {
    width: 100%;
    overflow: hidden;
	padding: 0px;
	margin: 0px;
	border-radius: 0px;
}

#slider {
	width: 300%;
	display: flex;
    animation: slideAnimation 20s infinite;
	padding: 0px;
	margin: 0px;
	border-radius: 0px;
}

.slide {
	flex: 0 0 100%;
	width: 100%;
	padding: 0px;
	margin: 0px;
	border-radius: 0px;
	display: flex;
	border: 0;
}

.slide img{
	margin: 0px;
	padding: 0px;
	border-radius: 0px;
	max-width: 100%;
}

@keyframes slideAnimation{
	0% { transform: translateX(0); }
    10% { transform: translateX(-100%); } /* Przesunięcie na drugi slajd w 10% czasu animacji */
    30% { transform: translateX(-100%); } /* Wyświetlanie drugiego slajdu przez 20% czasu animacji (30% - 10%) */
    40% { transform: translateX(-200%); } /* Przesunięcie na trzeci slajd w 40% czasu animacji */
    60% { transform: translateX(-200%); } /* Wyświetlanie trzeciego slajdu przez 20% czasu animacji (60% - 40%) */
    70% { transform: translateX(0); } /* Powrót do pierwszego slajdu w 70% czasu animacji */
    100% { transform: translateX(0); }
}

.justify {
	text-align: justify;
}



.slide {
  height: 450px;
  margin-bottom: 36px;
}
@media (max-width: 979px) {
  .slide {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .slide {
    height: 200px;
  }
}

.actual_wrapik {
	border: 0;
}

body {
  font-family: Poppins_300,Lato,sans-serif;
  font-size: 15px;
  background-color: #1c1a17;
  color: #757570;
  min-width: 1020px;
  line-height: 1.5;
  /*background-image: url('4k_bg_bw.jpg');
  background-size: cover;*/
}

.gcontainer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(1fr,1fr,1fr));
	gap: 10px;
	grid-auto-rows: auto;
	padding: 1rem;
}


.gbox {
	background: #ffffff;
	padding: 1rem;
	border-radius: 1rem;
	margin-top: 1rem;
}

.gbox_full {
	background: #ffffff;
	padding: 1rem;
	border-radius: 1rem;
	margin-top: 1rem;
}

.gbox_2 {
	background: #ffffff;
	padding: 1rem;
	border-radius: 1rem;
	margin-top: 1rem;
}

.gbox_wrap {
	margin-left: -1rem;
	margin-right: -1rem;
	margin-top: 1rem;
}

.gbox_blank {
	background-color: #f8f9fa;
	margin-top: 1rem;
}

.gbox_1_blank {
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 1rem;
	margin-top: 1rem;
}

	
@media (min-width: 840px) {
	.gbox_full {
	grid-column: span 3;
	background: #ffffff;
	padding: 1rem;
	border-radius: 1rem;
	}
	
	.gbox_wrap {
	grid-column: span 3;
	}
	
	.gbox {
	background: #ffffff;
	padding: 1rem;
	border-radius: 1rem;
	}
	
	.gbox_2 {
	grid-column: span 2;
	}
	
	.gbox_blank {
	grid-column: span 3;
	}
	
}

@media (max-width: 1100px) {
  body {
    min-width: 0;
  }
}
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #31669c;
}
strong {
  font-weight: 700;
}
img {
  max-width: 100%;
  float: left;
  margin: 1rem;
  border-radius: 1rem;
}

.gbox img{
  max-width: 100%;
  float: left;
  border-radius: 0;
}

.slider-wrapper img {
	border-radius: 0px;
	border: 0;
}
p{
	font-family: Poppins_300,Lato,sans-serif;;
	font-size: 15px;
	color: #757570;
	text-align: left;
	margin-bottom: 30px;
}

.wrapik img{
	border-radius: 0;
	width: 100%;
	background-size: cover;
	overflow: hidden;
	margin-left: 0px;
	
}

.photos {
	align-items: center;
}

#name {
	width: 30%;
	height: 15px;
	border: 3px solid #cbdbe6;
	border-radius: 1rem;
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 15px;
	font-family: Poppins_300,Lato,sans-serif;
	color: #5d5d5d;
	background-color: #eef3f7;
}

#email {
	width: 30%;
	height: 15px;
	border: 3px solid #cbdbe6;
	border-radius: 1rem;
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 15px;
	font-family: Poppins_300,Lato,sans-serif;
	color: #5d5d5d;
	background-color: #eef3f7;
	text-align: left;
	position: top;
}

#message {
	width: 90%;
	height: 200px;
	resize: vertical;
	border: 3px solid #cbdbe6;
	border-radius: 1rem;
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 15px;
	font-family: Poppins_300,Lato,sans-serif;
	color: #5d5d5d;
	background-color: #eef3f7;
}

#title {
	width: 30%;
	height: 15px;
	border: 3px solid #cbdbe6;
	border-radius: 1rem;
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 15px;
	font-family: Poppins_300,Lato,sans-serif;
	color: #5d5d5d;
	background-color: #eef3f7;
	text-align: left;
	position: top;
}

#button {
	width: auto;
	height: auto;
	border: 3px solid #98b7cd;
	border-radius: 1rem;
	padding: 0.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 2rem;
	margin-right: 1.5rem;
	font-size: 15px;
	font-family: Poppins_300,Lato,sans-serif;
	color: #5d5d5d;
	background-color: #cbdbe6;
	float: right;
}

.loading {
  display: none;
  background: #cbdbe6;
  text-align: center;
  padding: 15px;
}

.loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #98b7cd;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.error-message {
  display: none;
  color: #ffffff;
  background: #cbdbe6;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-top: 20px;
}

.sent-message {
  display: none;
  color: #ffffff;
  background: #cbdbe6;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

@media (max-width: 767px) {
	#name{
		width: 90%;
	}
	#email{
		width: 90%;
	}
	#title{
		width: 90%;
	}
}




* {
  -webkit-text-size-adjust: none;
}
/* ======= Headers ======= */
h2 {
  font-family: Quicksand,Lato,sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #484a49;
  letter-spacing: -0.05em;
}
h3 {
  font-family: Poppins_300,Lato,sans-serif;
  font-size: 18px;
  color: #5d5d5d;
  margin-top: 5px;
}
.heading1 {
  margin-bottom: 18px;
}
/* ======= Buttons ======= */
.gbutton{
	position: relative;
	width: auto;
	color: #ffffff;
	font-family: Poppins_700,Lato,sans-serif;
	letter-spacing: 0.1em;
	font-size: 12px;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.09);
	text-align: center;
	background-color: #75be16;
	border-radius: 1rem;
	padding: 1em;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	float: right;
}

.btn-default {
  display: inline-block;
  font-family: Poppins_700,Lato,sans-serif;
  font-size: 11px;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.09);
  background: #393530;
  overflow: hidden;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-default:hover {
  background: #a0a09a;
  color: #ffffff;
}
.btn-big {
  display: inline-block;
}
/* ======= Wrappers ======= */
.big-wrapper {
  width: 60%;
  margin: auto;
  background: #f8f9fa;
}
@media (max-width: 1100px) {
  .big-wrapper {
    width: auto;
    margin: 0;
  }
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .big-wrapper {
    width: 90%;
    margin: 0;
	margin: auto;
  }
}

@media (min-width:1000px) {
	#header {
		text-align: center;
	}
}

.wrapper1 {
  padding: 55px 0 62px;
  overflow: hidden;
  margin-left: 50px;
  margin-right: 50px;
}
.img-wrapper1 {
  background: #fcfcf9;
  border-radius: 4px;
  border: 1px solid #d8d8cf;
  text-align: center;
  padding: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.img-wrapper1 a {
  display: block;
}
.img-wrapper1 a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.img-wrapper1__offset1 {
  margin-top: 23px;
  margin-bottom: 19px;
}
@media (max-width: 767px) {
  .img-wrapper1 {
    margin-bottom: 20px;
  }
  .img-wrapper1 img {
    width: 100%;
  }
  #owl{
	display: none;
  }
}
/*========================================================
                    HEADER styles
=========================================================*/
#header {
  background: #2a2723;
  padding: 15px 0 23px;
  border-bottom: 5px solid #75be16;
  position: relative;
  z-index: 3;
  margin-bottom: 15px;
  padding-left: 3rem;
}
#header h1 {
  float: left;
  margin-top: 5px;
}
#header nav {
  position: relative;
  z-index: 4;
  float: left;
  margin-top: 30px;
}
#header .socials1 {
  float: right;
  position: relative;
  z-index: 0;
}
@media (max-width: 1100px) {
  #header {
    text-align: center;
  }
  #header h1,
  #header nav,
  #header .socials1 {
    float: right;
	text-align: center;
  }
  #header nav {
    display: inline-block;
  }
  #header h1 {
    display: block;
	float: left;
	margin-right: 2rem;
  }
  #header h1:after {
    display: none;
  }
  #header h1 a {
    display: inline-block;
  }
}
/* ======= Logo ======= */
h1 {
  display: inline-block;
  font-family: Quicksand,Lato,sans-serif; /*oryginalna czcionka "Changa One"*/
  font-size: 44px;/*oryginalna czcionka "Changa One"*/
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.025em;
  position: relative;
  margin-right: 76px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.13);
}
h1:after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: #7f7d7b;
  right: -40px;
  top: 15px;
}

h1 a {
  display: block;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.13);
}
h1 a:hover {
  color: #ffffff;
}
/* ======= Main menu variables ======= */
/* ======= Sub menus common variables ======= */
/* ======= First level sub menu variables ======= */
nav {
  float: none;
}
/* Main menu styles
========================================================*/
.sf-menu > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  position: relative;
  text-align: center;
}
.sf-menu > li + li {
  margin-left: 49px;
}
.sf-menu > li > .sf-with-ul:before {
  display: block;
  position: absolute;
  width: 7px;
  height: 5px;
  content: '';
  background: url(../images/arrow1.png) no-repeat center top;
  overflow: hidden;
  top: -15px;
  left: 50%;
  margin-left: -3px;
}
.sf-menu > li > a {
  text-transform: uppercase;
  font: Quicksand,Lato,sans-serif; /*oryginalna czcionka "Open Sans"*/
  font: 15px; /*oryginalna czcionka "Open Sans"*/
  display: inline-block;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #7f7d7b;
}
.sf-menu > li > a:hover {
  color: #ffffff;
}
.sf-menu .sfHover > a {
  color: #ffffff;
}
.sf-menu .sfHover > a:after {
  color: #ffffff;
}
.sf-menu > li.current > a {
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.13);
  color: #ffffff;
}
.sf-menu > li.current > a:after {
  color: #ffffff;
}
/* First level sub-menu styles
========================================================*/
.sf-menu ul {
  border-radius: 4px;
  display: none;
  min-width: 170px;
  font-family: Quicksand,Lato,sans-serif; /*oryginalna czcionka "Open Sans"*/
  font-size: 13px; /*oryginalna czcionka "Open Sans"*/
  position: absolute;
  top: 27px;
  left: 50%;
  margin-left: -85px;
  background: #2a2723;
  text-align: center;
  padding: 28px 0 31px 0;
  z-index: 2;
}
.sf-menu ul > li + li {
  margin-top: 18px;
}
.sf-menu ul li {
  position: relative;
  display: block;
}
.sf-menu ul li > .sf-with-ul:before {
  display: block;
  font-family: Quicksand,Lato,sans-serif;
  font-size: 10px;
  position: absolute;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  cursor: default;
  content: "\f0da";
  color: #7f7d7b;
  bottom: -1px;
  right: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sf-menu ul li a {
  color: #7f7d7b;
  text-transform: uppercase;
}
.sf-menu ul li a:hover {
  color: #ffffff;
}
.sf-menu ul > .sfHover > a {
  color: #ffffff;
}
.sf-menu ul > .sfHover > a:after {
  color: #ffffff;
}
/* Second level sub-menu styles
========================================================*/
.sf-menu ul ul {
  position: absolute;
  top: -26px;
  left: 171px;
  margin-left: 0;
  z-index: 4;
  text-align: center;
}

.select-menu {
	display: none;
}

@media (max-width: 767px) {
  .sf-menu {
    display: none;
  }
  nav {
    width: 100%;
    float: none;
	font-family: Quicksand,Lato,sans-serif;
	text-align: center;
  }
  .select-menu {
    border-radius: 1rem;
    display: block;
    text-transform: capitalize;
    float: none;
    color: #E5EDF1;
    width: 100%;
    background: #45413a;
    font-family: Quicksand,Lato,sans-serif;
    font-size: 15px;
    text-align: left;
    border: 1px solid #0e0d0c;
    padding: 0.5rem;
    padding-right: 0.7rem;
    position: relative;
  }
  .select-menu option {
    text-align: left;
    position: relative;
	font-family: Quicksand,Lato,sans-serif;
    font-size: 15px;
  }
}
/*Core variables and mixins*/
/*========================================================
                    CONTENT styles
=========================================================*/
#content.common {
  padding-top: 53px;
  padding-bottom: 55px;
}
/* ======= Banner 1 Latest news ======= */
.banner1 {
  background: #f7f7f7;
  border-radius: 4px;
  padding: 18px 0 21px;
  overflow: hidden;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  margin-left: -30px;
}
.banner1 .heading {
  display: inline-block;
  margin-right: 6px;
  font-family: Poppins_800,Lato,sans-serif;;
  font-size: 15px;;
  text-transform: uppercase;
  color: #484a49;
  margin-top: 8px;
}
.banner1 .text {
  display: inline-block;
  margin-top: 8px;
}
.banner1 .btn-wrapper {
  text-align: center;
}

@media (max-width: 1100px) {
  .banner1 .heading {
    margin-left: 0;
    display: block;
  }
  .banner1 .heading,
  .banner1 span {
  }
}

@media (max-width: 767px) {
  .banner1 {
    text-align: center;
    padding: 20px;
  }
  .banner1 .heading,
  .banner1 span {
    margin-left: 0;
  }
  .banner1 .btn-wrapper {
  }
}
/* ======= Box 1 Best Collections ======= */
.box1 {
  /*padding-left: 24px;*/
}
.box1 h2 {
  margin-bottom: 22px;
}
.box1 img {
  float: left;
  margin-top: 5px;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .box1 {
    margin-bottom: 60px;
  }
}
.box1-wrapper1 {
  overflow: hidden;
  margin-top: 45px;
  margin-bottom: 54px;
  background-color: #f7f7f7 ;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  margin-left: -30px;
}
/* ======= Banner 2 2014 we offer ======= */

.banner2 {
	overflow: hidden;
	background: url(../images/wrapper_small.png) no-repeat center top;
	background-size: cover;
	padding: 1rem;
	padding-top: 3rem;
  
}

@media (min-width: 1920px) {
	.banner2 {
	  overflow: hidden;
	  background: url(../images/wrapper_small.png) no-repeat center top;
	  background-size: cover;
	  padding: 1rem;
	  padding-top: 3rem;
	}
}

.banner2 a {
  display: block;
}
.banner2 span {
  display: block;
  font-family: Quicksand,Lato,sans-serif;
  font-size: 58px;
  color: #ffffff;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
  margin-top: -15px;
}
.banner2 span.second {
  font-size: 30px;
  line-height: 41px;
  margin-top: 10px;
}
.banner2 span.third {
  font-size: 22px;
  line-height: 29px;
}
/* ======= Box 2 Welcome! ======= */
.box2 h3 {
  margin-bottom: 21px;
  padding-right: 17px;
}
.box2 p {
  padding-right: 17px;
}
.box2 .img-wrapper1 {
  margin-top: 5px;
}

.box2__inset1 {
  position: relative;
}
.box2__inset1 .img-wrapper1 {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1100px) {
  .box2__inset1 {
    padding-left: 0;
  }
  .box2__inset1 .img-wrapper1 {
    position: relative;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .box2__inset1 .img-wrapper1 {
    width: 100%;
  }
}
.box2-wrapper1 {
  overflow: hidden;
  background-color: #f7f7f7 ;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  margin-left: -30px;  
  text-align: justify;
}
@media (max-width: 767px) {
  .box2-wrapper1 {
    margin-bottom: 60px;
  }
}
/* ======= Post 1 Recent News ======= */
.post1 {
  position: relative;
}
.post1 time {
  font-family: Poppins_300,Lato,sans-serif;;
  font-size: 15px;
  color: #757570;
  margin-bottom: 1px;
}
.post1 p {
  color: #989893;
}
.post1 a.link {
  font-family: Poppins_300,Lato,sans-serif;;
  font-size: 15px;
  color: #a5a59f;
}
.post1 a.link:hover {
  color: #31669c;
}
/* ======= Owl carousel ======= */
#owl .item .post1 + .post1 {
  margin-top: 49px;
}
#owl .item .post1 + .post1:before {
  position: absolute;
  display: block;
  content: '';
  height: 1px;
  width: 100%;
  background: url(../images/border1.png) repeat-x;
  overflow: hidden;
  left: 0;
  top: -26px;
}
/* ======= Box 3 Traditions ======= */
.box3 h3 {
  margin-bottom: 21px;
}
.box3 p {
  margin-top: 19px;
}
.box3 ul {
  margin-top: 19px;
}
.box3-wrapper1 {
  margin-top: 42px;
  background-color: #f7f7f7 ;
  padding: 30px;
  border-radius: 10px;
  width: 95%;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .box3-wrapper1 {
    margin-bottom: 60px;
  }
}
/* ======= Box 4 Our partners ======= */
.box4-wrapper1 {
  margin-top: 39px;
  margin-left: 70px;
  background-color: #f7f7f7 ;
  padding: 30px;
  border-radius: 10px;
  display: inline-block;
}
.box4-wrapper1 h2 {
  margin-bottom: 23px;
}
.box4-wrapper1 .box4 {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .box4-wrapper1 .img-wrapper1 {
    display: inline-block;
  }
  .box4-wrapper1 .img-wrapper1 img {
    width: auto !important;
  }
}
/* ======= Post 2 Blog ======= */
.post2 {
  position: relative;
}
.post2 .img-wrapper1 {
  margin-top: 5px;
}
.post2 h3 {
  margin-bottom: 4px;
}
.post2 .info {
  color: #757570;
  font-size: 11px;
  line-height: 22px;
  margin-bottom: 17px;
}
.post2 .info span,
.post2 .info time {
  display: inline-block;
}
.post2 .info span {
  margin-left: 27px;
  position: relative;
}
.post2 .info span:before {
  display: block;
  content: '';
  position: absolute;
  width: 1px;
  height: 10px;
  background: #757570;
  left: -15px;
  top: 6px;
}

.post2-wrapper1 {
  margin-bottom: 79px;
}
.post2-wrapper1 .post2 {
  margin-bottom: 59px;
}
.post2-wrapper1 .post2 + .post2:before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: url(../images/border1.png) repeat-x;
  overflow: hidden;
  left: 0;
  top: -28px;
}
/* ======= Box 5 Gallery ======= */
.box5 {
  color: #757570;
}
.box5 .img-wrapper1 {
  margin-bottom: 15px;
}
.box5 p > strong {
  display: block;
}
.box5-wrapper1 {
  margin-top: 23px;
  margin-bottom: 49px;
}
.box5-wrapper1 .box5 {
  margin-bottom: 23px;
}
/* ======= Google Map  ======= */
.google-map1 {
  height: 393px;
}
.google-map1 img {
  max-width: none !important;
}
/* ======= Address  ======= */
.address-block {
  background: #f7f7f1;
  color: #757570;
  padding: 23px 27px 21px;
  border: 1px solid #e8e5dc;
  border-radius: 4px;
}
.address-block h3 {
  margin-bottom: 21px;
}
.address-block address {
  display: block;
}
.address-block address span {
  display: block;
}
@media (max-width: 767px) {
  .address-block {
    margin-bottom: 30px;
  }
}
.address-blocks-wrapper1 {
  margin-bottom: 43px;
  overflow: hidden;
}
/* ======= Box 6 Privacy Policy ======= */
.box6 {
  color: #757570;
}
.box6 h3 {
  margin-bottom: 21px;
  color: #6f6f6f;
}
.box6-wrapper1 {
  margin-bottom: -7px;
}
.box6-wrapper1 .box6 {
  margin-bottom: 28px;
}
.box6-wrapper1 .simple-link {
  margin-top: -6px;
}
/* ======= Simple link ======= */
.simple-link {
  display: inline-block;
  color: #000000;
}
.simple-link:hover {
  color: #31669c;
}
/* ======= List 1 ======= */
.list1 li {
  padding-left: 16px;
  position: relative;
  color: #757570;
  font: Poppins_700;
  font-size: 13px/20px;
}
.list1 li:before {
  content: '';
  left: 0;
  top: 6px;
  width: 5px;
  height: 7px;
  display: block;
  position: absolute;
  overflow: hidden;
  background: url(../images/list1.png) no-repeat center top;
}
.list1 li + li {
  margin-top: 10px;
}

.list1 li:last-child {
  margin-bottom: 30px;
}

/* ======= Social buttons 1 ======= */
.socials1 {
  font-size: 0;
  line-height: 0;
  scale: 0.5;
}
.socials1 li {
  display: inline-block;
}
.socials1 li + li {
 margin-left: 40px;
}
.socials1 li a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/* ======= Gallery  ======= */
.gallery_image a.big-image {
  display: block;
  position: relative;
  background: #31669c;
}
.gallery_image a.big-image img {
  -webkit-box-shadow: 0 0 0 0 #ffffff;
  box-shadow: 0 0 0 0 #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.gallery_image a.big-image .gallery_hover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gallery_image a.big-image .gallery_hover i {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 40px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -21px;
}
.gallery_image a.big-image:hover img {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.gallery_image a.big-image:hover .gallery_hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.gallery_image a.big-image:hover .gallery_hover i {
  opacity: 1;
  filter: alpha(opacity=100);
}
/*========================================================
                    FOOTER styles
=========================================================*/
#footer {
  text-align: center;
  color: #FFFFFf;
  font-size: 12px;
  background: #2a2723;
  border-top: 5px solid #75be16;
  padding: 23px 0;
  font-family: Poppins_300,Lato,sans-serif;
  font-size: 12px;
  margin-top: 30px;
}
/*========================================================
                    Widget styles
=========================================================*/
/* UItoTop styles
========================================================*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  overflow: hidden;
  border: none;
  color: #757570;
  font-size: 43px;
  line-height: 38px;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#toTop:hover {
  outline: none;
  color: #31669c;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}
/*Core variables and mixins*/

#wrap1{
	background-color:  #f7f7f7 ;
	border-radius: 10px;
	padding: 30px;
	width: 100%;
}

.line_pink{
	border-bottom: solid 5px #c31958;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 5px;
}

.line_green{
	border-bottom: solid 5px #75be16;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 5px;
}

.line_blue{
	border-bottom: solid 3px #0078ce;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 5px;
}

.quote{
	font-style: italic;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 10px;
}

