:root {
	--darkBlue: #1F2654;
	--lightBlue: #B3E6FF;
	--accent: #FCBD26;
	--offWhite: #FAF9F6;
}

/*@font-face {
    font-family: 'Avenir';
    src: url('AvenirLTStd-Book.woff2') format('woff2'),
        url('AvenirLTStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/
/*@font-face {
	font-weight: 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+000-5FF;
	font-family: 'Avenir';
	src: url('../fonts/avenir-black-webfont.woff2') format('woff2'),
	url('../fonts/avenir-black-webfont.woff') format('woff');
}*/

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Regular.woff2') format('woff2'),
        url('../fonts/SourceSans3-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Bold.woff2') format('woff2'),
        url('../fonts/SourceSans3-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}
body {
	font-size: 18px;
	line-height: 1.4;
	background: #fff;
/*	font-family: 'Avenir', sans-serif;*/
	font-family: 'Source Sans 3', sans-serif;
	color: #000;
}
body.menu__active {
	overflow: hidden;
}
::-webkit-scrollbar {
	width: 7px;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
	background: var(--darkBlue);
}
.clearfix::before,
.clearfix::after {
	content: " ";
	display: table;
}
.clearfix::after {
	clear: both;
}
#hidden{
	display: none;
}
.hide {
	opacity: 0;
	visibility: hidden;
}
.show {
	opacity: 1;
	visibility: visible;
}
.hide__mobile {
	display: block;
}
.hide__desktop {
	display: none;
}
a {
	color: var(--darkBlue);
	word-break: break-word;
}
a:hover {
	color: var(--darkBlue);
	text-decoration: underline;
}
b, strong {
	font-weight: bold !important;
}
img {
	max-width: 100%;
}
.btn {
	display: inline-flex;
    align-items: center;
    gap: 16px;
	padding: 16px 32px;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    background: var(--darkBlue);
    border-radius: 8px;
    outline: none;
    border: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.btn:hover {
	background: var(--lightBlue);
	color: var(--darkBlue);
	text-decoration: none;
	box-shadow: 0 4px 10px rgb(31 38 84 / 50%);
}
.btn--small {
	padding: 8px 16px;
	font-size: 14px;
	border-radius: 4px;
}
.btn--medium {
	padding: 12px 24px;
	font-size: 16px;
	border-radius: 6px;
}
.btn--yellow {
	background: var(--accent);
	color: var(--darkBlue);
}
.btn__red {
    position: relative;
    display: inline-block;
    padding: 16px 48px 16px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    background: var(--darkBlue);
    border-radius: 6px;
    outline: none;
    border: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.btn__red:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	border-top: 6px solid transparent !important;
	border-bottom: 6px solid transparent !important;
	border-left: 6px solid #fff !important;
	transform: translateY(-50%);
}
.btn__red:hover {
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 10px rgb(31 38 84 / 50%);
}

[tooltip-top]:after {
	opacity: 0;
	visibility: hidden;
	content: "";
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	width: 10px;
	height: 10px;
	background: var(--accent);
	pointer-events: none;
	z-index: 1;
	transform: translateX(-50%) rotate(45deg);
}
[tooltip-top]:before {
	opacity: 0;
	visibility: hidden;
	content: attr(tooltip-top);
	position: absolute;
	top: calc(100% + 13px);
	left: 50%;
	background: var(--accent);
	color: var(--darkBlue);
	white-space: nowrap;
	line-height: 1.5;
	font-size: 14px;
	padding: 5px 10px;
	border-radius: 3px;
	pointer-events: none;
	z-index: 2;
	transform: translateX(-50%);
}
[tooltip-top]:hover:after,
[tooltip-top]:hover:before {
	opacity: 1;
	visibility: visible;
}

.page__title {
	font-size: 56px;
}
.section__title {
	font-size: 40px;
	font-weight: 600;
}

.align__center {
	text-align: center;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0 0 24px;
	line-height: 1;
	font-family:"loretta";
	font-weight:400;
	color: var(--darkBlue);
}
h1 {
	font-size: 56px;
	font-weight:600;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
.h2 {
	color: var(--darkBlue);
	font-size: 32px;
}
.lazy {
	background: url(../img/img-loader.svg) no-repeat center;
}
.container {
	padding-right: 15px;
	padding-left: 15px;
}
@media (min-width: 1500px) {
	.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: 1440px;
	}
}
@media (min-width: 1700px) {
	.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: 1600px;
	}
}
.page__header {
	width: 100%;
	height: 100vh;
	position: relative;
	background: var(--lightBlue);
}
.page__header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
	z-index: 1;
}
.page__header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 0;
}
.page__header-info {
	position: absolute;
	bottom: 40px;
	left: 50%;
	width: 100%;
	max-width: 960px;
	text-align: center;
	z-index: 2;
	transform: translateX(-50%);
}
.page__header-info h1,
.page__header-category h1 {
	color: #fff;
}
.page__header-middle-info {
	position: absolute;
	bottom: 40px;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
}
.page__header-middle-info h1 {
	color: #fff;
}
.page__nohead {
	padding-top: 246px;
}
.page__inner-title {
	font-size: 48px;
	color: var(--darkBlue);
	text-align: center;
}
.page__inner-desc {
	width: 960px;
	max-width: 100%;
	margin: 0 auto;
}
.page__inner-desc a {
	font-weight: 600;
	text-decoration: underline;
}
.page__content {
	padding: 80px 0;
}
.page__desc {
	padding-right: 40px;
}
.page__desc p {
	margin-bottom: 24px;
/*	font-family: 'Avenir', sans-serif !important;*/
}
.page__desc span {
	font-size: 18px;
/*	font-family: 'Avenir', sans-serif !important;*/
}
.page__desc ol,
.page__desc ul {
	font-size: 18px;
}
.page__desc ol p {
	margin-bottom: 0;
}
.page__desc h4 {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 24px;
}
.page__desc a {
	display: inline-block;
	color: var(--darkBlue);
	font-weight: 600;
	text-decoration: underline;
	font-size: 18px;
}
.page__desc--things {
	padding: 80px;
}
.page__desc--things h2 {
	margin-bottom: 32px;
}
.page__desc--things p {
	margin-bottom: 80px;
}
.page__desc--things p iframe{
	width: 100%;
	height: 480px;
}
.page__desc--things .trail__icons {
	flex-wrap: wrap;
}
.page__desc--things .trail__icons a {
	width: calc(25% - 24px);
}
.page__desc ul {
	font-size: 18px;
}
.page__media {
}
.page__media iframe {
	width: 100%;
	height: 400px;
	margin-bottom: 15px;
}
.page__media-acb iframe {
	height: 300px;
}
.page__content-category .page__media img {
	float: right;
	width: 580px;
	max-width: 100%;
}
.page__media-desc {
	font-size: 18px;
}
.page__media-copyright {
	float: right;
	width: 100%;
	text-align: right;
	margin-top: 14px;
}
.page__media-copyright p {
	font-size: 12px;
	margin-bottom: 0;
}
.page__inner-menu {
	overflow-x: hidden;
}
.page__inner-nav h2 {
	width: 50%;
	margin: 0 auto;
	font-size: 64px;
	margin-bottom: 64px;
}
.page__inner-nav {
	background: var(--lightBlue);
	padding: 80px 0;
}
.page__inner-nav .main__nav-submenu {
	position: relative;
	top: auto;
	left: auto;
	opacity: 1;
	visibility: visible;
	width: 100%;
	height: auto;
	padding: 0;
}
.page__inner-nav .main__nav-submenu li {
	width: 100%;
	margin: 0 auto;
}
.page__inner-nav .main__nav-submenu li a {
	margin-left: 25%;
	font-size: 28px;
}
.page__inner-nav .main__nav-submenu-list {
	top: auto;
	left: auto;
	width: 100%;
	height: auto;
	padding: 20px 50px 8px;
	list-style: none;
	margin: 0;
	background: var(--offWhite);
	margin-top: 10px;
}
.page__inner-nav .main__nav-submenu-list li a {
	font-size: 20px;
}
.page__inner-nav .main__nav-submenu li.active .main__nav-submenu-list {
	position: relative;
}
.page__content--things .page__media img {
	width: 75%;
	margin-left: 25%;
}
.page__content--things .page__desc {
	padding: 40px 80px;
}
.page__content--things .page__desc .btn__red {
	width: 190px;
	height: 34px;
	border-radius: 0;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	padding: 6px;
	text-align: center;
}
.page__content--things .page__desc .btn__red:after {
	display: none;
}
.page__content--things .add__bookmark {
	display: inline-block;
	font-size: 24px;
	text-decoration: none;
	line-height: 60px;
	margin-bottom: 24px;
}
.page__content--things .add__bookmark span {
	position: relative;
	display: inline-block;
	margin-left: 24px;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	border: 2px solid var(--accent);
	vertical-align: bottom;
}
.page__content--things .add__bookmark span svg{
	position: absolute;
	top: 50%;
	left: 50%;
	height: 32px;
	transform: translate(-50%, -50%);
}

