/* Designed by Jakub Palovič TATRA DESIGN, www.tatradesign.com ©2022 */
@import url("./_articles.css");
@import url("./_persons.css");

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.4);
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

::-moz-selection {
    background: #483290;
    color: white;
}

::selection {
    background: #483290;
    color: white;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> Main colors */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

:root {
    --basic-font: 'Poppins', sans-serif;
    --header-font: 'Titan One', cursive;

    --p-size-large: 1.2rem;

    --color-white: #FFFFFF;
    --color-light: #aaa9a9;
    --color-gray: #333333;
    --color-lightgray: #F5F5FC;
    --color-border: #CCCCCC;
    --color-orange: #FF7223;
    --color-green: #81B76C;
    --color-purple: #483290;
    --color-blue: #0b5ab8;
    --color-darkblue: #052e5e;

    --size-large: 50px;
    --size-normal: 25px;
    --size-small: 15px;
    --size-extrasmall: 5px;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> GENERAL STYLES */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

* {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    vertical-align: top;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
    font-family: var(--basic-font);
    font-size: 100%;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    color: var(--color-gray);
    background-color: var(--color-lightgray);
    line-height: 1.6rem;
    text-align: center;
    overflow: auto;
}

header,
footer,
main,
section,
.wrap,
.container {
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    text-align: center;
    clear: both;
    overflow: auto;
}

main {
    margin-top: 120px;
    min-height: 100vh;
    overflow: visible;
}

section {
    overflow: visible;
}

aside {
    padding-top: 50px;
    padding-left: 0px;
}

.wrap {
    margin: 0 auto;
    padding: 0 25px;
    min-width: 220px;
    max-width: 1200px;
    overflow: visible;
}

.container {
    padding: 50px 0;
    overflow: visible;
}

.page-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
}

.main-content {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 75%;
}

.main-sidebar {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 25%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 12;
    -webkit-order: 2;
    order: 2;
}

@media only screen and (max-width:75rem) {
    main {
        padding-left: 0px;
    }

    .wrap {
        max-width: 900px;
    }

    .container {
        padding: 75px 0 50px 0;
    }

    .main-content {
        width: 75%;
    }

    .main-sidebar {
        width: 25%;
    }
}

@media only screen and (max-width:60rem) {
    .wrap {
        max-width: 600px;
    }

    .container {
        padding: 50px 0 25px 0;
    }

    aside {
        padding: 25px 25px 0 25px;
    }

    .main-content {
        width: 100%;
    }

    .main-sidebar {
        width: 100%;
    }
}

@media only screen and (max-width:40rem) {
    .wrap {
        max-width: 100%;
        padding: 0 0px;
    }
}

.disableScroll {
    overflow: hidden;
}

.header-margin {
    margin-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    margin: 0px auto 25px auto;
    letter-spacing: -0.025rem;
    font-family: var(--header-font);
    font-weight: 400;
}

h1,
.text-h1 {
    font-size: 2.8rem;
    line-height: 3.2rem;
}

h2,
.text-h2 {
    font-size: 2.0rem;
    line-height: 2.8rem;
}

h3,
.text-h3 {
    font-size: 1.6rem;
    line-height: 2.0rem;
}

h4,
.text-h4 {
    font-size: 1.0rem;
    line-height: 1.8rem;
}

h5,
.text-h5 {
    font-size: 0.95rem;
    line-height: 1.0rem;
}

h6,
.text-h6 {
    font-size: 0.92rem;
    line-height: 1.0rem;
}

p {
    display: block;
    margin: 0px auto 25px auto;
    font-size: 1.0rem;
    font-weight: 400;
    letter-spacing: -0.025rem;
    word-spacing: -0.02rem;
}

p.text-size-large {
    font-size: var(--p-size-large);
}

@media only screen and (max-width:60em) {

    h1,
    .text-h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    h2,
    .text-h2 {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    h3,
    .text-h3 {
        font-size: 1.25rem;
    }

    h4,
    .text-h4 {
        font-size: 1rem;
    }

    h5,
    .text-h5 {
        font-size: 1rem;
    }

    h6,
    .text-h6 {
        font-size: 1rem;
    }

    p {
        display: block;
        margin: 0px auto 25px auto;
        font-size: 1rem;
    }

    p.text-size-large {
        font-size: 1rem;
    }
}

b {
    font-weight: 700 !important;
}

i {
    font-style: italic;
}

.font-light {
    font-weight: 300 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-uppercase {
    text-transform: uppercase !important;
}

.font-basic {
    font-family: var(--basic-font);
}

.font-special {
    font-family: var(--header-font);
}

.text-align-center {
    text-align: center !important;
}

.text-align-left {
    text-align: left !important;
}

.text-align-right {
    text-align: right !important;
}

.vertical-align-top {
    vertical-align: top !important;
}

.vertical-align-middle {
    vertical-align: middle !important;
}

.vertical-align-bottom {
    vertical-align: bottom !important;
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
    margin: 0 auto !important;
}

.color-white {
    color: var(--color-white) !important;
}

.color-lightgray {
    color: var(--color-lightgray) !important;
}

.color-orange {
    color: var(--color-orange) !important;
}

.color-green {
    color: var(--color-green) !important;
}

.color-purple {
    color: var(--color-purple) !important;
}

.color-blue {
    color: var(--color-blue) !important;
}

.color-darkblue {
    color: var(--color-darkblue) !important;
}

.bg-color-white {
    background-color: var(--color-white) !important;
}

.bg-color-lightgray {
    background-color: var(--color-lightgray) !important;
}

.bg-color-orange {
    background-color: var(--color-orange) !important;
}

.bg-color-green {
    background-color: var(--color-green) !important;
}

.bg-color-purple {
    background-color: var(--color-purple) !important;
}

.bg-color-blue {
    background-color: var(--color-blue) !important;
}

.box-shadow {
    -webkit-box-shadow: 0px 15px 30px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 30px 0px rgb(0 0 0 / 10%);
}

.box-shadow-img {
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
}

img {
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
}

hr {
    display: block;
    margin: 20px auto;
    width: 120px;
    height: 4px;
    background-color: var(--color-purple);
}

table,
th,
tr,
td {
    position: relative;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    border: none;
    background: none;
}

td {
    margin: 5px;
    padding: 5px;
}

td:first-child {
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    margin-top: 15px;
}

iframe {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    aspect-ratio: 16 / 9;
}

form {
    display: block;
    margin: 0;
    padding: 25px;
}

em {
    font-style: italic;
}

.em-author {
    display: block;
    font-weight: 700;
    text-align: right;
}

.margin-bottom-none {
    margin-bottom: 0px;
}

.text-dot {
    color: var(--color-green);
}

.page-intro {
    background: var(--color-purple);
}

.grecaptcha-badge {
    visibility: hidden;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> ROWS & COLUMS */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.row,
.grid,
.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;

    margin: 0 auto;
    padding: 0;
    width: 100%;
    clear: both;
    overflow: visible;
}

.grid {
    padding: 0 0 50px 50px;
}

.form-row {
    padding: 0 0 15px 15px;
}

.flex-flow-wrap {
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
}

.justify-content-start {
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    align-items: stretch;
}

.align-items-start {
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    align-items: flex-end;
}

[class*="col-"],
[class*="grid-col-"],
[class*="form-col-"] {
    flex: initial;
    margin: 0;
    padding: 0;
    clear: both;
    overflow: visible;
}

[class*="grid-col-"] {
    padding: 50px 50px 0 0;
}

[class*="form-col-"] {
    padding: 15px 15px 0 0;
}

.col-1,
.grid-col-1,
.form-col-1 {
    flex: 0 0 8.33%;
    width: 8.33%;
}

.col-2,
.grid-col-2,
.form-col-2 {
    flex: 0 0 20%;
    width: 20%;
}

.col-3,
.grid-col-3,
.form-col-3 {
    flex: 0 0 25%;
    width: 25%;
}

.col-4,
.grid-col-4,
.form-col-4 {
    flex: 0 0 33.33%;
    width: 33.33%;
}

.col-6,
.grid-col-6,
.form-col-6 {
    flex: 0 0 50%;
    width: 50%;
}

.col-8,
.grid-col-8,
.form-col-8 {
    flex: 0 0 66.66%;
    width: 66.66%;
}

.col-9,
.grid-col-9,
.form-col-9 {
    flex: 0 0 75%;
    width: 75%;
}

.col-12,
.grid-col-12,
.form-col-12 {
    flex: 0 0 100%;
    width: 100%;
}

@media only screen and (max-width:75em) {}

@media only screen and (max-width:60em) {
    .grid {
        padding: 0 0 25px 25px;
    }

    .form-row {
        padding: 0 0 5px 5px;
    }

    [class*="grid-col-"] {
        padding: 25px 25px 0 0;
    }

    [class*="form-col-"] {
        padding: 5px 5px 0 0;
    }

    .col-3,
    .grid-col-3,
    .form-col-3 {
        width: 50%;
        flex: 0 0 50%;
    }

    .col-4,
    .grid-col-4,
    .form-col-4 {
        width: 75%;
        flex: 0 0 75%;
    }

    .col-6,
    .grid-col-6,
    .form-col-6 {
        width: 100%;
        flex: 0 0 100%;
    }

    .col-9,
    .grid-col-9,
    .form-col-9 {
        width: 75%;
        flex: 0 0 75%;
    }
}

@media only screen and (max-width:40em) {
    [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> INPUTS */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

input,
textarea,
select,
option {
    display: block;
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 0px;
    background: var(--color-white);
    outline: none;
    color: var(--color-purple);
    font-family: var(--basic-font);
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    -moz-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-orange);
}

textarea {
    resize: vertical;
    line-height: 1.5;
    -moz-transition: box-shadow 0.2s ease;
    -webkit-transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease;
}

input+label,
select+label,
textarea+label {
    position: absolute;
    top: 40px;
    left: 0px;
    padding: 0;
    color: #EAEAEA;
    line-height: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

input:focus+label,
input.input-text+label,
select+label,
textarea:focus+label,
textarea.input-text+label {
    top: 15px;
    color: #EB4D57;
    font-size: 11px;
}

@media only screen and (max-width:60em) {

    input+label,
    select+label,
    textarea+label {
        top: 30px;
    }

    input:focus+label,
    input.input-text+label,
    select+label,
    textarea:focus+label,
    textarea.input-text+label {
        top: 5px;
    }
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border-color: #2D3E50;
    -webkit-text-fill-color: #2D3E50;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> A & BUTTON */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    transition: .3s ease;
}

a:hover {
    color: var(--color-yellow);
}

a.arrow-right ion-icon {
    margin: auto 0px auto 5px;
    vertical-align: middle;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    transition: .3s ease;
}

a.arrow-right:hover ion-icon {
    margin: auto -5px auto 10px;
    vertical-align: middle;
}

button,
.btn-default {
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 10px 30px;
    height: auto;
    letter-spacing: -.025rem;
    font-family: var(--basic-font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white);
    background: var(--color-green);
    border: none;
    border-radius: 45px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

button:before,
.btn-default:before {
    display: none;
}

button:hover,
.btn-default:hover {
    color: white;
    box-shadow: 0 5px 30px 0 rgba(34, 34, 34, 0.2);
}

button:active,
.btn-default:active {
    opacity: .9;
}

button:disabled,
.btn-default:disabled {
    opacity: .5;
}

button .material-symbols-outlined,
.btn-default .material-symbols-outlined {
    margin: 0 0 0 5px;
    height: 15px;
    line-height: 1.4rem;
    font-size: 18px;
}

.btn-social {
    display: inline-block;
    margin: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 28px;
    background: #F09A3E;
    color: #FFF;
}

.btn-social:hover {
    color: #FFF;
    opacity: .8;
}

.btn-social.btn-facebook {
    background: #4267B2;
}

.btn-social.btn-twitter {
    background: #1DA1F2;
}

.btn-social.btn-instagram {
    background: #E56969;
}

.btn-social.btn-linkedin {
    background: #0077B5;
}

.close-gallery {
    position: fixed;
    z-index: 100;
    top: 25px;
    right: 25px;
    margin: 0;
    padding: 0;
    width: 35px;
    height: 35px;
    color: #FFF;
    font-size: 28px;
    line-height: 30px;
    background: rgba(34, 34, 34, .5);
    border: 2px solid white;
    border-radius: 50%;
    text-align: center;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> CARD CONTAINER */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.card-container {
    margin: 0;
    padding: 20px;
    background: var(--color-lightgray);
    border-radius: 10px;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> THE MODAL */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0px;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    clear: both;
    background-color: rgba(255, 255, 255, .7);
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.modal.modal-opened {
    display: block !important;
    opacity: 1;
}

.modal .modal-close {
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: transparent;
}

.modal .modal-content {
    position: relative;
    margin: 0 auto;
    padding: 50px 25px 0px 25px;
    width: 100%;
    max-width: 40em;
    height: 100%;
    background: #FFF;
    border-radius: 20px;
    overflow-y: scroll;
    -webkit-box-shadow: 0px 25px 50px 25px rgb(20 25 48 / 10%);
    box-shadow: 0px 25px 50px 25px rgb(20 25 48 / 10%);
    clear: both;
    overflow: auto;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.3s;
    animation-name: animatetop;
    animation-duration: 0.3s;
}

.modal .modal-content::-webkit-scrollbar {
    width: 0px;
}

@-webkit-keyframes animatetop {
    from {
        margin-top: 25px;
        opacity: 0
    }

    to {
        margin-top: 0px;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        margin-top: 25px;
        opacity: 0
    }

    to {
        margin-top: 0px;
        opacity: 1
    }
}

.modal .modal-panel {
    position: fixed;
    z-index: 10;
    top: 50px;
    left: 50%;
    -webkit-transform: -webkit-translateX(-50%);
    transform: translateX(-50%);
    padding: 0;
    width: 100%;
    max-width: 40em;
    height: 50px;
    background: rgba(255, 255, 255, .9);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-sizing: content-box;
    overflow: hidden;
    clear: both;
    -webkit-transition: .3s easy;
    transition: .3s easy;
}

.modal .modal-panel-right,
.modal .modal-panel-left {
    position: absolute;
    z-index: 11;
    top: 0px;
    margin: 0;
    padding: 0 25px;
    width: auto;
}

.modal .modal-panel-left {
    left: 0px;
}

.modal .modal-panel-right {
    right: 0px;
}

.modal .modal-panel ul {
    display: block;
    margin: 10px 0;
    padding: 0;
    list-style: none;
    overflow: auto;
    clear: both;
}

.modal .modal-panel ul li {
    float: left;
    margin: 0;
    margin-left: 15px;
}

.modal .modal-panel ul li:first-child {
    margin-left: 0px;
}

.modal .modal-panel ul li a,
.modal .modal-panel ul li button,
.modal .modal-panel ul li span {
    padding: 0;
    width: auto;
    height: auto;
    line-height: 30px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-dark);
    background: none;
    border: none;
    border-radius: 0;
}

.modal .modal-panel ul li a:hover,
.modal .modal-panel ul li button:hover,
.modal .modal-panel ul li span:hover {
    box-shadow: none;
}

.modal .modal-panel ul li.separator {
    margin: 5px 0 5px 15px;
    padding: 0;
    width: 1px;
    height: 15px;
    background: rgba(52, 73, 94, .2);
}

.modal .modal-panel ul li ion-icon {
    margin: 0;
    padding: 5px;
    width: 20px;
    height: 20px;
}

.modal-close-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
    cursor: pointer;
}

.modal-close-btn ion-icon {
    display: block;
    padding: 0px;
    width: 25px;
    height: 25px;
    color: var(--color-dark);
}

.modal-close-btn:hover,
.modal-close-btn:focus {
    background: rgba(255, 255, 255, 1);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width:40em) {
    .modal .modal-panel {
        top: 0px;
    }
}

.modal-header,
.modal-body,
.modal-footer {
    display: block;
    margin: 0;
    padding: 0;
    clear: both;
    overflow: visible;
    background: transparent;
}

.modal-header {
    margin-top: 50px;
}

.modal-footer {
    margin-bottom: 50px;
}

.modal section {
    margin-bottom: 25px;
    text-align: left;
}

@media only screen and (max-width:60em) {}

@media only screen and (max-width:40em) {
    .modal {
        padding: 0;
    }

    .modal-content {
        margin: 0 auto;
        border-radius: 0px;
        min-height: 100vh;
    }

    .modal-close:before {
        display: none;
    }

    .modal-close-inside {
        display: block;
    }

    .modal-close {
        right: 10px;
    }

    .modal-header {
        padding: 0 20px;
    }
}

.modal .block {
    opacity: 1;
    -webkit-animation-name: animateShow;
    -webkit-animation-duration: 0.4s;
    animation-name: animateShow;
    animation-duration: 0.4s;
}

@-webkit-keyframes animateShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes animateShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> MODAL PHOTOS */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.modal-photos {
    position: fixed;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    clear: both;
    overflow: hidden;
    opacity: 0;
}

.modal-photos.modal-opened {
    z-index: 100;
    opacity: 1;
    overflow: visible;
}

.modal-photos .modal-close {
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: transparent;
}

.modal-photos .modal-close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    background: var(--color-gray);
    border-radius: 50%;
    cursor: pointer;
}

.modal-photos .modal-close-btn .material-symbols-outlined {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
    color: var(--color-white);
    text-align: center;
}

.modal-photos .modal-close-btn:hover,
.modal-close-btn:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal-photos .modal-content {
    padding: 50px 25px 0px 25px;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    background: #FFF;
    border-radius: 10px;
    overflow-y: scroll;
    -webkit-box-shadow: 0px 25px 50px 25px rgb(20 25 48 / 10%);
    box-shadow: 0px 25px 50px 25px rgb(20 25 48 / 10%);
    clear: both;
    overflow: auto;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.3s;
    animation-name: animatetop;
    animation-duration: 0.3s;
}

.modal-photos .modal-content::-webkit-scrollbar {
    width: 0px;
}

.modal-photos .loader {
    margin: -25px 20px 20px 20px;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> HEADER */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 120px;
    background: white;
    overflow: visible;
    z-index: 20;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    transition: .2s ease;
}

header.contacts-hidden {
    top: -50px;
}

header .wrap {
    padding: 0 25px;
    clear: both;
    overflow: visible;
}

header .header-contacts {
    display: block;
    margin: 0;
    height: 50px;
    clear: right;
    overflow: visible;
    background: var(--color-purple);
}

header .header-content {
    display: block;
    margin: 0;
    height: 70px;
    clear: right;
    overflow: visible;
}

header .header-logo {
    float: left;
    text-align: left;
}

header .header-menu {
    float: right;
    text-align: left;
}

header .header-contacts .wrap {
    height: 50px;
}

header .header-content .wrap {
    height: 70px;
}

header .header-contacts .ul-menu-right {
    float: right;
    height: 40px;
    width: auto;
}

header .header-contacts .ul-menu-left {
    float: left;
    height: 40px;
    width: auto;
}

header .header-contacts ul {
    display: block;
    list-style: none;
    overflow: auto;
    clear: both;
}

header .header-contacts ul li {
    float: left;
    margin: 0 0 0 25px;
    height: 50px;
}

header .header-contacts ul li:first-child {
    margin-left: 0px;
}

header .header-contacts ul li a {
    min-width: 40px;
    font-size: 13px;
    font-weight: 600;
    line-height: 50px;
    color: var(--color-white);
    letter-spacing: 0rem;
}

header .header-contacts ul li a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

header .header-contacts ul li a ion-icon {
    margin: 15px 5px 15px 0;
    width: 15px;
    height: 20px;
    color: var(--color-white);
}

header .header-contacts .social-icon {
    display: inline-block;
    margin: 10px 0px;
    width: 15px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

header .header-contacts .social-icon.facebook {
    background-image: url(../imgs/icons/facebook.svg);
}

header .header-contacts .social-icon.instagram {
    background-image: url(../imgs/icons/instagram.svg);
}

header .header-contacts .social-icon.linkedin {
    background-image: url(../imgs/icons/linkedin.svg);
}

header .header-contacts .social-icon.twitter {
    background-image: url(../imgs/icons/twitter.png);
}

header .header-logo a {
    display: inline-block;
    margin: 0;
    width: auto;
}

header .header-logo .logo-data {
    float: left;
    padding: 10px 0;
}

header .header-logo .logo-data img {
    display: block;
    width: auto;
    height: 50px;
}

header .header-logo .logo-label {
    display: inline-block;
    padding: 20px 0 0 15px;
    line-height: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
    color: var(--color-darkblue);
    text-decoration: none;
}

header .header-logo .logo-label .city {
    display: block;
    padding-bottom: 20px;
    width: auto;
    line-height: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
}

#header-btn-open {
    display: none;
    position: absolute;
    z-index: 10;
    margin-top: 0px;
    top: -65px;
    right: 0px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    overflow: visible;
}

#header-btn-open span {
    position: absolute;
    z-index: 1;
    display: block;
    right: 0px;
    width: 100%;
    height: 1px;
    background: var(--color-darkblue);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

#header-btn-open span:nth-child(1) {
    top: 16.5%;
    width: 110%;
}

#header-btn-open span:nth-child(2) {
    top: 50%;
    width: 70%;
}

#header-btn-open span:nth-child(3) {
    top: 83.5%;
    width: 90%;
}

#header-btn-open:hover span {
    width: 100%;
}

header.opened #header-btn-open span,
header.fixed #header-btn-open span {
    background: var(--color-darkblue);
}

