.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 9999;
    cursor: pointer;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #e0a605;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #ffffff;
    color: #000;
}

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    height: 90px;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(119, 106, 97, 0.8);
    padding: 0px 0;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 90px;
}

@media (max-width: 992px) {
    #header {
        padding: 12px 0;
        height: 70px;
    }
    #header .logo {
        font-size: 28px;
    }
    #header .logo img {
        //display: none;  
    }
    #header .logo img {
        max-height: 70px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    // background-color: #5846f9;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgba(255, 255, 255, 0.97);
    transition: 0.3s;
    font-size: 1vw;
    font-weight: 600;
    padding: 0 3px;
    font-family: "Poppins", sans-serif;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.43);
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
    //visibility: visible;
    width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #fff;
}

.nav-menu li:hover>a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 22px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #2c4964;
    text-shadow: none;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #8a1818;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Get Startet Button */

.get-started-btn {
    margin-left: 25px;
    color: #fff;
    border-radius: 3px;
    padding: 6px 15px 8px 15px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.get-started-btn:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 992px) {
    .get-started-btn {
        margin: 0 50px 0 0;
        padding: 6px 10px;
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 14px;
    top: 22px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: rgb(255, 253, 253);
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #2c4964;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #5846f9;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(28, 47, 65, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 44vw;
    //  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(116, 15, 214, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
    //background: linear-gradient(180deg, rgba(36, 36, 36, 0.36) 0%, rgba(176, 175, 175, 0.0) 25%), url("../../zwysoka3.jpg");
    //background: url("../../33c.jpg") no-repeat left bottom; 
    //background-repeat: no-repeat;
    //background-position: 10% 20%;
    //background-size: cover;
}

#hero .container,
#hero .container-fluid {
    padding-top: 4px;
    // padding-top: 84px; 
    // background-color: #18d26e;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 59px;
    color: #fff;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

#hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0 0 0;
    font-size: 35px;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

#hero .btn-get-started:hover {
    background: #a3c733;
    color: #fff;
    border: 2px solid #a3c733;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .hero-img {
    text-align: center;
    //background-color: #18d26e;
}

#hero .hero-img img {
    width: 100%;
    text-align: center;
}

@media (min-width: 1200px) {
    #hero {
        //   background-attachment: fixed;       
    }
}

@media (max-width: 991px) {
    #hero .container,
    #hero .container-fluid {
        padding-top: 18px;
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 26px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    #hero {
        width: 100%;
        height: 65vw;
        //  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(116, 15, 214, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
        //background: linear-gradient(180deg, rgba(36, 36, 36, 0.36) 0%, rgba(176, 175, 175, 0.0) 25%), url("../../zwysoka3.jpg");
        background: url("../../33c.jpg");
        background-repeat: no-repeat;
        background-position: 10% 20%;
        background-size: cover;
    }
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

#hero1 h1 {
    margin: 0;
    padding: 30px 0 0 10px;
    font-size: 2.2vw;
    font-weight: 700;
    line-height: 3.3vw;
    color: #fff;
    // text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

#hero1 h1 span {
    background: #86765e;
    //background: rgba(0, 0, 0, 0.64);
    display: inline;
    padding: 0 0.45rem;
    /* Needs prefixing */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media (max-width: 576px) {
    #hero1 {
        margin: 70px 0 0 0;
        padding: 0px 0 0 0px;
    }
    #hero1 h1 {
        font-size: 3.8vw;
        line-height: 4.9vw;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 50px 0 80px 0;
    overflow: hidden;
}

