@font-face {
    font-family: "Proxima Nova";
    src: url("./fonts/ProximaNovaSBold.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Proxima Nova";
    src: url("./fonts/ProximaNovaBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --dark-blue: #0E3243;
    --blue: #00A0E4; 
    /* --light-blue: ; */
    --silver: #c7c7c6;
    --light-silver: #e3e3e3;
    --dark-silver: #828a8d;
    --white: #ffffff;
}

html * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;;
    font-size: 14px;
    color: #06151c;
    overflow-x: hidden;
}
  
img {
    max-width: 100%;
}
p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}
p:last-of-type {
    margin-bottom: 0;
}
a {
    text-decoration: none;
    color: var(--dark-blue);
    /* transition: color 0.5s; */
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}
h6 {
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 30px;
    text-transform: uppercase;
    color: #06151c;
    margin-bottom: 20px;
}
.abs-full-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}
.btn {
    display: inline-block;
    background-color: var(--white);
    background-image: url(./img/button-icon.png);
    background-position: right;
    background-repeat: no-repeat;
    border-radius: 4px;
    border-bottom-right-radius: 16px;
    padding: 20px;
    padding-right: 56px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.btn-border {
    border: 1px solid var(--silver);
}
.text-center, .text-center * {
    text-align: center;
}
.image-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* HEADER */
header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
header .container .wrapper {
    padding: 30px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--silver);
}
header .logo img {
    width: 129px;
    display: block;
}
header nav {
    display: flex;
}
header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
header nav, header nav > div, header nav ul {
    height: 100%;
}
header nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 16px;
    text-transform: uppercase;
    margin-right: 50px;
    font-weight: 700;
    position: relative;
}
header nav ul li a {
    position: relative;
}
header nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid var(--light-silver);
    /* transition: background-color 0.5s, border 0.5s; */
}
header nav ul li a {
    /* transition: color 0.5s; */
    height: 100%;
    display: flex;
    align-items: center;
}
header nav ul li a:hover {
    color: var(--blue);
}
header nav ul li a:hover::after {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}
header nav ul li.active a {
    color: var(--blue);
}
header nav ul li.active a::after {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}
header .quick-contact a {
    display: flex;
    align-items:center;
}
header .quick-contact svg {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    fill: var(--blue);
}
header .nav {
    display: flex;
    align-items: center;
}
header .quick-contact {
    border-left: 2px solid var(--light-silver);
    padding-left: 50px;
    display: flex;
    align-items: center;
    font-size: 20px;
    height: 100%;
}
header .mobile-nav-icons {
    display: none;
}
header .lang-switcher {
    list-style: none;
}
header .lang-switcher li {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 50px;
}
header nav ul.lang-switcher li a::after {
    content: none;
}

 /* HOME BANNER */
