* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

label {
    float: left;
}

.language.h1.active {
    color: #e1e1e1 !important;
}

select {
    width: 70%;
    max-width: 300px;
    resize: none;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #eaeaea;
    padding: 5px;
    color: #151515;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 0 0.25rem #ddd;
}

h1 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.column {
    text-align: center;
}

input {
    width: 70%;
    max-width: 300px;
    resize: none;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #efefef;
    padding: 5px;
    color: #151515;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 0 0.25rem #ddd;
}

textarea {
    width: 70%;
    min-height: 200px;
    resize: none;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #efefef;
    padding: 0.5rem;
    color: #151515;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 0 0.25rem #ddd;
}

textarea:focus, input:focus {
    outline: none;
}


html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: #eeecec;
    scrollbar-color: darkgray lightgray;
    scrollbar-width: thin;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
}

#main {
    flex: 1;
}

::-webkit-scrollbar {
    width: 9px;
    background-color: #8a8a8a;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(49, 48, 48);

}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(41, 40, 40);
}

::-webkit-scrollbar-thumb:active {
    background-color: rgb(41, 40, 40);
}

.navbar {
    background: #131313;
    height: 80px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: background-color 0.5s ease;
}

.pricingBtn:hover {
    background-color: #bd6010;
}

.language {
    margin-top: 10%;
}


.language > h1 {
    display: inline-block;
    cursor: pointer;
    font-size: 17px;
    color: #696969;
}

.language > h1:hover {
    color: #e1e1e1 !important;
}

.language > h1.active {
    color: #b0b0b0 !important;
    cursor: default !important;
}

.pricingBtn {
    width: auto;
    border: none;
    display: inline-block;
    padding: 15px 23px 15px 23px;
    cursor: pointer;
    color: #fcfcfc;
    border-radius: 20px;
    background-color: #e98d37;
    transition: background-color 200ms ease-in-out;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    padding-right: 10%;
}

#navbar__logo {
    color: #efefefef;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 30px;
    padding-left: 10%;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    margin-left:  auto;
    height: auto;
}

.navbar__item {
    height: auto;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    height: 100%;
    width: auto;
}


.navbar__links::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #e98d37;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.navbar__links:hover::after {
    width: 100%;
}

@media screen and (max-width: 960px) {
    textarea {
        width: 90%;
    }

    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: auto;
        padding-bottom: 20px;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
        font-size: 20px;
    }


    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: auto;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    .navbar__links {
        text-align: center;
        width: 100%;
        font-size: 20px;
        display: table;
    }



    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
    }

    .navbar__toggle {
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .lang {
        position: relative !important;
        cursor: pointer;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
        right: 0 !important;
    }

    .text-view h1 {
        font-size: 35px !important;
    }

    .text-view p {
        font-size: 15px !important;
    }

    .mobile-lang.active {
        display: block !important;
        margin-right: auto;
        margin-left: auto;
    }


    .mobile-lang > .dropdown-item {
        display: block !important;
        position: relative;
        justify-content: center;
        cursor: pointer;
        margin-top: 5px;
        color: #b4b4b4;
        width: auto;
    }


    .mobile-lang > .dropdown-item {
        padding-right: 20px;
        padding-left: 20px;
    }


    .lang:hover .dropdown-content {
        display: none !important;
    }

    .dropdown-name {
        width: auto;
        position: relative;
    }

    .dropdown-name::after {
        content: '';
        width: 0%;
        height: 2px;
        background: #e98d37;
        display: block;
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
    }

    .dropdown-name:hover::after {
        width: 100%;
    }

    .lang-selecter {
        position: relative;
        left: -10px !important;
    }

}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.2), rgba(4,9,30,0.2)),url(../assests/video.mp4);
    background-size: cover;
    position: relative;
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}




#preloader {
    background: #242323;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#blur.active {
    transition: background-color 1s ease;
    background: #888585d5;
    background-size: 100%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}


.image-load {
    width: 150px;
    height: 150px;
    border-radius: 20px;
}


.loading-bar{
    width: 130px;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    background: #cfcfcf;
    margin-top: 22px;
    position: relative;
    overflow: hidden;
}

.loading-bar::before{
    content: '';
    width: 68px;
    height: 2px;
    background: #ebb505;
    position: absolute;
    left: -34px;
    animation: bluebar 1.5s infinite ease;
}

@keyframes bluebar{
    50%{
        left: 96px;
    }
}

/* Styl animacji */
@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.navbar.scrolled {
    background: #131313;
}

.text-view {
    width: 90%;
    color: #cfcfcf;
    position: absolute;
    top:73%;
    left: 50%;
    font-family: 'Poppins', sans-serif;
    transform: translate(-50%, -50%);
    text-align: center;
    overflow: hidden;
}

.lang {
    position: absolute;
    right: 2%;
    cursor: pointer;
    align-items: center;
    display: inline-block;
}

.lang:hover .dropdown-content {
    display: block;
}

.dropicon {
    color: #ddd;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 2px;
    margin-left: 0;
}

.dropicon.active {
    transform: rotate(180deg) translateY(5px);
}

.dropdown {
    position: absolute;
    background-color: #242323;
    right: 0;
    top: 100%;
}

.dropdown-content {
    display: none;
    min-width: 100px;
    padding: 5px;
    left: -100px;
    border: 1px solid #ddd;
    z-index: 1;
}

.dropdown-content .dropdown-item {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
    position: relative;
}

.dropdown-content {
    border-radius: 5px;
    color: #f1f1f1;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.dropdown-content .dropdown-item.selected {
    background-color: #ddd;
}