section h1 {
    margin: 0;
    padding: 0 0 0px 0px;
    font-size: 40px;
    font-weight: 700;
    line-height: 43px;
    color: rgb(0, 0, 0);
    font-family: 'Poppins', sans-serif;
    //text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

section h2 {
    margin: 0;
    padding: 20px 20px 15px 0px;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: rgb(0, 0, 0);
    font-family: 'Poppins', sans-serif;
    //text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

section h2.start1 {
    margin: 0;
    padding: 10px 0 10px 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(0, 0, 0);
    font-family: 'Open sans', sans-serif;
    //text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

section h2.start1 span {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

section h3 {
    margin: 0;
    padding: 10px 0 10px 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(0, 0, 0);
    font-family: 'Open sans', sans-serif;
    //text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

section h3 span {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

section h4 {
    margin: 0;
    padding: 30px 0 13px 0px;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    color: rgb(59, 59, 59);
    font-family: 'Poppins', sans-serif;
    //text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.73);
}

.section-bg {
    background-color: #f9f8ff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #000000;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #a3c733;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    section h2.start1 {
        padding: 10px 15px 10px 15px;
        font-size: 14px;
        line-height: 19px;
    }
    section h3 {
        padding: 10px 15px 10px 15px;
        font-size: 14px;
        line-height: 19px;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 120px 0;
}

.about .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: #2c4964;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #5846f9;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 50px 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    color: #fff;
    background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%);
    position: relative;
}

.about .content .read-more:hover {
    background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
}

.about .content .read-more i {
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 12px;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    background: linear-gradient(45deg, rgba(163, 199, 51, 0.9) 0%, rgba(163, 199, 51, 0.95) 100%), url("../img/hero-bg.jpg") center center no-repeat;
    padding: 80px 0 60px 0;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: #fff;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

/
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
    text-align: left;
}

.features .icon-box h4.start {
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0 10px 37px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #5846f9;
    color: #a3c733;
}

.features .icon-box i.start {
    font-size: 22px;
    float: left;
    color: #5846f9;
    color: #a3c733;
}

.features .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .icon-box {
    text-align: center;
    padding: 0px 0px 40px 0px;
    transition: all ease-in-out 0.3s;
    // background: #fffaaa;
    background: none;
    // background: #fffaaa;
    width: 100%;
    height: auto;
}

.faq .icon-box img {
    text-align: center;
    padding: 0px 0px 0px 0px;
    margin: 0px 0 0 0;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    transition: all ease-in-out 0.3s;
    border-top: 4px solid #555555;
}

.faq .icon-box img:hover {
    margin: 0px 0 0 0;
    padding: 0px 0px 0px 0px;
    border-top: 4px solid white;
}

.faq .icon-box img:hover {}

.faq .icon-box h2 {
    font-weight: 600;
    margin: 16px 0 15px 0;
    font-size: 17px;
}

.faq .icon-box h2 a {
    color: #2c4964;
    transition: ease-in-out 0.3s;
}

.faq .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.faq {
    // background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
    background: linear-gradient(42deg, #aaaaaa 0%, #bbbbbb 100%);
}

.faq .section-title h2,
.faq .section-title p {
    color: #fff;
}

.faq .section-title h2::after {
    background: rgba(255, 255, 255, 0.6);
}

.faq .section-title h3 {
    padding: 30px 0 20px 0;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 27px;
    word-spacing: 7px;
    letter-spacing: -2px;
}

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 10px 30px 10px 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 19px;
    line-height: 24px;
    font-weight: 500;
    padding: 20px 30px;
    outline: none;
    color: #000000;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 26px;
    top: 29px;
    color: #a3c733;
}

.faq .faq-list .icon-help222 {
    font-size: 34px;
    position: absolute;
    right: 0;
    left: 16px;
    top: 19px;
    color: #a3c733;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 16px;
}

.faq .faq-list p {
    font-size: 16px;
    margin-bottom: 0;
    padding: 5px 0 14px 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #777777;
}

.faq .faq-list a.collapsed:hover {
    color: #000000;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#footer {
    display: block;
    margin: 0px;
    padding: 0px;
    color: #fff;
    font-size: 14px;
    background: linear-gradient(45deg, rgba(117, 99, 76, 0.9) 0%, rgba(165, 148, 87, 0.95) 100%);
    background-size: cover;
    -webkit-box-shadow: inset 3px 8px 40px -11px rgba(66, 68, 90, 1);
    -moz-box-shadow: inset 3px 8px 40px -11px rgba(66, 68, 90, 1);
    box-shadow: inset 3px 8px 40px -11px rgba(66, 68, 90, 1);
}

#footer .container {
    // background-color: #47aeff;
    margin: 0px auto;
    padding: 0px;
    display: block;
    overflow: auto;
}

#footer .copyright-wrap {
    border-top: 0px solid #8577fb;
}

#footer .copyright {
    border-top: 0px solid #8577fb;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 50px;
    color: rgba(255, 255, 255, 0.6);
    // background-color: #11dbcf;
    //background: url("jadwiga4.svg");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: contain;
}

#footer a {
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

#footer a:hover {
    color: #fff;
    text-decoration: underline;
}

#footer .footer-links {
    display: flex;
    width: 100%;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 60px 0 0px 0;
    padding: 20px;
    //flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border-top: 0px solid black;
}