.pagination {
	justify-content: center;
}
.page-item.disabled .page-link {
    color: var(--darkBlue) !important;
    border-color: #ddd !important;
}
.page-item.active .page-link {
	color: #fff !important;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}
.page-link {
    color: var(--darkBlue) !important;
    border: 1px solid #ddd !important;
}
/* END GENERAL CSS*/

/*HEADER*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 32px;
	z-index: 999999;
	transition: all .2s ease-in-out;
}
header:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: calc(100% + 64px);
	height: 145px;
	background: var(--darkBlue);
	z-index: -1;
	transition: all .3s ease-in-out .2s;
	transform: translateY(-100%);
}
header.active:before {
	transition: all .3s ease-in-out;
	transform: translateY(0);
}
header.scrolled {
	background: var(--darkBlue);
	padding: 32px 32px 16px;
}
header.header__blue {
	background: var(--darkBlue);
}
header .logo img {
	width: 230px;
	height: auto;
	transition: all .3s ease-in-out;
}
header .logo__txt {
	display: none;
}
header.scrolled .logo__icon,
header.active .logo__icon {
	display: none !important;
}
header.scrolled .logo__txt,
header.active .logo__txt {
	display: block !important;
}
.top__menu {
	position: absolute;
	top: 16px;
	right: 32px;
	display: flex;
	align-items: center;
	gap: 24px;
}
header.scrolled .top__menu {

}
.top__menu a {
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.040em;
	text-decoration: none;
	font-weight: 900;
}
.top__menu a img {
	height: 32px;
	width: auto;
	vertical-align: middle;
}
.logo__menu {
	display: flex;
	justify-content: space-between;
}
.big__links {
	display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 36px;
}
.big__links a {
	position: relative;
	color: #fff;
	font-size: 32px;
	letter-spacing: 0.040em;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
.big__links a:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	height: 3px;
	background: #fff;
	transition: all .2s ease-in-out;
}
.big__links a:hover:before {
	width: 100%;
}
.big__links a:last-child {
	margin-right: 0;
}
.header__icons {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 36px;
}
header.scrolled .header__icons {
	align-self: flex-end;
}
.header__search {
	height: 32px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}
.header__search form {
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 30px;
	border: 1px solid #fff;
	transition: all .3s ease-in-out;
}
.header__search.active form{
	width: 260px;
}
.header__search label {
	display: none;
}
.header__search input[type="text"] {
	position: absolute;
	top: 0;
	right: 0;
	width: 260px;
	height: 32px;
	font-size: 14px;
	padding: 0px 16px;
	font-weight: 700;
	background: none;
	border: none;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	outline: none;
	transition: all .2s ease-in-out;
}
.header__search.active input[type="text"] {
	opacity: 1;
	visibility: visible;
	transition: all .2s ease-in-out .3s;
}
.header__search input[type="text"]::-webkit-input-placeholder { /* Edge */
	color: #fff;
}
.header__search input[type="text"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #fff;
}
.header__search input[type="text"]::placeholder {
	color: #fff;
}
.header__search form:after {
	content: "";
	position: absolute;
	top: 3px;
	right: 32px;
	width: 1px;
	height: 24px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
}
.header__search.active form:after {
	opacity: 1;
	visibility: visible;
}
.header__search img {
	height: 20px;
	position: absolute;
	top: 50%;
	right: 7px;
	padding: 0;
	background: none;
	border: none;
	transform: translateY(-50%);
	transition: all .3s ease-in-out;
}
.header__search.active img {
	right: 10px;
}
.header__bookmark {
	position: relative;
	cursor: pointer;
}
.header__bookmark svg {
	width: auto;
	height: 32px;
	stroke-width: 2px;
}
.header__finder {
	position: relative;
}
.header__finder img {
	width: 40px;
}
.header__bookmark .trip__counter {
	display: none;
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: var(--offWhite);
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.header__bookmark.active .trip__counter {
	display: flex;
}
.menu__button {

}
.menu__btn {
	width: 40px;
	height: 24px;
	cursor: pointer;
}
.line {
	height: 4px;
	width: 100%;
	background-color: #fff;
	display: block;
	margin-bottom: 6px;
	border-radius: 5px;
	transition: 0.3s ease-in-out;
}
.menu__btn.active .line {
	background-color: white;
}
.menu__btn.active #line1 {
	transform: translateY(10px) rotateZ(-45deg);
}
.menu__btn.active #line2 {
	opacity: 0;
}
.menu__btn.active #line3 {
	transform: translateY(-10px) rotateZ(45deg);
}
.main__nav {
	position: fixed;
	top: 145px;
	left: 0;
	width: 100%;
	height: calc(100% - 145px);
	background: var(--offWhite);
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
	transform: translateY(-200%);
}
.main__nav.active {
	opacity: 1;
	visibility: visible;
	transition: all .3s ease-in-out .2s;
	transform: translateY(0);
}
.main__nav-links {
	width: 33%;
	height: 100%;
	background: var(--lightBlue);
	padding: 80px;
}
.main__nav-links > ul {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 0;
	padding: 0;
	list-style: none;
}
.main__nav-links > ul li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	transition: all .2s ease-in-out;
}
.main__nav-links-plus {
	position: relative;
	width: 32px;
	height: 32px;
	cursor: pointer;
}
.main__nav-links-plus span:first-child {
	position: absolute;
	top: 50%;
	right: 0;
	width: 32px;
	height: 6px;
	background: var(--darkBlue);
	transition: all .2s ease-in-out;
	transform: translateY(-50%);
}
.main__nav-links-plus span:last-child {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 6px;
	height: 32px;
	background: var(--darkBlue);
	transition: all .2s ease-in-out;
	transform: translateY(-50%);
}
.main__nav-links li.active .main__nav-links-plus span:last-child {
	transform: translateY(-50%) rotate(90deg);
}
.main__nav-links .main__nav-links-title {
	width: 100%;
	display: flex;
    align-items: center;
    justify-content: space-between;
	font-size: 32px;
	font-weight: 900;
	text-decoration: none;
	color: var(--darkBlue);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.main__nav-links .main__nav-links-title:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--accent);
	transition: all .2s ease-in-out;
}
.main__nav-links li:hover .main__nav-links-title:after,
.main__nav-links li.active .main__nav-links-title:after {
	width: 100%;
}
.main__nav-submenu {
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	left: 33%;
	width: 33%;
	height: 100%;
	padding: 80px;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
}
.main__nav-first.active .main__nav-submenu {
	opacity: 1;
	visibility: visible;
	transition: all .3s ease-in-out;
}
.main__nav-submenu li {
	position: relative;
}
.main__nav-submenu.active li {
}
.main__nav-second {
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.main__nav-submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: var(--darkBlue);
    text-transform: uppercase;
    line-height: 1;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.main__nav-submenu-plus {
	position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.main__nav-submenu-plus:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 4px;
	background: var(--darkBlue);
	transition: all .2s ease-in-out;
	transform: translate(-50%, -50%);
}
.main__nav-submenu-plus:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 15px;
	background: var(--darkBlue);
	transition: all .2s ease-in-out;
	transform: translate(-50%, -50%);
}
.main__nav-submenu li.active .main__nav-submenu-plus:before {
	transform: translateY(-50%) rotate(90deg);
}
.main__nav-submenu-list {
	position: fixed;
	top: 0;
	left: 66%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 34%;
	height: 100%;
	padding: 80px;
	list-style: none;
	margin: 0;
	background: #fff;
	opacity: 0;
	visibility: hidden;
}
.main__nav-submenu li.active .main__nav-submenu-list {
	opacity: 1;
	visibility: visible;
	transition: all .3s ease-in-out;
}
.main__nav-submenu-list li {

}
.main__nav-submenu-list li a {
	font-size: 18px;
}
.main__nav-icons {
	position: absolute;
	top: 40px;
	right: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.main__nav-icons a {
	display: block;
	width: 80px;
	text-decoration: none;
	text-align: center;
}
.main__nav-icons-img {
	position: relative;
	width: 80px;
	height: 80px;
	border: 3px solid var(--darkBlue);
	border-radius: 100%;
	transition: all .2s ease-in-out;
}
.main__nav-icons-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.main__nav-icons a:hover .main__nav-icons-img {
	background: var(--darkBlue);
	box-shadow: 0 2px 10px rgba(51,113,128,0.5);
}
.finder__sprite .main__nav-icons-img{
	border: 0;
}
.finder__sprite img {
	width: 100%;
	height: 100%;
}
.main__nav-icons .finder__sprite:hover .main__nav-icons-img {
	background: none;
	box-shadow: none;
}
.main__nav-icons svg {
	position: absolute;
	width: auto;
	max-width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	fill: var(--darkBlue);
	transition: all .2s ease-in-out;
	transform: translate(-50%, -50%);
}
.main__nav-icons a:nth-child(1) svg .st0 {
	stroke: var(--darkBlue);
}
.main__nav-icons a:nth-child(1):hover svg .st0 {
	stroke: var(--accent);
}
.main__nav-icons a:nth-child(1):hover svg .st1 {
	stroke: var(--accent);
}
.main__nav-icons a:nth-child(1):hover svg .st2 {
	fill: var(--accent);
}
.main__nav-icons a:nth-child(2):hover svg .st0 {
	fill: var(--accent);
}
.main__nav-icons a:nth-child(2):hover svg .st1 {
	stroke: var(--accent);
}
.main__nav-icons a:nth-child(3) svg {
	left: 57%;
	fill: none;
}
.main__nav-icons a:nth-child(3):hover svg .st0 {
	fill: var(--accent);
}
.main__nav-icons a:nth-child(3):hover svg .st1 {
	stroke: var(--accent);
}
.main__nav-icons a:nth-child(4):hover svg .st0 {
	fill: var(--accent);
}
.main__nav-icons a:last-child svg {

}
.main__nav-icons a:last-child:hover svg .st0 {
	fill: var(--accent);
}
.main__nav-icons a:last-child:hover svg .st1 {
	stroke: var(--accent);
}
.main__nav-icons span {
	display: block;
	font-weight: 900;
	text-transform: uppercase;
	word-break: normal;
	font-size: 14px;
	line-height: 18px;
	margin-top: 8px;
}
/*END HEADER*/

/*HOMEPAGE*/
.home__master {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.home__master:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	opacity: 0.5;
}
.home__master-bigimage {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home__master video,
#home__master-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.accessibility__tools {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 9999;
}
.accessibility__tools.scrolled {
	bottom: 16px;
	left: 16px;
}
.accessibility__btn {
	display: block;
	margin-bottom: 16px;
	color: var(--darkBlue);
	text-decoration: none;
	transition: all .2s ease-in-out;
}
.accessibility__btn:last-child {
	margin-bottom: 0;
}
.accessibility__tools.scrolled .accessibility__btn {
	width: 40px;
}
.accessibility__btn:hover {
	color: var(--accent);
	text-decoration: none;
}
.accessibility__btn.active {
	color: var(--accent);
}
.accessibility__btn-img {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background: var(--darkBlue);
	border-radius: 100%;
	transition: all .2s ease-in-out;
}
.accessibility__tools.scrolled .accessibility__btn-img {
	width: 40px;
	height: 40px;
}
.accessibility__btn:hover .accessibility__btn-img {
	background: var(--accent);
}
.accessibility__btn.active .accessibility__btn-img {
	background: var(--accent);
}
.accessibility__btn-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: auto;
	transform: translate(-50%, -50%);
}
.accessibility__tools.scrolled .accessibility__btn-img img {
	width: 16px;
}
.accessibility__btn span {
	display: block;
	text-align: center;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 4px;
}
.accessibility__tools.scrolled .accessibility__btn span {
	display: none;
}
.skiptranslate.goog-te-gadget {
	display: none;
}
.accessibility__btn.active .skiptranslate.goog-te-gadget {
	display: block;
	background: #fff;
	padding: 16px;
	border-radius: 6px;
}
/*.home__slider {
	display: none;
	width: 100%;
	height: 100vh;
	position: relative;
}
.home__slider .owl-stage-outer,
.home__slider .owl-stage,
.home__slider .owl-item {
	height: 100%;
}
.home__slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home__slider h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 32px;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	transform: translate(-50%, -50%);
}*/
.events__slider-small {
	height: 134px;
	margin: 40px 0;
	padding: 0 40px;
}
.events__slider-item {
	display: block;
	padding: 0 16px;
	text-decoration: none;
}
.events__slider-item-inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	background: #f1f1f1;
	border-radius: 30px;
	overflow: hidden;
	cursor: pointer;
}
.events__slider-item-inner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--darkBlue);
	transition: all .2s ease-in-out;
}
.events__slider-item-inner:hover:before {
	width: 100%;
}
.events__slider-img {
	position: relative;
	width: 134px;
	height: 134px;
	border-radius: 20px;
	overflow: hidden;
}
.events__slider-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.events__slider-img span {
	position: absolute;
	top: 12px;
	left: 12px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: right;
	text-transform: uppercase;
}
.events__slider-info {
	position: relative;
	padding: 20px;
	width: calc(100% - 134px);
}
.events__slider-info p {
	font-weight: 600;
	color: var(--darkBlue);
	line-height: 1.2;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all .2s ease-in-out;
}
.events__slider-date {
	position: absolute;
	bottom: 15px;
	left: 20px;
}
.events__slider-date span {
	display: block;
	margin-bottom: 4px;
	line-height: 1;
	transition: all .2s ease-in-out;
}
.events__slider-date span:last-child {
	margin-bottom: 0;
}
.events__slider-item-inner:hover .events__slider-info p,
.events__slider-item-inner:hover .events__slider-date span {
	color: #fff;
}
.events__slider-small .owl-nav button {
	outline: none;
}
.events__slider-small .owl-nav button span {
	display: none;
}
.events__slider-small .owl-prev {
	position: absolute;
	top: 50%;
	left: 30px;
	border-top: 14px solid transparent !important;
	border-bottom: 14px solid transparent !important;
	border-right: 18px solid var(--accent) !important;
	transform: translateY(-50%);
}
.events__slider-small .owl-next {
	position: absolute;
	top: 50%;
	right: 30px;
	border-top: 14px solid transparent !important;
	border-bottom: 14px solid transparent !important;
	border-left: 18px solid var(--accent) !important;
	transform: translateY(-50%);
}
.home__welcome {
	margin: 80px 0;
}
.home__welcome-title {
	display: flex;
    flex-direction: column;
    color: var(--darkBlue);
}
.home__welcome-info {
	position: relative;
}
.home__welcome-txt {
	float: left;
	width: 50%;
	padding-top: 120px;
}
.home__welcome-txt p {
	max-width: 640px;
}
.home__welcome-img {
	float: left;
	width: 35%;
	text-align: center;
}
.home__welcome-img img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 50px;
	filter: drop-shadow(-4px 4px 4px #ddd);
}
.btn__finder {
	margin-top: 16px;
    line-height: 1;
}
.btn__finder img {
	width: 32px;
	height: 32px;
}
.home__welcome-icons {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.home__welcome-btn {
	display: block;
	margin-bottom: 40px;
	color: var(--darkBlue);
	text-decoration: none;
	transition: all .2s ease-in-out;
}
.home__welcome-btn:hover {
	color: var(--accent);
	text-decoration: none;
}
.home__welcome-icon {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background: var(--accent);
	border-radius: 100%;
	transition: all .2s ease-in-out;
}
.home__welcome-btn:hover .home__welcome-icon {
	box-shadow: 0 2px 10px rgb(217 88 60 / 50%);
}
.home__welcome-finder .home__welcome-icon {
	background: none;
}
.home__welcome-finder .home__welcome-icon img {
	width: 100%;
	max-width: 100%;
	height: 100%;
}
.home__welcome-finder:hover .home__welcome-icon {
	box-shadow: none;
}
.home__welcome-icon img,
.home__welcome-icon svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	max-width: 40px;
	height: 40px;
	transform: translate(-50%, -50%);
}
.home__welcome-btn span {
    display: block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 8px;
}
.everything__az {
	text-align: center;
	padding: 80px 0;
}
.az__items {
	margin-bottom: 80px;
	margin-right: -5px;
	margin-left: -5px;
}
.az-sizer {
	width: 33.333%;
}
.az__item {
	float: left;
	width: 33.333%;
	height: 460px;
	padding: 0 5px;
	margin-bottom: 10px;
	cursor: pointer;
}
.az__item-inner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.az__item-inner:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(83, 71, 65, 0.5);
	z-index: 1;
	transition: all .3s ease-in-out;
}
.az__item-inner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	z-index: 1;
	transition: all .3s ease-in-out;
}
.az__item:hover .az__item-inner:before,
.az__item:hover .az__item-inner:after {
	opacity: 0;
}
.az__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 2s ease-in-out;
}
.az__item:hover .az__item-inner > img {
	transform: scale(1.05);
}
.az__item-info {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	z-index: 2;
	transform: translate(-50%, -50%);
}
.az__item-info img {
	width: auto;
	height: 100px;
	display: block;
	margin: 0 auto 32px;
}
.az__item-info h3 {
	font-size: 44px;
	color: #fff;
	text-align: center;
	margin-bottom: 0;
}
.az__item:nth-child(2) {
	width: 66.666%;
}
.az__item:nth-child(4) {
	height: 930px;
}
.az__item:nth-child(6) {
	height: 930px;
}

