@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root {
    --main-color: #AE7D54;
    --gentle-back-color: #faf7f2;
    --heading-font: "Playfair Display", serif;
    --regular-font: "Playfair Display", serif;
    --card-w: 420px;
    --center-w: 68px;
    --line-w: 2px;
}


* {
    position: relative;
    box-sizing: border-box;
    font-size: 15px;
    margin: 0;
    padding: 0;
    text-transform: none;
    list-style: none;
    color: black;
    text-decoration: none;
    font-family: var(--regular-font);
    line-height: 30px;
}


font {
    font-size: inherit;
    color: inherit;
    margin: 0;
    font-family: inherit;
    text-transform: inherit;

}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 300;
}

.container {
    max-width: 1280px;
    margin: auto;
}

p,
a {
    margin: 10px 0;
}


/* SCROLL ANIMATION */

.scroll-indicator {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 50px;
    height: 50px;
}

.scroll-indicator span {
    display: block;
    width: 22px;
    height: 22px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    position: absolute;
    top: -10px;
    opacity: 0;
    animation: flowDown 4s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 1s;
    /* druga strzałka idzie za pierwszą */
}

@keyframes flowDown {
    0% {
        top: -30px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        top: 15px;
        opacity: 1;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        top: 50px;
        opacity: 0;
    }
}


/* SCROLL ANIMATION */

.sticky_header {
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    transition: 1s;
    box-shadow: 10px 11px 27px -12px #00000045;
    background-color: #121212d8;
    border-radius: 0 0 10% 10%;
    backdrop-filter: blur(2px);
}

.logo .for_sticky {
    display: none;
    width: 45px !important;
}

.sticky_header>.container {
    padding: 0 !important;
}

.sticky_header .menu a {
    color: white !important;
}

.sticky_header .logo .normal_logo {
    display: none;
}

.sticky_header .logo .for_sticky {
    display: initial;
}

main {
    overflow: hidden;
}

.go_to {
    border: 0;
    background-color: var(--main-color);
    color: whitesmoke;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 25px;
    margin: 15px 0;
    display: inline-block;
    z-index: 1;
    transition: 1s;
    cursor: pointer;
}

.go_to:hover {
    background: black;
}

.go_to i {
    color: whitesmoke;
    margin-left: 5px;
    transition: 1s;
}

.go_to:hover i {
    margin-left: 10px;
}


.main_header {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, .7) 50%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 100%;
    z-index: 10000;
}

.main_header .top_header,
.main_header .bottom_header {
    padding: 10px 0;
}

.main_header .top_header>.container,
.main_header .bottom_header>.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

.main_header .top_header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main_header .top_header .social a {
    margin-right: 5px;
}

.main_header .top_header .social a i {
    color: white;
}

.main_header .top_header .contact a {
    color: white;
    font-size: 12px;
}

.main_header .top_header .contact i {
    color: var(--main-color);
    margin: 0 5px 0 20px;
}

.main_header .bottom_header>.container {
    align-items: center;
}

.main_header .bottom_header .logo {
    flex: 0 1 200px;
}

.main_header .bottom_header .logo img {
    width: 100%;
}

.main_header .bottom_header .menu {
    flex: 1;
    text-align: center;
}

.main_header .bottom_header .menu a {
    margin: 0 5px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    color: white;
    transition: .4s;
    font-family: var(--heading-font);
    letter-spacing: 3px;
}

.main_header .bottom_header .menu a:hover {
    color: var(--main-color);
}

.main_header .bottom_header .menu a::before {
    content: '';
    width: 0;
    position: absolute;
    height: 1px;
    background-color: var(--main-color);
    bottom: 0;
    left: 20%;
    transition: .4s;
}

.main_header .bottom_header .menu a:hover:before {
    width: 60%;
}

.main_header .bottom_header .lang .gtranslate_wrapper {
    flex: 0 1 50px;
    display: flex;
    justify-content: space-between;

}

.main_header .bottom_header .lang a {
    opacity: .7;
    margin: 0 5px;
}

.main_header .bottom_header .lang a:hover {
    opacity: 1;
}

.main_header .bottom_header .lang a img {
    max-width: 20px;
}



/* HOME */

