/* CSS Document */

body {
    background-color: #252b45;
}

main {
    font-family: "Montserrat", system-ui;

    .container {
        display: flex;
        /*height: 100svh;*/

        .col-right {
            width: 40%;
        }

        .col-left {
            flex: 1;
        }
    }
}

.tekst ul {
    list-style-type:disc;
    padding-left:35px;
    line-height:1.7;
}

.txt {
            a {
                color: #89CCF1;
                text-decoration: underline;
                transition: all 0.5s ease;
            }
            a:hover {
                opacity: 0.7;
            }
}

.col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2%;

    h1 {
        color: #fff;
        font-size:clamp(1.875rem, 1.125rem + 3.75vw, 5.625rem); /*30-90*/
        font-weight: 600;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    h2 {
        color: #fff;
        font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem); /*20-40*/
        font-weight: 600;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    img.membership-card:first-child {
        margin-right: 20px;
    }

    img.membership-card {
        border-radius: 15px;
        max-width: 350px;
    }
    
    .table--list {
        color: #fff;
        font-size: 18px;
        line-height: 1.7;
        flex-wrap: wrap;
    }

    .contact {
        display: flex;
        flex-wrap: wrap;

        span {
            color: #fff;
            display: flex;
            align-items: center;
            border-right: 1px solid white;
            padding-right: 15px;
            margin-right: 10px;
            font-size: 18px;
            margin-bottom: 15px;
            line-height: 1.3;
            flex-wrap: wrap;

            &:last-child {
                border-right: none;
            }

            a {
                color: #89CCF1;
                text-decoration: underline;
                transition: all 0.5s ease;
            }
            a:hover {
                opacity: 0.7;
            }

            img {
                margin-right: 7px;
                width: 24px;
            }
        }
    }
}

.button-book {
    background-color: #48bc51;
    color: white;
    padding: 28px 50px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #48bc51;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 0;
    z-index: 1;
    margin-top: 40px;
}

.button-book::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3aa345;
    z-index: -1;
    transition: all 0.4s ease;
}

.button-book:hover::before {
    top: 0;
}

.button-book:hover {
    color: white;
}

.button-book span {
    position: relative;
    z-index: 1;
}

.button-book:active {
    transform: scale(0.96);
}

.bottom {
	
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:70px;

    p,
    span {
        color: #fff;
    }

    span {
        display: flex;
        align-items: center;
        font-size: 20px;
        font-weight: 300;

        img {
            margin-left: 10px;
        }
    }

    a {
        transition: all 0.5s ease;
    }
    a:hover {
        opacity: 0.7;
    }
}

.logos {
	display: flex;
	align-items: center;
	flex: 1;
	max-width: 500px;
	
	a {
		margin-right: 25px;
		width: 33%;
		
		&:last-child {
			margin-right: 0;
		}
		
		svg {width:100%;}	
		}
		}

.copyright {margin-top: 20px;}
.copyright p {color: #fff; text-align: right;}

@media screen and (max-width: 1280px) {
    .container {
        flex-direction: column;
    }

    .col-right {
        width: 100% !important;
        flex: 1;
        min-height: 450px;
    }

    .col-left {
        flex: 0 0 auto !important;
        height: auto;
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .top img {
        height: 130px;
    }
    .contact {
        flex-direction: column;

        span {
            border-right: none !important;
        }
    }

    .bottom {
        flex-direction: column;
        align-items: flex-start;

        span {
            margin-top: 40px;
        }
    }
	
	.copyright p {text-align: center;}

    .button-book {
        padding: 20px 40px;
        margin: 20px 0;
    }

    .bottom img {
        width: 40px;
    }

    .top,
    .middle {
        text-align: center;
    }

    .bottom {
        align-items: center;
    }

    .col-left {
        h1 {
            text-align: center;
        }
        .table--list {
            font-size: 14px;
            line-height: 1.5;
        }
        img.membership-card {
            margin-top: 20px;
        }
        img.membership-card:first-child {
            margin-right: 0;
            margin-top: 0;
        }
        .contact {
            span {
                flex-direction: column;
                line-height: 1.5;
				margin-right: 0;
				padding-right: 0;
				
                img {
                    margin-bottom: 10px;
                }
            }
        }
        .submenu {
            align-items: center;
        }
        .submenu {
            span {
                flex-direction: unset;
                line-height: 1.5;
				margin: 0;
				padding-right: 0;
            }
        }
    }
}

.passsport-logo {
	width:150px;
}

@media screen and (max-width: 1200px) {
	.bottom {
		margin-top: 30px;
	}
}

.signup-form {display: flex; flex-wrap: wrap; max-width: 860px; margin: 10px -10px 30px -10px;}
.signup-form-item {width: 50%; padding: 10px;}
.signup-form-item label {display: block; margin-bottom: 5px; font-size: 18px;}
.signup-form-button {
	text-align: right;
	width: 100%;
	margin-right: 10px;
	margin-top: 10px;
}

.signup-form-item--full {
	width: 100%;
	margin-top: 15px;
}

input, textarea {
	width: 100%;
	height: 45px;
	border: none;
	padding: 10px;
	font-family: "Montserrat", system-ui;
}

textarea {
	height: 200px;
	width: 100%;
}

.signup-form-button button {
	margin-top: 25px;
}

button {
	border: none;
	background-color: #89CCF1;
	padding: 15px 30px;
	transition: all .3s ease;
	cursor: pointer;
	color: #252b45;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 16px;
}

button:hover {
	opacity: 0.8;
}

input, button {font-family: "Montserrat", system-ui;}

.c-box {
	margin: 10px 0 20px 0;
}

@media screen and (max-width:600px) {
	.signup-form {
		flex-direction: column;
		margin: 10px 0  50px 0;
	}
	
	.signup-form-item {
		width: 100%;
		padding: 10px 0;
	}
	
	.signup-form-button {
		text-align: center;
	}

}

/*privole*/
.c-box {clear:both;}
.c-box div {display:flex; align-items:center; margin-top:10px;}
.c-box__label {float:none; width:auto; min-height:auto; margin-left:10px; font-size:14px; line-height:1.4; text-align: left;}
input[type=checkbox] {width:auto; height:auto;}


/* Cookies
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.cookies {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #89CCF1;
	z-index: 99999999;
}

.cookies-wrap {
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:10px 20px;
}

.cookies p {
	font-size: 14px;
	text-align: left;
	color: #252b45;
	padding-bottom:0;
	flex: 1;
}

.cookies p a {
	text-decoration: underline;
	color: #252b45;
}

.cookies p a:hover {
	opacity: 0.8;
}

.cookies a.button {
	padding: 10px 8px;
	font-size: 12px;
	font-weight:500;
	margin:0 0 0 40px;
	background-color: rgba(255, 255, 255, 1);
	color: #3c3c3c;
	text-transform: uppercase;
	transition: all .3s ease;
	border:none;
    text-decoration: none;	
}

.cookies a.button:hover {
	background-color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

@media screen and (max-width:700px) {
	.cookies-wrap {flex-direction:column;}	
	.cookies p {text-align:center;}
	.cookies a.button {margin:20px 0 0 0;}
}