.home__spotlights {
	padding: 80px 0;
	background: var(--lightBlue);
	text-align: center;
}
.home__spotlights-items {
	padding: 16px;
    background: #fff;
	border-radius: 16px;
	text-align: center;
}
.home__spotlights-item {
	display: block;
}
.home__spotlights-img {
	position: relative;
	margin-bottom: 24px;
	height: 480px;
}
.home__spotlights-img:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);
	z-index: 1;
}
.home__spotlights-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home__spotlights-img span {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	padding: 0 32px;
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-family:"loretta";
	z-index: 2;
}
.home__spotlights-items .owl-nav button {
	outline: none;
}
.home__spotlights-items .owl-nav button span {
	display: none;
}
.home__spotlights-items .owl-prev {
	position: absolute;
	top: 50%;
	left: -50px;
	border-top: 20px solid transparent !important;
	border-bottom: 20px solid transparent !important;
	border-right: 20px solid var(--accent) !important;
	transform: translateY(-50%);
}
.home__spotlights-items .owl-next {
	position: absolute;
	top: 50%;
	right: -50px;
	border-top: 20px solid transparent !important;
	border-bottom: 20px solid transparent !important;
	border-left: 20px solid var(--accent) !important;
	transform: translateY(-50%);
}
.home__spotlights .btn--yellow {
	margin-top: 40px;
}

