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

html {
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.42857143;
    color: #191919;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

input:focus-visible,
textarea:focus-visible{
    color: inherit;
}
*:focus {
    outline: 0 !important;
    /*color: inherit;*/
}

a, a:hover, button, button:hover {
    color: #02A9F3;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease, opacity .3s ease, -webkit-box-shadow .3s ease
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

:focus, :hover {
    outline: none;
    text-decoration: none;
    color: inherit;
}


::-moz-focus-inner {
    border: 0;
    outline: none;
}

:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 transparent;
}

::-moz-selection {
    color: #fff;
    background: #6E4C71;
}

::selection {
    color: #fff;
    background: #6E4C71;
}

@-moz-document url-prefix() {
    select, select:-moz-focusring, select::-moz-focus-inner {
        color: transparent !important;
        text-shadow: 0 0 0 #fff !important;
        background-image: none !important;
        border: 0;
    }
}

@media print {
    img {
        max-width: 100% !important;
    }
}

@media print {
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
}

svg:not(:root) {
    overflow: hidden;
}

img {
    -ms-interpolation-mode: bicubic;
}

::-moz-selection {
    background: #55BC79;
    color: #fff;
}

::selection {
    background: #55BC79;
    color: #fff;
}

label {
    font-weight: normal;
}

ul {
    list-style-type: none;
}

.app-wrapper {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    overflow: auto;
}

.app-wrapper::before {
    content: '';
    display: table;
    clear: both;
}

.app-main {

}

.app-sidebar {

}

header {

}

.app-header {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding:20px 0;
}

.logo {
    display: block;
    width: 440px;
    height: 154px;
    background-image: url("../img/coveculjci-sa-natpisom.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.app-search {
    margin-right: 20px;
}

/* SOCIAL NETWORKS */

.app-links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.app-social {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.networks {
    list-style-type: none;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: -15px;
    margin-right: -15px;
}

.networks .network-item {
    margin: 0 15px;
}

.networks .network-item .network-link {
    font-size: 18px;
    color: #000;
}

.networks .network-item .network-link:hover,
.networks .network-item .network-link:focus {
    color: #202020;
}


/* NAV */

.app-nav ul {
    list-style-type: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

.app-nav .navL1 {
    display: none;
}

/* ASIDE */

aside {

}

/* FORMS */

.app-input {
    height: 30px;
    border: 1px solid #f5f5f5;
    padding: 5px 10px;
    background-color: #fff;
    color: #191919;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.app-input:focus {
    border-color: #191919;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;

}

.app-input::placeholder {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #777;
}

/* FOOTER */

.footer {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

/*---------------------------- GALLERY --------------------*/

.single-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    justify-items: center;
    margin-bottom: 30px;
}
.single-gallery .galleryImgWrapper {
    display: flex;
    align-content: center;
    justify-content: center;
    background: #FFF9EB;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 10px;
}
.single-gallery img {
    margin: auto;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 210px;
}
.fancybox-navigation button:hover {
    color: #fff;
    background: none;
    transition: background-color 0.3s ease;
}