/*----------------------------------------------
* [Main Stylesheet]
*
----------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*----------------------------------------------
Reset
HTML5 display-role reset for older browsers
----------------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    font-family: var(--p-font);
    color: var(--font-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ol, ul {
    padding-left: 20px;
}

ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}

ul ul {
    list-style: circle;
}

pre, code {
    display: block;
    margin: 1rem 0;
    color: var(--main-color);
}

blockquote, q {
    display: block;
    margin: 1rem 0;
    quotes: none;
    padding: 0;
}

blockquote h2 {
	font-size: 3rem;	
}

blockquote h3 {
	font-size: 2rem;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

blockquote p, q p {
    margin: 0;
}

/*----------------------------------------------
General
----------------------------------------------*/
::selection {
    background: rgba(150, 150, 150, 0.3);
}

::-moz-selection {
    background: rgba(150, 150, 150, 0.3);
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
	outline: none;
}

a:not(.btn), a:link:not(.btn), a:visited:not(.btn), a:hover:not(.btn), a:active:not(.btn) {
    color: var(--main-color-hover);
	text-decoration: none;
    -webkit-transition: all 0.15s;
	transition: all 0.15s;
}

a:not([href]),
a:not([href]) i {
	color: var(--main-color-hover);
    -webkit-transition: all 0.15s;
	transition: all 0.15s;
}

a:not(.btn):hover {
	color: var(--main-color);
}