.home__locations {
	padding: 120px 0;
}
.home__locations-map {
	width: 40%;
	float: left;
	padding-right: 48px;
}
.dti__map {
	width: 100%;
	height: auto;
}
.dti__map-location .st0 {
	cursor: pointer;
	transition: all .3s ease-in-out;
}
.dti__map-location:hover .st0,
.dti__map-location.active .st0 {
	fill: var(--darkBlue);
}
.home__locations-box {
	position: relative;
	float: left;
	width: 60%;
	overflow: hidden;
}
.home__locations-info {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	padding: 16px;
	background: #E1E1E1;
	border-radius: 16px;
	transition: all .3s ease-in-out;
}
.home__locations-info.active {
	position: relative;
	opacity: 1;
	visibility: visible;
}
.home__locations-txt {
	float: left;
	width: 50%;
	padding: 40px;
}
.home__locations-item {
	margin-bottom: 40px;
}
.home__locations-item p {
	margin-bottom: 0;
}
.home__locations-info .btn {

}
.home__locations-images {
	width: 50%;
	float: left;
}
.home__locations-images img {
	width: 100%;
	height: 33.333%;
	object-fit: cover;
	margin-bottom: 10px;
	border-radius: 8px;
}
.home__locations-images img:last-child {
	margin-bottom: 0;
}