#footer li {
    list-style: none;
    display: block;
    padding: 0px;
    margin: 0px;
    //   background: rgba(180, 23, 23, 0.928);
}

#footer .footer-links a {
    list-style: none;
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.03);
    margin: 4px;
    list-style: none;
    border-radius: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none;
    transition: all 0.16s ease;
    -webkit-transition: all 0.16s ease;
}

#footer .footer-links a:hover {
    background-color: rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

@media (max-width: 768px) {
    #footer {
        font-size: 11px;
    }
}

.minibox {
    width: 90%;
    height: 180px;
    //background-color: #18d26e;
    margin: 6px 0 6px 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    // justify-content: center;
    border-radius: 5px;
    border-top: 3px solid rgb(231, 231, 231);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.53);
    transition: all 0.26s ease;
    -webkit-transition: all 0.26s ease;
    cursor: pointer;
}

.miniboxart {
    width: 90%;
    height: auto;
    //background-color: #18d26e;
    margin: 6px 0 6px 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: top;
    // justify-content: center;
    border-radius: 5px;
    border-top: 3px solid rgb(231, 231, 231);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.53);
    transition: all 0.26s ease;
    -webkit-transition: all 0.26s ease;
    cursor: pointer;
}

.minibox:hover {
    background: rgba(255, 255, 255, 0.83);
    border-top: 3px solid rgb(253, 168, 0);
    box-shadow: -1px -1px 19px rgba(11, 11, 11, 0.13);
}

.miniboxart:hover {
    background: rgba(255, 255, 255, 0.83);
    border-top: 3px solid rgb(253, 168, 0);
}

.minibox:hover .minibox1icon {
    transform: scale(0.7) rotate(-8deg);
}

.miniboxart:hover .miniboxart1img img {
    width: 112%;
    height: 112%;
}

.minibox1 {
    width: 180px;
    height: 180px;
    // background-color: #a270af;
    margin: 0 0 0 0;
    padding: 0;
    position: relative;
}

.miniboxart1 {
    width: 120px;
    height: 120px;
    // background-color: #a270af;
    margin: 0 0 0 0;
    padding: 0;
    position: relative;
}

.minibox1img,
.miniboxart1img {
    width: 100%;
    height: 100%;
    margin: 0px 0 0 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border-top: 3px solid white;
}

.minibox:hover .minibox1img img {
    width: 110%;
    height: 110%;
}

.minibox1img img,
.miniboxart1img img {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    // border-top: 3px solid white;
    transition: all 0.26s ease;
    -webkit-transition: all 0.26s ease;
}

.minibox1icon {
    width: 60px;
    height: 60px;
    //background-color: #108826;
    margin: 0 0 0 0;
    padding: 0;
    position: absolute;
    right: -14px;
    bottom: 10px;
    transition: all 0.26s ease;
    -webkit-transition: all 0.26s ease;
}

.minibox1icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.minibox2 {
    width: calc(100% - 200px);
    height: 130px;
    //background-color: #18d26e;
    margin: 0 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.miniboxart2 {
    width: calc(100% - 100px);
    height: auto;
    //background-color: #51437c;
    margin: 0 0 0 0;
    padding: 0 0 20px 0;
}

.miniboxart2 h3 {
    color: rgba(0, 0, 0, 0.97);
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    margin: 0 0 0 0;
    padding: 11px 0 7px 13px;
}

.miniboxart2 p {
    color: rgba(0, 0, 0, 0.97);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin: 0 0 0 0;
    padding: 0 0 0 13px;
}

.minibox2 p {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.97);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    padding: 10px 10px 10px 20px;
    font-family: "Poppins", sans-serif;
    //  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.43);
}

.minibox3 {
    width: 100px;
    height: 100px;
    // background-color: #a270af;
    margin: 0 0 0 0;
    padding: 0;
    position: relative;
}

.minibox3img {
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.minibox3img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border-top: 3px solid white;
}

@media (max-width: 768px) {
    .minibox {
        width: 100%;
        height: 100px;
        margin: 4px 0 4px 0;
    }
    .minibox1 {
        width: 100px;
        height: 100px;
    }
    .minibox1icon {
        width: 50px;
        height: 50px;
    }
    .minibox2 {
        width: calc(100% - 120px);
        height: 100px;
    }
    .minibox2 p {
        font-size: 12px;
        line-height: 15px;
    }
    .miniboxart {
        width: 100%;
    }
    .miniboxart1 {
        width: 100px;
        height: 100px;
        // background-color: #a270af;
        margin: 0 0 0 0;
        padding: 0;
        position: relative;
    }
}