header.opened #header-btn-open span:nth-child(1) {
    top: 15px;
    width: 100%;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

header.opened #header-btn-open span:nth-child(2) {
    opacity: 0;
}

header.opened #header-btn-open span:nth-child(3) {
    top: 15px;
    width: 100%;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header.opened #header-btn-open:hover span:nth-child(1) {
    top: 12px;
    -ms-transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

header.opened #header-btn-open:hover span:nth-child(3) {
    top: 18px;
    -ms-transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
}

header nav {
    float: right;
    width: auto;
    background: none;
}

header nav ul {
    display: block;
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin: 15px 0 15px 25px;
}

header nav ul li.social {
    margin-right: 10px;
}

header nav ul li.social:last-child {
    margin-right: 0px;
}

header nav ul li a {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 40px;
    color: var(--color-darkblue);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 0rem;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    transition: .2s ease;
}

header nav ul li a:hover {
    color: var(--color-green);
}

header nav ul li a ion-icon {
    display: block;
    margin: 0;
    padding: 20px 0;
    width: 30px;
    height: 30px;
}

header nav ul li.active a {
    color: var(--color-green);
}

header nav ul li.highligt {
    margin-top: 0;
    margin-bottom: 0;
}

header nav ul li.highligt a {
    padding: 15px 25px;
    line-height: 20px;
    font-weight: 600;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 0px;
}