.home main .time_1,
.home main .time_2 {
    height: 100%;
    width: 2px;
    background-color: var(--main-color);
    z-index: 0;
    position: absolute;
    left: 10%;
    top: 0;
    opacity: .1;
}

.home main .time_1 {
    left: 10%;
}

.home main .time_2 {
    left: 90%;
}


.home .hero {
    height: 100vh;
    width: 100%;
    /* background-image: url('../assets/galeria/16.webp'); */
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .hero video{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;

}
.home .hero .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .hero .container {
    z-index: 100;
    text-align: center;
}

.home .hero .container h1 {
    color: white;
    font-size: 100px;
    font-weight: 100;
    display: block;
    filter: drop-shadow(8px 9px 4px black);
}

.home .hero .container h2 {
    color: white;
    font-size: 50px;
    font-weight: 100;
    display: block;
    margin-top: 70px;
    filter: drop-shadow(8px 9px 4px black);

}

.home .offer {
    margin: 150px 0;
}

.home .offer h2 {
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    margin: 30px 0 50px 0;
    text-transform: capitalize;
}

.home .offer h3 {
    letter-spacing: 7px;
    top: -9px;
    margin-bottom: 20px;
    color: var(--main-color);
    display: block;
    text-align: center;
    width: fit-content;
    margin: auto;
    font-weight: 100;
}

.home .offer h3::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 10px;
    left: -45px;
    background-image: url('../assets/before.png');
}

.home .offer h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -45px;
    width: 37px;
    height: 10px;
    background-image: url('../assets/before.png');
}

.home .offer .items {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home .offer .items>div {
    background-size: cover;
    background-position: center;
    height: 350px;
    flex: 1 1 30%;
}

.home .offer .items .frame {
    width: 93%;
    height: 93%;
    left: 3.5%;
    top: 4%;
    border: 2px solid var(--main-color);
    position: absolute;
}

.home .offer .items>div:nth-of-type(1) {
    background-image: url('../assets/offer/1.webp');
}

.home .offer .items>div:nth-of-type(2) {
    background-image: url('../assets/offer/2.webp');
    margin: 0 40px;
}

.home .offer .items>div:nth-of-type(3) {
    background-image: url('../assets/offer/3.webp');
}


.home .offer .items>div h4 {
    background: rgba(247, 243, 238, 0.8);
    backdrop-filter: blur(2px);
    padding: 25px 30px 24px;
    position: absolute;
    bottom: 30px;
    left: 0;
    min-width: 270px;
    font-weight: 200;
    font-size: 35px;
}

.home .more_offer {
    padding: 175px 0;
    background-color: var(--gentle-back-color);
    overflow: hidden;
}

.o-nas .first .draft_image,
.historia .history_draft,
.home .more_offer .draft_image {
    position: absolute;
    left: 0;
    width: 65%;
    mix-blend-mode: multiply;
    bottom: 0;
    opacity: .1;
}

.home .more_offer h2 {
    font-size: 50px;
    font-weight: 300;
    margin: 30px 0 25px 0;
    text-transform: capitalize;
    line-height: 50px;
}

.home .more_offer h3 {
    letter-spacing: 7px;
    margin-bottom: 20px;
    color: var(--main-color);
    display: block;
    text-align: center;
    width: fit-content;
    font-weight: 100;
    margin-left: 40px;
}

.home .more_offer h3::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 10px;
    left: -45px;
    background-image: url('../assets/before.png');
}

.home .more_offer h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -45px;
    width: 37px;
    height: 10px;
    background-image: url('../assets/before.png');
}

.home .more_offer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home .more_offer .container>div {
    flex: 1 1 45%;
}

.home .more_offer .container>div ul li {
    margin: 10px 0;
}

.home .more_offer .container>div ul li:before {
    content: '\2714';
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--main-color);
    width: 20px;
    display: inline-block;
    height: 20px;
    line-height: 17px;
    text-align: center;
    color: white;
    padding: 2px;
}


.home .more_offer .container div.right img {
    width: 60%;
    border: 10px solid #eee;
    position: absolute;
    height: 60%;
}

.home .more_offer .container div.right img:nth-of-type(1) {
    bottom: 0;
    z-index: 2;
}

.home .more_offer .container div.right img:nth-of-type(2) {
    top: 0;
    right: 0;
    z-index: 1;
}

