@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');

html {
    /* overflow-x: hidden; */
}

body {
    margin: 0 auto;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.row {
    margin: 0;
}

li {
    display: inline-block;
}

.text-bold {
    font-weight: 700;
}

.text-right {
    text-align: right;
}

.red {
    color: rgb(255, 0, 0) !important;
}

.overflow-wrapper {
    overflow-x: hidden;
}

.relative {
    position: relative;
}

.over-capacity {
    display: none !important;
}

.show-all-btn {
    margin: 0 auto;
    margin-top: 30px;
    padding: 5px 25px 7px;
    background-color: #0b3d4d;
    border-radius: 25px;
    color: #fff;
    display: block;
    max-width: 200px;
}

.show-all-btn:hover {
    color: #fff;
    background-color: #86d1d6;
}

.categoryImageWrapper {
    margin-top: 40px;
}

.categoryImageWrapper .categoryImage {
    padding: 0;
    border: 5px solid #fff;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    text-align: center;
    height: 200px;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

#go-top {
    background-color: #fbac1b;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    bottom: 85px;
    right: 20px;
    position: fixed;
    height: 50px;
    width: 50px;
    z-index: 1000;
}

#go-top img {
    margin-top: 13px;
    margin-left: 9px;
    width: 65%;
}

.header-bows-left {
    top: 40px;
    position: absolute;
}

.header-bows-right {
    top: 40px;
    right: 0;
    position: absolute;
}

#header {
    padding: 0 !important;
}

#header .row {
    position: relative;
}

#header .inner-wrapper {
    margin: 0 auto;
    height: 220px;
    width: 80%;
}

#header .logo-wrapper {
    padding-top: 35px;
    float: left;
    text-align: right;
    width: 23%;
}

.logo-wrapper a {
    display: block;
}

.logo-wrapper .logo {
    max-width: 210px;
}

#header .menu-wrapper {
    margin-right: 4%;
    float: right;
    position: relative;
    height: 220px;
    width: 72%;
}

.menu-wrapper .facebook-icon {
    margin-top: -1px;
    height: 30px;
    width: 30px;
}

.menu-wrapper .instagram-icon {
    margin-top: 2px;
    height: 31px;
    width: 31px;
}

.menu-wrapper .socials-menu {
    padding: 0;
    list-style-type: none;
    top: 35px;
    position: absolute;
    text-align: right;
    width: 100%;
}

.socials-menu li a {
    padding: 5px 5px;
    display: block;
}

.socials-menu li:last-child a {
    padding-right: 15px;
}

.socials-menu .btn-gallery {
    margin-right: 5px;
    padding: 5px 10px;
    background-color: #0b3c4c;
    border-radius: 25px;
    color: #fff;
    display: block;
    font-size: 12px;
    text-decoration: none;
}

.socials-menu .btn-gallery:hover {
    background-color: #85d9dc;
}

.menu-wrapper .profile-menu {
    padding: 0;
    list-style-type: none;
    top: 75px;
    position: absolute;
    text-align: right;
    width: 100%;
}

.profile-menu .search {
    margin-right: 20px;
    padding: 2px 15px;
    background-color: #d5d7d7;
    border: none;
    border-radius: 25px;
    color: #0b3d4d;
    font-size: 20px;
    font-weight: 300;
    width: 320px;
}

.profile-menu .search::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0b3d4d;
    opacity: 1; /* Firefox */
}

.profile-menu .search:focus {
    border: none;
    outline: none;
}

.profile-menu li a {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #0b3d4d;
    display: block;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}

.profile-menu li:nth-child(2) a {
    padding-left: 5px;
    padding-right: 5px;
}

.profile-menu li:last-child a {
    margin-right: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.profile-menu li a:hover {
    color: #85d9dc;
    text-decoration: none;
}

.menu-wrapper .menu {
    padding: 0;
    list-style-type: none;
    top: 130px;
    position: absolute;
    text-align: right;
    width: 100%;
}

.menu li a {
    padding: 5px 15px;
    color: #0b3d4d;
    display: block;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}

.menu li a:hover {
    color: #85d9dc;
    text-decoration: none;
}

#mobile-nav {
    display: none;
    height: 65px;
}

#menuToggle {
    padding-top: 25px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input
{
    width: 60px;
    height: 40px;
    top: 15px;
    left: 10px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 1010;
}

#menuToggle span
{
    display: flex;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #0b3d4d;
    border-radius: 3px;
    z-index: 1001;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child
{
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #36383F;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
    position: absolute;
    width: 100%;
    height: 620px;
    box-shadow: 0 0 10px #85888C;
    margin: -50px 0 0 -25px;
    padding: 80px 50px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(0, -100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 1000;
}

#menu .logo {
    max-height: 150px;
}

#menu .bows-left {
    top: 500px;
    left: 0px;
    position: absolute;
    max-height: 100px;
}

#menu .bows-right {
    top: 50px;
    right: 0;
    position: absolute;
    max-height: 100px;
}

#menu li
{
    padding: 7px 0;
    text-align: center;
    transition-delay: 2s;
    width: 100%;
}

#menu li a
{
    display: block;
    color: #0b3d4d;
    font-size: 20px;
    text-decoration: none;
}

#menu li a:hover {
    color: #85d9dc;
}

#menuToggle input:checked ~ ul
{
    transform: none;
}

@media (max-width: 1434px) {
    .socials-menu li:last-child a {
        padding-right: 10px;
    }
    .profile-menu li:last-child a {
        margin-right: 5px;
        padding-right: 5px;
    }
    .menu li a {
        padding: 5px 10px;
    }
}

@media (max-width: 1330px) {
    .socials-menu li:last-child a {
        padding-right: 7px;
    }
    .profile-menu li:last-child a {
        margin-right: 2px;
        padding-right: 5px;
    }
    .menu li a {
        padding: 5px 7px;
    }
}

@media (max-width: 1305px) {
    #header .inner-wrapper {
        width: 70%;
    }
    #header .logo-wrapper {
        padding-top: 55px;
        width: 16%;
    }
    .logo-wrapper .logo {
        max-width: 100%;
    }
    #header .menu-wrapper {
        width: 80%;
    }
    .socials-menu li:last-child a {
        padding-right: 5px;
    }
    .profile-menu li:last-child a {
        margin-right: 0;
        padding-right: 5px;
    }
    .menu li a {
        padding: 5px 5px;
    }
}

@media (max-width: 1260px) {
    .header-bows-left {
        max-height: 100px;
    }
    .header-bows-right {
        max-height: 100px;
    }
    #header .inner-wrapper {
        height: 195px;
        width: 75%;
    }
    #header .logo-wrapper {
        padding-top: 35px;
    }
    .menu-wrapper .socials-menu {
        top: 25px;
    }
    .menu-wrapper .profile-menu {
        top: 65px;
    }
    #header .menu-wrapper {
        margin-right: 0;
        height: 165px;
        width: 84%;
    }
    .menu-wrapper .menu {
        top: 115px;
    }
}

@media (max-width: 1125px) {
    .header-bows-left {
        top: 40px;
        max-height: 80px;
    }
    .header-bows-right {
        top: 40px;
        max-height: 80px;
    }
    #header .inner-wrapper {
        height: 165px;
        width: 80%;
    }
    #header .logo-wrapper {
        padding-top: 25px;
        width: 15%;
    }
    .menu-wrapper .socials-menu {
        top: 15px;
    }
    .menu-wrapper .socials-menu a {
        font-size: 18px;
    }
    .socials-menu .btn-gallery {
        font-size: 12px !important;
    }
    .menu-wrapper .profile-menu {
        top: 55px;
    }
    .menu-wrapper .profile-menu a {
        font-size: 18px;
    }
    #header .menu-wrapper {
        margin-right: 0;
        height: 135px;
        width: 85%;
    }
    .menu-wrapper .menu {
        top: 100px;
    }
    .menu-wrapper .menu a {
        font-size: 18px;
    }
}

@media (max-width: 1045px) {
    #header .logo-wrapper {
        padding-top: 35px;
    }
}

