

/* fonts */

/*-montserrat-*/
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format('truetype');
	font-weight: normal; 
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format('truetype');
	font-weight: bold; 
}

/*-lora-*/
@font-face {
	font-family: "Lora";
	src: url("../fonts/lora/Lora-Regular.ttf") format('truetype');
	font-weight: normal; 
}

@font-face {
	font-family: "Lora";
	src: url("../fonts/lora/Lora-Bold.ttf") format('truetype');
	font-weight: bold; 
}

@font-face {
	font-family: "Lora";
	src: url("../fonts/lora/Lora-Italic.ttf") format('truetype');
	font-style: italic; 
}

/*-poppins-*/
@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins/Poppins-Regular.ttf") format('truetype');
	font-weight: normal; 
}

@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins/Poppins-Bold.ttf") format('truetype');
	font-weight: bold; 
}

/* the-end-of-fonts */



/* main-elements */

html *::selection {
	background-color: var(--gold);
	color: var(--black);
}

body {
    font-family: "Lora", sans-serif;
    color: var(--black);
    font-size: 16px;
    line-height: 1.7;
}

/* the-end-of-main-elements */



/* font-families */

/*-montserrat-*/
.green-btn {
	font-family: 'Montserrat', sans-serif;
}

/*-poppins-*/
.white-toggler-btn, .white-title, .white-title-2, .white-btn, .black-title, .black-btn,
.black-text-2, .black-title-2, .black-title-3, .white-text-3, .white-title-3, .black-text-5  {
	font-family: 'Poppins', sans-serif;
}

@media (min-width: 992px) {

	.white-lg-link, .white-lg-link-2 {
		font-family: 'Poppins', sans-serif;
	}

}

/*-lora-*/
.white-text, .white-text-2, .black-text, .black-text-3, .black-text-4 {
	font-family: 'Lora', sans-serif;
}

@media (max-width: 991.98px) {

	.white-md-link {
		font-family: 'Lora', sans-serif;
	}

}	

/* the-end-of-font-families */



/* variables */

:root {
	--green: #7bab3f;
	--green2: #82b440;
	--black: #262626;
	--blackWithOpacity: rgba(38,38,38,.9);
	--black2: #252525; 
	--gold: #bd8e4b;
	--lightgrey: #f4f4f4; 
	--darkblue: #617ebe;
	--lightblue: #27bbea;
	--green3: #049776;
	--red: #f24242;
	--orange: #fa7737;
}

/* the-end-of-variables */



/* flash-lightbox */

/*-modal-*/
.fl-lightbox-modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .8);
	z-index: 30;
	display: none;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.fl-lightbox-modal.fl-show {
	display: flex;
}

/*-slide-*/
.fl-lightbox-slide {
	height: auto;
	width: 90%;
	overflow: hidden;
	max-height: 80%;
	display: none;
	position: relative;
}

.fl-lightbox-slide.fl-show {
	display: inline-block;
}

.fl-lightbox-slide .fl-lightbox-img {
	width: 100%;
	height: auto;
	min-height: 100%;
	display: block;
}

.fl-lightbox-number {
	position: absolute;
	top: 1vw;
	left: 1vw;
	color: white;
	font-size: 12px;
	line-height: 12px;
	background-color: rgba(0, 0, 0, .8);
	padding: 5px;
}

/*-arrows-*/
.fl-lightbox-arrow {
	position: absolute;
	top: calc(50% - 10px);
	left: 6%;
	font-size: 20px;
	line-height: 20px;
	color: white;
	transition: opacity .3s;
	opacity: 1;
	background: none;
	cursor: pointer;
	z-index: 2;
	padding: 0;
}

@media (hover: hover) {

	.fl-lightbox-arrow:hover {
		opacity: .7;
	}

}

.fl-lightbox-arrow:active {
	opacity: .7;
}

.fl-lightbox-next {
	left: initial;
	right: 6%;
}	

/*-buttons-*/
.fl-lightbox-btn {
	cursor: pointer;
}

