* {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    /* font-family: 'Roboto', Verdana, Geneva, Tahoma, sans-serif; */
    -webkit-appearance: none;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgb(255, 255, 255);
    z-index: 10;
}

.logo {
    display: block;
    float: left;
    width: 260px;
    height: 60px;
    text-transform: uppercase;
    text-align: center;
    font-size: 12px;
    line-height: 60px;
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    letter-spacing: 8px;
    cursor: pointer;
    transition: 0.5s ease-in;
}

.logo span {
    padding: 4px 12px 4px 22px;
}

.logo span:first-child {
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
    transition: 0.5s ease-in;
}

.logo:hover {
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
}

.logo:hover span:first-child {
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    transition: 0.5s ease-in;
}

.logo:hover span:last-child {
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
    transition: 0.5s ease-in;
}

.navigation-list {
    display: block;
    max-width: calc(100% - 260px);
    margin-right: 5%;
    float: right;
    height: 60px;
}

.navigation-list-item {
    display: block;
    float: left;
    padding: 0 5px;
    height: 60px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 4px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    color: rgb(0, 0, 0);
    transition: 0.5s ease-in;
}

.navigation-list-item a {
    color: rgb(0, 0, 0);
}

.navigation-list-item span {
    padding: 4px 12px 4px 18px;
}

.navigation-list-item span:last-of-type {
    padding: 4px 12px 4px 12px;
}

.navigation-list-item:hover span {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    transition: 0.5s ease-in;
}

.change-language {
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 40px;
    transition: 0.5s ease-in;
}

.hamburger,
.cross {
    width: 80px;
    display: none;
    position: absolute;
    top: 0;
    right: 10px;
    line-height: 60px;
    color: rgb(0, 0, 0);
    font-size: 30px;
    cursor: pointer;
    background: rgb(255, 255, 255);
}

.hamburger:hover,
.cross:hover {
    color: rgb(255, 255, 255);
}

.hamburger:hover span,
.cross:hover span {
    padding: 1px 8px;
    background: rgb(0, 0, 0);
    transition: 0.5s ease-in;
}

.navigation-mobile-list {
    display: none;
    width: 100%;
    height: 0;
    overflow: hidden;
    margin-top: 60px;
    background: rgb(255, 255, 255);
    transition: 2s;
}

.navigation-mobile-list-item {
    display: block;
    width: 100%;
    height: 10vh;
    line-height: 10vh;
    font-size: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    transition: 0.5s ease-in;
}

.navigation-mobile-list-item a {
    display: block;
    width: 100%;
    color: rgb(255, 255, 255);
    transition: 0.5s ease-in;
}

.navigation-mobile-list-item:hover {
    background: rgb(255, 255, 255);
}

.navigation-mobile-list-item:hover a {
    color: rgb(0, 0, 0);
}

.navigation-active {
    height: 100vh;
    transition: 2s;
    background: rgb(0, 0, 0);
}

.hightlight {
    padding-bottom: 4px;
    border-bottom: solid 1px rgb(0, 0, 0);
}

.slider {
    position: relative;
    margin-top: 100px;
    width: 100%;
    height: auto;
    background: rgb(255, 255, 255);
}

.slider-image-wrapper {
    position: relative;
}

.booking-awards {
    position: absolute;
    z-index: 2;
    top: 0px;
    right: 0px;
    width: 350px;
    height: auto;
}

.slider-header {
    width: 30%;
    color: rgb(0, 0, 0);
    float: left;
}

.slider-apartment-name {
    font-weight: 500;
    font-size: 3.2vw;
    text-align: center;
    margin-top: 10vw;
}