@media (max-width: 955px) {
    .menu-wrapper .socials-menu {
        top: 15px;
    }
    .menu-wrapper .socials-menu a {
        font-size: 17px;
    }
    .menu-wrapper .profile-menu {
        top: 55px;
    }
    .menu-wrapper .profile-menu a {
        font-size: 17px;
    }
    .menu-wrapper .menu {
        top: 100px;
    }
    .menu-wrapper .menu a {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .header-bows-left {
        display: none;
    }
    .header-bows-right {
        display: none;
    }
    #header {
        display: none;
    }
    #mobile-nav {
        display: block;
    }
}

@media (max-width: 410px) {
    #menu
    {
        padding: 150px 50px;
        height: 690px;
    }
    #menu .bows-left {
        top: 575px;
    }
}

#banner {
    overflow: hidden;
}

#banner-mobile {
    margin-top: -65px;
    display: none;
    overflow: hidden;
}

#banner h1 {
    margin-left: 33%;
    padding-top: 120px;
    color: #0b3c4c;
    font-size: 48px;
    font-weight: 700;
}

#banner p {
    margin-left: 33%;
    color: #000;
    line-height: 1.1;
    font-size: 30px;
    font-weight: 300;
}

#banner .btn {
    margin-top: 10px;
    margin-left: 33%;
    padding-top: 4px;
    padding-bottom: 6px;
    padding-left: 35px;
    padding-right: 35px;
    background-color: #0c3d4d;
    border-radius: 25px;
    color: #fff;
    font-size: 20px;
}

#banner-mobile h1 {
    padding-top: 30px;
    color: #0b3c4c;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

#banner-mobile p {
    color: #000;
    line-height: 1.1;
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    width: 100%;
}

#banner-mobile .banner-text {
    color: #686868;
    font-size: 22px;
    font-weight: normal;
    text-align: justify;
}

#banner-mobile #banner-text-mobile {
    display: none;
}

#banner-mobile .btn {
    margin-top: 10px;
    padding-top: 4px;
    padding-bottom: 6px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #0c3d4d;
    border-radius: 25px;
    color: #fff;
    font-size: 20px;
}

#banner .btn:hover, #banner-mobile .btn:hover {
    background-color: #85d9dc;
}

#banner-mobile .socials {
    margin-top: 65px;
    width: 30px;
}

#banner-mobile .socials:first-child {
    margin-right: 5px;
}

#banner-mobile .socials:last-child {
    margin-left: 5px;
}

#banner-mobile .btn-profiles {
    margin-top: 25px;
    color: #0b3d4d;
    display: block;
    font-size: 18px;
    text-decoration: none;
}

#banner-mobile .btn-profiles:hover {
    color: #85d9dc;
}

#banner-mobile .logo {
    margin-top: 25px;
    max-height: 150px;
}

#banner-mobile .paws-wrapper {
    position: relative;
    width: 100%;
}

#banner-mobile #banner-background {
    right: -50px;
    position: absolute;
    height: 190px;
    z-index: 0;
}

#banner-mobile #banner-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 120px;
    z-index: 100;
}

#banner-mobile .paws-wrapper img {
    position: absolute;
    height: 30px;
}

#banner-mobile .paws-wrapper .paw-winter {
    top: 10px;
    right: -115px;
    opacity: 0.9;
    z-index: 1;
}

#banner-mobile .paws-wrapper .paw-camp {
    top: 45px;
    right: -115px;
    opacity: 0.9;
    z-index: 1;
}

#banner-mobile .paws-wrapper .paw-outdoor {
    top: 80px;
    right: -115px;
    opacity: 0.9;
    z-index: 1;
}

#banner-mobile .paws-wrapper .paw-sport {
    top: 115px;
    right: -115px;
    opacity: 0.9;
    z-index: 1;
}

#banner-mobile .paw-mobile {
    margin-top: 50px;
    margin-left: 55%;
    height: 120px;
}

#banner .paws-wrapper, #banner-section .paws-wrapper {
    position: relative;
    height: 500px;
    overflow: visible;
}

#banner #banner-logo, #banner-section #banner-logo {
    top: 120px;
    right: 165px;
    position: absolute;
    height: 230px;
    z-index: 100;
}

#banner #banner-background, #banner-section #banner-background {
    top: -30px;
    right: -130px;
    position: absolute;
    z-index: 0;
    max-height: 550px;
}

#banner .paws-wrapper .paw-winter, #banner-section .paws-wrapper .paw-winter {
    top: 65px;
    right: -160px;
    position: absolute;
    transition: opacity;
    transition-duration: 0.5s;
    opacity: 0.90;
    max-height: 75px;
    z-index: 1;
}

#banner .paws-wrapper .paw-camp, #banner-section .paws-wrapper .paw-camp {
    top: 150px;
    right: -160px;
    position: absolute;
    transition: opacity;
    transition-duration: 0.5s;
    opacity: 0.90;
    max-height: 75px;
    z-index: 1;
}

#banner .paws-wrapper .paw-outdoor, #banner-section .paws-wrapper .paw-outdoor {
    top: 235px;
    right: -160px;
    position: absolute;
    transition: opacity;
    transition-duration: 0.5s;
    opacity: 0.90;
    max-height: 75px;
    z-index: 1;
}

#banner .paws-wrapper .paw-sport, #banner-section .paws-wrapper .paw-sport {
    top: 320px;
    right: -160px;
    position: absolute;
    transition: opacity;
    transition-duration: 0.5s;
    opacity: 0.90;
    max-height: 75px;
    z-index: 1;
}

@media (max-width: 1401px) {
    #banner h1 {
        margin-left: 20%;
    }
    #banner p {
        margin-left: 20%;
    }
    #banner .btn {
        margin-left: 20%;
    }
    .categoryImageWrapper .categoryImage {
        height: 170px;
    }
}

@media (max-width: 1301px) {
    #banner h1 {
        margin-left: 0;
    }
    #banner p {
        margin-left: 0;
    }
    #banner .btn {
        margin-left: 0;
    }
}

@media (max-width: 1200px) {
    .categoryImageWrapper .categoryImage {
        height: 150px;
    }
}

@media (max-width: 992px) {
    .categoryImageWrapper .categoryImage {
        background-size: 90%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .categoryImageWrapper .categoryImage {
        height: 300px;
    }
}

@media (max-width: 530px) {
    .categoryImageWrapper .categoryImage {
        height: 250px;
    }
}

@media (max-width: 420px) {
    .categoryImageWrapper .categoryImage {
        height: 200px;
    }
}

@media (min-width: 1800px) {
    #banner .paws-wrapper .paw-winter, #banner-section .paws-wrapper .paw-winter {
        right: -70px;
    }
    #banner .paws-wrapper .paw-camp, #banner-section .paws-wrapper .paw-camp {
        right: -70px;
    }
    #banner .paws-wrapper .paw-outdoor, #banner-section .paws-wrapper .paw-outdoor {
        right: -70px;
    }
    #banner .paws-wrapper .paw-sport, #banner-section .paws-wrapper .paw-sport {
        right: -70px;
    }
}

@media (min-width: 1660px) {
    #banner .paws-wrapper .paw-winter, #banner-section .paws-wrapper .paw-winter {
        right: -100px;
    }
    #banner .paws-wrapper .paw-camp, #banner-section .paws-wrapper .paw-camp {
        right: -100px;
    }
    #banner .paws-wrapper .paw-outdoor, #banner-section .paws-wrapper .paw-outdoor {
        right: -100px;
    }
    #banner .paws-wrapper .paw-sport, #banner-section .paws-wrapper .paw-sport {
        right: -100px;
    }
}

@media (max-width: 1185px) {
    #banner #banner-logo {
        right: 130px;
    }
    #banner #banner-background {
        right: -170px;
    }
    #banner .paws-wrapper .paw-winter, #banner-section .paws-wrapper .paw-winter {
        right: -260px;
    }
    #banner .paws-wrapper .paw-camp, #banner-section .paws-wrapper .paw-camp {
        right: -260px;
    }
    #banner .paws-wrapper .paw-outdoor, #banner-section .paws-wrapper .paw-outdoor {
        right: -260px;
    }
    #banner .paws-wrapper .paw-sport, #banner-section .paws-wrapper .paw-sport {
        right: -260px;
    }
}