.fl-lightbox-close {
	position: absolute;
	top: calc(.5rem + .5vw);
	right: calc(.5rem + .5vw);
}

.fl-lightbox-modal-btn {
	color: white;
	font-size: 25px;
	line-height: 25px;
	background: none;
	transition: opacity .3s;
	cursor: pointer;
	padding: 0;
}

.fl-lightbox-modal-btn:hover {
	opacity: .7;
}

.fl-lightbox-modal-btn:disabled {
	opacity: .3 !important;
	cursor: default !important;
}

/*-button-list-*/
.fl-lightbox-btn-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	position: absolute;
	top: calc(.5rem + .5vw);
	left: calc(.5rem + .5vw);
}

.fl-lightbox-btn-list > *:not(:last-child) {
	margin-right: 1rem;
}

@media (min-width: 768px) {

	.fl-lightbox-slide {
		max-width: 80%;
		width: auto;
		height: 80%;
	}

	.fl-lightbox-arrow {
		top: calc(50% - 15px);
		left: 1.5rem;
		font-size: 30px;
		line-height: 30px;
	}

	.fl-lightbox-next {
		left: initial;
		right: 1.5rem;
	}

}

/* the-end-of-flash-lightbox */



/* fl-sky-dropdown */

.fl-sky-dropdown-container {
	width: 100%;
}

/*-toggle-*/
.fl-sky-dropdown-toggle {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	border: 4px solid #262626;
	color: #262626;
	background-color: white;
	padding: .8rem 1.5rem;
	font-size: 25px;
	text-align: left;
	line-height: 35px;
	font-weight: bold;
	letter-spacing: 2px;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: background-color .3s, color .3s;
}

@media (hover: hover) {

	.fl-sky-dropdown-toggle:hover {
		background-color: #262626;
		color: white;
	}

}

.fl-sky-dropdown-toggle:active,
.fl-sky-dropdown-toggle.fl-active {
	background-color: #262626;
	color: white;
}

.fl-sky-dropdown-icon {
	transition: all .3s;
	font-size: 25px !important;
	margin-right: .5rem;
}