.slider-apartment-description {
    font-size: 2vw;
    text-align: center;
    margin: 0 2vw;
    margin-top: 4vw;
    padding: 1vw 2vw;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.slider-show-apartment-link {
    display: block;
    background: rgb(255, 255, 255);
    width: 14vw;
    font-size: 1.1vw;
    padding: 1.2vw;
    color: rgb(0, 0, 0);
    text-align: center;
    font-weight: 200;
    border: solid 2px rgb(0, 0, 0);
    margin: auto;
    margin-top: 4vw;
    transition: color 0.5s ease-in, background-color 0.5s ease-in;
    cursor: pointer;
}

.slider-show-apartment-link:hover {
    background: rgb(0, 0, 0);
    color: rgb(250, 250, 250);
}

.slider-image {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    width: 70%;
    height: auto;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    right: 0;
    transform: translateX(-20%);
}

.slider-dots span {
    display: inline-block;
    background: rgb(255, 255, 255);
    margin: 0 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    border: solid 1px rgb(0, 0, 0);
}

.slider-dots span:hover {
    background: rgb(0, 0, 0);
    transition: 0.5s ease-in;
    color: rgb(255, 255, 255);
}

.slider-dots span.active {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.bon-container {
    margin-top: 30px;
}

.bon-header-wrapper {
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
}

.bon-header-img-wrapper {
    max-width: 30%;
    min-width: 30%;
}

.bon-header-img {
    display: block;
    margin: auto;
    max-width: 70%;
}

.bon-header-title-wrapper {
    max-width: 70%;
    padding: 10px 30px;
    background-color: rgb(0, 0, 0);
}

.bon-header-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.bon-header-link {
    display: block;
    text-align: center;
    padding: 5px 0;
    color: rgb(255, 255, 255);
    transition: 0.5s;
}

.bon-header-link:hover {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.apartament-header,
.reservation-header,
.sopot-header,
.contact-header {
    text-align: center;
    font-size: 24px;
    margin-top: 90px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 100;
}

section hr {
    width: 120px;
    height: 1px;
    margin: 40px auto;
    border: none;
    background: rgb(0, 0, 0);
}

.apartament-section-header {
    letter-spacing: 4px;
    margin-top: 80px;
    text-align: center;
    width: 100%;
}

.apartament-name {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
}

.apartament-number {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 4px 8px;
    font-family: 'Montserrat', sans-serif;
}

.apartament-section-description {
    padding-left: 8px;
    text-align: center;
    margin-top: 20px;
}

.apartament-details {
    margin-top: 40px;
}

.apartament-details-description {
    width: 50%;
    height: auto;
    float: left;
}

.apartament-details-description-header {
    margin: 20px 20px;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.apartament-details-picture {
    display: block;
    width: 100%;
    height: auto;
}

.apartament-details-description-element {
    margin: 20px 20px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.apartament-details-description p {
    margin: 10px 20px;
    letter-spacing: 2px;
    font-size: 14px;
}

.apartament-details-description-list {
    margin: 10px 20px;
    letter-spacing: 1.5px;
}

.apartament-details-description-list li {
    margin: 10px 0;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.apartament-details-description-more {
    padding-top: 10px;
}

.reservation-description {
    width: 100%;
    height: auto;
    position: relative;
}

.reservation-description a {
    color: rgb(255, 255, 255);
    font-size: 5vw;
}

.reservation-description a:hover {
    color: rgb(0, 0, 0);
}

.reservation-img {
    width: 100%;
    height: auto;
}

.reservation-description-info {
    position: absolute;
    left: 0;
    top: 5%;
    width: 40%;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.reservation-description-info h3 {
    font-size: 6vw;
    padding: 10% 4%;
    border: solid 2px rgb(255, 255, 255);
    border-left: none;
}

.reservation-description-info p {
    font-size: 2.9vw;
    padding: 0px 4%;
    padding-top: 5%;
}

.reservation-arrow {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

.sopot-pictures {
    width: 100%;
    height: auto;
    position: relative;
}

.sopot-picture {
    width: 50%;
    height: auto;
    float: left;
}

.sopot-picture:nth-child(3) {
    width: 100%;
}

.sopot-description {
    width: 100%;
    display: block;
    position: absolute;
}

.sopot-description:nth-child(4) {
    width: 40%;
    top: 5%;
    left: 5%;
    font-size: 3vw;
    font-weight: 500;
    padding: 20px;
    color: rgb(255, 255, 255);
    border: solid 2px rgb(250, 250, 250);
}

.sopot-description:nth-child(5) {
    width: 90%;
    bottom: 2%;
    left: 5%;
    font-size: 3vw;
    font-weight: 500;
    padding: 20px;
    color: rgb(0, 0, 0);
    border: solid 2px rgb(0, 0, 0);
}

.form {
    margin: 48px auto;
    font-family: sans-serif;
    max-width: 640px;
}

.form .form-row {
    margin-bottom: 16px;
}

.form .form-row:last-child {
    margin-bottom: 0;
}

.form input[type=text],
.form input[type=email],
.form textarea,
.form .checkbox-cnt .state {
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.07);
}

.form input[type=text],
.form input[type=email],
.form textarea {
    border-radius: 3px;
    font-family: sans-serif;
    padding: 13px;
    border: 1px solid #aaa;
    display: block;
    width: 100%;
    color: #666;
}

.form input[type=text]:focus,
.form input[type=email]:focus,
.form textarea:focus {
    border-color: var(--colorOne);
    box-shadow: inset 0 0 0 1px var(--colorOne), inset 0 1px 5px rgba(0, 0, 0, 0.07);
    outline: none;
}

.form textarea {
    height: 160px;
}

.form label {
    font-weight: bold;
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
}

.form .submit-btn {
    font-family: sans-serif;
    padding: 16px 32px;
    background: rgb(0, 0, 0);
    border: 0;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: bold;
    border: solid 1px rgb(255, 255, 255);
    border-radius: 3px;
    transition: 0.3s background-color;
    cursor: pointer;
}

.form .submit-btn:hover {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: solid 1px rgb(0, 0, 0);
}

.form .checkbox-cnt {
    padding-left: 48px;
    position: relative;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #444;
    cursor: pointer;
}

.form .checkbox-cnt .state {
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #aaa;
    border-radius: 3px;
}

.form .checkbox-cnt .state:before {
    width: 1rem;
    height: 1rem;
    border-radius: 3px;
    background: rgb(0, 0, 0);
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.form .checkbox-cnt input:checked~.state:before {
    animation: checkboxShowAnim 0.5s 1;
    opacity: 1;
}

.form .checkbox-cnt input {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    z-index: 2;
    cursor: pointer;
    padding: 0;
    margin: 0;
    opacity: 0;
}

.form input[type=text].error,
.form input[type=email].error,
.form textarea.error,
.form .checkbox-cnt input.error~.state {
    border-color: rgb(0, 0, 0);
}

.field-error {
    color: rgb(250, 0, 0);
    padding: 8px 0;
    font-size: 14px;
}

@keyframes checkboxShowAnim {
    0% {
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0.2);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.element-is-busy {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}

.element-is-busy::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) rotate(0deg);
    content: '';
    animation: rotateSingleLoading 0.3s infinite linear;
    z-index: 100;
}

@keyframes rotateSingleLoading {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.form .send-error {
    display: inline-block;
    font-family: sans-serif;
    font-size: 0.9rem;
    padding: 16px 24px;
    color: rgb(0, 0, 0);
}

.form-send-success {
    font-family: sans-serif;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    border: 1px solid #eee;
    color: rgb(0, 0, 0);
    padding: 160px 0;
    margin: 48px auto;
    max-width: 640px;
}

.form-send-success strong {
    display: block;
    margin-bottom: 8px;
}

.form-send-success span {
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: normal;
    display: block;
}

@media screen and (max-width:500px) {
    .form .submit-btn {
        display: block;
        width: 100%;
    }

    .form .send-error {
        text-align: center;
        display: block;
    }
}




.footer {
    margin-top: 80px;
    width: 100%;
    height: auto;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.company-contact-details {
    height: 120px;
    width: 50%;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    float: left;
}

.company-name {
    display: block;
    height: 120px;
    width: 40%;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    float: left;
    text-align: center;
    line-height: 120px;
}

.company-address {
    height: 100%;
    width: 60%;
    float: left;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.company-address p {
    text-align: center;

}

.company-address p:first-child {
    padding-top: 40px;
}

.company-address p:last-child {
    padding-top: 10px;
}

.company-address a {
    color: rgb(255, 255, 255);
}

.facebook {
    width: 10%;
    height: 120px;
    display: block;
    float: left;
    background: rgb(255, 255, 255);
    text-align: center;
    line-height: 120px;
    font-size: 50px;
    transition: 0.5s ease-in;
}

.fa-facebook-f {
    color: rgb(0, 0, 0);
    transition: 0.5s ease-in;
}

.facebook:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.facebook:hover .fa-facebook-f {
    color: rgb(255, 255, 255);
}

.call-us {
    display: block;
    width: 100%;
    height: 120px;
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
    text-align: center;
    line-height: 120px;
    font-size: 40px;
    transition: 0.5s ease-in;
    cursor: pointer;
}

.call-us span {
    font-weight: 500;
}

.call-us:hover {
    background: rgb(255, 255, 255);
}

.call-us:hover i,
.call-us:hover span {
    color: rgb(0, 0, 0);
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 1300px) {
    .apartament-details-description-header {
        font-size: 28px;
    }

    .apartament-details-description-element {
        font-size: 18px;
    }

    .apartament-details-description p {
        font-size: 12px;
    }

    .apartament-details-description-list li {
        font-size: 12px;
    }
}

@media (max-width: 1250px) {

    .bon-header-img {
        max-width: 80%;
    }

    .apartament-details-description-header {
        font-size: 26px;
        margin: 16px 20px;
    }

    .apartament-details-description-element {
        font-size: 16px;
        margin: 16px 20px;
    }
}

@media (max-width: 1150px) {
    .mobile {
        width: 100%;
    }

    .bon-header-img {
        max-width: 85%;
    }

    .apartament-details-description:last-child {
        margin-top: 30px;
    }

    .apartament-details-description-header {
        font-size: 30px;
        margin: 20px 20px;
    }

    .apartament-details-description-element {
        font-size: 20px;
        margin: 20px 20px;
    }

    .apartament-details-description p {
        font-size: 14px;
    }

    .apartament-details-description-list li {
        font-size: 14px;
    }
}

@media (max-width: 960px) {
    .navigation-list {
        display: none;
    }

    .change-language {
        margin-left: 0px;
        line-height: 10vh;
    }

    .slider {
        margin-top: 0;
    }

    .booking-awards {
        top: 179px;
        right: 0;
    }

    .slider-header {
        width: 100%;
    }

    .slider-apartment-name {
        font-size: 20px;
        font-weight: 300;
        letter-spacing: 2px;
        margin-top: 80px;
        margin-bottom: 10px;
        padding: 5px;
    }

    .slider-apartment-description {
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 2px;
        margin: auto;
        margin-top: 0;
        padding: 10px 2vw;
        margin-bottom: 20px;
        width: 60%;
    }

    .slider-show-apartment-link {
        position: absolute;
        z-index: 2;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        font-size: 14px;
        padding: 0;
        line-height: 50px;
        border: none;
        width: 180px;
        height: 50px;
        border-bottom: solid 2px rgb(0, 0, 0);
    }

    .slider-image {
        width: 100%;
    }

    .slider-dots {
        position: static;
        width: 160px;
        transform: none;
        margin: 5px 10px 0 auto;
    }

    .slider-dots span {
        display: block;
        float: left;
        background: rgb(255, 255, 255);
        margin: 0;
        width: 30px;
        height: 30px;
        margin-right: 10px;
        cursor: pointer;
        text-align: center;
        line-height: 25px;
        font-size: 14px;
        font-weight: 700;
    }

    .bon-header-img-wrapper {
        max-width: 40%;
        min-width: 40%;
    }
    
    .bon-header-img {
        max-width: 90%;
    }
    
    .bon-header-title-wrapper {
        max-width: 60%;
        min-width: 60%;
        padding: 10px 30px;
    }

    .sopot-description:nth-child(4) {
        font-size: 3.5vw;
    }

    .sopot-description:nth-child(5) {
        font-size: 3.5vw;
    }

    .company-contact-details {
        width: 100%;
        height: 240px;
    }

    .company-name {
        width: 100%;
    }

    .company-address {
        width: 100%;
        height: 120px;
        display: block;
    }

    .facebook {
        width: 100%;
        background: rgb(0, 0, 0);
    }

    .facebook:hover {
        background: rgb(255, 255, 255);
    }

    .facebook i {
        color: rgb(255, 255, 255);
    }

    .facebook:hover .fa-facebook-f {
        color: rgb(0, 0, 0);
    }

    .call-us {
        width: 100%;
        float: left;
        background: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
    }

    .call-us:hover {
        background: rgb(0, 0, 0);
    }

    .call-us:hover i,
    .call-us:hover span {
        color: rgb(255, 255, 255);
    }
}

@media (max-width: 780px) {

    .bon-header-wrapper {
        display: block;
    }

    .bon-header-img-wrapper {
        max-width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .bon-header-img {
        margin: 0 25px;
        max-width: 300px;
    }
    
    .bon-header-title-wrapper {
        max-width: 100%;
        min-width: 100%;
        padding: 10px 30px;
    }
}

@media (max-width: 620px) {
    .booking-awards {
        width: 300px;
    }

    .bon-header-img {
        max-width: 250px;
    }

    .bon-header-title-wrapper {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .slider-apartment-description {
        width: 70%;
    }

    .apartament-details-description {
        width: 100%;
        margin-top: 10px;
    }

    .apartament-details-description:first-child {
        margin-top: 0;
    }

    .sopot-picture {
        width: 100%;
        margin-top: 10px;
    }

    .sopot-description:nth-child(4) {
        width: 90%;
        font-size: 5vw;
        padding: 10px 20px;
    }

    .sopot-description:nth-child(5) {
        font-size: 4vw;
        bottom: 1%;
        padding: 10px 20px;
    }

    .form {
        max-width: 90%;
    }
}

@media (max-width: 480px) {

    .apartament-header,
    .reservation-header,
    .sopot-header,
    .contact-header {
        margin-top: 50px;
    }

    .slider-apartment-description {
        width: 80%;
    }

    .bon-header-img {
        margin: auto;
    }

    .reservation-description-info {
        left: 0;
        top: 5%;
        width: 40%;
        color: rgb(255, 255, 255);
    }

    .reservation-description-info h3 {
        font-size: 6vw;
        border: solid 2px rgb(255, 255, 255);
        border-left: none;
    }

    .reservation-description-info p {
        font-size: 2.9vw;
        padding-top: 5px;
    }

    .reservation-arrow {
        bottom: 5%;
    }

    .sopot-description:nth-child(4) {
        font-weight: 600;
    }

    .sopot-description:nth-child(5) {
        font-weight: 600;
        padding: 5px 20px;
    }
}

@media (max-width: 450px) {
    .navigation-mobile-list-item {
        height: 15vh;
        line-height: 15vh;
        font-size: 16px;
    }

    .booking-awards {
        width: 80%;
        top: calc(100% + 60px);
        left: 10%;
    }

    .slider-show-apartment-link {
        top: 70%;
    }

    .bon-container {
        margin-top: 140px;
    }

    .apartament-header {
        margin-top: 100px;
    }

    .call-us {
        font-size: 32px;
    }
}

@media (max-width: 420px) {
    .slider-apartment-description {
        width: 95%;
        font-size: 12px;
    }
}

@media (max-width: 340px) {
    .apartament-name {
        font-size: 18px;
    }

    .apartament-number {
        font-size: 16px;
        padding: 4px 6px;
    }
}