header.fixed {
    position: fixed;
    padding-top: 0px;
    background: #FFF;
    box-shadow: 0 5px 20px 0 rgba(38, 39, 42, .1);
    animation-name: fix;
    animation-duration: .5s;
}

header.fixed .wrap {
    border-bottom: 0px;
}

@keyframes fix {
    from {
        top: -120px;
    }

    to {
        top: -50px;
    }
}

header.fixed nav ul li a {
    color: var(--color-darkblue);
}

header.fixed nav ul li a:hover {
    color: var(--color-green);
}

header.fixed nav ul li.highligt a {
    background: var(--color-green);
    color: var(--color-white);
}

@media screen and (max-width: 60em) {

    #header-btn-open {
        display: block;
    }

    header {
        overflow: hidden;
    }

    header .header-contacts .ul-menu-left {
        display: none;
    }

    header .header-logo,
    header .header-menu {
        float: none;
        display: block;
    }

    header.opened .header-logo .logo-label {
        color: #000;
    }

    header nav {
        float: none !important;
        display: block;
        margin: 0px !important;
    }

    header nav ul {
        text-align: left;
    }

    header nav ul li {
        display: block;
        margin-left: 0px;
    }

    header nav ul li.social {
        display: inline-block;
        margin-left: 0px;
    }

    header nav ul li a {
        margin: 0;
        padding: 15px 0;
        line-height: 30px;
        color: #000;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    header nav ul li.social a {
        border-bottom: none;
    }

    header nav ul li a:hover {
        color: var(--color-yellow);
    }

    header nav ul li a ion-icon {
        display: block;
        margin: 0;
        padding: 10px 0;
        width: 30px;
        height: 30px;
    }

    header nav ul li.highligt a {
        background: var(--color-green);
        color: var(--color-white);
    }

    header.opened {
        top: 0px;
        height: 100vh;
        overflow-y: auto;
        background: #FFF;
    }

    header.opened .header-content {
        display: block;
        border-top: 0px solid rgba(255, 255, 255, .1);
        clear: both;
        overflow: visible;
    }

}