.home-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: relative;
    padding-top: 120px;
    display: flex;
    align-items: center;
}
.home-banner .overlay {
    background-image: linear-gradient(90deg, rgba(6,21,28,0.9999999999999999) 0%, rgba(14,50,67,0) 100%);
}
.home-banner .container {
    position: relative;
    z-index: 1;
}
.home-banner h1 {
    color: var(--blue);
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 30px;
    max-width: 500px;
}
.home-banner h3 {
    color: var(--white);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 40px;
    max-width: 500px;
}
/* HOME ABOUT */
.home-about {
    padding: 100px 0;
}
.home-about .container {
    display: flex;
    flex-wrap: wrap;
}
.home-about .container > div:first-of-type {
    flex: 0 0 66.666%;
}
.home-about .container > div:last-of-type {
    flex: 0 0 33.333%;
}
.home-about .image-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
}
.home-about .first-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.home-about  .text-section {
    position: relative;
    z-index: 1;
}
.home-about .title {
    width: 60%;
    position: relative;
    background-color: var(--white);
    padding-bottom: 25px;
    padding-right: 25px;
}
.home-about h2 {
    font-size: 42px;
    line-height: 50px;
    color: var(--dark-blue);
    font-weight: 700;
}
.home-about p {
    font-size: 18px;
    width: 45%;
}
.text-logo-1 {
    text-transform: uppercase;
    color: var(--dark-blue);
}
.text-logo-2 {
    text-transform: uppercase;
    color: var(--blue);
}
.text-logo-3 {
    color: var(--silver);
}
.home-about .btn {
    margin-top: 30px;
}
.home-about .number {
    display: flex;
    padding: 40px 0;
}
.home-about .container .number-icon {
    padding: 4px 30px 0px;
    flex: 0 0 150px;
}
.home-about .numbers {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 40px 0;
}
.home-about .numbers .number {
    padding: 40px 0px;
}
.home-about .number:last-of-type {
    margin-bottom: 0px;
}
.home-about .number svg {
    width: 70px;
    height: 70px;
}
.home-about .number svg path {
    fill: var(--blue);
}
.home-about .number-value {
    font-size: 44px;
    font-weight: 700;
}
.home-about .number-title {
    font-size: 24px;
    font-weight: 700;
}
.home-about .number-desc {
    line-height: 1.5em;
    margin-top: 8px;
    color: var(--dark-silver);
}

/* HOME ADVANTAGES  */
.home-advantages {
    padding: 20px 0 160px;
    color: var(--white);
}
.home-advantages .container {
    position: relative;
}
.home-advantages .bg-cube {
    position: absolute;
    background-color: #eeeeee;
    left: 10%;
    right: 10%;
    top: 0;
    bottom: -80px;
    z-index: 0;
    border-radius: 4px;
}
.home-advantages-content {
    position: relative;
    z-index: 2;
}
.home-advantages h6 {
    padding-top: 40px;
    text-align: center;
    margin-bottom: 40px;
}
.home-advantages .image-box {
    height: 40vw;
    max-height: 600px;
    border-radius: 4px;
    position: relative;
}
.home-advantages .advantage {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: #00A0E4dd;
    border-radius: 4px;
    padding: 20px 20px 16px;
}
.home-advantages .advantage .title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}
.home-advantages .advantage .desc {
    padding-top: 6px;
    display: none;
}
/* HOME OFFER  */
.home-offer {
    color: var(--white);
    padding: 100px 0;
    position: relative;
}
.home-offer .overlay {
    background-color: var(--dark-blue);
    opacity: 0.9;
    z-index: 0;
}
.home-offer .home-offer-content {
    position: relative;
    z-index: 1;
}
.home-offer h6 {
    text-align: center;
    color: var(--white);
}
.home-offer .title-desc {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    line-height: 30px;
    color: var(--light-silver);
    font-size: 18px;
}
.home-offer .offer-container {
    padding: 40px 0;
}
.home-offer .offer-container img {
    width: 90px;
    height: 90px;
    display: block;
    margin: 0 auto;
}
.home-offer .offer-container h3 {
    text-align: center;
    font-size: 24px;
    margin: 40px 0;
}
.home-offer .offer-container p {
    text-align: center;
    color: var(--light-silver);
    font-size: 16px;
    line-height: 24px;
}
.home-offer .offer-container .btn {
    color: var(--white);
    background-color: transparent;
    border: 1px solid #45616f;
    text-align: center;
    margin-top: 40px;
}
.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
}
.slick-dots li {
    margin: 0 8px;
    width: 10px;
    height: 10px;
    background-color: var(--silver);
    border-radius: 50%;
    cursor: pointer;
}
.slick-dots li.slick-active {
    background-color: var(--blue);
}
.slick-dots li button {
    display: none;
}

/* HOME CONTACT */
.home-contact {
    padding: 100px 0;
}
.home-contact h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin: 20px 0;
    font-weight: 700;
    line-height: 44px;
}
.home-contact .home-contact-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mapboxgl-map {
    width: 100%; 
    height: 600px;
}