.home__topten {
	padding: 80px 0;
}
.home__topten-nr {
    font-size: 270px;
    line-height: 60px;
    font-weight: 600;
    color: var(--darkBlue);
    font-family: "loretta";
    margin: 0;
}
.topten__list {
	width: 50%;
	float: left;
	text-align: center;
}
.topten__list h2 {
	margin-bottom: ;
}
.topten__list-info {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.topten__list-info img {
    width: auto;
    height: 210px;
    margin-right: 48px;
    float: left;
}
.topten__list ul {
	float: left;
}
.topten__list ul li {
	margin-bottom: 24px;
/*	color: var(--darkBlue);*/
	line-height: 1;
	text-align: left;
}
.topten__images {
	margin-bottom: 32px;
}
.topten__images img {
	width: 115px;
	height: 115px;
	object-fit: cover;
	margin-right: 8px;
}
.topten__images img:last-child {
	margin-right: 0;
}
.topten__itineraries {
	width: 50%;
	float: left;
	padding-left: 80px;
	text-align: center;
}
.topten__itineraries h2 {
    margin-bottom: ;
}
.topten__itineraries-item {
	width: 100%;
	height: 115px;
	position: relative;
}
.topten__itineraries-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.topten__itineraries-item h3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 40px;
	line-height: 115px;
	margin: 0;
	background: rgba(83,71,65,0.5);
}
.topten__itineraries-item h3:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 45px;
	border-top: 12px solid transparent !important;
	border-bottom: 12px solid transparent !important;
	border-left: 16px solid #fff !important;
	transform: translateY(-50%);
}
.insta__share h2 {
    height: 160px;
    line-height: 160px;
    font-size: 40px !important;
    color: #fff;
    text-align: center;
    background: var(--darkBlue);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.insta__share h2 img {
    width: 40px;
    height: 40px;
}
.insta__share-btn {
	display: block;
	text-align: center;
	font-size: 19px;
    line-height: 64px;
	color: var(--darkBlue);
	letter-spacing: 0.160em;
	text-transform: uppercase;
	text-decoration: none;
	background: var(--lightBlue);
	transition: all .2s ease-in-out;
}
.insta__share-btn:hover {
	text-decoration: none;
	background: var(--darkBlue);
	color: #fff;
}
.insta__share-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
    gap: 24px;
	flex-wrap: wrap;
	padding: 40px 0;
	text-align: center;
}
.insta__share-submit h3 {
	font-size: 32px;
	color: var(--darkBlue);
	margin-bottom: 0;
}
.featured__images-meet {
	padding: 40px;
}
.featured__images-meet h3 {
	font-size: 44px;
	color: var(--darkBlue);
	margin-bottom: 30px;
}
.featured__images-img {
	padding: 0;
}
.featured__images-img img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.featured__images-submit {
	position: relative;
	height: 400px;
	background: #EEF9FF;
}
.featured__submit-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translate(-50%, -50%);
}
.featured__images-submit h3 {
	font-size: 44px;
	color: var(--darkBlue);
	margin-bottom: 30px;
}
.featured__images .btn__red {
	position: relative;
	display: inline-block;
	padding: 7px 60px 7px 40px;
	color: #fff;
	font-weight: 900;
	font-size: 21px;
	text-transform: uppercase;
	text-decoration: none;
	background: var(--accent);
	border-radius: 6px;
	outline: none;
	border: none;
/*	font-family: 'Avenir', sans-serif;*/
	transition: all .3s ease-in-out;
}
.featured__images .btn__red:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important;
	border-left: 8px solid #fff !important;
	transform: translateY(-50%);
}