.home .more_offer .container div.frame {
    width: 50%;
    height: 75%;
    border: 1px solid var(--main-color);
    z-index: 0;
    position: absolute;
    left: 20%;
    top: 15%;
    z-index: 0;
}

.home .about {
    margin: 100px 0;
}

.home .about .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.home .about h2 {
    font-size: 50px;
    font-weight: 300;
    margin: 30px 0 25px 0;
    text-transform: capitalize;
    line-height: 50px;
}

.home .about h3 {
    letter-spacing: 7px;
    margin-bottom: 20px;
    color: var(--main-color);
    display: block;
    text-align: center;
    width: fit-content;
    font-weight: 100;
    margin-left: 40px;
}

.home .about h3::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 10px;
    left: -45px;
    background-image: url('../assets/before.png');
}

.home .about h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -45px;
    width: 37px;
    height: 10px;
    background-image: url('../assets/before.png');
}

.home .about .container>div {
    flex: 1 1 45%;
    padding: 30px;
}

.home .about .container>div video {
    width: 100%;
}

.home .drone .overlay {
    background-color: #0000004a;
    backdrop-filter: blur(5px);
    position: absolute;
    height: 86.4%;
    width: 91%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.home .drone .overlay .play {
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    border: 10px solid var(--gentle-back-color);
    transition: 1s;
}

.home .drone .overlay .play:hover {
    background-color: transparent;
    border: 10px solid var(--gentle-back-color);
}

.home .drone .overlay .play:hover i {
    color: var(--gentle-back-color);
}

.home .drone .overlay .play i {
    font-size: 60px;
    color: black;
    opacity: .7;
    transition: 1s;
    cursor: pointer;
    left: 4px;
    transition: 1s;
}

.home .history {
    margin: 100px 0 0 0;
    padding: 60px 0;
    background-color: var(--gentle-back-color);
}

.home .history .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.home .history .container>div.right img {
    max-width: 100%;
    filter: drop-shadow(7px 8px 3px lightgray);
}

.home .history h2 {
    font-size: 50px;
    font-weight: 300;
    margin: 30px 0 25px 0;
    text-transform: capitalize;
    line-height: 50px;
}

.home .history h3 {
    letter-spacing: 7px;
    margin-bottom: 20px;
    color: var(--main-color);
    display: block;
    text-align: center;
    width: fit-content;
    font-weight: 100;
    margin-left: 40px;
}

.home .history h3::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 10px;
    left: -45px;
    background-image: url('../assets/before.png');
}

.home .history h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -45px;
    width: 37px;
    height: 10px;
    background-image: url('../assets/before.png');
}

.home .history .container>div {
    flex: 1 1 45%;
    padding: 30px;
    overflow: hidden;
}


/* PAGES  */

.page .main_header {
    position: relative;
    background: #FAF7F2;
}

.page .main_header .bottom_header .menu a {
    color: black;
}



.page .top_header {
    display: none;
}

.page .page_header {
    height: 250px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #FAF7F2;
    background: linear-gradient(180deg, rgba(250, 247, 242, 1) 0%, rgba(250, 247, 242, 0.8) 65%, rgba(250, 247, 242, 0) 100%);
}

.page .page_header>.container {
    width: 100%;
}

.page .page_header h1 {
    font-size: 55px;
    font-weight: 300;
}


/* ABOUT  */


.o-nas .first {
    padding: 175px 0;
    overflow: hidden;
}

.o-nas .first h2 {
    font-size: 40px;
    font-weight: 300;
    margin: 30px 0 25px 0;
    text-transform: capitalize;
    line-height: 50px;
}

.o-nas .first h3 {
    letter-spacing: 7px;
    margin-bottom: 20px;
    color: var(--main-color);
    display: block;
    text-align: center;
    width: fit-content;
    font-weight: 100;
    margin-left: 40px;
}

.o-nas .first h3::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 10px;
    left: -45px;
    background-image: url('../assets/before.png');
}

.o-nas .first h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -45px;
    width: 37px;
    height: 10px;
    background-image: url('../assets/before.png');
}

.o-nas .first .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.o-nas .first .container>div {
    flex: 1 1 45%;
}

.o-nas .first .container>div ul li {
    margin: 10px 0;
}

.o-nas .first .container>div ul li:before {
    content: '\2714';
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--main-color);
    width: 20px;
    display: inline-block;
    height: 20px;
    line-height: 17px;
    text-align: center;
    color: white;
    padding: 2px;
}