@media (max-width: 1090px) {
    #banner #banner-logo {
        right: 80px;
    }
    #banner #banner-background {
        right: -225px;
    }
    #banner .paws-wrapper .paw-winter, #banner-section .paws-wrapper .paw-winter {
        right: -360px;
    }
    #banner .paws-wrapper .paw-camp, #banner-section .paws-wrapper .paw-camp {
        right: -360px;
    }
    #banner .paws-wrapper .paw-outdoor, #banner-section .paws-wrapper .paw-outdoor {
        right: -360px;
    }
    #banner .paws-wrapper .paw-sport, #banner-section .paws-wrapper .paw-sport {
        right: -360px;
    }
}

@media (max-width: 981px) {
    #banner h1 {
        font-size: 43px;
    }
    #banner p {
        font-size: 25px;
    }
    #banner .btn {
        font-size: 15px;
    }
    #banner .paws-wrapper {
        height: 450px;
    }
    #banner #banner-logo {
        top: 110px;
        right: auto;
        left: 120px;
        height: 220px;
    }
    #banner #banner-background {
        top: -30px;
        right: auto;
        left: 30px;
        max-height: 490px;
    }
    #banner .paws-wrapper .paw-winter, #banner-section .paws-wrapper .paw-winter {
        right: -270px;
        max-height: 65px;
    }
    #banner .paws-wrapper .paw-camp, #banner-section .paws-wrapper .paw-camp {
        top: 137px;
        right: -270px;
        max-height: 65px;
    }
    #banner .paws-wrapper .paw-outdoor, #banner-section .paws-wrapper .paw-outdoor {
        top: 210px;
        right: -270px;
        max-height: 65px;
    }
    #banner .paws-wrapper .paw-sport, #banner-section .paws-wrapper .paw-sport {
        top: 283px;
        right: -270px;
        max-height: 65px;
    }
}

@media (max-width: 900px) {
    #banner {
        display: none;
    }
    #banner-mobile {
        display: block;
    }
}

@media (max-width: 730px) {
    #banner-mobile #banner-background {
        right: -80px;
        height: 185px;
    }
    #banner-mobile #banner-logo {
        top: 30px;
        right: 0;
        height: 100px;
    }
    #banner-mobile .paws-wrapper .paw-winter, #banner-section .paws-wrapper .paw-winter {
        right: -170px;
    }
    #banner-mobile .paws-wrapper .paw-camp, #banner-section .paws-wrapper .paw-camp {
        right: -170px;
    }
    #banner-mobile .paws-wrapper .paw-outdoor, #banner-section .paws-wrapper .paw-outdoor {
        right: -170px;
    }
    #banner-mobile .paws-wrapper .paw-sport, #banner-section .paws-wrapper .paw-sport {
        right: -170px;
    }
}

@media (max-width: 590px) {
    #banner-mobile .socials {
        margin-top: 120px;
    }
    #banner-mobile .paw-mobile {
        height: 100px;
    }
}

@media (max-width: 550px) {
    #banner-mobile .socials {
        margin-top: 160px;
    }
    #banner-mobile #banner-text-normal {
        display: none;
    }
    #banner-mobile #banner-text-mobile {
        display: block;
    }
}

@media (max-width: 460px) {
    #banner-mobile .socials {
        margin-top: 170px;
    }
    #banner-mobile h1 {
        font-size: 43px;
    }
    #banner-mobile p {
        font-size: 25px;
    }
    #banner-mobile .btn {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    #banner-mobile .paw-mobile {
        height: 80px;
    }
}

@media (max-width: 390px) {
    #banner-mobile h1 {
        font-size: 38px;
    }
    #banner-mobile p {
        font-size: 20px;
    }
    #banner-mobile .btn {
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    #banner-mobile h1 {
        font-size: 30px;
    }
}

.section-header {
    margin-top: 80px;
    margin-bottom: 15px;
    color: #0c3d4d;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.section-text {
    color: #0b3d4d;
    font-size: 22px;
    text-align: center;
    width: 100%;
}

@media (max-width: 501px) {
    .section-header {
        margin-top: 50px;
    }
}

@media (max-width: 460px) {
    .section-text {
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .section-header {
        font-size: 30px;
    }
    .section-text {
        font-size: 18px;
    }
}

@media (max-width: 320px) {
    .section-header {
        font-size: 28px;
    }
    .section-text {
        font-size: 16px;
    }
}

#offer {
    overflow: hidden;
}

#offer .inner-wrapper {
    position: relative;
}

#offer .bows-left {
    bottom: 0;
    left: 20px;
    position: absolute;
}

#offer .bows-right {
    top: 0;
    right: 20px;
    position: absolute;
}

.carousel button img {
    max-height: 50px;
}

#carousel .carousel-control-prev, #carouselMedium .carousel-control-prev, #carouselSmall .carousel-control-prev {
    left: 40px;
    width: auto;
}

#carousel .carousel-control-next, #carouselMedium .carousel-control-next, #carouselSmall .carousel-control-next {
    right: 40px;
    width: auto;
}

#carousel .carousel-inner, #carouselMedium .carousel-inner, #carouselSmall .carousel-inner {
    margin: 0 auto;
    padding: 55px 20px;
    width: 85%;
}

#carousel .carousel-item, #carouselMedium .carousel-item, #carouselSmall .carousel-item {
    text-align: center;
}

.card-wrapper {
    padding: 0 15px;
    margin-bottom: 20px;
    border: none;
    display: inline-block;
    height: 470px;
    width: 33%;
}

.card {
    border: none;
    border-radius: 15px;
    filter: drop-shadow(13.908px 5.619px 25.5px rgba(12,61,77,0.16));
    overflow: hidden;
    position: relative;
    height: 470px;
}

.card .header-wrapper {
    position: relative;
    height: 230px;
    width: 100%;
}

.card .content-wrapper {
    padding-top: 10px;
}

.card .content-wrapper .value-wrapper {
    margin-bottom: 5px;
    padding: 0 5px;
    color: #0b3d4d;
    display: block;
    font-size: 15px;
    text-align: left;
    width: 100%;
}

.card .content-wrapper .value-wrapper span {
    display: block;
    float: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 83%;
}

.card .buttons-wrapper {
    bottom: 20px;
    position: absolute;
    width: 100%;
}

.card .buttons-wrapper a, .card .buttons-wrapper button {
    padding-top: 5px;
    padding-bottom: 7px;
    border: none;
    border-radius: 25px;
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.card .buttons-wrapper .btn-more-info {
    background-color: #0b3d4d;
    color: #fff;
}

.card .buttons-wrapper .btn-app {
    background-color: #fec76f;
    color: #0b3d4d;
}

.card .buttons-wrapper a:hover, .card .buttons-wrapper button:hover {
    background-color: #86d1d6;
    cursor: pointer;
}

.card .buttons-advanced-wrapper {
    background-color: #ffffff;
    position: absolute;
    bottom: -225px;
    transition: bottom;
    transition-duration: .5s;
    height: 210px;
}

.card .buttons-advanced-wrapper-visible {
    background-color: #ffffff;
    position: absolute;
    bottom: -21px;
    transition: bottom;
    transition-duration: .5s;
    height: 210px;
}

.card .buttons-advanced-wrapper  .col-12:first-child, .card .buttons-advanced-wrapper-visible .col-12:first-child {
    margin-top: 40px;
}

.card .buttons-advanced-wrapper  .col-12, .card .buttons-advanced-wrapper-visible .col-12 {
    margin-top: 20px;
}

.no-actions-text {
    margin-top: 15px;
    color: #686868;
    font-size: 20px;
    text-align: center;
    width: 100%;
}

#carouselMedium, #carouselSmall {
    display: none;
}