@media screen and (max-width: 40em) {
    header.hidden {
        position: fixed;
        top: 0px;
    }

    header .header-contacts ul li a ion-icon {
        display: none;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> FOOTER */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

footer {
    padding: 0;
    color: var(--color-white);
    background: var(--color-purple);
    font-size: .92rem !important;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: block;
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
}

footer ul li a {
    display: block;
    padding: 0;
    color: var(--color-white);
    font-weight: 400;
}

footer ul li a:hover {
    text-decoration: underline;
    color: var(--color-white);
}

@media screen and (max-width : 40em) {
    footer ul {
        margin-left: 50px;
    }

    footer ul li {
        display: block;
        margin: 10px 0;
        border-left: none;
    }
}

.footer-main {
    padding: 25px 0;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    margin: 0;
    width: auto;
    max-width: 150px;
    height: auto;
}

.footer-main ul li ion-icon {
    position: absolute;
    top: 0px;
    left: -40px;
    height: 22px;
    width: 22px;
    font-size: 22px;
    color: var(--color-green);
}

.footer-copy {
    padding-top: 25px;
    background: rgba(0, 0, 0, 0.05);
}

.footer-copy p {
    font-size: .75rem;
    font-weight: 400;
}

footer .footer-social {
    display: block;
    margin-bottom: 25px;
    padding: 0;
    overflow: auto;
    clear: both;
}

footer .footer-social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
}

footer .footer-social a:hover {
    background: var(--color-yellow);
}

footer .footer-social .social-icon {
    display: inline-block;
    margin: 11px;
    width: 18px;
    height: 18px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

footer .footer-social .social-icon.facebook {
    background-image: url(../imgs/icons/facebook.svg);
}

footer .footer-social .social-icon.instagram {
    background-image: url(../imgs/icons/instagram.svg);
}

footer .footer-social .social-icon.linkedin {
    background-image: url(../imgs/icons/linkedin.svg);
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> PAGE - Úvod - Intro */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

#section-intro {
    display: block;
    margin: 0;
    padding: 100px 0 200px 0;
    height: auto;
    background: none;
    background-image: url(../imgs/intro.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: visible;
}

.swiper-intro {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: visible;
    -webkit-box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 10%);
}

.swiper-intro .swiper-wrapper {
    border-radius: 25px;
    overflow: hidden;
}

.swiper-intro .swiper-slide {
    height: 50vh;
    background-color: var(--color-white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-intro .swiper-slide .slide-flex {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
}

.swiper-intro .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-intro .swiper-control {
    position: absolute;
    z-index: 100;
    bottom: -25px;
    left: 0px;
    padding: 0 25px;
    width: 100%;
    text-align: center;
}

.swiper-intro .swiper-control .swiper-button-next,
.swiper-intro .swiper-control .swiper-button-prev {
    margin: 0;
    padding: 0;
    color: var(--color-purple);
    line-height: 25px;
    height: 25px;
    width: 25px;
}

.swiper-intro .swiper-control .swiper-button-next:after,
.swiper-intro .swiper-control .swiper-button-prev:after {
    display: none;
}

.swiper-intro .swiper-control ion-icon {
    display: block;
    margin: 0;
    padding: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: var(--color-purple);
    visibility: visible;
}

.swiper-intro .swiper-control .swiper-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    margin: 0 auto;
    width: auto;
    color: var(--color-purple);
    font-family: var(--header-font);
}

.swiper-intro figure {
    height: 50vh;
    overflow: hidden;
}

.swiper-intro figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-intro .content {
    flex: 0 0 100%;
    margin: 0;
    padding: 50px;
    width: 100%;
    overflow: visible;
}

.swiper-intro h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.swiper-intro p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.swiper-intro .date {
    margin-top: 25px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--color-purple);
    opacity: .6;
}

@media only screen and (max-width:60em) {
    .swiper-intro figure {
        display: none;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> PAGE - Úvod - Menu */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

#section-menu {
    background: transparent;
    margin-top: -100px;
    overflow: visible;
}

#section-menu .row {
    padding: 50px 0;
    box-shadow: 0 5px 20px 0 rgb(38 39 42 / 10%);
    overflow: visible;
}

#section-menu .row .col-3 {
    border-left: 1px solid var(--color-border);
}

#section-menu .row .col-3:first-child {
    border-left: none;
}