/* HOME CTA  */
.cta {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    position: relative;
}
.cta .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.cta .overlay {
    background-color: #06151c;
    opacity: 0.6;
}
.cta h2 {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 40px;
}
.cta h4 {
    color: var(--white);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 40px;
}
/* ABOUT US */
.about-us {
    padding: 100px 0;
}
.about-us .container {
    position: relative;
}
.about-us .container .overlay {
    position: absolute;
    background-color: #eeeeee;
    left: 40px;
    right: 40px;
    top: 100px;
    bottom: 100px;
    z-index: 0;
    border-radius: 4px;
}
.about-us h2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}
.about-us p {
    font-size: 18px;
    line-height: 30px;
}
.about-us .row {
    position: relative;
    z-index: 1;
}
.about-us .first-column {
    padding: 200px 0 200px 80px;
}
.about-us .image-bg, .about-us #map {
    height: 100%;
    border-radius: 4px;
    min-height: 400px;
}

/* ADVANTAGES  */
.advantages {
    padding: 0 0 60px;
}
.advantages .advantage {
    width: 83.333%;
    margin: 0 auto 40px;
    background-color: #eeeeee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.advantages .advantage-text {
    flex: 0 0 60%;
}
.advantages .advantage-img {
    flex: 0 0 40%;
}
.advantages .advantage-text {
    padding: 80px;
}
.advantages .advantage h3 {
    background-color: var(--blue);
    border-radius: 4px;
    color: var(--white);
    padding: 30px;
    display: inline-block;
    margin-bottom: 80px;
    font-size: 24px;
}
.advantages .image-bg {
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
}
.advantages p {
    font-size: 18px;
    line-height: 30px;
}
.advantages .advantage.reverse {
    flex-direction: row-reverse;
}

/* NUMBERS  */
.numbers {
    margin-bottom: 80px;
}
.numbers .container {
    display: flex;
    flex-wrap: wrap;
}
.numbers .number {
    display: flex;
    padding: 0 8px;
    flex: 0 0 33.333%;
}
.numbers .container .number-icon {
    padding: 4px 30px 0;
    flex: 0 0 150px;
}
.numbers .number svg {
    width: 70px;
    height: 70px;
}
.numbers .number svg path {
    fill: var(--blue);
}
.numbers .number-value {
    font-size: 44px;
    font-weight: 700;
}
.numbers .number-title {
    font-size: 24px;
    font-weight: 700;
}
.numbers .number-desc {
    margin-top: 8px;
    color: var(--dark-silver);
}