@media (max-width: 1401px) {
    #carousel .carousel-control-prev, #carouselMedium .carousel-control-prev, #carouselSmall .carousel-control-prev {
        left: -20px;
    }
    #carousel .carousel-control-next, #carouselMedium .carousel-control-next, #carouselSmall .carousel-control-next {
        right: -20px;
    }
    #carousel .carousel-inner, #carouselMedium .carousel-inner, #carouselSmall .carousel-inner {
        width: 90%;
    }
    .card-wrapper {
        margin-bottom: 40px;
        height: 420px;
    }
    .card {
        height: 435px;
    }
    .card .content-wrapper {
        margin-top: -20px;
        padding-top: 0;
    }
    .card .buttons-advanced-wrapper-visible {
        bottom: 12px;
        height: 175px;
    }
}

@media (max-width: 1201px) {
    #carousel .carousel-control-prev, #carouselMedium .carousel-control-prev, #carouselSmall .carousel-control-prev {
        left: -10px;
    }
    #carousel .carousel-control-next, #carouselMedium .carousel-control-next, #carouselSmall .carousel-control-next {
        right: -10px;
    }
    #carousel .carousel-inner, #carouselMedium .carousel-inner, #carouselSmall .carousel-inner {
        width: 100%;
    }
}

@media (max-width: 991px) {
    #carousel {
        display: none;
    }
    #carouselMedium {
        display: block;
    }
    #carousel .carousel-control-prev, #carouselMedium .carousel-control-prev, #carouselSmall .carousel-control-prev {
        left: -20px;
    }
    #carousel .carousel-control-next, #carouselMedium .carousel-control-next, #carouselSmall .carousel-control-next {
        right: -20px;
    }
    .card-wrapper {
        width: 48%;
    }
    #carousel .carousel-inner .carousel-item-end.active,
    #carousel .carousel-inner .carousel-item-next, #carouselMedium .carousel-inner .carousel-item-end.active,
    #carouselMedium .carousel-inner .carousel-item-next, #carouselSmall .carousel-inner .carousel-item-end.active,
    #carouselSmall .carousel-inner .carousel-item-next {
        transform: translateX(48%);
    }
    #carousel .carousel-inner .carousel-item-start.active,
    #carousel .carousel-inner .carousel-item-prev, #carouselMedium .carousel-inner .carousel-item-start.active,
    #carouselMedium .carousel-inner .carousel-item-prev, #carouselSmall .carousel-inner .carousel-item-start.active,
    #carouselSmall .carousel-inner .carousel-item-prev {
        transform: translateX(-48%);
    }
}

@media (max-width: 768px) {
    #carouselMedium {
        display: none;
    }
    #carouselSmall {
        display: block;
    }
    #carousel .carousel-control-prev, #carouselMedium .carousel-control-prev, #carouselSmall .carousel-control-prev {
        left: 0;
    }
    #carousel .carousel-control-next, #carouselMedium .carousel-control-next, #carouselSmall .carousel-control-next {
        right: 0;
    }
    .card-wrapper {
        height: 450px;
        width: 75%;
    }
    .card {
        height: 450px;
    }
    .card .content-wrapper {
        margin-top: 0;
    }
    #carousel .carousel-inner .carousel-item-end.active,
    #carousel .carousel-inner .carousel-item-next, #carouselMedium .carousel-inner .carousel-item-end.active,
    #carouselMedium .carousel-inner .carousel-item-next, #carouselSmall .carousel-inner .carousel-item-end.active,
    #carouselSmall .carousel-inner .carousel-item-next {
        transform: translateX(75%);
    }
    #carousel .carousel-inner .carousel-item-start.active,
    #carousel .carousel-inner .carousel-item-prev, #carouselMedium .carousel-inner .carousel-item-start.active,
    #carouselMedium .carousel-inner .carousel-item-prev, #carouselSmall .carousel-inner .carousel-item-start.active,
    #carouselSmall .carousel-inner .carousel-item-prev {
        transform: translateX(-75%);
    }
    .card .buttons-advanced-wrapper-visible {
        bottom: -10px;
        height: 190px;
    }
}

@media (max-width: 501px) {
    #offer {
        padding-bottom: 50px;
    }
    #offer .bows-left {
        top: 160px;
        left: -40px;
    }
    #offer .bows-right {
        top: 160px;
        right: -40px;
    }
    #carousel button {
        top: auto;
        bottom: -20px;
    }
    #carousel .carousel-control-prev, #carouselMedium .carousel-control-prev, #carouselSmall .carousel-control-prev {
        top: auto;
        bottom: -20px;
        left: 130px;
    }
    #carousel .carousel-control-next, #carouselMedium .carousel-control-next, #carouselSmall .carousel-control-next {
        top: auto;
        bottom: -20px;
        right: 130px;
    }
    #carousel .carousel-inner, #carouselMedium .carousel-inner, #carouselSmall .carousel-inner {
        padding-top: 20px;
    }
    .card-wrapper {
        width: 90%;
    }
    #carousel .carousel-inner .carousel-item-end.active,
    #carousel .carousel-inner .carousel-item-next, #carouselMedium .carousel-inner .carousel-item-end.active,
    #carouselMedium .carousel-inner .carousel-item-next, #carouselSmall .carousel-inner .carousel-item-end.active,
    #carouselSmall .carousel-inner .carousel-item-next {
        transform: translateX(90%);
    }
    #carousel .carousel-inner .carousel-item-start.active,
    #carousel .carousel-inner .carousel-item-prev, #carouselMedium .carousel-inner .carousel-item-start.active,
    #carouselMedium .carousel-inner .carousel-item-prev, #carouselSmall .carousel-inner .carousel-item-start.active,
    #carouselSmall .carousel-inner .carousel-item-prev {
        transform: translateX(-90%);
    }
}

@media (max-width: 461px) {
    .card-wrapper {
        width: 98%;
    }
    #carousel .carousel-inner .carousel-item-end.active,
    #carousel .carousel-inner .carousel-item-next, #carouselMedium .carousel-inner .carousel-item-end.active,
    #carouselMedium .carousel-inner .carousel-item-next, #carouselSmall .carousel-inner .carousel-item-end.active,
    #carouselSmall .carousel-inner .carousel-item-next {
        transform: translateX(98%);
    }
    #carousel .carousel-inner .carousel-item-start.active,
    #carousel .carousel-inner .carousel-item-prev, #carouselMedium .carousel-inner .carousel-item-start.active,
    #carouselMedium .carousel-inner .carousel-item-prev, #carouselSmall .carousel-inner .carousel-item-start.active,
    #carouselSmall .carousel-inner .carousel-item-prev {
        transform: translateX(-98%);
    }
}

@media (max-width: 421px) {
    #carousel .carousel-control-prev, #carouselMedium .carousel-control-prev, #carouselSmall .carousel-control-prev {
        left: 100px;
    }
    #carousel .carousel-control-next, #carouselMedium .carousel-control-next, #carouselSmall .carousel-control-next {
        right: 100px;
    }
    .card-wrapper {
        height: 425px;
    }
    .card {
        height: 435px;
    }
    .card .content-wrapper {
        margin-top: -20px;
    }
}

@media (max-width: 401px) {
    .card-wrapper {
        height: 420px;
    }
    .card {
        height: 425px;
    }
    .card .content-wrapper {
        margin-top: -35px;
    }
}

@media (max-width: 366px) {
    .card-wrapper {
        height: 400px;
    }
    .card {
        height: 400px;
    }
    .card .content-wrapper {
        margin-top: -50px;
    }
    .card .content-wrapper .value-wrapper span {
        max-width: 75%;
    }
}

@media (max-width: 336px) {
    .card .content-wrapper {
        margin-top: -70px;
    }
    .card .buttons-advanced-wrapper-visible {
        bottom: 12px;
        height: 200px;
    }
}

@media (min-width: 992px) {
    #carousel .carousel-inner .carousel-item-end.active,
    #carousel .carousel-inner .carousel-item-next, #carouselMedium .carousel-inner .carousel-item-end.active,
    #carouselMedium .carousel-inner .carousel-item-next, #carouselSmall .carousel-inner .carousel-item-end.active,
    #carouselSmall .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }
    #carousel .carousel-inner .carousel-item-start.active,
    #carousel .carousel-inner .carousel-item-prev, #carouselMedium .carousel-inner .carousel-item-start.active,
    #carouselMedium .carousel-inner .carousel-item-prev, #carouselSmall .carousel-inner .carousel-item-start.active,
    #carouselSmall .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
}