.featured__spotlights {
    background: #eef9ff;
}
.featured__spotlights .container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	height: 420px;
}
.featured__spotlights-meet {
	width: calc(50% - 210px);
	padding: 40px;
}
.featured__spotlights-meet h3 {

}
.featured__spotlights-meet a {
    font-size: 14px;
    padding: 14px;
}
.featured__spotlights-meet a:after {
	display: none;
}
.featured__spotlights-img {
	width: 420px;
	height: 420px;
}
.featured__spotlights-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured__spotlights-submit {
	width: calc(50% - 210px);
	padding: 40px;
}
.featured__submit a {
    font-size: 14px;
    padding: 14px;
}
.featured__submit a:after {
	display: none;
}
/*END HOMEPAGE*/

/*General Page Intro 50/50 Left Text & Right Video/Image */
.page__subtitle {
	max-width: 640px;
}
.page__desc-video {
	display: flex;
	gap: 80px;
}
.page__desc {
	flex-shrink: 0;
	width: calc(50% - 40px);
}
.page__video {
	flex-shrink: 0;
	width: calc(50% - 40px);
}
.page__video iframe,
.page__video video,
.page__video img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
/*End General Page Intro 50/50 Left Text & Right Video/Image */

/*MY ACCOUNT*/
.page__content--account .page__desc h2 {
	display: flex;
	align-items: center;
	gap: 16px;
}
.page__content--account .page__desc h2 svg {
	width: 40px;
	height: 40px;
}
/*END MY ACCOUNT*/