.dropdown-content .dropdown-item:hover {
    background-color: #61606088;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-lang {
    display: none;
}


.dropdown.active .dropdown-content {
    display: block;
}

.lang-selecter {
    content: '';
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 25%;
    left: 10%;
    border-radius: 50%;
    border: 2px solid #000;
    background: #13131354;
}

.lang-selecter.selected {
    background: #ddd;
}


.lang .icon {
    padding-top: 10px;padding-bottom: 10px;
    font-size: 30px;
    color: #cfcfcf;
}

.text-view .page-title {
    font-size: 50px;
}

.text-view .page-pretitle {
    font-size: 20px;
}

.scrolldown {
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    height: 46px;
    text-align: center;
    width: 30px;
    cursor: pointer;
    position: absolute;
    right: 0;
    left: 0;
    top: 80%;
    bottom: 0;
    margin: auto;
}

.scrolldown-p1,
.scrolldown-p2 {
    animation-duration: 1.5s;
    animation-name: scrolldown;
    animation-iteration-count: infinite;
    fill: #FFFFFF;
}

.scrolldown-p2 {
    animation-delay: .75s;
}

@keyframes scrolldown { 0% {
    opacity: 0;
    transform: translate(0, -8px);
}
    50% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(0, 8px);
    }
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translate(0px);
    }
}

#footer {
    width: 100%;
    height: auto;
}

#footer > .container {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(../assests/footer.png);
    background-size: contain;
    padding-left: 5%;
    padding-right: 5%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
.footer-img {
    width: 100px;
    margin-top: 15%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    height: 100px;
    background-color: #c4c3c3;
}

.first {
    text-align: center;
}

.column > .motto {
    margin-top: 20px;
    font-size: 15px;
    color: #c9c9c9;
    margin-bottom: 20px;
}

.social > i {
    color: rgb(170, 170, 170);
    text-decoration: none;
    width: 30px;
    height: 30px;
}

.social {
    font-size: 25px;
    padding: 10px;
    background-color: #000;
    border-radius: 5px;
    margin-right: 10px;
    margin-left: 10px;
}

.social:hover > i {
    color: #ddd;
    transition: color 500ms linear;
}

.instagram:hover {
    background-color: #833AB4;
    transition: background-color 500ms linear;
}

.facebook:hover {
    background-color: #4267B2;
    transition: background-color 500ms linear;
}

.copyright {
    margin-top: 10%;
    margin-bottom: 20px;
    font-size: 15px;
    color: #494949 ;
}

.column {
    width: clamp(25%,25%,50%);
    padding: 0 25px;
}

.column > h4 {
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 20px;
    text-transform: capitalize;
    color: #c4c4c4;
    font-weight: 600;
}

.column > ul > li:not(:last-child) {
    margin-bottom: 10px;
}

.column ul > li > a {
    font-size: 17px;
    color: #b0b0b0;
    text-transform: capitalize;
    text-decoration: none;
}

.column > ul > li > a:hover {
    padding-left: 10px;
    color: #808080;
    transition: 0.5s;
}

.column > ul {
    list-style: none;
}

@media screen and (min-width: 601px) and (max-width: 1150px) {
    .column {
        width: 50%;
    }

    #footer > .container {
        padding-bottom: 30px;
    }

    .menu-links {
        padding-left: 10%;
    }

}

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }

    .column:not(:last-child):not(:first-child) {
        margin-bottom: 20px;
    }


    #footer > .container {
        padding-bottom: 30px;
    }
}

.column > h2 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #afafaf;
}

.email > a, .maps > a {
    margin-top: 10px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #8c8a8a !important;
}


.email > a:hover {
    cursor: pointer;
    color: #676767 !important;
    transition: 0.5s;
}

.phone {
    margin-top: 10px;
}

.maps {
    margin-top: 30px;
}

.maps:hover {
    cursor: pointer;
    color: #8f8f8f;
    transition: 0.5s;
}


#the-count {
    color: #dddddd;
    display: inline-block;
    width: auto;
    padding: 0.1rem 0 0 0;
    font-size: 0.875rem;
}

.scrollUp {
    position: fixed;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    bottom: 3%;
    background-color: #8c8c8c;
    color: #ffffff;
    z-index: 800;
    right: 3%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.activeScroll {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

#main > .container {
    margin-left: auto;
    width: 75%;
    margin-right: auto;
}

#main {
    margin-bottom: 20px;
}

#main > .container > h1 {
    text-align: center;
}


@media screen and (min-width: 781px) and (max-width: 1100px){
    #main > .container {
        width: 90% !important;
    }
    .box > img {
        width: 100%;
    }
    .pricing > .container {
        width: 60% !important;
        margin-right: auto;
        margin-left: auto;
    }
}



@media only screen and (max-width: 780px) {
    #main > .container {
        width: 90% !important;
    }
    .certify {
        flex-direction: column;
        align-items: center;
    }
    .certify > .box {
        width: 100%;
    }
    .box > img {
        width: 100%;
    }
    .certifyText {
        font-size: 25px !important;
    }

    .title {
        font-size: 30px !important;
    }

    .explanation {
        font-size: 15px !important;
    }

    .stats-column > h1 {
        font-size: 23px !important;
    }

    .stats-column > h3 {
        font-size: 18px !important;
    }


    .stats-columns {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .pricing > .container {
        width: 100% !important;
        margin-right: auto;
        margin-left: auto;
    }

    .pricingBtn {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .pricing > .container > .certify > .box {
        padding: 20px 0 0 0 !important;
    }


    .stats-column {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}




