
picture {
	width: 100%;
	height: 100%;
}


.section-title {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
}



.section-title span {
	color: #FC8A15;
}

.section-title-secondary{
	font-size: 18px;
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	.section-title {
		font-size: 26px;
	}

	.section-title-secondary{
		font-size: 16px;
	}
}

@media screen and (max-width: 575px) {
	.section-title {
		font-size: 23px;
	}

	.section-title-secondary{
		font-size: 15px;
	}
}

@media screen and (max-width: 419px) {
	.section-title {
		font-size: 20px;
	}
}


a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: 0.3s all;
}
ul {
  list-style: none;
}
ul li {
  position: relative;
}
ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

ol {
  margin: 0;
}

ol li:last-child {
  margin-bottom: 0;
}

p {
  line-height: 1.4;
}

input[type=text],
textarea {
	display: inline-block;
	width: 100%;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	text-align: left;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	  appearance: none;
	resize: none;
	outline: none;
	transition: all linear 0.1s;
	height: 60px;
	border-radius: 6px;
	border: 1px solid rgba(108, 88, 46, 0.10);
	background: #FFF;
	font-size: 14px;
	font-weight: 500;
	padding: 0 14px;
	box-shadow: 0px 3px 6px 0px rgba(119, 116, 118, 0.37);
}
input::-moz-placeholder, textarea::-moz-placeholder {
   color: #000;
 	 opacity: 1;
}
input::placeholder,
textarea::placeholder {
 	color: #000;
  opacity: 1;
}
input:focus,
textarea:focus {
  background-color: #ffffff;
}

input:focus {
  
}

input::-moz-placeholder {
  color: #A6AEB9;
  opacity: 1;
}

input::placeholder {
  opacity: 1;
}

input,
textarea,
select,
input:active,
textarea:active {
  outline: none transparent !important;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -moz-outline: none !important;
}

textarea {
  overflow: auto;
  min-height: 150px;
  padding: 20px;
}

textarea:focus {
  border: 1px solid #ff981f;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset],
input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

a:active, a:focus, div:active, div:focus, button:active, button:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: 'Montserrat', sans-serif;
}

input:focus::-moz-placeholder {
  color: transparent !important;
}

input:focus::placeholder {
  color: transparent !important;
}

textarea:focus::-moz-placeholder {
  color: transparent !important;
}

textarea:focus::placeholder {
  color: transparent !important;
}


.button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	border-radius: 6px;
	background-color: var(--accent-color);
	transition: .3s all;
	color: #000;
	font-size: 14px;
	line-height: 1.1;
	font-weight: 700;
	height: 60px;
	text-transform: uppercase;
}

@media screen and (max-width: 1229px) {
	.button {
		height: 50px;
	}
}

.button:hover {
	box-shadow: 0px 4px 10px 0px #F90;
}

.btn-yellow {
    text-align: center;
    text-decoration: none;
    color: #42403D;
    background: #FFD200;
    box-shadow: 0px 5px 10px rgba(115, 115, 115, 0.3);
}

.btn-yellow:hover {
    text-decoration: none;
    color: #FFFFFF;
    background: #FFA800;
    box-shadow: 0px 5px 10px rgba(115, 115, 115, 0.3);
}


.btn-orange {
	height: 60px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    background:  #FC8A15;
    box-shadow: 0px 5px 10px 0px rgba(115, 115, 115, 0.30);
}

@media screen and (max-width: 1229px) {
	.btn-orange {
		height: 50px;
	}
}

.btn-white {
    background: #fff;
}
.btn-white:hover{
    color: #000;
	text-decoration:none
}


.bg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-link {
	display: block;
	padding: 15px;
	font-size: 20px;
}

.container {
	width: 100%;
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}

.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}