.fl-sky-dropdown-toggle.fl-active .fl-sky-dropdown-icon {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

/*-dropdown-*/
.fl-sky-dropdown {
	margin-top: 1rem;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s;
}

.fl-sky-dropdown.fl-show {
	max-height: 2000px;
}

@media (min-width: 992px) {

	.fl-sky-dropdown-toggle {
		font-size: 33px;
		line-height: 43px;
	}
}

/* the-end-of-fl-sky-dropdown */



/* fl-back-to-top-button */

.fl-back-to-top-btn {
	position: fixed;
	z-index: 4;
	bottom: -100%;
	right: 2rem;
	background-color: rgba(38,38,38, 0.5);
	color: #fafafa;
	transition-property: visibility, opacity, background-color, bottom;
	transition-duration: 0.5s;
	transition-timing-function: ease;
	border: 0;
	outline: 0 !important;
	padding: 1rem;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	border-radius: 0;
	overflow: hidden;
}

.fl-back-to-top-btn.fl-show {
	bottom: 2rem;
	visibility: visible;
	opacity: 1;
}	

.fl-back-to-top-btn i {
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	justify-content: center;
	align-content: center;
	height: 90%;
	width: 90%;
	top: 5%;
	left: 5%;
	position: absolute;
	transition: top 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.fl-back-to-top-btn i:last-child {
	top: 100%;
	opacity: 0;
}

.fl-back-to-top-btn:hover i:first-child {
	top: -100%; 
	opacity: 0;
}

.fl-back-to-top-btn:hover i:last-child {
	top: 5%;
	opacity: 1;
}

@media (hover: hover) {

	.fl-back-to-top-btn:hover {
		background-color: rgba(38,38,38, 0.8);
	}

}

.fl-back-to-top-btn:active {
	background-color: rgba(38,38,38, 1.0);
}

@media only screen and (min-width: 992px) {

	.fl-back-to-top-btn {
		padding: 1.5rem;
	}	

	.fl-back-to-top-btn.fl-show {	
		bottom: 5rem;
	}
	
}

/* the-end-of-fl-back-to-top-button */



/* animations */

.fl-loading-ani-curtains {
	background-color: transparent;
}

.fl-loading-ani-curtains::before,
.fl-loading-ani-curtains::after {
	content: " ";
	position: fixed;
	top: 0;
	left: 0;
	width: 50%;
	height: 100vh;
	background-color: white;
	transition: left 1s;
}

.fl-loading-ani-curtains::after {
	left: initial;
	right: 0;
	transition: right 1s;
} 

.fl-loading-ani-curtains.fl-stop::before {
	left: -50%;
}

.fl-loading-ani-curtains.fl-stop::after {
	right: -50%;
}

/*---blinking-circles---*/
@keyframes blinkingCircle { from { opacity: 0; } to { opacity: .9; } }

.fl-loading-ani-blinking-circles {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	margin: 30px auto 0;
	width: 100px;
	position: relative;
	z-index: 3;
}

.fl-loading-ani-blinking-circle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: grey;
}

/*---without-order---*/
.fl-loading-ani-blinking-circles:not([order="true"]) .fl-loading-ani-blinking-circle {
	animation-timing-function: linear;
  	animation-iteration-count: infinite;
  	animation-duration: 1.2s;
  	animation-direction: alternate;
  	animation-delay: 0s;
  	animation-name: blinkingCircle;
}

/*---with-order---*/

.fl-loading-ani-blinking-circles[order="true"] .fl-loading-ani-blinking-circle {
	opacity: 0;
	transition: opacity 1s linear !important;
}	

.fl-loading-ani-blinking-circle.fl-show {
	opacity: .9 !important;
}

/* the-end-of-animations */



/* brands */

/*-brand-img-*/
.brand-img {
	width: 110px;
	height: auto;
}

/*-brand-img-2-*/
.brand-img-2 { 
	width: 80px; 
	height: auto; 
}

/* the-end-of-brands */



/* sliders */

/*-head-slider-*/ 
.head-slider {
	height: 100vh;
}

.head-slide {
	position: relative; 
	display: flex; 
	flex-flow: row nowrap;
	justify-content: center;
	align-content: center;
	align-items: center;
} 

.head-slide-text-container {
	width: 90%;
	margin: 0 auto;
	text-align: center;
}

.head-slide-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: auto;
	min-width: 100%;
	height: 100%;
	z-index: -1;
}

@media (min-width: 992px) {

	.head-slide-img {
		width: 100%;
		height: auto;
		min-height: 100%;
	}

}

/* the-end-of-sliders */



/* bg-colors */

.bg-black {
	background-color: var(--black);
}

.bg-transparent {
	background-color: transparent;
}

@media (max-width: 991.98px) {

	.bg-md-black-with-opacity {
		background-color: var(--blackWithOpacity);
	}

}

.bg-lightgrey {
	background-color: var(--lightgrey);
}

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

/* the-end-of-bg-colors */



/* containers */

/*-container-1*/
.container-1 { 
	width: 100%; 
	padding-left: 1.5rem; 
	padding-right: 1.5rem; 
}

/*-container-2*/
.container-2 { 
	width: 100%; 
	padding-left: 1rem; 
	padding-right: 1rem; 
}

/*-container-3*/
.container-3 { 
	width: 100%; 
	padding-left: 1rem; 
	padding-right: 1rem; 
}

@media (min-width: 576px) {

	.container-3 { 
		padding-left: 12.5%; 
		padding-right: 12.5%; 
	}

}

/*-container-4*/
.container-4 { 
	width: 100%; 
	padding-left: 1rem; 
	padding-right: 1rem; 
}

@media (min-width: 576px) {

	.container-4 { 
		padding-left: 13.5%; 
		padding-right: 13.5%; 
	}

}

/* the-end-of-containers */



/* buttons */

/*-green-btn-*/
.green-btn {
	background-color: var(--green2);
	color: var(--white) !important;
	transition: opacity .3s;
	opacity: 1;
	border-radius: 4px;
	padding: 7px 1.3rem;
	font-size: 14px;
}