@media only screen and (max-width:60em) {
    #section-menu .row {
        padding: 0px;
    }

    #section-menu .row .col-3:nth-child(1) {
        border-bottom: 1px solid var(--color-border);
        border-left: none;
    }

    #section-menu .row .col-3:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
        border-left: 1px solid var(--color-border);
    }

    #section-menu .row .col-3:nth-child(3) {
        border-bottom: none;
        border-left: none;
    }

    #section-menu .row .col-3:nth-child(4) {
        border-bottom: none;
        border-left: 1px solid var(--color-border);
    }
}

@media only screen and (max-width:40em) {
    #section-menu .row {
        padding: 0px;
    }

    #section-menu .row .col-3:nth-child(1) {
        border-bottom: 1px solid var(--color-border);
        border-left: none;
    }

    #section-menu .row .col-3:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
        border-left: none;
    }

    #section-menu .row .col-3:nth-child(3) {
        border-bottom: 1px solid var(--color-border);
        border-left: none;
    }

    #section-menu .row .col-3:nth-child(4) {
        border-bottom: none;
        border-left: none;
    }
}

#section-menu .menu-box {
    padding: 0 15px;
    color: var(--color-darkblue);
    background: transparent;
    overflow: visible;
}

#section-menu .menu-box a {
    display: block;
}