/* KONTAKT */
.contact-page-info h2 {
    margin: 20px 0 0;
}
.contact-form h6 {
    margin-bottom: 80px;
}
.contact-form-container {
    background-color: #eeeeee;
    width: 83.333%;
    padding: 100px;
/*     margin: 100px auto 100px; */
	margin: 0 auto 100px;
}
.contact-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.contact-field label {
    font-size: 14px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-field input, .contact-field textarea {
    -webkit-appearance: none;
    width: 100%;
    background-color: #fff;
    border:1px solid var(--silver);
    border-radius: 4px;
    border-bottom-right-radius: 16px;
    padding: 20px;
}
.contact-field textarea {
    height: 160px;
    resize: none;
}
.contact-field input::placeholder, .contact-field textarea::placeholder {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    color: var(--dark-silver);
    font-weight: 400;
}
.contact-checkbox {
    display: flex;
    align-items: center;
    position: relative;
}
.contact-checkbox p {
    margin-bottom: 0;
}
.contact-checkbox > p:first-of-type {
    flex: 0 0 38px;
}
.contact-checkbox > p:first-of-type, .contact-checkbox > p:first-of-type span {
    line-height: 0;
}
.contact-checkbox .wpcf7-list-item {
    margin: 0;
}
.contact-checkbox label {
    color: var(--dark-silver);
}
.contact-checkbox label a {
    text-decoration: underline;
    color: var(--dark-silver);
}
.contact-checkbox input {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border:1px solid var(--silver);
    background-color: #fff;
    flex: 0 0 30px;
}
.contact-checkbox .checked {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 8px;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    pointer-events: none;
}
.contact-checkbox .checked.active {
    background-image: url(./img/checked.png);
    background-position: center;
    background-repeat: no-repeat;
}
.contact-submit {
    text-align: right;
}
.contact-submit input[type="submit"] {
    -webkit-appearance: none;
    display: inline-block;
    background-color: var(--white);
    background-image: url(./img/button-icon.png);
    background-position: right;
    background-repeat: no-repeat;
    border-radius: 4px;
    border-bottom-right-radius: 16px;
    padding: 20px;
    padding-right: 56px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border:1px solid var(--silver);
    color: var(--dark-blue);
    cursor: pointer;
}

/* OFERTA  */
.offer-text {
    position: relative;
    margin-top: 100px;
}
.offer-text .overlay {
    background-color: var(--dark-blue);
    opacity: 0.9;
    z-index: 0;
}
.offer-text-content {
    position: relative;
}
.offer-text-info {
    position: relative;
    z-index: 1;
    padding: 80px;
}
.offer-text h6 {
    color: var(--white);
    margin-bottom: 80px;
}
.offer-text p {
    color: var(--white);
    font-size: 18px;
    line-height: 30px;
}
.offer-text-column {
    columns: 2;
    column-gap: 30px;
}
.offer-links {
    margin-bottom: 100px;
}
.offer-links-content {
    background-color: #eee;
    width: 83.33%;
    padding: 80px 100px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.offer-link {
    flex: 0 0 50%;
    display: flex;
}
.offer-link:nth-last-of-type(odd) {
    padding-top: 80px;
    padding-left: 8px;
}
.offer-link:nth-last-of-type(even) {
    padding-right: 8px;
}
.offer-link img {
    display: block;
    width: 90px;
}
.offer-links-icon {
    flex: 0 0 110px;
}
.offer-link h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 40px;
}
.offer-link p {
    color: #7a8285;
}
.offer-link .btn {
    margin-top: 40px;
}

/* OFERTA SINGLE  */
.offer-single-nav h6 {
    padding: 40px 0;
    margin: 0;
}
.offer-single-nav {
    margin-bottom: 100px;
}
.offer-nav-content {
    background-color: #eee;
    display: flex;
    justify-content: space-around;
}
.offer-nav {
    position: relative;
    padding: 40px 0;
    flex: 0 0 12.5%;
}
.mobile-offer-nav-trigger {
    display: none;
}
.offer-nav::before {
    content: "";
    position: absolute;
    background-color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}
.offer-nav::after {
    content: "";
    position: absolute;
    background-color: var(--blue);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: opacity 0.5s;
}
.offer-nav:hover::after, .offer-nav.active::after {
    opacity: 1;
}
.offer-nav-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
    filter: brightness(0);
}
.offer-nav.active .offer-nav-icon {
    filter: none;
}
.offer-nav h3 {
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;;
    font-weight: 700;
    color: var(--dark-blue);
    position: absolute;
    bottom: -50px;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
}
.offer-nav:hover h3, .offer-nav.active h3 {
    opacity: 1;
}
.offer-nav a {
    font-size: 0;
}
.offer-single-container {
    width: 83.333%;
    margin: 0 auto 100px;
}
.offer-single-container .title {
    padding: 50px 40px 46px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 28px;
    background-color: var(--blue);
    border-radius: 4px;
    display: block;
    font-weight: 700;
    margin-bottom: 40px;
}
.offer-single-container .image-bg {
    height: 100%;
    max-height: 600px;
    border-radius: 4px;
}
.offer-single-container b {
    font-size: 18px;
}
.offer-single-container .col-lg-6 {
    margin-bottom: 40px;
}
.offer-single-container .second-row p, .offer-single-container .third-row p {
    color: #8f9699;
}
.offer-single-container .second-row p b, .offer-single-container .third-row p b {
    color: #06151c;
}
.offer-single-container p:last-of-type {
    margin-bottom: 25px;
}
.offer-single-container .first-row .image-bg {
    height: 100%;
    min-height: 360px;
    max-height: 600px;
}
.offer-single-container .second-row .image-bg {
    height: 240px;
    margin-top: 25px;
}
.offer-single-container ul {
    margin: 0 0 25px;
    padding: 0;
    padding-left: 14px;
    line-height: 1.5;
}
.offer-single-container a {
    color: var(--blue);
}