@media (hover: hover) { 

	.green-btn:hover { 
		opacity: .9; 
	} 

}

.green-btn:active { 
	opacity: .9; 
}

/*-white-toggler-btn-*/
.white-toggler-btn {
	font-size: 12px;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	width: auto !important;
	color: var(--white);
}

.white-toggler-btn .fl-navbar-toggler-line {
	margin-left: 7px;
}

.white-toggler-btn .fl-navbar-toggler-line::before,
.white-toggler-btn .fl-navbar-toggler-line,
.white-toggler-btn .fl-navbar-toggler-line::after {
	width: 15px;
    height: 1px;
    background-color: white;
}

.white-toggler-btn .fl-navbar-toggler-line::before,
.white-toggler-btn .fl-navbar-toggler-line::after {
    top: -5px;
}   

.white-toggler-btn .fl-navbar-toggler-line::after {
	top: 5px;
}

/*-white-iconic-btn-*/
.white-iconic-btn {
	color: var(--white);
	transition: color .3s;
	font-size: 18px;
}

@media (hover: hover) {

	.white-iconic-btn-darkblue-on-hover:hover {
		color: var(--darkblue);
	}

	.white-iconic-btn-lightblue-on-hover:hover {
		color: var(--lightblue);
	}

	.white-iconic-btn-green-on-hover:hover {
		color: var(--green3);
	}

	.white-iconic-btn-red-on-hover:hover {
		color: var(--red);
	}

	.white-iconic-btn-orange-on-hover:hover {
		color: var(--orange);
	}

}

.white-iconic-btn-darkblue-on-hover:active {
	color: var(--darkblue);
}

.white-iconic-btn-lightblue-on-hover:active {
	color: var(--lightblue);
}

.white-iconic-btn-green-on-hover:active {
	color: var(--green3);
}

.white-iconic-btn-red-on-hover:active {
	color: var(--red);
}

.white-iconic-btn-orange-on-hover:active {
	color: var(--orange);
}

/*-black-iconic-btn-*/
.black-iconic-btn {
	color: var(--black);
	transition: color .3s;
	font-size: 14px;
	border: 2px solid lightgrey;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	padding: 0;
	text-align: center;
	line-height: 30px;
}

/*-black-rounded-btn-*/
.black-rounded-btn {
	border-radius: 50%;
	color: var(--gold) !important;
	background-color: var(--black) !important;
	padding: 1rem;
}

/*-white-btn-*/
.white-btn {
	background-color: transparent;
	color: var(--white) !important;
	text-align: center;
	border: 4px solid white;
	transition: border-color .3s, background-color .3s;
	padding: .6rem 1.6rem;
	font-weight: bold;
	font-size: 12px !important;
	letter-spacing: 1px;
	display: inline-block;
}

@media (hover: hover) {

	.white-btn:hover {
		border-color: var(--gold);
		background-color: var(--gold);
	}

}

.white-btn:active {
	border-color: var(--gold);
	background-color: var(--gold);
}

/*-black-btn-*/
.black-btn {
	background-color: var(--white);
	color: var(--black);
	text-align: center;
	border: 4px solid var(--black);
	transition: border-color .3s, background-color .3s, color .3s;
	padding: .6rem 1.6rem;
	font-weight: bold;
	font-size: 12px !important;
	letter-spacing: 1px;
	display: inline-block;
}

@media (hover: hover) {

	.black-btn:hover {
		border-color: var(--gold);
		background-color: var(--gold);
		color: var(--white);
	}

}

.black-btn:active {
	border-color: var(--gold);
	background-color: var(--gold);
	color: var(--white);
}

/* the-end-of-buttons */



/* paddings */

.padding-y-1 {
	padding-top: .7rem;
	padding-bottom: .7rem;
}

@media (max-width: 991.98px) {

	.padding-y-md-1 {
		padding-top: 100px !important;
		padding-bottom: 100px !important;
	}

}