#section-menu .menu-box a:hover {
    transform: scale(1.1);
}

#section-menu .menu-box ion-icon {
    margin: 0 auto 15px auto;
    width: 30px;
    height: 30px;
    opacity: 1;
    color: var(--color-green);
}

#section-menu .menu-box h3 {
    margin-bottom: 0px;
}

#section-menu .menu-box span {
    display: block;
}

@media only screen and (max-width:60em) {
    #section-menu .menu-box {
        padding: 25px;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> PAGE - Úvod - O nás */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

section .shap_1 {
    position: absolute;
    z-index: 0;
    top: 150px;
    left: 15%;
    width: auto;
}

section .shap_2 {
    position: absolute;
    z-index: 0;
    bottom: 50px;
    left: 15%;
    width: auto;
}

section .shap_3 {
    position: absolute;
    z-index: 0;
    bottom: 100px;
    left: 75%;
    width: auto;
}

section .shap_4 {
    position: absolute;
    z-index: 0;
    top: 150px;
    right: 15%;
    width: auto;
}

#section-about .about-img-1 {
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
}

#section-about .about-img-2 {
    position: absolute;
    z-index: 2;
    top: -50px;
    left: -25px;
    width: 260px;
    max-width: 50%;
    height: auto;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
}

#section-about .about-img-3 {
    position: absolute;
    z-index: 3;
    bottom: -50px;
    right: -25px;
    width: 260px;
    max-width: 50%;
    height: auto;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
}

@media only screen and (max-width:40em) {
    #section-about .about-img-1 {
        z-index: 1;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        -webkit-box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
        box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
    }

    #section-about .about-img-2 {
        position: absolute;
        z-index: 2;
        top: 50px;
        left: -25px;
        width: 260px;
        max-width: 40%;
        height: auto;
        border-radius: 5px;
        -webkit-box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
        box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
    }

    #section-about .about-img-3 {
        position: absolute;
        z-index: 3;
        bottom: 50px;
        right: -25px;
        width: 260px;
        max-width: 40%;
        height: auto;
        border-radius: 5px;
        -webkit-box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
        box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 20%);
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> ŠKOLSKÉ NOVINY */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.articles-preview {
    display: flex;
    flex-wrap: wrap;
}

.articles-preview a:hover {
    text-decoration: none;
}

.articles-preview .main-article {
    width: 50%;
}

.articles-preview .side-articles {
    width: 50%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
}

.articles-preview article {
    width: 100%;
}