/* DOMYŚLNA PODSTRONA  */
.page-section {
    padding: 100px 0;
}
.page-text .wp-caption p {
    display: none;
}
.page-text .alignleft {
    float: left;
    margin: 0 20px 20px 0;
}
.page-text .aligncenter {
    display: block;
    margin: 0 auto;
}
.page-text .alignright {
    float: right;
    margin: 0 0px 20px 20px;
}
.page-text .wp-caption .wp-caption-text {
    text-align: center;
    display: block;
    font-style: italic;
    font-size: 12px;
}
.page-text .wp-caption {
    margin-bottom: 25px;
}

/* FOOTER  */
footer {
    color: var(--white);
    padding: 50px 40px;
    background-color: var(--dark-blue);
    position: relative;
}
footer a:hover {
    color: var(--blue);
}
footer .info {
    display: flex;
    flex-wrap: wrap;
/*     margin-bottom: 45px; */
	margin-bottom: 20px;
}
footer .info h6 {
    width: 50%;
    font-size: 16px;
    color: var(--silver);
    line-height: 26px;
    text-transform: none;
    letter-spacing: 0px;
}
footer .info div {
    flex: 0 0 50%;
}
footer .info img {
    margin-bottom: 30px;
}
footer .footer-menu {
    display: flex;
    flex-wrap: wrap;
}
footer .footer-menu > div {
    flex: 0 0 33.333%;
    padding: 0;
    margin: 0;
}
footer .footer-menu ul {
    list-style: none;
}
footer .footer-menu ul a {
    color: var(--white);
    font-size: 16px;
    line-height: 44px;
    font-weight: 700;
}
footer .footer-menu ul a:hover {
    color: var(--blue);
}
footer .bottom {
    border-top: 2px solid #32515f;
    padding-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .privacy {
    text-decoration: underline;
    color: var(--white);
}
footer .bcweb {
    text-decoration: underline;
    font-weight: 700;
    color: var(--blue);
}
footer .social-media {
    display: flex;
}
footer .social-media a {
    margin-right: 30px;
}
footer .social-media a:last-of-type {
    margin-right: 0px;
}
footer .social-media svg {
    width: 25px;
    height: 25px;
    fill: var(--silver);
}
footer .live-chat {
    position: absolute;
    right: 40px;
    bottom: 167px;
    cursor: pointer;
}
footer .live-chat {
    width: 60px;
}

.fast-contact {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    right: 40px;
    width: 100%;
    max-width: 400px;
    background-color: #eeeeee;
    overflow-y: scroll;
}
.fast-contact.active {
    display: block;
}
.fast-contact-container {
    width: 100%;
    padding: 20px;
    position: relative;
    /* overflow-y: scroll; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.fast-contact .contact-field {
    margin-bottom: 8px;
}
.fast-contact input, .fast-contact textarea {
    padding: 8px;
}
.fast-contact .contact-checkbox p {
    font-size: 12px;
}
.fast-contact .contact-submit input[type="submit"] {
    margin-top: 8px;
    padding: 12px 56px 12px 28px;
}
.fast-contact .close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 23px;
    right: 20px;
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    header nav ul li {
        margin-right: 35px;
    }
    header .lang-switcher li {
        margin-right: 35px;
    }
    header .quick-contact {
        padding-left: 40px;
    }
    .home-about .numbers {
        margin: 0;
    }
    .home-about .numbers {
        padding: 0;
    }
    .home-about .numbers .number {
        padding: 20px 0px;
    }
    .home-advantages .image-box {
        height: 40vw;
    }
    .home-advantages .image-box .desc {
        max-height: 300px;
    }
    .home-advantages .col-lg-4 {
        margin-bottom: 16px;
    }
    .about-us {
        padding: 80px 0;
    }
    .about-us .container .overlay {
        top: 50px;
        bottom: 50px;
    }
    .about-us .first-column {
        padding: 100px 0 100px 50px;
    }
    .advantages .advantage-text {
        padding: 40px;
    }
    .advantages .advantage h3 {
        margin-bottom: 40px;
    }
    .offer-text-info {
        padding: 50px;
    }
    .offer-text h6 {
        margin-bottom: 40px;
    }
    .offer-links-content {
        background-color: #eee;
        width: 83.33%;
        padding: 80px 80px;
    }
    .contact-form-container {
        background-color: #eeeeee;
        width: 83.333%;
        padding: 60px 80px;
/*         margin: 80px auto; */
		margin: 0 auto 80px;
    }
    .contact-form h6 {
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 991px) {
    p {
        margin-bottom: 20px;
    }
    .container {
        padding: 0 20px;
    }
    header .container .wrapper {
        padding: 20px;
        position: relative;
    }
    header nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        max-width: 320px;
        width: 100%;
        height: auto;
        background-color: var(--white);
        padding: 20px 20px;
        display: none;
    }
    header nav ul {
        display: block;
        height: auto;
    }
    header nav ul li {
        display: block;
        margin-right: 0px;
        position: relative;
    }
    header nav ul li a {
        display: block;
        width: 100%;
        height: auto;
        text-align: right;
        padding: 20px 18px 20px 0;
    }
    header nav ul li a::after {
        content: "";
        position: absolute;
        left: unset;
        right: 0%;
        top: calc(50% - 1px);
        transform: translate(0%, -50%);
    }
    header .quick-contact { 
        border-left: 0;
        border-right: 2px solid var(--light-silver);
        padding-left: 0px;
        padding-left: 18px;
    }
    header .quick-contact a span {
        display: none;
    } 
    header .mobile-nav-icons {
        display: block;
        margin-left: 18px;
        cursor: pointer;
    }
    header .mobile-nav-icons svg {
        width: 48px;
        height: 48px;
        fill: var(--blue);
    }
    header .mobile-nav-icons .hamburger {
        display: block;
    }
    header .mobile-nav-icons.active .hamburger {
        display: none;
    }
    header .mobile-nav-icons .menu-close {
        display: none;
    }
    header .mobile-nav-icons.active .menu-close {
        display: block;
    }
    header .lang-switcher li {
        margin-right: 0px;
    }
    .home-banner {
        height: auto;
        min-height: 100vh; 
        padding-bottom: 60px;
    }
    .home-banner h1 {
        font-size: 28px;
        line-height: 1.2em;
    }
    .home-banner h3 {
        color: var(--white);
        font-size: 16px;
        line-height: 1.5em;
    }
    .home-about .image-bg {
        position: static;
        min-height: 400px;
        margin: 40px 0;
    }
    .home-about {
        padding: 40px 0;
    }
    .home-about h2 {
        font-size: 32px;
        line-height: 1.2em;
    }
    .home-about .title {
        width: 100%;
        padding-right: 0px;
    }
    .home-advantages .image-box .desc {
        max-height: 320px;
    }
    .home-about .container > div:first-of-type {
        flex: 0 0 100%;
    }
    .home-about .container {
        display: flex;
        flex-direction: column;
    }
    .home-about p {
        font-size: 16px;
        line-height: 1.5em;
        width: 100%;
    }
    .home-about .first-column {
        display: block;
    }
    .home-about .container > div:last-of-type {
        flex: 0 0 100%;
    }
    .home-about .container .number-icon {
        padding: 0 30px 0 0;
        flex: 0 0 100px;
    }
    .numbers .number-value {
        font-size: 32px;
        margin-bottom: 8px;
    }
    .numbers .number-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .home-about .numbers .number {
        padding: 0px;
    }
    .home-about .numbers {
        margin-bottom: 10px;
    }
    .home-advantages {
        padding: 0px 0 60px;
    }
    .home-advantages .bg-cube {
        left: 20%;
        right: 20%;
    }
    .home-advantages h6 {
        padding-top: 30px;
        margin-bottom: 30px;
    }
    .home-advantages .image-box {
        min-height: 400px;
    }
    .home-advantages .col-lg-3 {
        margin-bottom: 30px;
    }
    .home-advantages .col-lg-3:last-of-type {
        margin-bottom: 0px;
    }
    .home-advantages .bg-cube {
        bottom: -30px;
    }
    .home-advantages .advantage .desc {
        display: block !important;
    }
    .home-offer {
        color: var(--white);
        padding: 40px 0;
    }
    .home-offer .title-desc {
        width: 100%;
        line-height: 1.5em;
        font-size: 16px;
    }
    .home-offer .offer-container h3 {
        margin: 30px 0;
    }
    .home-offer .offer-container .btn {
        margin-top: 30px;
    }
    .home-contact {
        padding: 40px 0;
    }
    .home-contact h2 {
        line-height: 1.2em;
    }
    .cta {
        padding: 80px 0px;
    }
    .about-us {
        padding: 20px 0;
    }
    .about-us .container .overlay {
        left: 20px;
        right: 20px;
        top: 0px;
        bottom: 0px;
    }
    .about-us .first-column {
        padding: 20px 25px 20px 25px;
    }
    .about-us h2 {
        font-size: 32px;
        line-height: 1.2em;
    }
    .numbers .number {
        padding: 0;
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    .numbers .number:last-of-type {
        margin-bottom: 0px;
    }
    .numbers .container .number-icon {
        padding: 0 30px 0 0;
        flex: 0 0 100px;
    }
    .numbers {
        padding: 20px 0;
        margin-bottom: 0px;
    }
    .number-desc {
        line-height: 1.5em;
    }
    .advantages {
        padding: 0 0 20px;
    }
    .advantages .advantage {
        width: 100%;
        margin: 0 auto 20px;
        flex-wrap: wrap;
    }
    .advantages .advantage-text, .advantages .advantage-img {
        padding: 20px;
        flex: 0 0 100%;
    }
    .advantages .advantage h3 {
        margin-bottom: 20px;
        padding: 20px;
        font-size: 20px;
        display: block;
        width: 100%;
        text-align: center;
    }
    .advantages p {
        font-size: 16px;
        line-height: 1.5em;
    }
    .advantages .advantage-img {
        padding: 0 20px 20px;
    }
    .advantages .image-bg {
        min-height: 300px;
    }
    .offer-link {
        flex: 0 0 100%;
    }
    .offer-links {
        margin-bottom: 40px;
    }
    .offer-text {
        margin-top: 20px;
    }
    .offer-text-info {
        padding: 20px;
    }
    .offer-text h6 {
        margin-bottom: 20px;
    }
    .offer-text-column {
        columns: 1;
        column-gap: 0px;
    }
    .offer-text p {
        font-size: 16px;
        line-height: 1.5em;
    }
    .offer-links-content {
        width: 100%;
        padding: 40px 20px;
    }
    .offer-link img {
        display: block;
        width: 90px;
    }
    .offer-link:nth-last-of-type(2n) {
        padding-right: 0px;
    }
    .offer-link:nth-last-of-type(2n+1) {
        padding-top: 0px;
        padding-left: 0px;
    }
    .offer-link {
        margin-bottom: 40px;
    }
    .offer-link:last-of-type {
        margin-bottom: 0px;
    }
    .offer-link h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .offer-link .btn {
        margin-top: 20px;
    }
    .contact-form-container {
        width: 100%;
        padding: 30px 20px;
        margin: 20px auto;
    }
    .contact-form h6 {
        margin-bottom: 30px;
    }
    .contact-field {
        margin-bottom: 30px;
    }
    .contact-submit {
        margin-top: 30px;
        text-align: left;
    }
    .mapboxgl-map {
        height: 450px;
        margin-top: 30px;
    }
    .contact-page-info .mapboxgl-map {
        margin-top: 0px;
    }
    .contact-submit button {
        display: block;
        width: 100%;
        text-align: center;
    }
    .offer-single-nav h6 {
        padding: 30px 0;
    }
    .offer-single-container {
        width: 100%;
        margin: 0 auto 40px;
    }
    .mobile-offer-nav-trigger {
        display: block;
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        z-index: 20;
        cursor: pointer;
    }
    .offer-nav-content {
        background-color: var(--white);
        border-radius: 4px;
        border: 1px solid var(--silver);
        box-shadow: 0px 6px 20px #0002;
        flex-wrap: wrap;
        position: absolute;
        width: calc(100% - 40px);
        margin-bottom: 80px;
        height: 72px;
        overflow-y: hidden;
        transition: height 0.5s;
    }
    .offer-nav-content.expand {
        height: 584px;
        overflow-y: visible;
    }
    .offer-nav {
        position: relative;
        padding: 20px 20px;
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        z-index: 10;
        order: 2;
    }
    .offer-nav.active {
        order: 1;
    }
    .offer-nav-icon {
        width: 20px;
        height: 20px;
        margin-right: 20px;
        filter: none;
    }
    .offer-nav h3 {
        position: static;
        justify-content: flex-start;
        min-height: unset;
        opacity: 1;
    }
    .offer-nav::after {
        content: "";
        position: absolute;
        background-color: #e3e3e3;
        width: calc(100% - 40px);
        height: 2px;
        bottom: 0;
        left: 20px;
        right: 20px;
        transform: translate(0, 0);
        opacity: 1;
        border-radius: 0;
    }
    .offer-nav.active::before {
        content: "";
        position: absolute;
        background-color: transparent;
        background-image: url(./img/arrow.png);
        width: 16px;
        height: 10px;
        border-radius: 0;
        bottom: 50%;
        left: unset;
        right: 20px;
        transform: translate(0%, 50%) rotate(0deg);
        transition: transform 0.5s;
    }
    .offer-nav.expand::before {
        transform: translate(0%, 50%) rotate(180deg);
    }
    .offer-nav:last-of-type:after {
        content: none;
    }
    .offer-single-container .title {
        padding: 30px 20px 30px;
        text-align: center;
        font-size: 24px;
        margin-bottom: 30px;
    }
    .offer-single-container .col-lg-6 {
        margin-bottom: 30px;
    }
    .page-section {
        padding: 40px 0;
    }
    footer {
        color: var(--white);
        padding: 30px 20px;
    }
    footer .info div {
        flex: 0 0 100%;
    }
    footer .info h6 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4em;
    }
    footer .footer-menu ul {
        flex: 0 0 100%;
    }
    footer .info {
        margin-bottom: 10px;
    }
    footer .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
/*         padding-top: 40px; */
		padding-top: 20px;
    }
    footer .bottom span {
        width: 100%;
        display: block;
        padding: 10px 0;
        text-align: center;
    }
    footer .bottom .social-media {
        order: 1;
    }
    footer .bottom .copy {
/*         margin-top: 30px; */
		margin-top: 0;
        order: 2;
    }
    footer .social-media {
        width: 100%;
        text-align: left;
    }
    footer .live-chat {
        position: absolute;
        right: 20px;
        bottom: 145px;
    }
    .fast-contact {
        overflow-y: scroll;
        bottom: unset;
        right: 0;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        max-width: unset;
    }
    .fast-contact-container {
        width: 100%;
        min-height: 100vh;
        height: auto;
    }
    .fast-contact-container > div {
        max-width: 460px;
    }
    .fast-contact .contact-submit {
        margin-top: 2px;
    }
}