.maicont {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.83);
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    border: 0;
    z-index: 111099;
    overflow: hidden;
}

.maibox {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: rgba(0, 0, 0, 0.83);
    display: block;
    position: fixed;
    top: 15px;
    left: 15px;
    border: 0;
    z-index: 111100;
    overflow: hidden;
    // scroll: none;
    // filter: blur(8px);
    // -webkit-filter: blur(8px); 
    box-shadow: 2px 2px 42px rgba(11, 11, 11, 0.95);
}

.mai {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.83);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    color: black;
    z-index: 11101;
    overflow: hidden;
    // scroll: none;
    // filter: blur(8px);
    // -webkit-filter: blur(8px); 
}

.maiclose {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 46px;
    height: 46px;
    z-index: 11200;
    opacity: 0.67;
    transition: all 0.4s;
}

.maiclose:hover {
    opacity: 1.0;
}

.maiclose img {
    width: 100%;
    height: 100%;
}

.mailogo {
    cursor: pointer;
    position: absolute;
    top: 5px;
    left: 9px;
    //  width: 160px;
    //  height: auto;
    z-index: 11200;
    opacity: 0.85;
    transition: all 0.4s;
}

.mailogo:hover {
    opacity: 1.0;
}

.mailogo img {
    width: 300px;
    height: auto;
}

.maipasek {
    position: absolute;
    top: 0;
    right: 90px;
    width: auto;
    height: 60px;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11200;
}

.maipasek a {
    font-family: 'Open Sans', arial, serif;
    font-size: 15px;
    color: #f8bc25;
    text-decoration: none;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.maipasek a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .maibox {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        top: 2px;
        left: 2px;
    }
    .mailogo img {
        width: 200px;
        height: auto;
    }
    .maiclose {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

.galeria1 {
    display: flex;
    width: 100%;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    background-color: #f1f1f1;
    margin: 60px 0 20px 0;
    padding: 10px;
    //flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border-top: 0px solid black;
}

.galeria1 img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 6px;
    border-radius: 3px;
    box-shadow: 2px 2px 12px rgba(11, 11, 11, 0.35);
    opacity: 1.0;
    transition: all ease-in-out 0.3s;
}

.galeria1 img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .galeria1 img {
        width: 110px;
        height: 110px;
    }
}

.downdown {
    display: block;
    z-index: 239;
}

.downdown i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    padding-top: 3px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: #d1ba7b;
    color: #fff;
    transition: all 0.4s;
}

.downdown i:hover {
    background: #ffffff;
    color: #000;
}

.repozytorium {
    display: block;
    box-sizing: border-box;
    // background-color: #cfcfcf;
    // background: rgb(0, 0, 0, 0.23);
    //    background-color: #ffffff;
    // background: rgba(255, 255, 255, 0.33);
    margin: 0px 0px 0px 0px;
    padding: 20px 0 20px 0;
    //  box-shadow: 2px 2px 7px rgba(255, 255, 255, 0.53);
    //border-top: 1px solid rgba(14, 14, 14, 0.4);
    //border-bottom: 1px solid rgba(14, 14, 14, 0.24);
    //border-radius: 10px;
}

.repozytorium h4 {
    padding: 20px 25px 20px 25px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.16);
}

.repozytorium p {
    padding: 5px 25px 5px 25px;
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.6);
}

.repozytorium a {
    color: rgb(115, 75, 0);
    color: black;
    font-weight: 700;
}

.repozytorium a:hover {
    text-decoration: underline;
}

figure p {
    line-height: 15px;
    font-size: 13px;
    padding: 10px 7px 20px 7px;
}

 ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #212121;
}

 ::-webkit-scrollbar {
    width: 12px;
    background-color: #212121;
}

 ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #e0a605;
}

.fb-box {
    position: fixed;
    bottom: 15px;
    left: 16px;
    width: 140px;
    height: 20px;
    background-color: none;
    z-index: 124500;
}

@media (max-width: 768px) {
    .fb-box {
        bottom: 4px;
        left: 4px;
    }
}

.modl {
    //  width: 80%;
    //  height: auto;
    padding: 0px 0 0px 0;
    //background-color: #18d26e;
    text-align: center;
}

.modl img {
    width: 80%;
    height: 80%;
    padding: 0px 0 0px 0;
}