p {
    margin: 1.5rem 0;
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    line-height: 1.5;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

h1 {
    margin-bottom: 0;
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    line-height: 1.2;
    font-family: var(--h1-font);
    color: var(--font-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 em {
    font-weight: 400;
    display: block;
    font-size: var(--h2-size);
}

h2 {
    margin: 0 0 1.5rem 0;
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: 1.2;
    font-family: var(--h2-font);
    color: var(--font-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h2.title {
    margin: 0 0 60px 0;
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: 1.2;
    font-family: var(--h2-font);
    color: var(--main-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-transform: uppercase;
}

h2.title i, h3.title i {
	color: var(--main-color);
	padding-right: 15px;
}

h3 {
    margin: 1.5rem 0;
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    line-height: 1.2;
    font-family: var(--h3-font);
    color: var(--font-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h3.title {
    margin: 0 0 1.5rem 0;
}

h4 {
    margin: 1.5rem 0;
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
    line-height: 1.2;
    font-family: var(--h4-font);
    color: var(--font-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h4.title {
	text-transform: uppercase;
}

h5 {
    margin: 1.5rem 0;
    font-size: var(--h5-size);
    font-weight: var(--h5-weight);
    line-height: 1.2;
    font-family: var(--h5-font);
    color: var(--font-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h6 {
    margin: 1.5rem 0;
    font-size: var(--h6-size);
    font-weight: var(--h6-weight);
    line-height: 1.2;
    font-family: var(--h6-font);
    color: var(--font-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

b, strong {
    font-weight: 700;
}

li {
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

::placeholder {
    color: var(--font-color);
	opacity: 0.5;
}

dt {
    margin: 15px 0;
}

address {
    margin-bottom: 1rem;
}

form {
    width: 100%;
}

form label {
    width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

input, select {
    width: 100%;
    height: 44px;
    background: no-repeat;
    box-shadow: none;
    padding: 0.7rem 1rem;
    border-color: var(--third-color);
    border-width: 1px;
    border-radius: 0;
}

textarea {
    width: 100%;
    height: auto;
    background: no-repeat;
    box-shadow: none;
    padding: 0.7rem 1rem;
    border-color: var(--third-color);
    border-width: 1px;
    border-radius: 0;
}

input:focus, textarea:focus, select:focus {
    background: no-repeat;
    color: inherit;
    outline: none;
    border-color: inherit;
    box-shadow: none;
}

input {
    border-color: var(--third-color);
    color: var(--font-color);
}

input:focus {
    border-color: var(--main-color);
    color: var(--font-color);
}

input[type="radio"] {
    height: initial;
}

input[type="submit"] {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background: var(--main-color);
    border: none;
    border-radius: 0;
    color: var(--white-color);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all 0.15s;
	transition: all 0.15s;
}

input[type="submit"]:hover {
    background: var(--main-color-hover);
    color: var(--white-color)!important;
    -webkit-transition: all 0.15s;
	transition: all 0.15s;
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    position: relative;
    margin-right: 5px;
}

input[type="date"] {
	display:block;  
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
	min-width: 96%;
}

textarea {
    height: 100px;
    resize: none;
    border-color: var(--third-color);
    color: var(--font-color);
}

textarea:focus {
    border-color: var(--main-color);
}

select {
    -webkit-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    line-height: 1.2;
    border-color: var(--third-color);
    color: var(--font-color);
}

select:focus {
    border-color: var(--main-color);
    color: var(--font-color);
}

select option {
    color: var(--main-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table td {
    padding: 10px;
}

table th {
    padding: 10px;
}

tr:nth-child(even) {
	background-color: var(--third-color);
}

.text-uppercase {
    text-transform: uppercase;
}

/*----------------------------------------------
Section
----------------------------------------------*/
section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

section.hero {
    background-color: var(--hero-bg-color);
	margin-top: 70px;
}

section.hero.sub {
    padding: 60px 0 60px 0;
	background: url("/src/Images/sub-cover.webp") no-repeat center;
    background-color: var(--hero-bg-color);
    background-size: cover;
    background-position: center;

}

section.section-2 {
    background-color: var(--third-color);
}

section.section-3 {
    background: url("/src/Images/bg-form.webp") no-repeat center;
    background-size: cover;
    background-position: top center;
	background-color: var(--third-color);
}

section.section-4 {
	border-top: 2px solid var(--main-color);
}

section.section-5 {
	background-color: var(--main-color);
}

section.section-6 {
	margin-top: -60px;
    z-index: 2;
    padding: 0 0 60px 0;
}

section.section-7 {
    padding: 0 0 60px 0;
}

section.section-info {
	background-color: var(--invalid-color);
	color: var(--white-color)!important;
}

section.section-info h3, section.section-info h4 {
	color: var(--white-color)!important;
}

section#footer {
    background-color: var(--footer-bg-color);
    padding: 30px 0 40px 0;
}

main {
    padding: 0;
}

aside {
    padding: 0;
}

.container {
    max-width: 1350px;
    padding: 0;
}

.container.header {
    max-width: 1320px;
}

.container.header.full {
    max-width: 100%;
}

.container.header.full-grid {
    max-width: 100%;
    margin: 0 5px;
}

.container.header.smaller {
    max-width: 940px;
}

.container.disabled {
    width: auto;
    max-width: 100%;
}

.container.disabled .content-inner {
    padding: 0;
}

.container.full {
    max-width: 100%;
}

.container.full-grid {
    padding: 0;
    max-width: calc(100% - 30px);
    margin: 0 15px;
}

.container.smaller {
    max-width: 970px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.vh-100 {
    height: 100vh;
}

.vh-75 {
    height: 75vh;
}

.clearfix {
    display: block;
    content: "";
    clear: both;
}

.overflow-holder {
    overflow: hidden;
    margin-top: -25px;
    margin-bottom: -25px;
    padding-top: 25px;
    padding-bottom: 25px;
}

/*----------------------------------------------
Helper Class
----------------------------------------------*/
.form .message {
    position: absolute;
    top: 0;
    left: 15px;
    width: 100%;
    height: 100%;
    padding: 35px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: scale(0);
    background-color: var(--card-bg-color);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.form .message .icon {
    margin: auto;
    background-image: -webkit-linear-gradient(45deg, var(--main-color) 15%, var(--main-color) 65%);
    background-image: linear-gradient(45deg, var(--main-color) 15%, var(--main-color) 65%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form .message h3 {
    background-image: -webkit-linear-gradient(45deg, var(--main-color) 15%, var(--main-color) 65%);
    background-image: linear-gradient(45deg, var(--main-color) 15%, var(--main-color) 65%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form .message .done {
    display: none;
}

.form .message.active {
    transform: scale(1);
}

.form-group-margin {
    margin: 0 7.5px;
}

.agreement {
    margin: 20px 0;
}

.agreement p, .agreement a {
    font-size: 0.875rem!important;
}

.read-also {
	position: relative;
    z-index: 2;
	width: 100%;
    padding: 10px 25px;
    background: var(--main-color);
    border: none;
    color: var(--main-color);
	font-size: 20px;
	font-weight: 700;
    text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

.grecaptcha-badge {
    visibility: hidden;
}

/*----------------------------------------------
Header
----------------------------------------------*/
header {
    position: relative;
    z-index: 5;
}

.navbar-holder {
    position: relative;
    z-index: -100;
    min-height: auto;
    pointer-events: none; 
	background-color: var(--header-bg-color);
}

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

header .navbar-sticky {
	background-color: var(--header-bg-color);
	-webkit-transition: all .15s ease-out 0s !important;
    transition: all .15s ease-out 0s !important;
	top: 0;
    /* ! important is necessary to avoid conflict with the AOS animate. */
}

header .navbar-sticky.hidden {
    -webkit-transform: translate3d(0, -101%, 0) !important;
    transform: translate3d(0, -101%, 0) !important;
    /* ! important is necessary to avoid conflict with the AOS animate. */
}

header .navbar-sticky.visible {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    /* ! important is necessary to avoid conflict with the AOS animate. */
}

header .navbar-expand {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    padding: 20px 25px;
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    pointer-events: initial;
}


header .navbar-expand.relative {
    position: relative;
}

header .navbar-expand .navbar-nav {
    display: inline-block;
}

header .navbar-expand .navbar-nav.toggle {
    display: none;
}

header .navbar-expand .navbar-nav.toggle i {
    font-size: 20px;
    color: var(--main-color-hover);
}

header .navbar-expand .navbar-brand {
    padding: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 0;
    color: var(--main-color);
}

header .navbar-expand .navbar-brand i {
    font-style: initial;
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--main-color);
}

header .navbar-expand .navbar-brand img {
    height: var(--nav-brand-height);
}

.navbar-expand .navbar-nav .nav-item {
    margin: 0;
    display: inline-flex;
}

.navbar-expand .navbar-nav ul .nav-item {
    display: block;
}

.navbar-expand .navbar-nav .nav-item a:not(.btn) {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
}

.navbar-expand .navbar-nav .nav-link:not(.btn) {
    padding-right: 0;
    padding-left: 3rem;
    color: var(--main-color);
}

.navbar-expand .navbar-nav .nav-link:not(.btn):not(.title):hover {
    color: var(--main-color-hover);
}

.navbar-expand .navbar-nav .nav-link.active:not(.btn):not(.title) {
    color: var(--main-color);
}

.navbar-expand .navbar-nav .dropdown-menu .nav-link:not(.btn) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-color);
}

.navbar-expand .navbar-nav .dropdown-menu .nav-link.title {
    font-weight: 700;
    color: var(--main-color);
}

.navbar-expand .navbar-nav .dropdown-menu .nav-link:not(.btn):not(.title):hover {
    color: var(--main-color-hover);
}

.navbar-nav i {
    color: var(--main-color-hover);
}

.navbar-nav i.fa-chevron-down, .navbar-nav i.fa-chevron-right {
    position: relative;
    top: 1.5px;
    margin: 0 0 0.2rem 0.3rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.navbar-expand .icons i {
    font-weight: 700;
}

.dropdown-menu {
    padding: 5px 0;
    margin: 0;
	left: 5px;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.dropdown .dropdown-menu {
    background-color: var(--header-bg-color);
    width: max-content;
    min-width: 200px;
    display: block;
    visibility: hidden;
    opacity: 0;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.dropdown:hover>.dropdown-menu {
    visibility: unset;
    opacity: 1;
    margin: 0;
    transition-timing-function: ease;
    transition-duration: .4s;
    transition-property: opacity, transform;
}

.dropdown-menu .dropdown-menu {
    position: absolute;
    top: -5px;
    left: 100%;
}

.dropdown-item.active, .dropdown-item:hover, .dropdown-item:active {
    color: inherit;
    text-decoration: none;
    background-color: inherit;
    box-shadow: none;
    outline: none;
}

.menu .items {
    margin-left: -5px;
    width: calc(100% + 10px);
}

.menu .navbar-nav {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
}

.menu .nav-item {
    margin: 0;
}

.menu .dropdown .dropdown-menu {
    display: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
    background: none;
    box-shadow: none;
    border: none;
    text-align: center;
    padding: 0 0 0 20px;
    margin: 0 0 15px;
    list-style: none;
    color: var(--font-color);
}

.menu .dropdown .dropdown-menu.show {
    display: block;
}

.menu .dropdown-menu .dropdown-menu {
    position: relative;
    top: initial;
    left: initial;
}

.menu .dropdown .dropdown-menu .left,
.menu .dropdown .dropdown-menu .right {
    width: 50%;
}

.menu .nav-link:not(.btn) {
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid var(--third-color);
    color: var(--font-color);
    display: inline-block;
    width: calc(100% - 12px);
    vertical-align: top;
    padding: 10px 5px;
    margin: 0 5px;
}

.menu .nav-link:not(.btn):hover {
    color: var(--main-color);
}

.menu .dropdown .dropdown-menu .nav-link.title {
    font-weight: 700;
    color: var(--main-color);
    border: none;
    opacity: 0.8;
}

.menu .dropdown .dropdown-menu .nav-item .nav-link {
    font-size: 1.2rem;
    font-weight: 700;
    background: none;
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    width: calc(100% - 12px);
    vertical-align: top;
    padding: 0;
    margin: 0 5px 12px;
    text-align: left;
}

.menu .dropdown .dropdown-menu .nav-link:hover {
    font-weight: 700;
	color: var(--main-color);
}

.menu .dropdown .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
	font-weight: 700;
	color: var(--main-color);
}

.menu .dropdown:first-child {
    margin-top: 0;
}

.menu .nav-link:first-child {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    color: var(--main-color);
}

.menu .dropdown-menu .dropdown>.nav-link:first-child {
    font-size: 1.2rem;
    font-weight: 700;
}

.menu .navbar-nav i.fa-chevron-down {
    font-size: 18px;
}

.navbar-expand .navbar-nav .lang .nav-link:not(.btn) {
    padding: 8px 12px;
    margin-left: 1.5rem;
    background-color: var(--main-color);
    color: var(--main-color)!important;
    text-transform: uppercase;
}

.navbar-expand .navbar-nav .lang .dropdown-menu .nav-link:not(.btn) {
    padding: 5px 13px;
    margin-left: 10px;
    color: var(--main-color)!important;
    background-color: var(--white-color);
    text-transform: uppercase;
}

.navbar-expand .navbar-nav .lang .dropdown-menu .nav-link:not(.btn):hover {
    color: var(--main-color)!important;
}

.dropdown .dropdown-menu.lang {
    min-width: 72px;
    left: 12px;
}

/*----------------------------------------------
Slider
----------------------------------------------*/
.slider-h-auto {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.slider-h-auto .swiper-wrapper,
.slider-h-auto .swiper-slide {
    min-height: 300px;
}

.slider-h-auto.no-slider .inner {
    top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.slider-h {
    width: 100%;
    height: 501px;
    margin-top: 0;
}

.slider-h-sub {
    width: 100%;
    height: auto;
}

.full-slider {
    cursor: w-resize;
}

.full-slider .inner,
.no-slider .inner {
    max-width: 1140px;
    padding: 0;
    margin: auto;
}

.full-slider .inner .center,
.no-slider .inner .center {
    width: 100%;
    padding: 2rem 0;
}

.full-slider .slide-content .inner .title,
.no-slider .slide-content .inner .title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    text-transform: uppercase;
    padding: 5px;
    margin: 0 auto;
    max-width: 100%;
}

.full-slider .slide-content .inner .title i,
.no-slider .slide-content .inner .title i {
    color: var(--main-color);
}

.full-slider .slide-content.sub .inner .title,
.no-slider .slide-content.sub .inner .title {
    font-size: 3.625rem;
    font-weight: 700;
    color: var(--white-color);
    text-transform: none;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    background: none;
}

.full-slider .swiper-button-next {
    right: 1.5rem;
}

.full-slider .swiper-button-prev {
    left: 1.5rem;
}

.full-slider .swiper-button-next:focus,
.full-slider .swiper-button-prev:focus {
    outline: none;
}

.full-slider .swiper-button-next,
.full-slider .swiper-button-prev {
    top: calc(50% + 60px);
    background-color: var(--font-color);
    opacity: 0.25;
    padding: 2rem 1.5rem;
    transition-timing-function: ease-in;
    transition: 0.2s;
}

.full-slider .swiper-button-next:hover,
.full-slider .swiper-button-prev:hover {
    background-color: var(--font-color-hover);
}

.full-slider .swiper-button-next:after,
.full-slider .swiper-button-prev:after {
    font-size: 3rem;
}

.slide-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.slide-content {
/*    position: relative;*/
	position: absolute;
	bottom: 0;
    z-index: 3;
    width: 100%;
}

.slide-content.sub {
    position: relative;
    z-index: 3;
    width: 100%;
}

.swiper-slide .aos-animate {
    display: none;
}

.swiper-slide.swiper-slide-active .aos-animate {
    display: block;
}

.swiper-slide .fit-image.aos-init {
    opacity: 1;
}

.swiper-slide .fit-image.aos-animate {
    visibility: hidden;
    display: block;
}

.swiper-slide.swiper-slide-active .fit-image.aos-animate {
    visibility: visible;
    display: block;
    transform: translateZ(0) scale(1.2);
    transition-timing-function: cubic-bezier(.25, .25, .75, .75);
    transition-duration: 3s;
    transition-property: opacity, transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    margin-top: 35px;
    position: relative;
}

.full-slider.swiper-container-horizontal>.swiper-pagination-bullets {
    position: absolute;
    top: initial;
    bottom: 20px !important;
    /* ! important is necessary to avoid conflict with the Swipper Slider. */
}

.swiper-container {
    overflow: visible !important;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 10px;
    border-radius: 0;
    background-color: var(--main-color);
    border: none;
    opacity: 0.25;
}

.swiper-pagination-bullet:hover {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-color);
    opacity: 1;
}

.swiper-pagination-bullet-active:hover {
    background-color: var(--dark-color-hover);
}

.scrolldown {
    position: absolute;
    bottom: 5vh !important;
    left: 50%;
    margin-left: -15px;
    text-align: center;
    color: var(--white-color);
    -webkit-animation: pulse 1s linear infinite;
    animation: pulse 1s linear infinite;
}

.scrolldown i {
    font-size: 30px;
}

.slogan {
    width: 100%;
    text-align: center;
	padding: 0 10px;
}

.slogan h1 {
    display: block;
	margin: 0 auto;
	max-width: 840px;
	font-size: 3rem;
    color: var(--white-color)!important;
    font-weight: 700;
	text-transform: uppercase;
}

@-webkit-keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.9;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.9;
    }
}

/*----------------------------------------------
Feature
----------------------------------------------*/
.preloader {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hero-bg-color);
    transition-timing-function: cubic-bezier(.25, .25, .75, .75);
    transition-duration: 0.4s;
    transition-property: opacity, transform;
}

.preloader.ready {
    z-index: -100;
    opacity: 0;
}

.full-image[data-mask="90"] {
    opacity: 0.1;
}

.full-image[data-mask="80"] {
    opacity: 0.2;
}

.full-image[data-mask="70"] {
    opacity: 0.3;
}

.full-image[data-mask="60"] {
    opacity: 0.4;
}

.full-image[data-mask="50"] {
    opacity: 0.5;
}

.full-image[data-mask="40"] {
    opacity: 0.6;
}

.full-image[data-mask="30"] {
    opacity: 0.7;
}

.full-image[data-mask="20"] {
    opacity: 0.8;
}

.full-image[data-mask="10"] {
    opacity: 0.9;
}

.full-image[data-mask="0"] {
    opacity: 1;
}

.full-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.full-width-image {
    width: 100%;
    height: auto;
    object-position: center;
}

.hero-image {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: auto;
    height: 85%;
}

.hero-image-left {
    position: absolute;
    left: 10%;
    bottom: 0;
    width: auto;
    height: 85%;
}

.fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fit-image.w-85 {
    width: 85%;
}

.fit-image.top {
    object-position: top;
}

.fit-image.bottom {
    object-position: bottom;
}

.btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .5rem 1.25rem;
    border-width: 0;
}

.btn.smaller, .btn.smaller:active, .btn.smaller:focus {
    width: fit-content;
    box-sizing: content-box;
    margin: 0 5px;
    padding: 7.5px 12.5px;
    display: inline-block;
}

.btn.w-100 {
    max-width: 100%;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus,
.btn:hover, .btn:focus {
    outline: none;
    box-shadow: none;
}

.btn i {
    margin-right: 0.5rem;
}

.btn i.left {
    margin-right: 0;
    margin-left: 0.5rem;
}

.btn-icon {
    position: relative;
    bottom: -5px;
    font-size: 24px;
    cursor: pointer;
    color: var(--font-color);
}

.inline-button {
    
}

.inline-button div {
	display: inline-block;	
	margin: 5px 5px 0 5px;
}

/*----------------------------------------------
Form and Field
----------------------------------------------*/
.form-control {
    width: 100%;
    height: 50px;
    position: relative;
    padding: 10px 25px;
    background: var(--white-color);
	border: 1px solid var(--main-color);
	border-radius: 0;
    color: var(--font-color);
}

.form-control:focus {
    color: var(--font-color);
    outline: none;
    border-color: var(--main-color-hover);
    box-shadow: none!important;
}

textarea.form-control {
    width: 100%;
    min-height: 170px;
}

.input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) {
    border-radius: 0;
}

.input-group {
    margin: 10px 0;
}

.form-alert {
    margin: 1rem 0;
    display: block;
    color: var(--invalid-color);
}

.form-alert p {
    font-weight: 700;
}

.form-alert.valid {
    color: var(--valid-color);
}

.form-alert.invalid {
    color: var(--invalid-color);
}

/*----------------------------------------------
Home
----------------------------------------------*/
.home-search {
    width: 100%;
}

.home-search h3 {
	color: var(--main-color);
	text-transform: uppercase;
	margin: 0;
}

.home-search i {
	color: var(--main-color-hover);
	font-size: 2rem;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-container i {
    margin-right: 10px;
}

.search-container input {
    flex: 1;
    padding-left: 30px;
}

/*----------------------------------------------
Offer / Rental
----------------------------------------------*/
.offer .items, .rental .items {
    display: flex;
    flex-wrap: wrap;
}

.offer .items .item, .rental .items .item {
    display: flex;
    margin-bottom: 30px;
}

.offer .tile, .rental .tile {
    position: relative;
    z-index: 1;
    width: 100%;
    border: none;
	border-radius: 0;
    background-color: var(--white-color);
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
	-webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.15);
}

.rental .tile .image-container {
	width: 100%;
	background-color: var(--main-color);
	padding: 10px 25px;
}

.rental .tile .image-container img {
	height: 120px;
	width: auto;
}

.offer .items .item .tile .desc, .rental .items .item .tile .desc {
	padding: 0 25px 70px 25px;
}

.offer .items .item .tile .desc h3, .rental .items .item .tile .desc h3 {
    color: var(--font-color);
    font-size: 1.375rem;
    font-weight: 700;
	margin-bottom: 0.5rem;
}

.offer .items .item .tile .desc p {
    color: var(--font-color);
    font-size: 1.125rem;
    font-weight: 700;
	margin-top: 0;
}

.offer .items .item .tile .read-more, .rental .items .item .tile .read-more {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
}

.offer .items .item .tile .read-more p, .rental .items .item .tile .read-more p {
	width: 100%;
}

.price-table h3 {
	text-transform: uppercase;
}

.price-table table {
	max-width: 100%;
}

.image-top img {
	border-radius: 10px;
}

/*----------------------------------------------
Why us
----------------------------------------------*/
.whyus .items {
    display: flex;
    flex-wrap: wrap;
}

.whyus .items .item {
    display: flex;
    margin-bottom: 30px;
	padding-left: 0;
	padding-right: 0;
}

.whyus .items .item:nth-child(6) {
    margin-bottom: 0;
}

.whyus .tile {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
	display: flex;
	align-items: center;
}

.whyus .items .item .tile .icon {
    width: 120px;
    text-align: center;
    float: left;
    margin-right: 30px;
}

.whyus .items .item .tile .icon img {
    width: 120px;
}

.whyus .items .item .tile .desc {
    float: left;
    width: calc(100% - 170px);
}

.whyus .items .item .tile h4 {
    color: var(--font-color);
    font-size: 1.25rem;
    margin-top: 0;
    font-weight: 700;
    text-align: left;
}

.whyus .items .item .tile p {
    color: var(--font-color);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}

/*----------------------------------------------
Files
----------------------------------------------*/
.download {
    display: flex;
    background-color: var(--white-color);
    color: var(--font-color)!important;
    position: relative;
    width: 100%;
    align-items: center;
    border-radius: 15px;
    border: 2px solid var(--white-color);
    padding: 10px 20px;
    margin-top: 20px;
    min-height: 50px;
    -webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.download:hover {
    border: 2px solid var(--main-color);
}

.download-icon {
    align-items: center;
    display: flex;
    margin-right: 20px;
}

.download-icon img {
    height: 50px;
    width: auto;
}

h3.title-download {
    text-transform: uppercase;
	margin-top: 0;
}

/*----------------------------------------------
Google maps
----------------------------------------------*/

#google-map {
    margin: 0;
	padding: 0;
	height: 400px;
}

#google-map iframe {
	width: 100%;
	height: 400px;
	border: none;
	margin: 0;
}

/*----------------------------------------------
Gallery
----------------------------------------------*/
.gallery {
    position: relative;
    overflow: hidden;
}

.content .gallery {
    margin: 35px 0 0 0;
}

.gallery .item {
    margin-top: 15px;
	margin-bottom: 15px;
}

.gallery.offer {
	margin-top: 1.5rem;
}

.gallery.offer .item {
	margin: 0;
}

.gallery img {
	border: 1px solid var(--third-color);
}

.gallery .small img {
    border-radius: 5px;
}

.gallery .fit-image {
    width: 100%;
    height: 100%;
}

.gallery.offer .item.small img {	
	margin-top: 20px;
	margin-right: 20px;
	width: calc((100% - 49px) / 3);
}

.gallery.offer .item.small:nth-child(4) img {
	margin-right: 0;
}

/*----------------------------------------------
Footer
----------------------------------------------*/
footer {
    position: relative;
    color: var(--white-color);
}

footer p {
    font-size: 1rem;
}

footer a {
    color: var(--white-color)!important;
	font-size: 1rem;
}

footer a:hover {
    color: var(--third-color)!important;
}

.footer-contact h3 {
	color: var(--second-color);
	font-size: 1.25rem;
	margin: 1rem 0!important;
}

.footer-contact p {
	margin-top: 0!important;
}

.footer-follow img {
    height: 40px;
	width: auto;
}

.footer-copyright {
    margin-top: 20px;
}

.copyright {
    width: 100%;
    padding: 20px 0;
    background: var(--main-color);
	border-top: 1px solid var(--main-color-hover);
}

.copyright p {
    color: var(--white-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.copyright a {
    color: var(--white-color)!important;
    font-size: 0.875rem!important;
    font-weight: 500!important;
}

.copyright a:hover {
    color: var(--third-color)!important;
}

.facebook-icon-right {
    position: fixed;
    right: 0;
    top: 200px;
    z-index: 1000;
	-webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.15);
}

.facebook-icon-right img {
    height: 50px;
    width: auto;
}

/*----------------------------------------------
Social Media Share
----------------------------------------------*/
.social-media-share {
    display: block;
    width: 100%;
    margin: 0 auto;
	padding: 15px 0;
	background-color: var(--font-color);
    text-align: center;
}

.social-media-share a {
    display: inline-block;
    border: none;
    margin-right: 15px;
    color: var(--main-color)!important;
    text-align: center;
    text-decoration: none;
}

.social-media-share a:last-child {
    margin-right: 0;
}

.social-media-share a:hover {
    color: var(--main-color-hover)!important;
}

.social-media-share i {
    font-size: 2.5rem;
    display: inline;
	vertical-align: middle;
}

.social-media-share h4 {
	font-size: 1.125rem;
    color: var(--white-color);
	text-transform: uppercase;
    margin: 0 15px 0 0;
    display: inline;
	vertical-align: middle;
}

/*----------------------------------------------
Modal
----------------------------------------------*/
/* #region Modal */
.modal-open {
    overflow-y: hidden;
    overflow-x: hidden;
}

.modal-dialog-slideout {
    min-height: 100%;
    margin: 0 0 0 auto;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(100%, 0)scale(1);
    transform: translate(100%, 0)scale(1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.modal.fade.show .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    display: flex;
    align-items: start;
    -webkit-box-align: start;
    height: 100%;
}

.modal-content {
    border: none;
    border-radius: 0;
    overflow-x: hidden;
    background-color: var(--white-color);
}

.modal-content.full {
    height: 100%;
}

.modal-header {
    align-items: center;
    padding: 25px;
    border: none;
    font-weight: 700;
    color: var(--main-color);
    border-radius: 0;
}

.modal-header .modal-title {
    line-height: 0;
}

.modal-header .fa-times {
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 25px 25px 75px;
}

.mobile-lang {
    list-style: none;
    margin-left: -5px;
    margin-top: 20px;
    padding: 0;
}

.mobile-lang li {
    display: inline-block;
    margin-right: 5px;
}

.mobile-lang li a {
    color: var(--white-color)!important;
    font-weight: 700!important;
    background-color: var(--main-color);
    padding: 8px 12px;
}

/*----------------------------------------------
Autocomplete
----------------------------------------------*/
.ui-widget.ui-widget-content {
    border: none!important;
}

.ui-widget-content {
    border: none!important;
    background: var(--main-color)!important;
    color: var(--white-color)!important;
}

.ui-menu .ui-menu-item-wrapper {
    padding: 7px 5px!important;
}

.ui-menu-item-wrapper {
    border-color: var(--main-color)!important;
	font-family: var(--p-font);
	font-weight: 600!important;
    font-size: 1rem!important;
}

.ui-menu-item-wrapper:hover, .ui-menu-item-wrapper:active {
    border-color: var(--main-color-hover)!important;
    background: var(--main-color-hover)!important;
    color: var(--white-color)!important;
}

.ui-menu-item-wrapper:focus, .ui-menu-item-wrapper:visited {
	border-color: var(--main-color)!important;
    background: var(--main-color)!important;
    color: var(--white-color)!important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
	border-color: var(--main-color-hover)!important;
    background: var(--main-color-hover)!important;
    color: var(--white-color)!important;
	font-weight: 600!important;
}

.ui-widget {
    font-family: 'Noto Sans', sans-serif!important;
	font-weight: 400!important;
    font-size: 1rem!important;
}

/*----------------------------------------------
Other
----------------------------------------------*/

.lg-download.lg-icon {
	display: none!important;
}

/* #endregion Other */
/*----------------------------------------------
Keyframe
----------------------------------------------*/
/* #region Keyframe */
@-webkit-keyframes effect {
    to {
        background-position: -200% center;
    }
}

@keyframes effect {
    to {
        background-position: -200% center;
    }
}

/* #endregion Keyframe */
/*----------------------------------------------
All Media Queries
----------------------------------------------*/
/* #region All Media Queries */
@media(max-width: 1199px) {
	.navbar-expand .navbar-nav .nav-link:not(.btn) {
	    padding-left: 1rem;
	}

    body .full-slider .swiper-button-next {
        right: 0;
        padding: 1.5rem 1rem;
    }

    body .full-slider .swiper-button-prev {
        left: 0;
        padding: 1.5rem 1rem;
    }

    body .full-slider .swiper-button-next:after,
    body .full-slider .swiper-button-prev:after {
        font-size: 2rem;
    }

    .slider-h {
        height: 450px;
    }
	
	.slogan h1 {
    	font-size: 2.8rem;
	}
	
    body .container {
        padding: 0 10px;
        max-width: 100%;
    }

    body .container .card.featured:before {
        content: none;
    }

    body .container.header.full-grid {
        margin: 0;
    }

    body .container.full-grid {
        padding: 0;
        max-width: calc(100% - 20px);
        margin: 0 10px;
    }

    body .bricklayer-column-sizer {
        width: 33.3333%;
    }

    body .columns-1 .bricklayer-column-sizer {
        width: 100%;
    }

    body .columns-2 .bricklayer-column-sizer,
    body .columns-3 .bricklayer-column-sizer,
    body .columns-4 .bricklayer-column-sizer,
    body .columns-5 .bricklayer-column-sizer,
    body .columns-6 .bricklayer-column-sizer {
        width: 33.3333%;
    }

    body .card-columns {
        column-count: 2;
    }

    body .card-footer {
        margin: 0;
    }

    body .play-video {
        right: 40px;
        bottom: 30px;
        font-size: 2.5rem;
    }

    body .gallery.featured a:first-child:before,
    body .gallery.featured a:last-child:before {
        content: none;
    }
}

@media(max-width: 1024px) {
    .list-3e__wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-behavior: smooth;
    }

    .list-3e__item {
        min-width: 304px;
        max-width: 304px;
    }

    .list-3e {
        padding-right: 25px;
        padding-left: 25px;
    }	
}

@media(max-width: 991px) {
    body header .navbar-expand .navbar-nav.toggle {
        display: flex;
    }

    body header .navbar-expand .navbar-nav.contacts,
    body header .navbar-expand .navbar-nav.items,
    body header .navbar-expand .navbar-nav.icons .social {
        display: none;
    }

	header .navbar-expand {
		padding: 10px 25px;
	}

    body aside {
        margin-top: 60px;
    }

    .slider-h {
        height: 350px;
    }
	
	.slogan h1 {
    	font-size: 2.5rem;
	}
	
	section.hero {
		margin-top: 50px;
	}

	body .full-slider .slide-content .inner .title,
    body .no-slider .slide-content .inner .title {
        font-size: 2.5rem;
    }
	
	.whyus .items .item .tile .icon {
		width: 80px;
		margin-right: 30px;
	}

	.whyus .items .item .tile .icon img {
		width: 80px;
	}

	.whyus .items .item .tile .desc {
		float: left;
		width: calc(100% - 110px);
	}
	
	.offer .items .item .tile .desc h3, .rental .items .item .tile .desc h3 {
		font-size: 1.25rem;
	}

	.offer .items .item .tile .desc p {
		font-size: 1rem;
	}
	
	blockquote h2 {
		font-size: 2.5rem;	
	}

	blockquote h3 {
		font-size: 1.75rem;
	}
	
	footer .contact-img {
		width: 100%;
		text-align: center;
	}
	
	footer .contact-img img {
		margin-right: 0;
	}
	
	footer .contact-info {
		display: block;
		text-align: center;
		margin-top: 20px;
	}
}

@media(max-width: 767px) {
    body .full-slider .slide-content .inner .title,
    body .no-slider .slide-content .inner .title {
        font-size: 1.8rem;
    }

    body .full-slider .slide-content.sub .inner .title,
    body .no-slider .slide-content.sub .inner .title {
        font-size: 2.5rem;
    }

    .slider-h {
        height: 300px;
    }
	
	.slogan h1 {
    	font-size: 1.6rem;
	}
	
    body section {
        padding: 40px 0;
    }
	
    h2.title {
        font-size: 2.3rem;
    }

    h2.map-title {
        font-size: 2.3rem;
        top: 40px;
        width: 312px;
    }
	
	.home-search h3 {
		font-size: 1.6rem;
	}

    body .form .message {
        width: calc(100% - 30px);
    }

    .news .items .item.big {
        margin-bottom: 30px;
    }

    .news .items .item.big .image-zoom {
        height: auto;
    }

    .news .big .desc h3 {
        font-size: 1.375rem;
    }

    .news .desc.single h3 {
        font-size: 1.7rem;
    }

    .news .desc.single {
        padding: 40px 0;
    }

    .deck img {
        width: 500px;
    }

    .p1p img {
        width: 80%;
    }
	
	footer .contact-img {
		width: auto;
		text-align: left;
	}
	
	footer .contact-img img {
		margin-right: 20px;
	}
	
	footer .contact-info {
		display: inline-block;
		text-align: left;
		margin-top: 0;
	}
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.5rem;
    }
	
	h2, h2.title {
		font-size: 2.1rem;
	}
	
	h3 {
		font-size: 1.8rem;
	}
	
	h4, h5 {
		font-size: 1.25rem;
	}
	
	body .full-slider .slide-content .inner .title,
    body .no-slider .slide-content .inner .title {
        font-size: 1.5rem;
    }

    body .full-slider .slide-content.sub .inner .title,
    body .no-slider .slide-content.sub .inner .title {
        font-size: 2.2rem;
    }

    body .full-slider .slide-content .inner .description,
    body .no-slider .slide-content .inner .description {
        font-size: 1.5rem;
    }

    .slider-h {
        height: 300px;
    }
	
	.home-search h3 {
		font-size: 1.4rem;
	}

    .intro {
        margin-bottom: 30px;
    }

    .news.home h2.title {
        margin: 0 0 -10px 0;
    }

    .list-3e__item {
        min-width: 240px;
        max-width: 240px;
    }

    .list-3e__item .desc {
        padding: 20px 20px 40px 20px;
    }

    .list-3e__item .desc h3 {
        font-size: 1.25rem;
    }

    .list-3e__item .desc p.subtitle {
        display: none;
    }
	
	blockquote h2 {
		font-size: 2rem;	
	}

	blockquote h3 {
		font-size: 1.5rem;
	}
}

@media(max-width: 469px) {
    h1 {
        font-size: 2rem;
    }
	
	h2, h2.title {
		font-size: 1.8rem;
	}
	
	h3 {
		font-size: 1.6rem;
	}
	
	.home-search h3 {
		font-size: 1.2rem;
	}
	
	h4, h5 {
		font-size: 1.25rem;
	}
	
	header .navbar-expand .navbar-brand img {
		height: 30px;
	}

	section.hero.sub {
        padding: 120px 0 40px 0;
    }

    .slider-h {
        height: 200px;
    }
	
	.slogan h1 {
    	font-size: 1rem;
	}
	
    .slider-h-sub {
        padding-top: 0px;
    }

    body .full-slider .slide-content .inner .title,
    body .no-slider .slide-content .inner .title {
        font-size: 1.2rem;
    }

    body .full-slider .slide-content.sub .inner .title,
    body .no-slider .slide-content.sub .inner .title {
        font-size: 2rem;
    }

    body .full-slider .slide-content .inner .description,
    body .no-slider .slide-content .inner .description {
        font-size: 1.2rem;
    }
	
	.whyus .items .item .tile .icon {
		width: 50px;
		margin-right: 20px;
	}

	.whyus .items .item .tile .icon img {
		width: 50px;
	}

	.whyus .items .item .tile .desc {
		float: left;
		width: calc(100% - 70px);
	}

    .social-media h4 {
        display: block;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .social-media i {
        font-size: 35px;
    }

    .p1p img {
        width: 100%;
    }
	
	.price-table table {
		max-width: 100%;
	}
	
	.ui-menu {    	
		width: calc(100% - 50px)!important;
	}
	
	.facebook-icon-right {
		display: none!important;
	}
}

/* #endregion All Media Queries */