#carousel .carousel-inner .carousel-item-end,
#carousel .carousel-inner .carousel-item-start, #carouselMedium .carousel-inner .carousel-item-end,
#carouselMedium .carousel-inner .carousel-item-start, #carouselSmall .carousel-inner .carousel-item-end,
#carouselSmall .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#magazine .btn {
    margin: 0 auto;
    margin-top: 30px;
    padding-top: 5px;
    padding-bottom: 7px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #0b3d4d;
    border-radius: 25px;
    color: #fff;
    display: block;
    max-width: 200px;
}

#magazine .btn:hover {
    background-color: #86d1d6;
}

#magazine .magazine-inner-mobile {
    display: none;
}

#magazine .magazine-item {
    margin-top: 25px;
}

#magazine .hideArticle {
    display: none;
}

#magazine .search {
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 70%;
}

#magazine .search input {
    padding: 10px 25px;
    background-color: #d3d3d3;
    border: none;
    border-radius: 48px;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    width: 100%;
}

#magazine .search input::placeholder {
    color: #fff;
}

#magazine .search input:focus {
    border: none;
    outline: none;
}

#magazine .search button {
    display: none;
}

#magazine .magazine-header {
    margin-top: 40px;
    margin-bottom: 30px;
}

#magazine h3 {
    padding-top: 5px;
    color: #0b3d4d;
}

#magazine .calendar-control {
    cursor: pointer;
}

#magazine .calendar-control img {
    height: 45px;
}

.magazine-item .image-wrapper {
    position: relative;
    text-align: right;
    height: 250px;
}

.magazine-item .cover-odd {
    margin-left: 210px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    filter: drop-shadow(13.908px 5.619px 25.5px rgba(12,61,77,0.16));
    height: 220px;
    width: 220px;
    z-index: 10;
}

.magazine-item .cover-even {
    margin-left: 195px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    filter: drop-shadow(13.908px 5.619px 25.5px rgba(12,61,77,0.16));
    height: 220px;
    width: 220px;
    z-index: 10;
}

.magazine-item .bows-left {
    top: 50px;
    left: 90px;
    position: absolute;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    z-index: 0;
}

.magazine-item .bows-right {
    top: 40px;
    right: 0;
    position: absolute;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    z-index: 0;
}

.magazine-item .content-wrapper {
    height: 250px;
}

.magazine-item h2 {
    color: #0b3d4d;
    font-size: 40px;
}

.magazine-item span {
    font-size: 12px;
}

.magazine-item p {
    margin-top: 10px;
    color: #0b3d4d;
    font-size: 18px;
}

.magazine-item p a {
    color: #fe0718;
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
}

.magazine-item p a:hover {
    text-decoration: underline;
}

#magazine .btn-load-next {
    cursor: pointer;
}

#magazine .btn-load-next img {
    margin-top: 40px;
    transform: rotate(-90deg);
    height: 50px;
}

#magazine .btn-prev-month {
    margin-top: 40px;
    color: #0b3d4d;
    display: block;
    font-size: 18px;
    text-decoration: none;
}

#magazine .btn-prev-month:hover {
    color: #85d9dc;
}

#carouselMagazine button {
    top: auto;
    bottom: -70px;
}
#carouselMagazine .carousel-control-prev {
    left: 130px;
}
#carouselMagazine .carousel-control-next {
    right: 130px;
}

.magazine-inner-mobile .carousel-item {
    margin-top: 30px;
    padding-top: 30px;
    filter: drop-shadow(0px 9px 16px rgba(12,61,77,0.31));
    width: 100%;
}

.magazine-inner-mobile .carousel-item .image-wrapper {
    position: relative;
    height: 200px;
}

.magazine-inner-mobile .carousel-item .cover {
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    left: 0;
    right: 0;
    position: absolute;
    height: 200px;
    width: 200px;
    z-index: 10;
}

.magazine-inner-mobile .carousel-item .bows-left {
    top: 30px;
    left: 95px;
    position: absolute;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    z-index: 0;
}

.magazine-inner-mobile .carousel-item .bows-right {
    top: 30px;
    right: 100px;
    position: absolute;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    z-index: 0;
}

.magazine-inner-mobile .carousel-item h2 {
    margin-top: 15px;
    color: #0b3d4d;
    font-size: 30px;
    text-align: center;
    width: 100%;
}

.magazine-inner-mobile .carousel-item span {
    font-size: 12px;
}

.magazine-inner-mobile .carousel-item p {
    margin-top: 10px;
    padding: 0 20px;
    color: #0b3d4d;
    font-size: 18px;
}

.magazine-inner-mobile .carousel-item p a {
    padding-top: 10px;
    color: #fe0718;
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.magazine-inner-mobile .carousel-item p a:hover {
    text-decoration: underline;
}

@media (max-width: 1399px) {
    .magazine-item .cover-odd {
        margin-left: 140px;
    }
    .magazine-item .cover-even {
        margin-left: 135px;
    }
    .magazine-item .bows-left {
        left: 30px;
    }
}

@media (max-width: 1201px) {
    .magazine-item .cover-odd {
        margin-left: 65px;
    }
    .magazine-item .cover-even {
        margin-left: 60px;
    }
    .magazine-item .bows-left {
        left: -50px;
    }
}

@media (max-width: 1060px) {
    .magazine-item .bows-left {
        left: -20px;
    }
}

@media (max-width: 992px) {
    #magazine {
        padding-bottom: 50px;
    }
    #magazine .search {
        width: 100%;
    }
    .magazine-inner {
        display: none;
    }
    .magazine-inner-mobile {
        display: block !important;
    }
    #magazine .magazine-inner-mobile .btn-prev-month {
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .magazine-inner-mobile .carousel-item .bows-left {
        left: 5px;
    }

    .magazine-inner-mobile .carousel-item .bows-right {
        right: 10px;
    }
}

@media (max-width: 501px) {
    #carouselMagazine .carousel-control-prev {
        left: 130px;
    }
    #carouselMagazine .carousel-control-next {
        right: 130px;
    }
    .magazine-inner-mobile .carousel-item .bows-left {
        left: 50px;
    }
    .magazine-inner-mobile .carousel-item .bows-right {
        right: 50px;
    }
}

@media (max-width: 451px) {
    .magazine-inner-mobile .carousel-item .bows-left {
        left: 10px;
    }
    .magazine-inner-mobile .carousel-item .bows-right {
        right: 10px;
    }
}

@media (max-width: 421px) {
    #carouselMagazine .carousel-control-prev {
        left: 100px;
    }
    #carouselMagazine .carousel-control-next {
        right: 100px;
    }
}

@media (max-width: 411px) {
    .magazine-inner-mobile .carousel-item .bows-left {
        left: 0;
    }
    .magazine-inner-mobile .carousel-item .bows-right {
        right: 0;
    }
}

#calendar .calendar-header {
    margin-top: 40px;
    margin-bottom: 30px;
}

#calendar h3 {
    padding-top: 5px;
    color: #0b3d4d;
}

#calendar .calendar-control {
    cursor: pointer;
}

#calendar .calendar-control img {
    height: 45px;
}

#calendar .outer-wrapper {
    position: relative;
}

#calendar .outer-wrapper .bows-left {
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    left: -17px;
    position: absolute;
    transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
}

#calendar .outer-wrapper .bows-right {
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    right: -17px;
    position: absolute;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

#calendar .calendar-wrapper {
    margin: 0 auto;
    padding-bottom: 28px;
    background-color: #fff;
    border-radius: 50px;
    filter: drop-shadow(8.345px 3.371px 16px rgba(12,61,77,0.31));
    width: 75%;
}

#calendar .calendar-wrapper ul {
    margin: 0 auto;
    padding: 0;
    width: 90%;
}

#calendar .calendar-wrapper ul li {
    margin: 0 auto;
    padding: 12px 0;
    color: #0b3d4d;
    font-size: 25px;
    text-align: center;
    width: 13.9%;
}

#calendar .calendar-wrapper .days-header li {
    padding: 40px 0;
    font-size: 28px;
    font-weight: 700;
}