.o-nas .first .container div.right img {
    width: 60%;
    border: 10px solid #eee;
    position: absolute;
    height: 65%;
}

.o-nas .first .container div.right img:nth-of-type(1) {
    bottom: 0;
    z-index: 2;
}

.o-nas .first .container div.right img:nth-of-type(2) {
    top: 0;
    right: 0;
    z-index: 1;
}

.o-nas .first .container div.frame {
    width: 50%;
    height: 75%;
    border: 1px solid var(--main-color);
    z-index: 0;
    position: absolute;
    left: 20%;
    top: 15%;
    z-index: 0;
}




/* HISTORIA  */

.historia .time_h2 {
    text-align: center;
}

.ht-timeline {

    margin: 100px 0;
    position: relative;
    font-family: var(--regular-font);
}

.ht-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: var(--line-w);
    background: var(--main-color);
    opacity: 0.25;
    border-radius: 2px;
    z-index: 0;
}

.ht-timeline ol {
    margin: 0;
    padding: 0;
}

.ht-timeline li {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr var(--center-w) 1fr;
    gap: 0 20px;
    align-items: start;
    position: relative;
    margin-bottom: 28px;
    min-height: 110px;
}


.ht-timeline .ht-card {
    width: var(--card-w);
    background: var(--gentle-back-color);
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    z-index: 1;
    font-family: var(--regular-font);
}

.ht-timeline li:nth-child(odd) .ht-card {
    grid-column: 1;
    justify-self: end;
    text-align: left;
}

.ht-timeline li:nth-child(even) .ht-card {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}

.ht-timeline .ht-card h3 {
    margin: 10px 0 !important;
    display: inline-block;
    font-size: 17px;
    color: var(--main-color);
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.2;
}

.ht-timeline .ht-card h3::before,
.ht-timeline .ht-card h3::after {
    display: none !important;
}

.ht-timeline .ht-meta {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.ht-timeline .ht-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.ht-timeline li::after {
    display: none;
}

.ht-timeline .pulse-dot {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--main-color);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(174, 125, 84, 0.6);
    animation: pulse 2.5s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(174, 125, 84, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(174, 125, 84, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(174, 125, 84, 0);
    }
}

.ht-timeline .crest-label {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--regular-font);
}

.historia .content h2 {
    font-size: 35px;
    font-weight: 300;
    margin: 30px 0 50px 0;
    text-transform: capitalize;
}

.historia .content h3 {
    letter-spacing: 7px;
    top: -9px;
    margin-bottom: 20px;
    color: var(--main-color);
    display: block;
    text-align: center;
    width: fit-content;
    margin: auto;
    font-weight: 100;
}

.historia .content h3::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 10px;
    left: -45px;
    background-image: url('../assets/before.png');
}

.historia .content h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -45px;
    width: 37px;
    height: 10px;
    background-image: url('../assets/before.png');
}

.historia .first {
    padding: 100px 0;
}

.historia .first>.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.historia .frame {
    width: 93%;
    height: 93%;
    left: 3.5%;
    top: 4%;
    border: 2px solid var(--main-color);
    position: absolute;
    z-index: 1;
}


.historia .first>.container>div {
    flex: 1 1 45%;
}

.historia .first>.container>div img {
    width: 100%;
    height: 100%;
    display: block;
}


.historia .second {
    padding: 100px;
    background: #FAF7F2;
    background: linear-gradient(180deg, rgba(250, 247, 242, 0) 0%, rgba(250, 247, 242, 1) 35%, rgba(250, 247, 242, 1) 75%, rgba(250, 247, 242, 0) 100%);
}

.historia .second>.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.historia .second>.container>div {
    flex: 1 1 45%;
}

.historia .second>.container>div img {
    width: 100%;
    height: 100%;
    display: block;
}

.historia .first>.container>div.left,
.historia .second>.container>div.right {
    padding: 50px;
}

/* GALERIA  */

.galeria .gg-container {
    margin-bottom: 40px;
}


/* OFERTA  */

.oferta .first>.container,
.oferta .second>.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.oferta .first>.container>div,
.oferta .second>.container>div {
    flex: 1 1 45%;
}