/*FILM*/
.film__gallery h2 {
	margin-bottom: 40px;
	text-align: center;
}
.film__info-desc {
	margin: 40px auto;
	padding: 0;
}
.film__info-desc h2 {
	margin-bottom: 40px;
	text-align: center;
}
.film__info-property {
	margin: 0 auto;
	padding: 60px 0;
	border-top: 3px solid var(--accent);
}
.film__info-property .btn__red {
	width: 360px;
	display: block;
	margin: 80px auto;
}
.dyk {
	background: var(--lightBlue);
	padding: 60px 0;
	margin-bottom: 60px;
	text-align: center;
}
.dyk h2 {
	margin-bottom: 50px;
	text-align: center;
	line-height: 1.4;
}
.dyk .cat__more-btn {
	display: inline-block;
}
.dyk .cat__more-btn:last-child {
	margin-left: 200px;
}
.river__sites {
	margin-bottom: 80px;
}
.river__sites-info {
	margin: 0 auto;
}
.river__sites h2 {
	margin-bottom: 80px;
	text-align: center;
}
.river__sites ul {
	column-count: 2;
	break-inside: avoid-column;
}
.river__sites ul li {
	font-size: 19px;
}

.itineraries__section {
	padding: 40px 0;
}
.itineraries__section .container {
	display: flex;
	gap: 80px;
}
.itineraries__section-title {
	width: 400px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.itineraries__section-title h3 {

}
.itineraries__items {
	width: calc(100% - 400px);
	display: flex;
    flex-wrap: wrap;
    gap: 24px;
    flex-shrink: 0;
}
.itineraries__item {
	position: relative;
	width: calc(50% - 20px);
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--darkBlue);
}
.itineraries__item:hover {
	text-decoration: none;
}
.itineraries__item img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	opacity: 0.5;
}
.itineraries__title {
	position: relative;
    color: #fff;
    font-size: 24px;
    z-index: 1;
    text-align: center;
}
.itineraries__title p {
	margin: 0;
}