.padding-y-2 {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

.padding-y-3 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

/* the-end-of-paddings */



/* texts */ 

/*-white-text-*/
.white-text {
	color: var(--white);
	font-size: 12px;
	line-height: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

/*-white-text-2-*/
.white-text-2 {
	color: var(--white);
	font-size: 16px;
	line-height: 28px;
	margin: 0;
}

/*-black-text-*/
.black-text {
	color: var(--black);
	font-size: 16px;
	line-height: 28px;
	margin: 0;
}

/*-black-text-2-*/
.black-text-2 {
	color: var(--black);
	font-size: 16px;
	line-height: 30px;
	margin: 0;
	letter-spacing: 3px;
}

/*-black-text-3-*/
.black-text-3 {
	font-size: 24px;
    font-style: italic;
    color: var(--black);
	line-height: 37px;
	margin: 0;
}

/*-black-text-4-*/
.black-text-4 {
	font-size: 14px;
    font-style: italic;
    color: var(--black);
	line-height: 24px;
	margin: 0;
}

/*-white-text-3-*/
.white-text-3 {
	color: var(--white);
	font-size: 16px;
	line-height: 30px;
	margin: 0;
	letter-spacing: 3px;
}

/*-black-text-5-*/
.black-text-5 {
	color: var(--black);
	font-size: 11px;
	line-height: 21px;
	margin: 0 auto;
	letter-spacing: 1px;
}

/* the-end-of-texts */ 



/* list-offsets */

/*-list-lg-offset/2-*/
@media (min-width: 992px) {

	.list-lg-offset > *:not(:last-child) {
		margin-right: 1.8rem !important;
	}

	.list-lg-offset-2 > *:not(:first-child) {
		margin-top: 1rem !important;
	}

}

/* the-end-of-list-offsets */





/* links */ 

/*-white-lg-link-*/
@media (min-width: 992px) {

	.white-lg-link,
	.white-lg-link-2 { 
		color: var(--white);
		transition: color .3s;
		font-size: 13px;
		padding: .5rem 0 !important;
		letter-spacing: 2px;
		font-weight: bold;
		text-transform: uppercase;
	}

	.white-lg-link-2 {
		font-size: 11px;
		padding: 0 !important;
		background-color: transparent !important;
	}

	@media (hover: hover) {

		.white-lg-link:hover,
		.dropdown:hover .white-lg-link,
		.white-lg-link-2:hover {
			color: var(--gold);
		}

	}

	.white-lg-link:active,
	.white-lg-link.active,
	.white-lg-link-2:active {
		color: var(--gold) !important;
	}

}

/*-white-md-link-*/
@media (max-width: 991.98px) {

	.white-md-link,
	.white-md-link-2 {
		width: 100%;
		color: var(--white) !important;
		font-size: 25px;
		transition: color .3s;
		text-align: center;
		padding: 0 !important;
	}

	.white-md-link-2 {
		font-size: 16px;
	}

	.white-md-link[aria-expanded="true"],
	.white-md-link.active {
		color: var(--gold) !important;
	}

	.white-md-link::after {
		font-size: 14px !important;
	}

}

/* the-end-of-links */ 



/* boxes */

/*-black-lg-box-*/
@media (min-width: 992px) {

	.black-lg-box {
		padding: 1rem;
		border-radius: 0;
		border: 0;
		background-color: var(--black);
		min-width: 210px;
	}

}

/*-fixed-box-*/
.fixed-box {
	right: 1.3rem;
}

.fixed-box.fl-show {
	bottom: .8rem;
}

/* the-end-of-boxes */



/*-lists-*/

/*-md-list-1-*/
@media (max-width: 991.98px) {

	.md-list-1 {
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-flow: row wrap;
	}

	.md-list-1 > * {
		width: 100%;
	}

	.md-list-1 > *:not(:first-child) {
		margin-top: 1rem !important;
	}

}

/*-md-list-2-*/
@media (max-width: 991.98px) {

	.dropdown-menu.md-list-2 {
		display: flex !important;
		max-height: 0 !important;
		transition: max-height 1s !important;
		overflow: hidden !important;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-flow: row wrap !important;
		width: 80% !important;
		margin: 0 auto !important; 
	}

	.md-list-2 > * {
		width: auto !important;
		margin-top: 1rem !important;
	}

	.md-list-2 > *:not(:last-child) {
		margin-right: .5rem;
	}

	.md-list-2 > *:not(:first-child) {
		margin-left: .5rem;
	}

	.md-list-2.show {
		margin: 0 auto !important; 
		max-height: 500px !important;
	}

}

/*-md-list-3-*/
@media (max-width: 991.98px) {

	.md-list-3 {
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: flex-start;
		overflow: auto;
		max-height: 80vh;
	}

	.md-list-3 > * {
		width: 50%; 
	}

	.md-list-3 > *:first-child {
		border-right: 1px solid var(--white);
	}

}

@media (max-width: 767.98px) {

	.md-list-3 > * {
		width: 100%; 
	}

	.md-list-3 > *:first-child {
		border-right: 0;
	}

}

/*-list-2-*/
.list-2 {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-flow: row wrap;
}

.list-2 > * {
	width: 100%;
}

.list-2 > *:not(:first-child) {
	margin-top: 1.5rem;
}

/*-list-1-*/
.list-1,
.list-6 {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-flow: row wrap;
}

.list-1 > *,
.list-6 > * {
	margin-top: .5rem;
}

.list-1 > *:not(:last-child) {
	margin-right: 1rem;
}

.list-6 > *:not(:last-child) {
	margin-right: .5rem;
}

/*-list-3/4-*/
.list-3,
.list-4 {
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-flow: row wrap;
}

.list-3 > *,
.list-4 > * {
	width: 100%;
}

.list-3 > *:not(:first-child),
.list-4 > *:not(:first-child) {
	margin-top: 2rem;
}

@media (min-width: 768px) {

	.list-3 > * {
		width: 32%;
		
	}

	.list-3 *:first-child,
	.list-3 *:nth-child(2),
	.list-3 *:nth-child(3),
	.list-4 *:first-child,
	.list-4 *:nth-child(2) {
		margin-top: 0 !important;
	}

	.list-4 > * {
		width: 48%;
	}

}

/* the-end-of-lists */



/* titles */

/*-white-title-*/
.white-title,
.white-title-2 {
	text-align: center;
	color: var(--white);
	font-weight: bold;
	font-size: 35px;
	width: 90%;
	margin: 0 auto;
	line-height: 50px;
}

.white-title-2 {
	font-size: 50px !important;
	line-height: 65px !important;
	letter-spacing: 2px;
}

@media (min-width: 992px) {

	.white-title-2 {
		font-size: 110px !important;
		line-height: 125px !important;
	}

}

/*-black-title-*/
.black-title {
	color: var(--black);
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 23px;
	line-height: 35px;
	margin: 0 auto;
}

/*-black-title-2-*/
.black-title-2 {
	color: var(--black);
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 52px;
	line-height: 67px;
	margin: 0 auto;
}

/*-black-title-underline-*/
.black-title-underline {
	display: inline-block;
	border-bottom: 5px solid var(--black);
}

/*-white-title-3-*/
.white-title-3 {
	color: var(--white);
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 52px;
	line-height: 67px;
	margin: 0 auto;
}

/*-white-title-underline-*/
.white-title-underline {
	border-bottom: 5px solid var(--white);
}

/*-black-title-3-*/
.black-title-3 {
	color: var(--black);
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 30px;
	margin: 0 auto;
}

/* the-end-of-titles */



/* slider-arrows */

/*-slider-arrows-*/
.slider-arrows .flash-simple-slider-arrow {
	visibility: hidden;
}

.slider-arrows .flash-simple-slider-arrow {
    background-color: transparent !important;
    opacity: .4 !important;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    transition: opacity .3s;
    left: 2rem;
}

@media (hover: hover) {

	.slider-arrows .flash-simple-slider-arrow:hover {
		opacity: 1 !important;
	}

}

.slider-arrows .flash-simple-slider-arrow:active {
	opacity: 1 !important;
}

.slider-arrows .flash-simple-slider-next {
    left: initial;
    right: 2rem;
}

.slider-arrows .flash-simple-slider-arrow-icon {
	width: 100%;
	height: 100%;
	left: 0 !important;
	right: initial !important;
	border-width: 0 4px 4px 0 !important;
}

@media (min-width: 768px) {

	.slider-arrows .flash-simple-slider-arrow {
		visibility: visible;
	}

}

@media (min-width: 992px) {

	.slider-arrows .flash-simple-slider-arrow {
	    filter: opacity(0%);
	    transition: all .3s;
	}

	.slider-arrows:hover .flash-simple-slider-arrow {
	    filter: opacity(100%);
	}  

}

/* the-end-of-slider-arrows */



/* images */

/*-img-*/
.img {
	width: 48px;
	height: auto;
}

/*-img-2*/
.img-2 {
	width: 100%;
	height: auto;
}

/* the-end-of-images */



/* bg-images */

/*-bg-img-*/
.bg-img {
	background: url(../images/bg-img-03.jpg) no-repeat center center / cover;
}

/*-bg-img-2-*/
.bg-img-2 {
	background: url(../images/bg-img-04.jpg) no-repeat center center / cover;
}

/*-bg-img-3-*/
.bg-img-3 {
	background: url(../images/bg-img-06.jpg) no-repeat center center / cover;
}

/* the-end-of-bg-images */



/* img-containers */

/*-img-container-img-*/
.img-container-img {
	width: 100%;
	height: auto;
	display: block;
	min-height: 100%;
}

/*-img-container-*/
.img-container {
	overflow: hidden;
	display: block;
	border-radius: 50%;
	width: 65px;
	height: 65px;
}

/* the-end-of-img-containers */



/* margins */

.margin-t-1 {
	margin-top: 4.5rem;
}

.margin-t-2 {
	margin-top: 1.3rem;
}

.margin-t-3 {
	margin-top: 3.5rem;
}

.margin-t-4 {
	margin-top: 2.3rem;
}

.margin-t-5 {
	margin-top: 6.5rem;
}

.margin-r-1 {
	margin-right: .8rem;
}

/* the-end-of-margins */



/* widths */

/*-width-1-*/
.width-1 {
	width: calc(100% - (.8rem + 65px));
}

/*-width-lg-2-*/
@media (min-width: 992px) {

	.width-lg-2 {
		width: 35% !important;
		margin-left: auto;
		margin-right: auto;
	}

}

/* the-end-of-widths */



/* flex */

/*-flex-grow-1-*/
.flex-grow-1 {
	flex-grow: 1;
}

/* the-end-of-flex */



/* dots */

/*-grey-dots-*/
.grey-dots {
	position: relative;
	display: inline-block;
	z-index: -1;
}

.grey-dots::after {
	content: ".................................................................";
	position: absolute;
	left: 100%;
	color: lightgrey;
	font-size: 8px;
	letter-spacing: 2px;
}

/* the-end-of-dots */



/* overflows */

.overflow-hidden {
	overflow: hidden;
}

/* the-end-of-overflows */



/* colors */

@media (hover: hover) {

	.color-darkblue-on-hover:hover {
		color: var(--darkblue);
	}

	.color-lightblue-on-hover:hover {
		color: var(--lightblue);
	}

	.color-green-on-hover:hover {
		color: var(--green3);
	}

	.color-red-on-hover:hover {
		color: var(--red);
	}

	.color-orange-on-hover:hover {
		color: var(--orange);
	}

}

.color-darkblue-on-hover:active {
	color: var(--darkblue);
}

.color-lightblue-on-hover:active {
	color: var(--lightblue);
}

.color-green-on-hover:active {
	color: var(--green3);
}

.color-red-on-hover:active {
	color: var(--red);
}

.color-orange-on-hover:active {
	color: var(--orange);
}

/* the-end-of-colors */