#calendar .calendar-wrapper a {
    margin: 0 auto;
    border-radius: 50%;
    color: #0b3d4d;
    display: block;
    text-decoration: none;
    height: 40%;
    width: 33%;
}

#calendar .calendar-wrapper a:hover {
    border-radius: 25%;
}

#calendar .winter {
    background-color: #c8cdce;
}

#calendar .camp {
    background-color: #fccd78;
}

#calendar .outdoor {
    background-color: #85d9dd;
}

#calendar .sport {
    background-color: #df7277;
}

#calendar .legend {
    margin: 0 auto;
    margin-top: 40px;
    width: 75%;
}

#calendar .legend p {
    color: #0b3d4d;
    line-height: 2.6;
    font-size: 18px;
    height: 50px;
}

#calendar .legend span {
    margin-right: 20px;
    border-radius: 50%;
    display: block;
    float: left;
    height: 50px;
    width: 50px;
}

@media (max-width: 1401px) {
    #calendar .outer-wrapper .bows-left {
        left: -95px;
    }
    #calendar .outer-wrapper .bows-right {
        right: -95px;
    }
    #calendar .calendar-wrapper {
        width: 85%;
    }
    #calendar .legend {
        width: 86%;
    }
}

@media (max-width: 1331px) {
    #calendar .outer-wrapper .bows-left {
        left: -40px;
    }
    #calendar .outer-wrapper .bows-right {
        right: -40px;
    }
}

@media (max-width: 1201px) {
    #calendar .calendar-control img {
        height: 35px;
    }
    #calendar h3 {
        font-size: 22px;
    }
    #calendar .calendar-wrapper {
        width: 90%;
    }
    #calendar .calendar-wrapper ul {
        width: 100%;
    }
    #calendar .legend {
        width: 100%;
    }
    #calendar .legend p {
        line-height: 2.8;
        font-size: 16px;
    }
    #calendar .legend span {
        margin-right: 10px;
    }
}

@media (max-width: 1025px) {
    #calendar .outer-wrapper .bows-left {
        left: -20px;
    }
    #calendar .outer-wrapper .bows-right {
        right: -20px;
    }
}

@media (max-width: 992px) {
    #calendar .outer-wrapper .bows-left {
        left: -80px;
    }
    #calendar .outer-wrapper .bows-right {
        right: -80px;
    }
    #calendar .calendar-wrapper {
        width: 100%;
    }
    #calendar .calendar-wrapper ul li {
        width: 13.7%;
    }
    #calendar .calendar-wrapper a {
        height: 40%;
        width: 40%;
    }
    #calendar .legend p {
        line-height: 1.6;
        font-size: 15px;
    }
    #calendar .legend span {
        margin-right: 5px;
        height: 25px;
        width: 25px;
    }
}

@media (max-width: 881px) {
    #calendar .outer-wrapper .bows-left {
        left: -55px;
    }
    #calendar .outer-wrapper .bows-right {
        right: -55px;
    }
}

@media (max-width: 820px) {
    #calendar .outer-wrapper .bows-left {
        display: none;
    }
    #calendar .outer-wrapper .bows-right {
        display: none;
    }
}

@media (max-width: 768px) {
    #calendar {
        margin-bottom: 40px;
        max-width: initial;
    }
    #calendar .legend {
        display: none;
    }
}

@media (max-width: 650px) {
    #calendar .calendar-wrapper a {
        height: 50%;
        width: 50%;
    }
}

@media (max-width: 585px) {
    #calendar .calendar-wrapper ul li {
        width: 13.6%;
    }
}

@media (max-width: 510px) {
    #calendar {
        padding: 0;
    }
    #calendar .outer-wrapper {
        padding: 0;
    }
    #calendar .calendar-wrapper {
        padding-bottom: 8px;
        border-radius: 0;
        filter: none;
    }
    #calendar .calendar-wrapper .days-header li {
        padding: 20px 0;
        font-size: 22px;
    }
    #calendar .calendar-wrapper ul li {
        font-size: 22px;
    }
    #calendar .calendar-wrapper a {
        font-size: 22px;
        width: 55%;
    }
}

@media (max-width: 460px) {
    #calendar .calendar-wrapper ul li {
        width: 13.5%;
    }
}

@media (max-width: 401px) {
    #calendar .calendar-wrapper ul li {
        width: 13.4%;
    }
    #calendar .calendar-wrapper a {
        width: 65%;
    }
}

@media (max-width: 355px) {
    #calendar .calendar-wrapper ul li {
        width: 13.3%;
    }
    #calendar .calendar-wrapper a {
        width: 75%;
    }
}

footer {
    margin-top: 0;
    padding-bottom: 70px;
    background-color: #0b3d4d;
}

footer .content-wrapper {
    padding-top: 70px;
}

footer .content-wrapper p {
    padding-top: 30px;
    color: #fff;
    font-size: 23px;
}

footer .bottom-wrapper {
    padding-top: 40px;
}

footer ul {
    padding-left: 130px;
    width: 100%;
}

footer ul li {
    padding-bottom: 5px;
    color: #fff;
    font-size: 20px;
    text-align: left;
    width: 100%;
}

footer ul li a {
    color: #fff;
    display: block;
    font-size: 20px;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

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

#login-form {
    width: 100%;
    text-align: center;
}

#login-form-main {
    margin-top: 20px;
    margin-left: 33%;
    text-align: left;
}

#login-form input {
    margin: 0 auto;
    margin-bottom: 10px;
    padding: 7px 0;
    background-color: #fff;
    border: none;
    border-radius: 37px;
    color: #0b3d4d;
    font-size: 20px;
    text-align: center;
    width: 60%;
}

#login-form-main input {
    margin: 0 auto;
    margin-bottom: 10px;
    padding: 7px 20px;
    background-color: #0b3d4d;
    border: none;
    border-radius: 37px;
    color: #fff;
    font-size: 20px;
    text-align: left;
    width: 60%;
}

#login-form-main input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

#login-form-main input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

#login-form-main input::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}

#login-form button {
    margin: 0 auto;
    padding: 7px 0;
    background-color: #fbac1b;
    border: none;
    border-radius: 37px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 60%;
}

#login-form-main button {
    margin: 0 auto;
    padding: 7px 0;
    background-color: #fcca6f;
    border: none;
    border-radius: 37px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 60%;
}

#login-form-main button:hover {
    background-color: #fbac1b;
}

#login-form input:focus, #login-form button:focus, #login-form-main input:focus, #login-form-main button:focus {
    border: none;
    outline: none;
}

#login-form p {
    margin-top: -5px;
    color: rgb(255, 0, 0);
    font-size: 15px;
}

#login-form-main p {
    margin: 0 auto !important;
    margin-top: -5px !important;
    margin-bottom: 15px !important;
    color: rgb(255, 0, 0) !important;
    font-size: 15px !important;
    text-align: left;
    width: 100% !important;
}

footer .btn-register {
    margin: 0 auto;
    padding-top: 5px;
    color: #fff;
    display: block;
    font-size: 14px;
    text-align: right;
    text-decoration: none;
    width: 50%;
}

footer .btn-register:hover {
    color: #fff;
    text-decoration: underline;
}

#login-form-main .btn-register {
    padding-top: 5px;
    color: #0b3d4d;
    display: block;
    font-size: 14px;
    text-align: right;
    text-decoration: none;
    width: 58%;
}

#login-form-main .btn-register:hover {
    text-decoration: underline;
}

@media (max-width: 1401px) {
    footer .content-wrapper p {
        padding-top: 20px;
    }
}

@media (max-width: 1201px) {
    footer .content-wrapper p {
        font-size: 20px;
    }
    footer ul {
        padding-left: 80px;
    }
}

@media (max-width: 1101px) {
    #login-form-main {
        margin-left: 20%;
    }
}

@media (max-width: 991px) {
    footer .content-wrapper p {
        margin-top: -5px;
        padding-top: 0;
        font-size: 18px;
    }
    footer ul {
        padding-left: 0;
    }
    footer ul li {
        font-size: 18px;
    }
    footer ul li a {
        font-size: 18px;
    }
    #login-form input {
        width: 80%;
    }
    #login-form button {
        width: 80%;
    }
    footer .btn-register {
        width: 60%;
    }
}