.oferta .first>.container img,
.oferta .second>.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oferta .first>.container {
    padding: 150px 0;
}

.oferta .first .left {
    padding-right: 70px
}

.oferta .first .left li:before,
.oferta .second .right li:before {
    content: '\2713';
    margin-right: 10px;
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
}

.oferta .second .right {
    padding-left: 70px;
}

.oferta .first .left h2,
.oferta .second .right h2 {
    font-size: 40px;
    font-weight: 300;
    margin: 30px 0 25px 0;
    text-transform: capitalize;
    line-height: 50px;

}

.oferta .first h3,
.oferta .second h3 {
    letter-spacing: 7px;
    top: -9px;
    margin-left: 40px;
    color: var(--main-color);
    display: block;
    text-align: center;
    width: fit-content;
    font-weight: 100;
}

.oferta .first h3::before,
.oferta .second h3::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 37px;
    height: 10px;
    left: -45px;
    background-image: url('../assets/before.png');
}

.oferta .first h3::after,
.oferta .second h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -45px;
    width: 37px;
    height: 10px;
    background-image: url('../assets/before.png');
}

.oferta .first .frame,
.oferta .second .frame {
    width: 93%;
    height: 92%;
    left: 3.5%;
    top: 4%;
    border: 2px solid var(--main-color);
    position: absolute;
    z-index: 1;
}

.oferta .second {
    padding: 100px;
    background: #FAF7F2;
    background: linear-gradient(180deg, rgba(250, 247, 242, 0) 0%, rgba(250, 247, 242, 1) 35%, rgba(250, 247, 242, 1) 75%, rgba(250, 247, 242, 0) 100%);
}

.oferta .cta {
    margin: 100px 0 0 0;
    padding: 50px 0;
    background-color: var(--main-color);
    text-align: center;
}

.oferta .cta * {
    color: white;
}

.oferta .cta>.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.oferta .cta>.container>div {
    flex: 1 1 45%;
    align-self: center;
}

.oferta .cta h2 {
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 60px;
}


.oferta .cta a {
    font-size: 45px;
    margin: 20px 0;
    display: block;
}

.oferta .cta a i {
    font-size: 45px;
    margin-right: 10px;
    top: 5px;
}

/* KONTAKT */

.kontakt .send_ok {
    background-color: #68ca68;
    color: white;
    clear: both;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: fit-content;
    position: absolute;
    left: 35%;
    top: 45%;
    text-transform: uppercase;
}

.kontakt .send_nie_ok {
    background-color: crimson;
    color: white;
    clear: both;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: fit-content;
    position: absolute;
    left: 35%;
    top: 45%;
    text-transform: uppercase;
}

.kontakt .content>.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.kontakt .content>.container>div {
    flex: 1 1 45%;
}

.kontakt .content>.container>div.left i {
    margin-right: 10px;
    color: var(--main-color)
}

.kontakt .content>.container .map {
    flex: 1 1 100%;
    margin: 40px 0;
    filter: grayscale(1);
}

.kontakt .content>.container h3 {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 10px;
}


.kontakt .contact_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.kontakt .contact_row>div {
    flex: 1 1 45%;
    margin: 5px;
}

.kontakt .contact_row textarea,
.kontakt .contact_row input {
    width: 100%;
    outline: none;
    padding: 5px;
    border: 1px solid lightgray;
    border-radius: 10px;
}

.kontakt input[type='submit'] {
    border-radius: 10px !important;
    padding: 5px 20px;
    float: right;
}

.kontakt .contact_row textarea {
    resize: none;
    height: 150px;
}

.kontakt .contact_row>div label {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}


/* Polityka  */

.polityka h2 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 300;
    background-color: var(--gentle-back-color);
    padding: 5px;
}

.polityka h3 {
    margin: 10px 0;
    font-size: 17px;
    font-weight: 300;
}

.polityka ol {
    list-style-type: decimal;
}

.polityka ol li:before {
    content: '\25CF';
    margin-right: 10px;
}

/* PAGES END  */


#toTop {
    position: fixed;
    bottom: 7%;
    right: 5%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    z-index: 1000;
    cursor: pointer;
    opacity: .7;
}

#toTop i {
    color: white;
    font-size: 20px;
}

