::-moz-selection {
  background-color: #FF8815;
  color: #fff;
}

::selection {
  background-color: #FF8815;
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-family: sans-serif;
  color: #1a1a1a;
  box-sizing: border-box;
}

body {
  background-color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

strong {
  font-weight: 600;
}

.link {
  color: #FF8815;
  position: relative;
}

.link:hover:before {
  width: 100%;
}

.link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FF8815;
  height: 1px;
  width: 0%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.more-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 30px;
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 22px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.more-link:hover {
  background-position: right center;
}

.main-width {
  width: 1250px;
  margin: 0 auto;
  height: 100%;
}

@media screen and (max-width: 1280px) {
  .main-width {
	width: calc(100% - 30px);
  }
}

@media screen and (max-width: 1280px) {
  .main-width--fullwidth-mobile {
	width: 100%;
  }
}

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

.margin--75 {
  height: 75px;
}

@media screen and (max-width: 1280px) {
  .margin--75 {
	height: 50px;
  }
}

@media screen and (max-width: 575px) {
  .margin--75 {
	height: 30px;
  }
}

.margin--100 {
  height: 100px;
}

@media screen and (max-width: 1280px) {
  .margin--100 {
	height: 75px;
  }
}

@media screen and (max-width: 575px) {
  .margin--100 {
	height: 50px;
  }
}

.margin--150 {
  height: 150px;
}

@media screen and (max-width: 1280px) {
  .margin--150 {
	height: 100px;
  }
}

@media screen and (max-width: 575px) {
  .margin--150 {
	height: 75px;
  }
}

.title {
  width: 100%;
}

.title--with-link {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.title--with-link h1:before {
  display: none;
}

.title--with-link .more-link {
  margin-left: auto;
}

h1 {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  letter-spacing: 1px;
}

@media screen and (max-width: 1280px) {
  h1 {
	font-size: 28px;
  }
}

@media screen and (max-width: 575px) {
  h1 {
	font-size: 24px;
  }
}

h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: #FF8815;
  height: 4px;
  width: 100%;
  max-width: 100%;
  z-index: -1;
}

h2 {
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 1280px) {
  h2 {
	font-size: 23px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  transition: 0.3s ease;
}

@media screen and (max-width: 1280px) {
  h3 {
	font-size: 22px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 600;
  transition: 0.3s ease;
}

@media screen and (max-width: 1280px) {
  h4 {
	font-size: 20px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.subtitle {
  font-size: 14px;
  display: block;
  font-weight: 600;
  color: #a1a1a1;
  letter-spacing: 1px;
  margin-top: 20px;
}

@media screen and (max-width: 1280px) {
  .subtitle {
	font-size: 13px;
  }
}

.body-text {
  color: #666;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.7px;
}

@media screen and (max-width: 1280px) {
  .body-text {
	font-size: 14px;
	line-height: 1.7em;
  }
}

.body-text img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.body-text a {
  color: #FF8815;
  text-decoration: underline;
}

.body-list {
  padding-left: 20px;
}

.body-list__element {
  color: #666;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.7px;
}

@media screen and (max-width: 1280px) {
  .body-list__element {
	font-size: 14px;
	line-height: 1.7em;
  }
}

.body-list__link {
  color: #FF8815;
  position: relative;
}

.body-list__link:hover:before {
  width: 100%;
}

.body-list__link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FF8815;
  height: 1px;
  width: 0%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*background-color: #FF8815;*/
  background-color: rgba(255, 255, 255, 0.95);
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .header {
	padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .header {
	padding: 0 0 0 15px;
  }
}

.header.scrolled {
  padding: 15px 50px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1280px) {
  .header.scrolled {
	padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .header.scrolled {
	padding: 0 0 0 15px;
  }
}

.logo {
  display: block;
  width: 140px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1280px) {
  .logo {
	width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .logo {
	width: 100px;
  }
}

.logo:hover {
  opacity: 0.5;
}

.menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .menu {
	position: fixed;
	top: 50px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #FF8815;
	overflow-y: scroll;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .menu.open {
	visibility: visible;
	opacity: 1;
	z-index: 1;
  }
}

.menu-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .menu-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 50px;
	width: 50px;
  }
}

.menu-btn.open .menu-btn__line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.open .menu-btn__line:nth-child(2) {
  opacity: 0;
}

.menu-btn.open .menu-btn__line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.menu-btn__line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 2px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu__element {
  margin-right: 35px;
}

@media screen and (max-width: 1280px) {
  .menu__element {
	margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .menu__element {
	margin-right: 0;
  }
}

.menu__element:last-of-type {
  margin-right: 0;
}

.menu__link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  /*color: #fff;*/
  color: #666;
  position: relative;
}

@media screen and (max-width: 768px) {
  .menu__link {
	display: block;
	padding: 10px 15px;
	text-align: center;
  }

  .menu__link:before,
  .menu__link:after {
	display: none;
  }
}

.menu__link:hover:before {
  width: 100%;
}

.menu__link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  height: 2px;
  width: 0%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.swiper-container.hero-slider {
  background-color: #1a1a1a;
  position: relative;
}

.swiper-pagination {
  position: absolute;
  z-index: 1;
}

.main-image {
  width: 100%;
  min-height: 65vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0px 180px;
}

@media screen and (max-width: 1280px) {
  .main-image {
	padding: 0px 50px;
  }
}

@media screen and (max-width: 768px) {
  .main-image {
	padding: 0px 20px;
  }
}

.main-image--sub-page {
  min-height: auto;
  height: 500px;
}

@media screen and (max-width: 768px) {
  .main-image--sub-page {
	height: 250px;
  }
}

.main-image__text {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3em;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1280px) {
  .main-image__text {
	font-size: 45px;
  }
}

@media screen and (max-width: 768px) {
  .main-image__text {
	font-size: 35px;
  }
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service {
  width: 32%;
  margin-bottom: 60px;
}
.service.partner {
  width: 22%;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .service {
	width: 100%;
	margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .service:last-of-type {
	margin-bottom: 0;
  }
}

.service:hover .service__image:after {
  opacity: 0.4;
}

.service:hover .service__title h3 {
  color: #FF8815;
}

.service:hover .more-link {
  background-position: right center;
}

.service__image {
  width: 100%;
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 25px;
  position: relative;
}
.service__image.partner {
	background-size: contain;
}

.service__image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FF8815;
  opacity: 0;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .service__image {
	padding-bottom: 45%;
  }
}

.service__title {
  margin-bottom: 24px;
  padding: 0 20px;
}

@media screen and (max-width: 1280px) {
  .service__title {
	margin-bottom: 20px;
  }
}

.service__text {
  color: #666;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
  padding: 0 20px;
}

@media screen and (max-width: 1280px) {
  .service__text {
	line-height: 1.5em;
  }
}

.service__link {
  padding: 0 20px;
}
.about__wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 225px 60px 60px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1280px) {
  .about {
	padding: 225px 30px 30px 12px;
  }
}

@media screen and (max-width: 768px) {
  .about {
	padding: 120px 60px 80px;
  }
}

@media screen and (max-width: 575px) {
  .about {
	padding: 160px 20px 20px;
  }
}

.about__text-box {
  position: relative;
  z-index: 2;
  width: 60%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 60px;
  background-color: #fff;
  /*border-bottom: 6px solid #FF8815;*/
}

@media screen and (max-width: 1280px) {
  .about__text-box {
	padding: 40px 60px;
	width: 66%;
  }
}

@media screen and (max-width: 768px) {
  .about__text-box {
	padding: 30px 50px;
	width: 75%;
  }
}

@media screen and (max-width: 575px) {
  .about__text-box {
	padding: 20px 40px;
	width: 80%;
  }
}

.about__text {
  color: #666;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.7px;
  padding: 35px 0;
}

@media screen and (max-width: 1280px) {
  .about__text {
	padding: 25px 0;
	font-size: 14px;
	line-height: 1.7em;
  }
}


.gallery__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 992px) {
  .gallery__content {
	grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .gallery__content {
	grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 575px) {
  .gallery__content {
	grid-template-columns: 1fr;
  }
}

.gallery__image {
  width: 100%;
  padding-bottom: 66%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 575px) {
  .gallery__image {
	padding-bottom: 50%;
  }
}

.gallery__image:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery__image:hover .gallery__image__overlay {
  opacity: 0.8;
}

.gallery__image:hover .gallery__image__text {
  opacity: 1;
  z-index: 2;
}

.gallery__image--3x {
  -ms-grid-row-span: 3;
  grid-row-end: span 3;
}

@media screen and (max-width: 575px) {
  .gallery__image--3x {
	-ms-grid-row-span: 1;
	grid-row-end: span 1;
  }
}

.gallery__image--2x {
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}

@media screen and (max-width: 575px) {
  .gallery__image--2x {
	-ms-grid-row-span: 1;
	grid-row-end: span 1;
  }
}

.gallery__image img {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gallery__image__overlay {
  position: absolute;
  background-color: #FF8815;
  z-index: 1;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gallery__image__text {
  position: absolute;
  height: calc(100% - 20px);
  left: 30px;
  right: 30px;
  margin: auto;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
}

@media screen and (max-width: 1280px) {
  .gallery__image__text {
	font-size: 15px;
	left: 15px;
	right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .gallery__image__text {
	font-size: 14px;
	left: 10px;
	right: 10px;
  }
}

.gallery__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .gallery__menu {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
  }
}

.gallery__button {
  margin: 0 10px;
  padding: 5px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .gallery__button {
	font-size: 13px;
  }
}

.gallery__button:hover {
  color: #dcc1a7;
}

.fullwidth-about {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .fullwidth-about {
	display: block;
	margin-bottom: 0;
  }
}

.fullwidth-about--text-left .fullwidth-about__text-box {
  margin-right: auto;
  margin-left: 0;
}

.fullwidth-about--text-left .fullwidth-about__image {
  right: 0;
}

.fullwidth-about__image {
  position: absolute;
  width: 80%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1280px) {
  .fullwidth-about__image {
	width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .fullwidth-about__image {
	position: relative;
	width: 100%;
	height: 300px;
  }
}

.fullwidth-about__text-box {
  position: relative;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 60px;
  background-color: #fff;
  margin-left: auto;
  margin-top: 160px;
  margin-bottom: -40px;
  border: 1px solid #eee;
  border-bottom: 6px solid #FF8815;
}

@media screen and (max-width: 1280px) {
  .fullwidth-about__text-box {
	width: 70%;
	margin-top: 180px;
	margin-bottom: -20px;
	padding: 50px;
  }
}

@media screen and (max-width: 768px) {
  .fullwidth-about__text-box {
	width: 100%;
	margin-top: -50px;
	margin-bottom: 0;
	padding: 40px;
  }
}

.fullwidth-about__text-box__text {
  color: #666;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.7px;
  padding: 35px 0 0 0;
}

@media screen and (max-width: 1280px) {
  .fullwidth-about__text-box__text {
	font-size: 15px;
	padding: 20px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .fullwidth-about__text-box__text {
	font-size: 14px;
  }
}

.contact__wrapper,
.gallery__wrapper {
  background-color: #f7f7f7;
}

.contact__wrapper.white,
.gallery__wrapper.white {
  background-color: #fff;
}

.contact {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact {
	flex-wrap: wrap;
  }
}

.contact-form {
  width: 66%;
}

@media screen and (max-width: 1280px) {
  .contact-form {
	width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .contact-form {
	width: 100%;
	order: 2;
  }
}

.contact__wrapper.white .textarea,
.contact__wrapper.white .input {
  border: 1px solid #aaa;
}

.contact-form .textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 300px;
  max-height: 480px;
  background-color: #fff;
  outline: none;
  border: none;
  padding: 20px;
  box-sizing: border-box;
  font-size: 16px;
}

.contact-form .double-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-form .input {
  width: calc(50% - 20px);
  height: 50px;
  background-color: #fff;
  outline: none;
  border: none;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contact-form .input {
	width: calc(50% - 12px);
  }
}

.contact-text {
  width: 33%;
  padding-left: 40px;
  font-size: 15px;
}
@media screen and (max-width: 1280px) {
  .contact-text {
	width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .contact-text {
	width: 100%;
	order: 1;
	padding-left: 0;
	margin-bottom: 20px;
  }
}

.footer {
  border-top: 6px solid #FF8815;
  background-color: #1a1a1a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 60px 0;
  color: #ccc;
  font-size: 13px;
  line-height: 1.5em;
}

@media screen and (max-width: 1280px) {
  .footer {
	padding: 40px 0;
  }
}

.footer h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-column {
  width: 30%;
  color: #ccc;
}

.footer-column:not(:first-of-type) {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer-column {
	width: 100%;
	margin-bottom: 20px;
  }
  .footer-column:not(:first-of-type) {
	text-align: left;
  }
  .footer-list {
	display: flex;
	flex-wrap: wrap;
  }
  .footer-list__element {
	margin-right: 20px;
  }
}

.footer-logo {
  display: block;
  width: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 20px;
}

.footer-logo:hover {
  opacity: 0.5;
}

.footer-list {
  list-style: none;
}

.footer-list__link {
  display: inline-block;
  color: #ccc;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 2px 0;
  position: relative;
}

.footer-list__link:hover:before {
  width: 100%;
}

.footer-list__link:before,
.footer-list__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  background-color: #FF8815;
  height: 1px;
  width: 0%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-form__submit {
  background-color: #FF8815;
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 40px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s ease;
}

.contact-form__submit:hover {
  background-color: #222;
}

.show-more {
  text-align: center;
  margin-top: 40px;
}

.show-more__btn {
  background-color: #FF8815;
  color: #fff;
  outline: none;
  border: none;
  padding: 12px 40px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s ease;
}

.show-more__btn:hover {
  transform: translateY(-6px);
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
}

.body-text h1,
.body-text h2,
.body-text h3,
.body-text h4,
.body-text h5 {
  margin-bottom: 16px;
}

.body-text h1:before {
  display: none;
}

.body-text h1.green,
.body-text h2.green,
.body-text h3.green,
.body-text h4.green,
.body-text h5.green {
  color: #FF8815;
}

.swiper-container .swiper-pagination-bullet {
  border: 2px solid #fff;
  opacity: 1;
  background-color: transparent;
  transition: 0.3s ease;
  height: 12px;
  width: 12px;
}

.swiper-container .swiper-pagination-bullet-active {
  background-color: #fff;
}






.contact-phone, .contact-street, .contact-mail {
    *float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #4D4D4D;
} 
.contact-phone a, .contact-street a, .contact-mail a {
    color: #446CB3;
}
.contact-phone span, .contact-street span, .contact-mail span {
    font-size: 15px;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}
.contact-phone .bg, .contact-street .bg, .contact-mail .bg {
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
} 
.contact-phone .bg {
    background-image: url(../dsg/phone.png);
}
.contact-street .bg {
    background-image: url(../dsg/marker.png);
}
.contact-mail .bg {
    background-image: url(../dsg/mail.png);
}