@media (max-width: 900px) {
    #login-form-main {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    #login-form-main p {
        width: 60% !important;
    }
    #login-form-main .btn-register {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 767px) {
    footer .content-wrapper {
        text-align: center;
    }
    footer .content-wrapper img {
        margin-bottom: 40px;
    }
    footer ul {
        padding-left: 0;
    }
    footer ul li {
        font-size: 20px;
        text-align: center;
    }
    footer ul li a {
        font-size: 20px;
        text-align: center;
    }
    #login-form {
        margin-top: 20px;
    }
    #login-form input {
        width: 80%;
    }
    #login-form button {
        width: 80%;
    }
    footer .btn-register {
        width: 70%;
    }
}

.contact p {
    margin-top: 40px;
    line-height: 1.3 !important;
    font-size: 28px;
    color: #686868 !important;
    font-weight: normal !important;
}

#contact-form {
    margin-top: 80px;
}

#contact-form .logo {
    max-width: 180px;
}

#contact-form .header-wrapper {
    margin-top: 50px;
}

#contact-form .header-wrapper h2 {
    color: #0b3d4d;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

#contact-form .header-wrapper p {
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
    width: 100%;
}

#contact-form form {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
    width: 60%;
}

#contact-form form input, #contact-form form textarea {
    margin-bottom: 10px;
    padding: 20px 25px;
    background-color: #fcca6f;
    border: none;
    border-radius: 65px;
    color: #000;
    font-size: 18px;
    text-align: left;
    width: 100%;
}

#contact-form form textarea {
    border-radius: 40px;
    min-height: 250px;
}

#contact-form form input::placeholder, #contact-form form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 1; /* Firefox */
}

#contact-form form input:focus, #contact-form form textarea:focus {
    border: none;
    outline: none;
}

#contact-form form button {
    margin-top: 10px;
    padding: 10px 35px;
    background-color: #0b3d4d;
    border: none;
    border-radius: 25px;
    color: #fff;
}

#contact-form form button:hover {
    background-color: #85d9dc;
}

@media (max-width: 991px) {
    #contact-form form {
        width: 100%;
    }
}

#banner-section {
    padding-bottom: 20px;
    overflow: hidden;
}

#banner-section h1 {
    margin-top: 60px;
    margin-left: 33%;
    color: #0b3d4d;
    font-weight: 700;
}

#banner-section p {
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 33%;
    color: #686868;
    font-size: 22px;
}

#banner-section .btn-gallery {
    margin-left: 33%;
    padding-top: 4px;
    padding-bottom: 6px;
    padding-left: 35px;
    padding-right: 35px;
    background-color: #0c3d4d;
    border-radius: 25px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

#banner-section .btn-gallery:hover {
    background-color: #85d9dc;
}

#banner-section .single-paw img {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 50px;
    top: 0;
    bottom: 0;
    position: absolute;
    height: 200px;
}

#banner-section.magazine-banner {
    padding-top: 50px;
}

#banner-section.magazine-banner h1 {
    margin-top: 30px;
}

#banner-section .magazine-paws img {
    margin-bottom: 15px;
    height: 70px;
}

@media (max-width: 1301px) {
    #banner-section h1 {
        margin-top: 60px;
    }
}

@media (max-width: 1101px) {
    #banner-section h1 {
        margin-left: 20%;
    }
    #banner-section p {
        margin-left: 20%;
    }
    #banner-section .btn-gallery {
        margin-left: 20%;
    }
}

@media (max-width: 1081px) {
    #banner-section h1 {
        margin-top: 50px;
        font-size: 33px;
    }
    #banner-section p {
        font-size: 20px;
    }
    #banner-section .btn-gallery {
        font-size: 18px;
    }
    #banner-section img {
        height: 160px;
    }
}

@media (max-width: 936px) {
    #banner-section.magazine-banner h1 {
        margin-top: 15px;
    }
}

@media (max-width: 900px) {
    #banner-section {
        display: none;
    }
}

#article h1 {
    margin-top: 50px;
    color: #0b3d4d;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

#article .subheader {
    margin-bottom: 30px;
    color: #868686;
    font-size: 18px;
    text-align: center;
    width: 100%;
}

#article .btn-gallery {
    padding-top: 6px;
    padding-bottom: 8px;
    padding-left: 35px;
    padding-right: 35px;
    background-color: #0c3d4d;
    border-radius: 25px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
}

#article .btn-gallery:hover {
    background-color: #85d9dc;
}

#article .img-wrapper {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

#article .left-photo-wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 350px;
    border-bottom-right-radius: 350px;
    height: 600px;
    width: 60%;
}

#article .paw-right {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 62%;
    top: 0;
    bottom: 0;
    position: absolute;
    height: 250px;
}

#article .published {
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 30px;
    color: #868686;
    font-weight: 300;
    max-width: 800px;
}

#article .article-text {
    margin: 0 auto;
    padding-bottom: 50px;
    color: #868686;
    font-size: 18px;
    text-align: justify;
    max-width: 800px;
}

#article .article-image {
    margin-bottom: 50px;
    max-width: 800px;
}

@media (max-width: 1280px) {
    #article .left-photo-wrapper {
        height: 500px;
    }
    #article .paw-right {
        height: 200px;
    }
}

@media (max-width: 1040px) {
    #article .left-photo-wrapper {
        height: 400px;
    }
    #article .paw-right {
        height: 150px;
    }
}

@media (max-width: 992px) {
    #article .published {
        max-width: 100%;
    }
    #article .article-text {
        max-width: 100%;
    }
    #article .article-image {
        max-width: 100%;
    }
}

@media (max-width: 800px) {
    #article .left-photo-wrapper {
        width: 65%;
        height: 350px;
    }
    #article .paw-right {
        margin-left: 67%;
        height: 180px;
    }
}

@media (max-width: 760px) {
    #article .left-photo-wrapper {
        height: 300px;
    }
    #article .paw-right {
        height: 150px;
    }
}

@media (max-width: 650px) {
    #article .left-photo-wrapper {
        height: 250px;
    }
    #article .paw-right {
        height: 120px;
    }
}

@media (max-width: 535px) {
    #article h1 {
        font-size: 30px;
    }
    #article .btn-gallery {
        font-size: 18px;
    }
    #article .left-photo-wrapper {
        height: 200px;
    }
    #article .paw-right {
        height: 90px;
    }
}

@media (max-width: 430px) {
    #article .left-photo-wrapper {
        height: 180px;
    }
    #article .paw-right {
        height: 80px;
    }
}

@media (max-width: 380px) {
    #article .left-photo-wrapper {
        height: 150px;
    }
    #article .paw-right {
        height: 70px;
    }
}

#registration-form {
    margin-top: 80px;
}

#registration-form .header-wrapper {
    margin-top: 50px;
}

#registration-form .header-wrapper h2 {
    color: #0b3d4d;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

#registration-form form {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
    width: 60%;
}

#registration-form form label {
    padding-left: 25px;
    padding-bottom: 2px;
    color: #0b3c4c;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}

#registration-form form input {
    margin-bottom: 10px;
    padding: 5px 25px;
    background-color: #d4d4d4;
    border: none;
    border-radius: 65px;
    color: #0b3c4c;
    font-size: 16px;
    text-align: left;
    width: 100%;
}

#registration-form form #OPField, #registration-form form #GDPRField {
    margin-right: 10px;
}

#registration-form form label[for="GDPRField"] {
    margin-top: 5px;
}

#registration-form form input[type="checkbox"], #registration-form form input[type="radio"] {
    width: 3%;
}

#registration-form form input:focus {
    border: none;
    outline: none;
}

#registration-form form p {
    padding-left: 25px;
    color: rgb(255, 0, 0);
    font-size: 14px;
    text-align: left;
    width: 100%;
}

#registration-form form button {
    margin-top: 10px;
    padding: 10px 35px;
    background-color: #0b3d4d;
    border: none;
    border-radius: 25px;
    color: #fff;
}

#registration-form form button:hover {
    background-color: #85d9dc;
}

@media (max-width: 991px) {
    #registration-form {
        margin-top: 20px;
    }
    #registration-form form {
        width: 100%;
    }
}