.articles-preview .main-article .article-cover {
    margin-bottom: 25px;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.articles-preview .main-article .article-cover:hover {
    box-shadow: 0 15px 25px 0 rgba(38, 39, 42, .2);
}

.articles-preview .side-articles article {
    display: flex;
    margin-bottom: 25px;
}

.articles-preview .side-articles .article-cover {
    width: 50%;
    height: 0;
    padding-bottom: 28.125%;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.articles-preview .side-articles .article-cover:hover {
    box-shadow: 0 15px 25px 0 rgba(38, 39, 42, .2);
}

.articles-preview .side-articles .article-content {
    padding-left: 25px;
    width: 50%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
}

.articles-preview article figure {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
}

.articles-preview article figure figcaption {
    display: none;
}

.articles-preview article .article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles-preview article time {
    margin: 0;
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--color-gray);
}

.articles-preview article h3 {
    font-family: var(--basic-font);
    font-weight: 600;
    color: var(--color-darkblue);
}

.articles-preview .main-article article h3 {
    margin-bottom: 15px;
}

.articles-preview .side-articles article h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.articles-preview .article-web {
    margin-bottom: 15px;
}

.articles-preview .side-articles .article-web {
    margin-bottom: 5px;
}

.articles-preview .article-web .web-tag {
    padding: 2px 5px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 5px;
}

.articles-preview article p {
    margin: 0px;
    color: var(--color3);
}

.articles-preview .main-article article p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.articles-preview .side-articles article p {
    display: none;
    flex-grow: 1;
    margin: 0;
    height: 0;
    line-height: 1.6rem;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media only screen and (max-width: 60rem) {
    .articles-preview .main-article {
        width: 100%;
    }

    .articles-preview .side-articles {
        width: 100%;
        padding-top: 50px;
        padding-left: 0px;
    }
}

@media only screen and (max-width: 40rem) {
    .articles-preview .side-articles {
        padding-top: 25px;
    }
}

.articles-list {
    display: flex;
    flex-wrap: wrap;
}

.articles-list a:hover {
    text-decoration: none;
}

.articles-list article {
    width: 100%;
}

.articles-list .article-cover {
    margin-bottom: 25px;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.articles-list .article-cover:hover {
    box-shadow: 0 15px 25px 0 rgba(38, 39, 42, .2);
}

.articles-list article figure {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
}

.articles-list article figure figcaption {
    display: none;
}

.articles-list article .article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles-list article time {
    margin: 0;
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--color-gray);
}

.articles-list article h3 {
    margin-bottom: 15px;
    font-family: var(--basic-font);
    font-weight: 600;
    color: var(--color-darkblue);
}

.articles-list .article-web {
    margin-bottom: 15px;
}

.articles-list .article-web .web-tag {
    padding: 2px 5px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 5px;
}

.articles-list article p {
    margin: 0px;
    color: var(--color3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> PRISPEVOK */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.article-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 25px auto;
    padding: 0;
    width: 100%;
}

.article-layout section,
.article-layout aside {
    flex: initial;
    margin: 0;
    padding: 0;
    clear: both;
    overflow: visible;
}

.article-layout section {
    flex: 0 0 70%;
    width: 70%;
    padding: 25px;
}

.article-layout aside {
    flex: 0 0 30%;
    width: 30%;
    margin-top: 25px;
    padding: 25px;
    background: var(--color-white);
}

.article-layout section .article-headline {
    margin-bottom: 25px;
    font-size: .9rem;
}

.article-layout section .article-title {
    color: var(--color-darkblue);
}

.article-layout section time {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px;
    line-height: 20px;
}

.article-layout section .site-tag {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px;
    line-height: 20px;
    color: var(--color-white);
    background: var(--color-green);
    border-radius: 5px;
}

.article-layout section figure {
    margin-bottom: 25px;
}

.article-layout section .article-perex {
    margin-bottom: 25px;
    padding: 0 25px;
    font-weight: 600;
    color: var(--color-gray);
}

.article-layout section .article-gallery {
    margin-bottom: 25px;
    padding: 25px;
    background: var(--color-border);
}

.article-layout section .article-gallery figure {
    display: inline-block;
    margin: 0;
    cursor: pointer;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.article-layout section .article-gallery figure:hover {
    opacity: .8;
}

.article-layout section .article-gallery figure img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.article-layout section .article-content {
    margin-bottom: 25px;
    padding: 0 25px;
}

.article-layout section .article-tags {
    display: block;
    padding: 0 25px;
    clear: both;
    overflow: auto;
}

.article-layout section .article-tags .tag {
    float: left;
    margin-right: 10px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--color1);
    line-height: 1rem;
    text-transform: uppercase;
}

.article-layout section .article-like {
    display: inline-block;
    margin: 0 25px;
    padding: 0;
    border-radius: 40px;
}

.article-layout section .article-like .like-btn {
    margin: 0;
    padding: 5px;
    width: 40px;
    height: 40px;
    background: var(--color-purple);
}

.article-layout section .article-like .like-btn .material-symbols-outlined {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.article-layout section .article-like .like-counts {
    display: inline-block;
    padding: 0 5px 0 15px;
    line-height: 40px;
    color: var(--color6);
}

@media only screen and (max-width:75em) {}

@media only screen and (max-width:60em) {
    .article-layout section {
        flex: 0 0 100%;
        width: 100%;
    }

    .article-layout aside {
        flex: 0 0 100%;
        width: 100%;
    }

    .article-layout section .article-headline {
        margin-bottom: 15px;
        font-size: .85rem;
    }

    .article-layout section figure {
        margin-bottom: 15px;
    }

    .article-layout section .article-perex {
        margin-bottom: 15px;
        padding: 0 0px;
    }

    .article-layout section .article-gallery {
        margin-bottom: 15px;
        padding: 5px;
    }

    .article-layout section .article-content {
        margin-bottom: 15px;
        padding: 0 0px;
    }

    .article-layout section .article-tags {
        padding: 0 15px;
    }
}

@media only screen and (max-width:40em) {}

.article-layout aside article a:hover {
    text-decoration: none;
}

.article-layout aside article {
    margin-bottom: 25px;
}

.article-layout aside .article-headline {
    margin-bottom: 5px;
    font-size: .9rem;
}

.article-layout aside .article-title {
    margin-bottom: 0px;
    font-family: var(--basic-font);
    font-weight: 700;
    color: var(--color-darkblue);
}

.article-layout aside time {
    display: inline-block;
    margin: 0;
    padding: 0px;
    line-height: 20px;
    color: var(--color4);
    text-transform: uppercase;
}

.article-layout aside figure {
    margin-bottom: 15px;
    color: var(--color2);
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.article-layout aside figure:hover {
    box-shadow: 0 15px 25px 0 rgba(38, 39, 42, .2);
}

.article-layout aside .article-perex {
    margin-bottom: 0px;
    padding: 0;
    font-weight: 400;
    color: var(--color3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* >> SWIPER MODAL */
.swiper-modal {
    position: fixed;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    left: 0;
    top: 0px;
    padding: 50px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .7);
    -webkit-transition: .3s;
    transition: .3s;
}

.swiper-modal.modal-opened {
    visibility: visible !important;
    opacity: 1 !important;
}

.swiper-modal .btn-swiper-modal-close {
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: transparent;
}

.swiper-modal .modal-close-btn {
    position: absolute;
    z-index: 101;
    top: 25px;
    right: 25px;
    margin: 0;
    padding: 10px;
    width: auto;
    height: auto;
    background: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
}

.swiper-modal .modal-close-btn .material-symbols-outlined {
    display: block;
    padding: 0px;
    width: 25px;
    height: 25px;
    font-size: 25px;
    color: var(--color-darkblue);
}

.swiper-modal .modal-close-btn:hover,
.modal-close-btn:focus {
    background: rgba(255, 255, 255, 1);
    text-decoration: none;
    cursor: pointer;
}

.swiper-modal .modal-content {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    -webkit-box-shadow: 0px 25px 50px 25px rgb(20 25 48 / 10%);
    box-shadow: 0px 25px 50px 25px rgb(20 25 48 / 10%);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.3s;
    animation-name: animatetop;
    animation-duration: 0.3s;
}

.swiper-modal .swiper {
    width: 100%;
    height: 100%;
}

.swiper-modal .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-modal .swiper-slide img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.swiper-modal .swiper-button-next,
.swiper-button-prev {
    color: var(--color-gray) !important;
}

@media only screen and (max-width:60em) {
    .swiper-modal {
        padding: 25px;
    }

    .swiper-modal .modal-close-btn {
        top: 15px;
        right: 15px;
        padding: 5px;
    }
}

@media only screen and (max-width:40em) {
    .swiper-modal {
        padding: 0px;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> STATISTICS */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

#section-statistics .icon {
    width: 100px;
    height: 100px;
    display: table;
    border: 2px dashed var(--color-yellow);
    border-radius: 5px;
}

#section-statistics .icon ion-icon {
    margin: 30px;
    width: 40px;
    height: 40px;
    color: var(--color-yellow);
}

#section-statistics .single_counter {
    background-color: var(--color-lightgray);
    position: absolute;
    top: 50%;
    left: 85px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> PAGE - Štúdium */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.hobby {
    padding-left: 75px;
}

.hobby .num {
    position: absolute;
    top: -10px;
    left: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-family: var(--header-font);
    color: var(--color-white);
    background: var(--color-orange);
    text-align: center;
}

.hobby h3 {
    color: var(--color-purple);
}

.hobby p {
    margin-bottom: 0px;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> PAGE - Školský klub detí */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.page-skolsky-klub .col-img-1 {
    z-index: 2;
    margin-top: -75%;
    margin-right: 0;
    width: 150%;
    height: auto;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
    box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
}

.page-skolsky-klub .col-img-2 {
    z-index: 3;
    width: 100%;
    height: auto;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
    box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
}

.page-skolsky-klub .col-img-3 {
    z-index: 1;
    margin-bottom: -75%;
    margin-left: -75%;
    width: 150%;
    height: auto;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
    box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
}

@media only screen and (max-width:60em) {
    .page-skolsky-klub .col-img-1 {
        margin-top: -25%;
        width: 100%;
    }

    .page-skolsky-klub .col-img-3 {
        display: none;
    }
}

@media only screen and (max-width:40em) {
    .page-skolsky-klub .col-img-1 {
        display: none;
    }
}

.page-skolsky-klub .card {
    padding: 50px 25px;
    color: white;
    background: var(--color-orange);
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
    box-shadow: 0px 0px 100px 0px rgb(0 0 0 / 40%);
}

.page-skolsky-klub .card .number {
    font-family: var(--header-font);
    font-size: 4rem;
    line-height: 4rem;
}

.page-skolsky-klub .card .teacher {
    margin-top: 25px;
    font-weight: 600;
}

#section-domain .icon {
    width: 100px;
    height: 100px;
    display: table;
    border: 2px dashed var(--color-orange);
    border-radius: 15px;
}

#section-domain .icon ion-icon {
    margin: 30px;
    width: 40px;
    height: 40px;
    color: var(--color-orange);
}

#section-domain .single_counter {
    position: absolute;
    top: 50%;
    left: 85px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    text-align: left;
    background: var(--color-white);
}

#section-activity .num {
    display: inline-block;
    margin: 0 auto 25px auto;
    padding: 0;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    background: var(--color-green);
    border-radius: 50%;
    color: var(--color-white);
    font-family: var(--header-font);
    font-size: 2rem;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> PAGE - TRIEDY */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.triedy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    clear: both;
    overflow: visible;
}

.triedy .trieda-number {
    width: auto;
}

.triedy .trieda-content {
    flex: 1;
    padding: 0 20px;
    text-align: left;
}

.triedy .trieda-options {
    width: auto;
}

.triedy .number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--color-purple);
    color: white;
    font-family: var(--header-font);
    text-align: center;
}

@media only screen and (max-width:40em) {
    .triedy .trieda-options {
        padding-top: 15px;
        width: 100%;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> ŽIACI */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.items-collapse {
    display: block;
    margin-bottom: 5px;
    padding: 25px;
    background: #FFF;
    height: auto;
    overflow: hidden;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.items-collapse ul {
    margin: 0;
    list-style: none;
}

.items-collapse ul li {
    margin-top: 5px;
}

.items-collapse ul li:last-child {
    margin-top: 0px;
}

.items-collapse .item-head {
    display: block;
    cursor: pointer;
}

.items-collapse .item-head h3 {
    margin-bottom: 0px;
    padding-right: 25px;
}

.items-collapse .item-head a {
    color: var(--color1);
}

.items-collapse .item-head .arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 0;
    padding: 0;
    color: var(--color2);
    background: none;
    box-shadow: none;
    text-align: center;
}

.items-collapse .item-head .arrow ion-icon {
    width: 20px;
    height: 20px;
}

.items-collapse .content {
    display: block;
    margin-top: -50px;
    padding-top: 25px;
    visibility: hidden;
    height: 50px;
    border-top: 1px solid rgba(4, 0, 77, .1);
    opacity: 0;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.items-collapse.opened .arrow {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.items-collapse.opened .content {
    display: block;
    margin-top: 25px;
    visibility: visible;
    height: auto;
    opacity: 1;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.items-collapse .content ion-icon {
    margin-right: 5px;
    height: 20px;
    width: 20px;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* >> LOCATION */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

#section-location {
    background-color: var(--color-dark);
    background-image: url(../imgs/bs.jpg);
    background-position: top right;
    background-size: auto;
    background-repeat: no-repeat;
}

#section-location ion-icon {
    margin-bottom: 25px;
    width: 50px;
    height: 50px;
    color: var(--color-white);
}

@import url("./_articles.css");