@font-face {
    font-family: "Borel";
    src: url("/assets/font/borel/borel-regular.ttf");
    font-weight: normal;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: none;
}

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

html,
body {
    box-sizing: border-box;
    font-family: "Borel", Calibri, sans-serif;
}

.main {
    min-height: 100vh;
    background-color: #F6ECF7;
    font-family: "Borel", Calibri, sans-serif;
    padding: 40px 0;
}

.gallery-container,
.gallery,
.main {
    position: relative;
    width: 100%;
}

.gallery {
    padding: 0 50px;
}

.gallery-container:not(:last-child) {
    margin-bottom: 80px;
}

.base-width {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
}

@media screen and (max-width: 768px) {
    .base-width {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .base-width {
        padding: 0 10px;
    }
}

.gallery-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    line-height: 0;
    text-align: center;
    height: auto;
}

.gallery-item img {
    display: inline-block;
    max-width: 100%;
    max-height: calc(100vh - 80px);
}

.slick-arrow {
    position: absolute;
    font-size: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 350ms ease;
}

.slick-arrow:hover {
    background-color: #3a3a3a;
}

.slick-arrow::before {
    font-size: 17px;
    color: #F6ECF7;
}

.slick-arrow.slick-prev {
    left: 0;
}

.slick-arrow.slick-prev::before {
    content: "<";
}

.slick-arrow.slick-next {
    right: 0;
}

.slick-arrow.slick-next::before {
    content: ">";
}

.slick-track {
    display: flex;
}

.slick-dots {
    /*position: absolute;*/
    /*bottom: 0;*/
    text-align: center;
    padding-top: 20px;
    width: calc(100% - 10px);
    margin: 0 -5px -10px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px 10px;
}

.slick-dots li button {
    font-size: 0;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    border: 2px solid #000;
    cursor: pointer;
    outline: none;
    background-color: #000;
    transition: background-color 350ms ease;
}

.slick-dots li.slick-active button {
    background-color: #efefef;
}

.gallery:not(.slick-initialized) .gallery-item:not(:first-child) {
    display: none;
}

h1,
h2 {
    text-align: center;
}

h1 {
    padding: 30px 0 20px;
    font-size: 40px
}

h2 {
    padding: 20px 0 10px;
    font-size: 24px
}