footer {
    background-color: #121212;
    padding: 120px 0 34px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer>.container hr {
    width: 100px;
    margin: 10px 0;
}

footer>.container>div {
    flex: 1 1 15%;
}

footer>.container>div:first-of-type p {
    max-width: 70%;
}

footer>.container>div:nth-of-type(2) a {
    display: block;
}

footer i {
    margin-right: 5px;
}

footer * {
    color: rgba(245, 245, 245, 0.521);
}

.cookies_info{
    position: fixed;
    bottom:20px;
    left: 20px;
    background-color: var(--gentle-back-color);
    max-width: 410px;
    padding: 20px;
    width: 100%;
    border:5px solid white;
    z-index: 100;  
    display: none;
}
.cookies_info span.close{
    position: absolute;
    right:10px;
    top:10px;
    padding: 5px;
    cursor: pointer;
  
}


@media all and (max-width : 794px) {

    h1 {
        font-size: 40px !important;
    }

    h2 {
        font-size: 25px !important;
        margin-top: 20px !important;
    }

    h3 {
        letter-spacing: 4px !important
    }

    .page h3,
    .home h3 {

        display: inline-block !important;
        left: auto;
        margin: auto;
        left: 0;
        margin: 0 !important;
    }

    .main_header .top_header>.container > div{
        flex: 1 1 100%;
    } 
    
    .main_header .top_header>.container > div.contact{
       display: flex;
       justify-content: space-around;
    }  
    
    .main_header .top_header>.container > div.contact a{
       margin-right: 10px;
    }


    .main_header .top_header>.container, 
    .main_header .bottom_header>.container{
        padding: 5px 0;
    }

    .main_header .top_header>.container .social {
        display: none;
    }

    .main_header .bottom_header>.container>div {
        flex: 1 1 100%;
    }

    .main_header .bottom_header>.container .lang {
        order: 1;
    }

    .main_header .bottom_header .lang .gtranslate_wrapper {
        justify-content: end;
    }

    .main_header .bottom_header>.container .logo {
        order: 2;
    }

    .main_header .bottom_header>.container .menu {
        order: 3;
    }

    .o-nas .first .container>div.right,
    .home .more_offer .container>div.right {
        height: 350px;
        text-align: left;
    }

    .o-nas .first .container>div.right img:nth-of-type(2),
    .home .more_offer .container div.right img:nth-of-type(2) {
        right: 10px;
    }

    .home .offer .items>div:nth-of-type(2) {
        margin: 0 0;
    }
    .oferta .cta>.container>div,
    .kontakt .content>.container>div,
    .historia .second>.container>div,
    .historia .first>.container>div.left,
    .historia .second>.container>div.right,
    .oferta .first>.container>div,
    .oferta .second>.container>div,
    .o-nas .first .container>div,
    footer>.container>div,
    .home .history .container>div,
    .home .about .container>div,
    .home .more_offer .container>div,
    .home .offer .items>div {
        flex: 1 1 100%;
        margin: 20px 0;
        padding: 10px;
    }

    .ht-timeline li {
        display: flex;
        margin-bottom: 50px;
    }

    .ht-timeline .pulse-dot {
        top: -35px;
    }

    .historia .second,
    .oferta .second {
        padding: 0;
    }

    .home .history,
    .home .more_offer,
    .historia .first,
    .oferta .first>.container,
    .o-nas .first {
        padding: 50px 0;
    }

    .ht-timeline,
    .home .history,
    .home .about,
    .home .offer {
        margin: 0;
    }

    .home .offer {
        margin-top: 50px;
    }

    .home .drone .overlay {

        height: 91%;
        width: 95%;
    }


    .page .page_header {
        padding: 10px;
        height: 100px;
    }

    .page .page_header h1 {
        font-size: 40px;
    }

    .page .content h2 {
        font-size: 30px;
    }


    main {
        text-align: center;
    }

    ul li {
        text-align: left;
    }
    .home .offer .items,
    .page .page_header,
    .galeria .gg-container,
    footer {
        padding: 10px;

    }

    .oferta .cta{
        margin: 30px 0 0 0;
    }

    .page .page_header h1{
        text-align: center;
    }

    .oferta .first .frame, .oferta .second .frame {
    width: 90%;
    height: 87%;
    left: 4.5%;
    top: 7%;
  }

  .cookies_info{
    left: 10px;
    width: 70%;
  }
}