@media (max-width: 575px) {
    #registration-form form #OPField, #registration-form form #GDPRField {
        margin-right: 20px;
    }
}

#forgot-password-form {
    margin-top: 80px;
}

#forgot-password-form .header-wrapper {
    margin-top: 50px;
}

#forgot-password-form .header-wrapper p {
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
    width: 100%;
}

#forgot-password-form form {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
    width: 60%;
}

#forgot-password-form form label {
    padding-left: 25px;
    padding-bottom: 2px;
    color: #0b3c4c;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}

#forgot-password-form form input {
    margin-bottom: 10px;
    padding: 5px 25px;
    background-color: #d4d4d4;
    border: none;
    border-radius: 65px;
    color: #0b3c4c;
    font-size: 16px;
    text-align: left;
    width: 100%;
}

#forgot-password-form form input[type="checkbox"] {
    width: 3%;
}

#forgot-password-form form input:focus {
    border: none;
    outline: none;
}

#forgot-password-form form p {
    padding-left: 25px;
    color: rgb(255, 0, 0);
    font-size: 14px;
    text-align: left;
    width: 100%;
}

#forgot-password-form form button {
    margin-top: 10px;
    padding: 10px 35px;
    background-color: #0b3d4d;
    border: none;
    border-radius: 25px;
    color: #fff;
}

#forgot-password-form form button:hover {
    background-color: #85d9dc;
}

@media (max-width: 991px) {
    #forgot-password-form {
        margin-top: 20px;
    }
    #forgot-password-form form {
        width: 100%;
    }
}

.btn-detail-akce {
    color: #0b3d4d;
}

.btn-detail-akce:hover {
    color: #85d9dc;
}

.list-header {
    color: #0b3d4d;
}

.list-item p {
    color: #0b3d4d;
}

@media (max-width: 575px) {
    .list-header {
        display: none;
    }
    .list-item {
        text-align: center;
    }
    .list-item p {
        margin: 0;
    }
    .list-last {
        margin-bottom: 20px !important;
    }
}

.btn-person-edit {
    padding: 3px 25px;
    background-color: #0b3d4d;
    border: none;
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    text-decoration: none;
}

.btn-add-person {
    margin-top: 10px;
    padding: 10px 35px;
    background-color: #0b3d4d;
    border: none;
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
}

.btn-add-person:hover, .btn-person-edit:hover {
    background-color: #85d9dc;
    color: #fff;
}

#order form {
    margin: 0 auto;
    max-width: 1050px;
}

#order form h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0b3d4d;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

#order form .people_error {
    color: rgb(255, 0, 0);
}

#order form label {
    margin-left: -37px;
    padding: 5px 0;
    color: #0b3d4d;
    font-size: 20px;
    width: 100%;
}

#order form .main_label {
    margin-top: 10px;
    margin-left: 0;
    margin-bottom: 3px;
    color: #0b3d4d;
    font-size: 21px;
}

#order form label[for="Note"] {
    margin-left: -37px;
}

#order form input {
    margin-right: 20px;
}

#order form #RC {
    margin-left: -37px;
}

#order form input[type='radio']:after, input[type='checkbox']:after {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    top: -10px;
    left: -3px;
    position: relative;
    background-color: #0b3d4d;
    content: '';
    display: inline-block;
    visibility: visible;
    cursor: pointer;
}

#order form input[type='radio']:checked:after, input[type='checkbox']:checked:after {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    top: -10px;
    left: -3px;
    position: relative;
    background-color: #fff;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 10px solid #0b3d4d;
    cursor: pointer;
}

#order form input[type='number'], #order form input[type='text'], #order form input[type='date'], #order form input[type='email'] {
    padding: 5px 20px;
    background-color: #d4d3d3;
    border: none;
    border-radius: 25px;
    width: 100%;
}

#order form textarea {
    padding: 5px 20px;
    margin-left: -37px;
    background-color: #d4d3d3;
    border: none;
    border-radius: 25px;
    min-height: 150px;
    width: 100%;
}

#order form input[type='number']:focus, textarea:focus, input[type='text']:focus, input[type='date']:focus, input[type='email']:focus {
    border: none;
    outline: none;
}

#order form .disabled {
    color: #d4d3d3 !important;
}

#order button {
    margin: 30px 0;
    padding: 10px 0;
    background-color: #fcca6f;
    border: none;
    border-radius: 18px;
    color: #0b3d4d;
    text-align: center;
    width: 40%;
}

#order button:disabled {
    background-color: #d5d7d7 !important;
}

#order button:hover {
    background-color: #85d9dc;
}

#order button:focus {
    border: none;
    outline: none;
}

.info {
    margin: 0 auto;
    padding-top: 40px;
    background-color: #fff;
    border-radius: 15px;
    filter: drop-shadow(0px 15px 25.5px rgba(12,61,77,0.16));
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 75%;
}

.info img {
    top: -17px;
    left: -50px;
    position: absolute;
    max-width: 150px;
}

.info h3 {
    margin-top: 20px;
    margin-bottom: 0;
    color: #0b3d4d;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.info p {
    margin: 0 auto;
    color: #0b3d4d;
    font-size: 19px;
    text-align: center;
    width: 100%;
}

.info p:last-child {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .info {
        width: 100%;
    }
}

@media (max-width: 590px) {
    #order form label {
        margin-left: 0;
    }
    #order form label[for="Note"] {
        margin-left: 0;
    }
    #order form #RC {
        margin-left: 0;
    }
    #order form textarea {
        margin-left: 0;
    }
    #order button {
        width: 60%;
    }
}

#action h1 {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #0b3d4d;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
}

#action h2 {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #0b3d4d;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

#action .desc {
    margin-bottom: 50px;
    font-size: 19px;
}

#action .image-wrapper {
    position: relative;
}

#action .paw-right {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 50px;
    top: 0;
    bottom: 0;
    position: absolute;
    height: 230px;
}

#action .info {
    margin-top: 25% !important;
    margin-bottom: 15%;
    width: 55%;
}

#action .btn-prihlaska {
    margin: 30px 0;
    padding: 10px 0;
    background-color: #fcca6f;
    border: none;
    border-radius: 18px;
    color: #0b3d4d;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 60%;
}

#action .btn-propozice {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 10px 0;
    background-color: #fcca6f;
    border: none;
    border-radius: 18px;
    color: #0b3d4d;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 60%;
}

#action .disabled {
    background-color: #d5d7d7 !important;
}

#action .btn-prihlaska:hover, #action .btn-propozice:hover {
    background-color: #85d9dc;
}

@media (max-width: 1280px) {
    #action .paw-right {
        margin-left: 30px;
        height: 200px;
    }
}

@media (max-width: 1200px) {
    #action .info {
        width: 65%;
    }
}

@media (max-width: 1040px) {
    #action .paw-right {
        margin-left: 15px;
        height: 150px;
    }
}

@media (max-width: 990px) {
    #action .info {
        width: 95%;
    }
}

@media (max-width: 800px) {
    #action .paw-right {
        height: 180px;
    }
}

@media (max-width: 770px) {
    #action .paw-right {
        margin-left: 50%;
        margin-bottom: 50px;
        position: relative;
    }
    #action .info {
        margin-top: 5% !important;
        width: 75%;
    }
}

@media (max-width: 760px) {
    #action .paw-right {
        height: 150px;
    }
}

@media (max-width: 650px) {
    #action .paw-right {
        height: 120px;
    }
}

@media (max-width: 535px) {
    #action .paw-right {
        height: 90px;
    }
}

@media (max-width: 470px) {
    #action .info {
        width: 95%;
    }
}

@media (max-width: 430px) {
    #action .paw-right {
        height: 80px;
    }
}

@media (max-width: 380px) {
    #action .paw-right {
        height: 70px;
    }
}

#ig_feed {
    margin-top: 70px;
    padding-left: 0;
    padding-right: 0;
}

#ig_feed .ig-photo-wrapper {
    padding-left: 0;
    padding-right: 0;
}

#ig_feed .ig-photo-wrapper .ig-feed-photo {
    height: auto;
    width: 100%;
}