/*LGBT*/
.lgbt__videos {
    margin: 80px auto;
}
.lgbt__video-item {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lgbt__video-iframe {
	width: 50%;
	height: 100%;
}
.lgbt__video-iframe iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lgbt__video-item:nth-child(even) .lgbt__video-iframe {
	order: 2;
}
.lgbt__video-info {
    width: 50%;
    height: 100%;
    padding: 64px;
    background: var(--lightBlue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lgbt__video-info p {
    font-size: 32px;
    font-family:"loretta";
    color: var(--darkBlue);
}
.lgbt__video-info a {
    font-weight: 700;
    color: --darkBlue;
    text-decoration: none;
}
.lgbt__video-info a:hover {
	text-decoration: underline;
}

.brochure__map {
	margin: 80px auto;
}
.brochure__map .container {
	display: flex;
	gap: 80px;
}
.brochure__map-item {
	width: 50%;
	text-align: center;
	display: flex;
    flex-direction: column;
    gap: 24px;
}
.brochure__item {
	/* display: flex;
	flex-direction: column;
	gap: 24px; */
}
.brochure__item-link {
	order: 3;
}
.brochure__item-link a {
	position: relative;
    display: inline-block;
    padding: 8px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    background: var(--accent);
    border-radius: 6px;
    outline: none;
    border: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.brochure__item img {
	width: auto;
    max-height: 640px;
    object-fit: contain;
}
.map__item {

}
.lgbt__partners {
	display: flex;
    flex-direction: column;
    gap: 40px;
}
.lgbt__partner-item {

}
.lgbt__partner-item img {
	width: 240px;
    height: 128px;
    object-fit: contain;
}

/* College */
.category__spotlights-college .category__spotlights-img {
	height: 320px !important;
}

/*Accessible Travel*/
.lr__videos {
    margin: 80px auto;
}
.lr__video-item {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lr__video-iframe {
	width: 50%;
	height: 100%;
}
.lr__video-iframe iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lr__video-item:nth-child(even) .lr__video-iframe {
	order: 2;
}
.lr__video-info {
    width: 50%;
    height: 100%;
    padding: 64px;
    background: var(--lightBlue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lr__video-info p {
    font-size: 32px;
    font-family:"loretta";
    color: var(--darkBlue);
}
.lr__video-info a {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.lr__video-info a:hover {
	text-decoration: underline;
}

/*Awards*/
.awards__sponsor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; /* adds space between logos */
}
.awards__sponsor-item {
	width: calc(50% - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.awards__sponsor-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Stack logos on smaller screens to prevent overlap */
@media (max-width: 768px) {
  .awards__sponsor-item {
    width: calc(100% - 20px); /* one logo per row */
    gap:20px;
  }
}

@media (max-width: 480px) {
  .awards__sponsor {
    gap: 20px; /* smaller spacing for tight screens */
  }
  .awards__sponsor-item img {
    max-width: 100%;
    height: auto;
  }
}

/*Digital Brochure*/
.digital__brochure {
	padding: 250px 0 80px;
}
.digital__brochure iframe {

}

/*Ambassadors*/
.ambassador__program-list {
	margin: 0;
    padding: 0 0 0 20px;
    column-count: 4;
    column-gap: 80px;
}

/*CIC BEERS*/
.cic__beers-logos {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 900%;
	margin: 0 auto;
}
.cic__beers-logos a {
	display: block;
	text-decoration: none;
}
.cic__beers-logos img {
	display: block;
	width: 150px;
	height: 150px;
	object-fit: contain;
}

/* FOOTER */
footer {
  padding: 80px;
}
.footer__contact {
  width: 50%;
  float: left;
}
.footer__contact img {
  width: 320px;
  height: auto;
  display: block;
  margin-bottom: 32px;
}
.footer__contact p {
  margin-bottom: 80px;
}
.footer__contact p a {
  display: block;
  text-decoration: none;
}
footer .btn {
    margin: 0 0 16px;
}
.footer__contact-link {
  display: block;
  font-size: 32px;
  text-decoration: none;
}
.footer__contact-link:last-child {
  margin-top: 40px;
}
.footer__info {
  width: 50%;
  float: left;
  text-align: right;
}
.social__icons {
  width: 100%;
  float: right;
  margin-bottom: 80px;
}
.social__icons a {
  float: right;
  margin-left: 16px;
}
.social__icons img {
  width: 40px;
  height: 40px;
}
.footer__info-copyright {
  float: right;
  width: 80%;
  margin-bottom: 60px;
}
.footer__info p {

}
.footer__info p a {
	font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
}
.footer__info p a:hover {
  text-decoration: underline;
  color: var(--darkBlue);
}
.footer__logos {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.footer__logos a {
  display: flex;
  width: 20%;
  max-width: 160px;
  padding-left: 32px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__logos img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}
.footer__info small {
  width: 100%;
  font-size: 12px;
  display: block;
  margin-top: 16px;
}
.cc-window {
	z-index: 99999;
}
.cc-btn {
	font-weight: 600;
	text-transform: uppercase;
}
.cc-btn:hover, .cc-btn:focus {
	background: var(--accent) !important;
	text-decoration: none;
}
.cr__gallery .loadMore {
	background: var(--lightBlue) !important;
}
.cr__gallery .loadMore__text {
    color: var(--darkBlue) !important;
    text-transform: uppercase;
}
.ctct-form-button {
	width: auto !important;
    position: relative;
    display: inline-block !important;
    padding: 14px 60px 14px 40px !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 19px !important;
    text-transform: uppercase !important;
    text-decoration: none;
    text-align: center !important;
    background: var(--accent) !important;
    border-radius: 6px !important;
    outline: none;
    border: none !important;
    transition: all .3s ease-in-out !important;
}
.ctct-form-button:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important;
	border-left: 8px solid #fff !important;
	transform: translateY(-50%);
}
.ctct-form-button:hover {
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 10px rgb(217 88 60 / 50%);
}
.error__404 {
  text-align: center;
  margin: 150px 0 0;
  font-size: 24px;
}
.error__404 h2 {
  margin-bottom: 20px;
}
.error__404 img {
  width: 400px;
  max-width: 100%;
  display: block;
  margin: 0 auto 40px;
}
/*END FOOTER*/
