/*!
Theme Name: odysseo
Theme URI: http://underscores.me/
Author: GWS Technologies Ltd
Author URI: https://www.gws-technologies.com/
Description: odysseo
Version: 1.0.0
*/


/*-------------------------------*/
/* WORDPRESS CLEAN UP */
/*-------------------------------*/
aside#secondary,
header.entry-header,
footer.entry-footer {
    display: none;
}
p:empty {
    display: none;
}
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    margin-bottom: 0;
}
body, 
html {
    overflow-x: hidden;
}
a {
    text-decoration: none !important;
    cursor: pointer !important;
    outline: none !important;
}
.post, 
.page,
.entry-content {
    margin: 0 !important;
}
input {
    outline: none !important;
}
.vc_col-has-fill>.vc_column-inner, 
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, 
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, 
.vc_row-has-fill>.vc_column_container>.vc_column-inner,
.vc_column_container>.vc_column-inner {
    padding: 0 !important; 
}
.vc_single_image-wrapper img {
    object-fit: cover;
    height: 100% !important;
    width: 100%;
}
.vc_single_image-wrapper {
    height: 100%;
    width: 100%;
}
.wpb_single_image .wpb_wrapper {
    height: 100%;
    width: 100%;
}
.wpb_content_element {
    margin-bottom: 0 !important;
}
.entry-summary {
    margin-top: 0 !important;
}
.vc_row {
    margin: 0 !important;
}

/* Scroll */
::-webkit-scrollbar {
    display: none;
}
::-webkit-scrollbar-track {
    display: none;
}
::-webkit-scrollbar-thumb {
    display: none;
}

.otgs-development-site-front-end {
    display: none;
}


/*-------------------------------*/
/* GENERAL CLASSES */
/*-------------------------------*/
h1,h2,h3,h4,h5,h6,li,lo,p,a,button,form *,table th,table td, select, option,div {
    font-family: 'Carlito', sans-serif;
}
.red-hat-display {
    font-family: 'Red Hat Display', sans-serif;
}
.carlito {
    font-family: 'Carlito', sans-serif;
}
.odysseo-widthcontainer,
.odysseo-wp-widthcontainer > .vc_column-inner {
    margin: 0 auto !important;
    max-width: 1170px;
}
.odysseo-width85-container,
.odysseo-width85container > .vc_column_container {
    margin: 0 auto;
    max-width: 85%;
    float: none;
}
.odysseo-width95-container,
.odysseo-width95container > .vc_column_container {
    margin: 0 auto;
    max-width: 95%;
    float: none;
}
.odysseo-width90-container,
.odysseo-width90container > .vc_column_container {
    margin: 0 auto;
    max-width: 90%;
    float: none;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check input {
    display: none;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check label {
    text-transform: uppercase;
    display: flex !important;
    align-items: center;
    padding-left: 40px;
    position: relative;
    line-height: 18px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
    gap: 3px;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check label:before {
    background-color: transparent;
    border: 1px solid #FFF;
    border-radius: 5px;
    position: absolute;
    cursor: pointer;
    height: 20px;
    width: 20px;
    content: '';
    top: -1px;
    left: 0;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check label a {
	color: #00B4D5;
	text-decoration: underline !important;
	text-decoration-color: transparent !important;
	transition: 0.6s all ease-in-out;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check label a:visited {
    color: #00B4D5;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check label a:hover {
    color: #00B4D5;
	text-decoration: underline !important;
	text-decoration-color: #00B4D5 !important;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check label:after {
    position: absolute;
    height: 13px;
    content: '';
    width: 6px;
    opacity: 0;
    left: 7px;
    top: 1px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
	transition: 0.6s all ease-in-out;
}
.gform-theme.gform-theme--framework.gform_wrapper .custom-check input:checked + label:after {
    opacity: 1;
}
.uppercase {
    text-transform: uppercase;
}
.white-bg {
    background: #FFFFFF;
}
.white-color,
.white-color * {
    color: #FFFFFF;
}
.odysseo-grey-bg {
    background: #737D82;
}
.odysseo-grey-color,
.odysseo-grey-color * {
    color: #737D82;
}
.odysseo-blue-bg {
    background: #00B4D5;
}
.odysseo-blue-color,
.odysseo-blue-color * {
    color: #00B4D5;
}
.odysseo-darkblue-bg {
    background: #012D53;
}
.odysseo-darkblue-color,
.odysseo-darkblue-color * {
    color: #012D53;
}


/* Animation */
@keyframes slideUp {
    0% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0);
    }
}
.slideUp {
    animation: 1s ease-out 0s 1 slideUp;
}
@keyframes slideDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}
.slideDown {
    animation: 1s ease-out 0s 1 slideDown;
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
.slideInLeft {
    animation: 1s ease-out 0s 1 slideInLeft;
}
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
.slideInRight {
    animation: 1s ease-out 0s 1 slideInRight;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes animRipple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1.25, 1.25, 1);
    }
}
.animRipple {
    animation: animRipple 2s infinite;
}
@keyframes floatTopBottom {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
.floatTopBottom {
    animation: floatTopBottom 10s ease-in-out infinite;
}
@keyframes floatBottomTop {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(20px);
	}
	100% {
		transform: translatey(0px);
	}
}
.floatBottomTop {
    animation: floatBottomTop 10s ease-in-out infinite;
}
@keyframes floatLeftRight {
	0% {
		transform: translatex(0px);
	}
	50% {
		transform: translatex(-20px);
	}
	100% {
		transform: translatex(0px);
	}
}
.floatLeftRight {
    animation: floatLeftRight 10s ease-in-out infinite;
}
@keyframes floatRightLeft {
	0% {
		transform: translatex(0px);
	}
	50% {
		transform: translatex(20px);
	}
	100% {
		transform: translatex(0px);
	}
}
.floatRightLeft {
    animation: floatRightLeft 10s ease-in-out infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.spin {
    animation: spin 10s linear infinite;
}


/* Header */
.logged-in .odysseo-header-container {
    top: 32px;
}
body {
    background: #F4FCFF !important;
}


/* Top Menu */
.header-social-links a i {
    line-height: 15px;
    color: #00B4D5;
    font-size: 15px;
    transition: 0.6s all ease-in-out;
}
.header-social-links a:hover i {
    color: #012D53;
}
.header-social-links a.instagram i {
    font-size: 18px;
}
.header-social-links a {
    justify-content: center;
    align-items: center;
    width: fit-content;
    display: flex;
}
.header-social-links {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 15px;
}
.odysseo-top-header-wrapper {
    padding-bottom: 10px;
}
.odysseo-top-header-wrapper {
    position: relative;
}
.odysseo-top-header-wrapper:after {
    background: #00B4D5;
    position: absolute;
    height: 0.2px;
    width: 100vw;
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    transition: 0.6s all ease-in-out;
}
.top-header-menu-socials-date {
    justify-content: flex-end;
    align-items: center;
    display: flex;
}
.top-header-account-menu-socials {
    align-items: center;
    display: flex;
}
.top-header-menu-wrapper ul {
    align-items: center;
    list-style: none;
    display: flex;
    padding: 0;
    gap: 40px;
    margin: 0;
}
.top-header-menu-socials {
    justify-content: flex-end;
    align-items: center;
    display: flex;
    gap: 40px;
}
.top-header-date-wrapper p {
    text-transform: uppercase;
    align-items: center;
    line-height: 18px;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 14px;
    display: flex;
    opacity: 0;
    gap: 10px;
    transition: 0.6s all ease-in-out;
}
.top-header-date-wrapper p i {
    line-height: 18px;
    font-size: 18px;
}
.top-header-date-wrapper p span {
    display: block;
}
.top-header-menu-wrapper ul li.menu-item a {
    text-transform: uppercase;
    line-height: 18px;
    color: #00B4D5;
    font-weight: 400;
    font-size: 14px;
    display: block;
    transition: 0.6s all ease-in-out;
}
.top-header-menu-wrapper ul li.menu-item:hover a {
    color: #012D53;
}
.top-header-date-wrapper {
    left: calc((100% - 1170px)/2);
    position: absolute;
    z-index: 2;
    opacity: 0;
}
.odysseo-top-header-wrapper:before {
    background: #00B4D5;
    position: absolute;
    display: none;
    width: 100vw;
    height: 35px;
    content: "";
    right: 0;
    left: 0;
    top: 0;
    transition: 0.6s all ease-in-out;
}
ul.language-dropdown-menu {
    justify-content: center;
    align-items: center;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
ul.language-dropdown-menu li a {
    line-height: 18px;
    color: #00B4D5;
    font-weight: 400;
    font-size: 14px;
    cursor: default;
}
ul.language-dropdown-menu li {
    position: relative;
    line-height: 18px;
    color: #00B4D5;
    font-weight: 400;
    font-size: 14px;
    cursor: default;
}
ul.language-dropdown-menu li:last-child {
    padding-left: 7px;
    margin-left: 7px;
}
ul.language-dropdown-menu li.current-language {
    font-weight: 700;
}
ul.language-dropdown-menu li:last-child:after {
    background: #00B4D5;
    position: absolute;
    margin: auto 0;
    content: '';
    height: 85%;
    width: 2px;
    bottom: 0;
    left: 0;
    top: 0;
}


/* Bottom Menu */
.odysseo-logo svg {
    height: 60px;
    width: 175px;
}
.odysseo-menu-wrapper ul li a,
.odysseo-menu-wrapper ul li a:not([href]):not([class]) {
    text-transform: uppercase;
    background: transparent;
    border-radius: 75px;
    line-height: 20px;
    padding: 6px 12px;
    font-weight: 700;
    color: #00B4D5;
    font-size: 16px;
	display: block;
    transition: 0.6s all ease-in-out;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li.menu-item-has-children > .dropdown-toggle {
    padding-right: 30px;
    position: relative;
    z-index: 5;
}
.odysseo-menu-wrapper ul.navbar-nav > li.current-menu-ancestor > a {
    background: #A5D6C84D;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li.menu-item-has-children > .dropdown-toggle::after {
    font-family: 'font awesome 5 pro';
    align-items: center;
    position: absolute;
    font-weight: 700;
    content: '\f078';
    color: #00B4D5;
    font-size: 12px;
    display: flex;
    border: none;
    height: 100%;
    right: 10px;
    margin: 0;
    top: 1px;
    transition: 0.6s all ease-in-out;
}
.odysseo-menu-wrapper .navbar-collapse > ul {
    align-items: center;
    position: relative;
    margin-left: 0;
    gap: 3px;
}
.menu-container-items {
    align-items: center;
    display: flex;
}
.search-basket-wrapper {
    align-items: center;
    margin-left: 25px;
    display: flex;
}
.search-holder {
    margin-right: 25px;
    cursor: pointer;
    height: 23px;
    width: 23px;
}
.search-holder svg path {
    fill: #00B4D5;
    transition: 0.6s all ease-in-out;
}
.basket-holder svg path {
    fill: #00B4D5;
    transition: 0.6s all ease-in-out;
}
.odysseo-menu-wrapper ul li.menu-item-has-children:hover:before {
    position: absolute;
    cursor: pointer;
    display: block;
    bottom: -25px;
    height: 50px;
    content: '';
    z-index: 2;
    right: 0;
    left: 0;
}
.odysseo-main-menu nav.navbar.navbar-expand-lg {
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}
.odysseo-header-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.odysseo-top-bottom-header-wrapper {
    padding-top: 10px;
}
.odysseo-main-menu {
    padding-bottom: 30px;
    padding-top: 15px;
    transition: 0.6s all ease-in-out;
}
.odysseo-header-container {
    background: #F4FCFF;
    position: fixed;
    z-index: 10;
    right: 0;
    left: 0;
    top: 0;
    transition: 0.6s ease-in-out;
}
.odysseo-logo svg path {
    transition: 0.6s all ease-in-out;
}
.odysseo-logo > a {
    display: block;
}
.odysseo-book-now-btn {
    margin-left: 30px;
}
.odysseo-book-now-btn a {
    border: 1px solid transparent;
    text-transform: uppercase;
    background: #FFDE42;
    border-radius: 30px;
    padding: 12px 25px;
    line-height: 20px;
    color: #012D53;
    font-weight: 700;
    font-size: 16px;
    display: block;
    transition: 0.6s all ease-in-out;
}
.odysseo-book-now-btn a:visited {
    color: #012D53;
}
.odysseo-book-now-btn a:hover {
    border-color: #012D53;
    background: #012D53;
    color: #FFDE42;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li > ul.dropdown-menu {
    box-shadow: 2px 6px 10px #00000026;
    background: #012D53;
    height: fit-content;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    display: none;
    width: 300px;
    outline: 0;
    left: -64%;
    top: 35px;
    border: 0;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li:first-child > ul.dropdown-menu {
    left: -46%;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li:last-child > ul.dropdown-menu {
    left: -111%;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li:hover > ul.dropdown-menu {
    display: block;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li > ul.dropdown-menu > li.menu-item:not(:last-child) {
    padding-bottom: 5px;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li > ul.dropdown-menu > li.menu-item:hover > a {
    color: #00B4D5;
}
.odysseo-logo {
    padding-bottom: 15px;
}
.basket-holder:hover svg path {
    fill: #012D53;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li > ul.dropdown-menu > li.menu-item > a {
    padding: 12px 7px;
}
.odysseo-menu-wrapper .navbar-collapse > ul > li > ul.dropdown-menu > li.menu-item.current-menu-item > a {
    background: #A5D6C84D;
}


/* Sticky Menu */
.sticky-header .odysseo-menu-wrapper .navbar-collapse > ul > li > ul.dropdown-menu {
	box-shadow: 0 0 10px 0 #012d5380;
	padding-top: 35px;
}
.sticky-header .odysseo-menu-wrapper ul li a,
.sticky-header .odysseo-menu-wrapper ul li a:not([href]):not([class]) {
    color: #FFFFFF;
}
.sticky-header .search-holder svg path {
    fill: #fff;
}
.sticky-header .basket-holder svg path {
    fill: #fff;
}
.odysseo-header-container.sticky-header {
    background: #012D53;
}
.sticky-header .top-header-date-wrapper p {
    opacity: 1;
}
.sticky-header .odysseo-logo svg path {
    fill: #FFFFFF;
}
.sticky-header .odysseo-menu-wrapper .navbar-collapse > ul > li.menu-item-has-children > .dropdown-toggle::after {
    color: #FFFFFF;
}
.sticky-header .top-header-menu-wrapper ul li.menu-item a {
    color: #FFFFFF;
}
.sticky-header .header-social-links a i {
    color: #FFFFFF;
}
.sticky-header .odysseo-top-header-wrapper:after {
    display: none;
}
.sticky-header .top-header-menu-socials {
    position: relative;
    z-index: 2;
}
.sticky-header .odysseo-top-header-wrapper {
    position: initial;
}
.sticky-header .odysseo-main-menu {
    padding-bottom: 15px;
}
.sticky-header .odysseo-logo svg {
    height: 50px;
    width: 140px;
}
.sticky-header .odysseo-header-wrapper {
    align-items: flex-end;
}
.sticky-header .odysseo-top-header-wrapper:before {
    display: block;
}
.sticky-header .top-header-date-wrapper {
    opacity: 1;
}
.sticky-header .top-header-menu-wrapper ul li.menu-item:hover a {
    color: #012D53;
}
.sticky-header .header-social-links a:hover i {
    color: #012D53;
}
.sticky-header .basket-holder:hover svg path {
    fill: #00B4D5;
}
.sticky-header .menu-search-holder input[type="text"] {
    border-color: #FFFFFF;
    background: #FFFFFF1a;
    color: #FFFFFF;
}
.sticky-header .menu-search-holder input[type="text"]::placeholder {
    color: #FFFFFF;
}
.sticky-header .menu-search-holder button svg path {
    fill: #FFFFFF;
}
.sticky-header ul.language-dropdown-menu li a {
    color: #FFFFFF;
}
.sticky-header ul.language-dropdown-menu li {
    color: #FFFFFF;
}
.sticky-header ul.language-dropdown-menu li:last-child:after {
    background: #FFFFFF;
}
.sticky-header .odysseo-book-now-btn a:hover {
    background: #FFFFFF;
    color: #012D53;
}


/* Search Menu */
.menu-search-container {
    position: absolute;
    padding-right: 0;
    height: inherit;
    margin: 0 auto;
    right: 195px;
    width: 100%;
    z-index: 12;
    left: auto;
    top: 0;
}
.menu-search-holder {
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    margin-left: auto;
    overflow: hidden;
    margin-right: 0;
    display: flex;
    height: 100%;
    width: 80%;
}
.menu-search-holder input[type="text"] {
    backdrop-filter: blur(15px);
    border: 1px solid #00B4D5;
    padding: 8px 20px 8px 40px;
    background: #00B4D51a;
    border-radius: 50px;
    line-height: 20px;
    color: #00B4D5;
    font-size: 16px;
    width: 600px;
    height: 46px;
}
.menu-search-holder input::placeholder {
    line-height: 20px;
    color: #00B4D5;
    font-weight: 400;
    font-size: 16px;
}
.menu-search-holder input[type="text"]:focus {
    color: #00B4D5;
}
.menu-search-holder button {
    background: transparent;
    padding: 0 20px 0 0;
    position: absolute;
	margin: auto 0;
    height: 23px;
	outline: 0;
	bottom: 0;
    border: 0;
    right: 0;
	top: 0;
    transition: 0.6s all ease-in-out;
}
.menu-search-holder form {
    position: relative;
    display: flex;
}
.menu-search-holder button svg {
    object-fit: cover;
    height: 100%;
	width: 100%;
}
.menu-search-holder button svg path {
	fill: #00B4D5;
}
.search-holder svg {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.search-active .odysseo-menu-wrapper.menu-wrapper,
.search-active .search-holder,
.search-active .basket-holder {
    pointer-events: none;
    opacity: 0;
}
.odysseo-menu-holder.search-active {
    position: relative;
}


/* Transparent Menu */
.odysseo-header-container.transparent-header {
    background: transparent;
}
.transparent-header .odysseo-menu-wrapper ul li a,
.transparent-header .odysseo-menu-wrapper ul li a:not([href]):not([class]) {
    color: #FFFFFF;
}
.transparent-header .odysseo-menu-wrapper .navbar-collapse > ul > li.menu-item-has-children > .dropdown-toggle::after {
    color: #FFFFFF;
}
.transparent-header .odysseo-logo svg path {
    fill: #FFFFFF;
}
.transparent-header .top-header-menu-wrapper ul li.menu-item a {
    color: #FFFFFF;
}
.transparent-header .search-holder svg path {
    fill: #FFFFFF;
}
.transparent-header .basket-holder svg path {
    fill: #FFFFFF;
}
.transparent-header .header-social-links a i {
    color: #FFFFFF;
}
.transparent-header .odysseo-top-header-wrapper:after {
    background: #FFFFFF;
}
.odysseo-header-container.transparent-header.sticky-header {
    background: #012D53;
}
.transparent-header .top-header-menu-wrapper ul li.menu-item:hover a {
    color: #00B4D5;
}
.sticky-header.transparent-header .top-header-menu-wrapper ul li.menu-item:hover a {
    color: #012D53;
}
.transparent-header .header-social-links a:hover i {
    color: #00B4D5;
}
.sticky-header.transparent-header .header-social-links a:hover i {
    color: #012D53;
}
.transparent-header .odysseo-book-now-btn a:hover {
    border-color: transparent;
}
.sticky-header.transparent-header .odysseo-book-now-btn a:hover {
    border-color: #FFFFFF;
}
.transparent-header .basket-holder:hover svg path {
    fill: #012D53;
}
.sticky-header.transparent-header .basket-holder:hover svg path {
    fill: #00B4D5;
}
.transparent-header .menu-search-holder input[type="text"] {
    border-color: #FFFFFF;
    background: #FFFFFF1a;
    color: #FFFFFF;
}
.transparent-header .menu-search-holder input[type="text"]::placeholder {
    color: #FFFFFF;
}
.transparent-header .menu-search-holder button svg path {
    fill: #FFFFFF;
}
.transparent-header ul.language-dropdown-menu li a {
    color: #FFFFFF;
}
.transparent-header ul.language-dropdown-menu li {
    color: #FFFFFF;
}
.transparent-header ul.language-dropdown-menu li:last-child:after {
    background: #FFFFFF;
}


/* Home Menu */
.home-header .odysseo-top-header-wrapper:after {
    background: #FFFFFF;
    top: 35px;
}
.home-header .odysseo-logo {
    position: relative;
    top: 40px;
    transition: 0.6s all ease-in-out;
}
.home-header .odysseo-top-header-wrapper {
    padding-bottom: 8px;
    position: initial;
}
.odysseo-header-container.home-header {
    background: transparent;
}
.home-header .top-header-menu-socials-date {
    height: 18px;
}
.home-header .header-social-links {
    display: none;
}
.home-header .top-header-menu-wrapper ul {
    gap: 25px;
}
.home-header .top-header-menu-wrapper ul li.menu-item a {
    color: #A5D6C8;
}
.home-header .top-header-menu-socials {
    right: calc((100% - 1170px)/2);
    left: calc((100% - 1170px)/2);
    justify-content: center;
    position: absolute;
    margin: 0 auto;
    width: 1170px;
}
.home-header .odysseo-main-menu {
    padding: 15px 0 20px;
}
.home-header .odysseo-menu-wrapper ul li a,
.home-header .odysseo-menu-wrapper ul li a:not([href]):not([class]) {
    color: #FFFFFF;
}
.home-header .odysseo-menu-wrapper .navbar-collapse > ul > li.menu-item-has-children > .dropdown-toggle::after {
    color: #FFFFFF;
}
.home-header .search-basket-wrapper {
    display: none;
}
.home-header .search-basket-wrapper {
    margin-right: 85px;
}
.home-header .search-holder svg path {
    fill: #FFFFFF;
}
.home-header .basket-holder svg path {
    fill: #FFFFFF;
}
.home-header .odysseo-logo svg path {
    fill: #FFFFFF;
}
.home-header .menu-search-holder input[type="text"] {
    border-color: #FFFFFF;
    background: #FFFFFF1a;
    color: #FFFFFF;
}
.home-header .menu-search-holder input[type="text"]::placeholder {
    color: #FFFFFF;
}
.home-header .menu-search-holder button svg path {
    fill: #FFFFFF;
}
.home-header .basket-holder:hover svg path {
    fill: #00B4D5;
}
.home-header .top-header-menu-wrapper ul li.menu-item:hover a {
    color: #00B4D5;
}
.sticky-header.home-header .top-header-menu-wrapper ul li.menu-item a {
    color: #FFFFFF;
}
.sticky-header.home-header .top-header-menu-socials {
    justify-content: flex-end;
    position: relative;
    right: initial;
    width: initial;
    left: initial;
    margin: 0;
}
.sticky-header.home-header .top-header-menu-wrapper ul li.menu-item:hover a {
    color: #012D53;
}
.sticky-header.home-header .top-header-menu-wrapper ul {
    gap: 40px;
}
.sticky-header.home-header .header-social-links {
    display: flex;
}
.sticky-header.home-header .odysseo-top-header-wrapper {
    padding-bottom: 10px;
}
.sticky-header.home-header .odysseo-main-menu {
    padding: 15px 0;
}
.sticky-header.home-header .search-basket-wrapper {
    margin-right: 0;
}
.sticky-header.home-header .search-basket-wrapper {
    display: flex;
}
.sticky-header.home-header .odysseo-logo {
    position: initial;
}
.odysseo-header-container.home-header.sticky-header {
    background: #012D53;
}
.home-header .odysseo-main-menu {
    height: 67px;
}
.home-header .odysseo-main-menu nav.navbar.navbar-expand-lg {
    right: calc((100% - 1170px) / 2);
    left: calc((100% - 1170px) / 2);
    justify-content: center;
    position: absolute;
    width: 1170px;
}
.sticky-header.home-header .odysseo-main-menu nav.navbar.navbar-expand-lg {
    justify-content: flex-end;
    position: initial;
    width: initial;
}
.sticky-header.home-header .odysseo-main-menu {
    height: fit-content;
}
.odysseo-menu-wrapper ul.navbar-nav > li.current-menu-item > a {
    background: #A5D6C84D;
}
.home-header ul.language-dropdown-menu li a {
    color: #FFFFFF;
}
.home-header ul.language-dropdown-menu li {
    color: #FFFFFF;
}
.home-header ul.language-dropdown-menu li:last-child:after {
    background: #FFFFFF;
}


/* Footer */
footer#colophon {
    background: linear-gradient(180deg, #01437B 0%, #011E37 100%);
}
.copyright-inner {
    border-top: 0.25px solid #FFFFFF;
    justify-content: space-between;
    padding: 15px 0 25px;
    align-items: center;
    display: flex;
}
.rights-reserved-holder * {
    align-items: center;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    gap: 2px;
}
.rights-reserved-holder a {
	transition: 0.6s all ease-in-out;
}
.rights-reserved-holder a:visited {
	color: #FFFFFF;
}
.rights-reserved-holder a:hover {
	color: #00B4D5;
}
.policy-menus-holder ul {
    align-items: center;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 15px;
}
.policy-menus-holder ul li * {
    text-transform: uppercase;
    line-height: 18px;
    font-weight: 400;
    font-size: 14px;
    display: block;
}
.policy-menus-holder ul li a {
	transition: 0.6s all ease-in-out;
}
.policy-menus-holder ul li a:visited {
	color: #FFFFFF;
}
.policy-menus-holder ul li a:hover {
	color: #00B4D5;
}
.footer-content-inner {
    border-top: 0.25px solid #FFFFFF;
    justify-content: space-between;
    padding: 60px 50px 45px 0;
    align-items: flex-start;
    display: flex;
}
.footer-content-inner .odysseo-logo svg path {
    fill: #FFFFFF;
}
.footer-content-inner .odysseo-logo svg {
    height: 65px;
    width: 190px;
}
.footer-menus-holder {
    display: flex;
    gap: 50px;
}
.footer-menu-title {
    margin-bottom: 30px;
}
.footer-menu ul {
    flex-direction: column;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 15px;
}
.footer-menu ul li a {
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    display: block;
    transition: 0.6s all ease-in-out;
}
.footer-menu-title p {
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
}
.footer-menu ul li a:visited {
    color: #FFFFFF;
}
.footer-menu ul li a:hover {
    color: #00B4D5;
}
.footer-contact-us-message-wrapper {
    border-top: 1px solid #FFFFFF;
    margin-left: 35px;
    padding-top: 15px;
    margin-top: 15px;
}
.footer-contact-us-message a {
    text-transform: uppercase;
    align-items: center;
    width: fit-content;
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    gap: 30px;
    transition: 0.6s all ease-in-out;
}
.footer-contact-us-message a:visited {
    color: #FFFFFF;
}
.footer-contact-us-message a:hover {
    color: #00B4D5;
}
.footer-contact-us-message a i {
    transition: 0.6s all ease-in-out;
}
.footer-contact-us-message a:hover i {
    color: #00B4D5;
}
.footer-contact-us-message a:hover {
    gap: 15px;
}
.footer-contact-us-links-wrapper {
    flex-direction: column;
    display: flex;
    gap: 15px;
}
.footer-contact-us-link-item {
    align-items: flex-start;
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    gap: 15px;
    transition: 0.6s all ease-in-out;
}
.footer-contact-us-link-item i {
    transition: 0.6s all ease-in-out;
    font-size: 20px;
    width: 20px;
}
.footer-phone .footer-contact-us-link-item {
    font-weight: 400;
}
a.footer-contact-us-link-item:visited *,
a.footer-contact-us-link-item:visited,
a.footer-contact-us-link-item:focus *,
a.footer-contact-us-link-item:focus {
    color: #FFFFFF;
}
a.footer-contact-us-link-item:hover *,
a.footer-contact-us-link-item:hover{
    color: #00B4D5;
}
.footer-newsletter-wrapper {
    padding: 70px 0 60px;
    padding-right: calc((100% - 1170px)/2);
    padding-left: calc((100% - 1170px)/2);
    position: relative;
    overflow: hidden;
}
.footer-newsletter-pattern-wrapper {
    position: absolute;
    left: -80px;
    top: -85px;
}
.footer-newsletter-pattern svg {
	overflow: visible;
}
.footer-newsletter-form {
    margin-left: auto;
    width: 60%;
}
.subscribe-title {
    margin-bottom: 20px;
}
.subscribe-title p {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.subscribe-text {
    margin-bottom: 25px;
}
.subscribe-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.subscribe-form label,
.subscribe-form legend {
    display: none !important;
}
.subscribe-form .gfield--type-captcha iframe {
    transform: scale(0.9);
    margin-left: -15px;
}
.subscribe-form .gform-theme.gform-theme--framework.gform_wrapper .gform_footer {
    padding: 0 !important;
    margin: 0 !important;
    height: fit-content;
    width: fit-content;
    position: absolute;
    right: 0;
    top: 0;
}
.subscribe-form .gform-theme.gform-theme--framework.gform_wrapper .gform_footer input.button[type=submit] {
    font-family: 'Carlito', sans-serif;
    border: 1px solid #64C3D2;
    text-transform: uppercase;
    background: #64C3D2;
    padding: 15px 85px;
    line-height: 20px;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    height: 55px;
    width: 100%;
    outline: 0;
    margin: 0;
    transition: 0.6s all ease-in-out;
}
.subscribe-form {
    position: relative;
}
.subscribe-form .gform-theme.gform-theme--framework.gform_wrapper .ginput_container_email input {
    padding: 15px 0 15px 30px !important;
    border-radius: 0 !important;
    border: none !important;
    background: #FFFFFF1A;
    color: #ffffff99;
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
    height: 55px;
}
.subscribe-form .gform-theme.gform-theme--framework.gform_wrapper .ginput_container.ginput_container_email input::placeholder {
    color: #ffffff99;
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.subscribe-form .gform-theme.gform-theme--framework.gform_wrapper .gform_footer input.button:hover {
    background: #64c3d240;
}
.subscribe-form .gform-theme.gform-theme--framework.gform_wrapper .gform-body.gform_body .gform_fields {
    row-gap: 13px;
}
.subscribe-form .gform-theme.gform-theme--framework.gform_wrapper .gform-body.gform_body .gform_fields .gfield--type-email {
    margin-bottom: 20px;
}


/* Home */
body.home {
    background: linear-gradient(180deg, #01437B 0%, #011E37 100%) !important;
}
.banner-image {
    height: 100%;
    width: 100%;
}
.banner-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.banner-image:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    height: 100%;
    content: '';
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.banner-date-book-btn-wrapper .top-header-date-wrapper p.top-header-date-closed {
    text-transform: initial;
    padding-left: 33px;
    font-weight: 400;
}
.vc_row.visit-event-learn-row {
    position: relative;
}
.vc_row.wpb_row.vc_row-fluid.visit-event-learn-row:after {
    background: linear-gradient(0deg, rgba(1, 45, 83, 0) 0%, rgba(1, 45, 83, 0.6) 32%, rgba(1, 45, 83, 1) 59%, rgba(1, 45, 83, 0.69) 69%, rgba(1, 45, 83, 0) 100%);
    position: absolute;
    height: 725px;
    top: -295px;
    content: '';
    width: 100%;
    right: 0;
    left: 0;
}
.vc_row.visit-event-learn-inner-row {
    position: relative;
    z-index: 2;
}
.banner-image-wrapper {
    overflow: hidden;
    height: 100%;
}
.banner-image-top-right-graphics {
    position: absolute;
    right: -230px;
    top: -10px;
    z-index: 2;
}
.banner-image-bottom-right-graphics {
    position: absolute;
    right: 120px;
    top: 195px;
}
.banner-image-top-left-graphics {
    position: absolute;
    left: -160px;
    top: -50px;
}
.home-banner-wrapper {
    position: relative;
    height: 800px;
}
.banner-content-container {
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.banner-content-wrapper {
    justify-content: center;
    flex-direction: column;
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    height: 100%;
}
.home-banner-blogs-wrapper {
    position: absolute;
	overflow: hidden;
	max-width: 48%;
	height: 130px;
    bottom: 50px;
    z-index: 2;
    left: 0;
}
.banner-content-wrapper .header-social-links {
    flex-direction: column;
    position: absolute;
    bottom: 95px;
    z-index: 2;
    right: 0;
}
.banner-content-wrapper .header-social-links a i {
    line-height: 20px;
    color: #FFFFFF;
    font-size: 20px;
}
.banner-content-wrapper .header-social-links a.instagram i {
    font-size: 23px;
}
.banner-title h1 {
    font-family: 'Red Hat Display';
    line-height: 58px;
    font-weight: 800;
    font-size: 48px;
}
.banner-title {
    margin-bottom: 35px;
}
.banner-date-book-btn-wrapper {
    justify-content: space-between;
    margin-bottom: 80px;
    align-items: center;
    position: relative;
    margin-top: 40px;
    max-width: 48%;
    display: flex;
    z-index: 2;
    gap: 30px;
}
.banner-subtitle p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.banner-text-holder {
    max-width: 60%;
}
.banner-text-holder .banner-subtitle {
    max-width: 80%;
}
.banner-date-book-btn-wrapper .top-header-date-wrapper {
    position: initial;
    opacity: 1;
}
.banner-date-book-btn-wrapper .odysseo-book-now-btn {
    margin-left: 0;
}
.banner-date-book-btn-wrapper .top-header-date-wrapper p {
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    opacity: 1;
    gap: 15px;
}
.banner-date-book-btn-wrapper .odysseo-book-now-btn a {
    padding: 12px 35px;
}
.banner-blog-item-inner {
    display: flex;
    gap: 20px;
}
.banner-blog-item-inner .blog-item-image-wrapper {
    width: 40%;
}
.banner-blog-item-inner .blog-item-image-wrapper .blog-item-image {
	overflow: hidden;
    height: 125px;
    width: 100%;
}
.banner-blog-item-inner .blog-item-image-wrapper .blog-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
	transition: 0.6s all ease-in-out;
}
.banner-blog-item a:hover .banner-blog-item-inner .blog-item-image-wrapper .blog-item-image img {
	transform: scale(1.15) !important;
}
.banner-blog-item-inner .blog-item-details-wrapper {
    width: 60%;
}
.banner-blog-item-inner .blog-item-excerpt {
    margin: 10px 0 20px;
}
.banner-blog-item-inner .blog-item-excerpt p {
    line-height: 18px;
    font-weight: 500;
    min-height: 36px;
    font-size: 14px;
    max-width: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.banner-blog-item-inner .blog-item-title p {
    text-transform: uppercase;
    line-height: 20px;
    font-weight: 700;
    min-height: 40px;
    font-size: 16px;
    max-width: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.banner-blog-item-inner .blog-item-link p {
    text-transform: uppercase;
    width: fit-content;
    line-height: 17px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: underline !important;
    transition: 0.6s all ease-in-out;
}
.banner-blog-item a:hover .blog-item-link p {
    color: #00B4D5;
}
.home-banner-blogs-items-wrapper.slick-slider  .slick-arrow {
    height: fit-content;
    margin: auto 0;
    width: 20px;
    z-index: 5;
    bottom: 0;
    right: 0;
    top: 0;
}
.home-banner-blogs-items-wrapper.slick-slider .slick-arrow i {
    line-height: 15px;
    font-size: 15px;
}
.home-banner-blogs-items-wrapper.slick-slider .slick-arrow.slick-prev {
    right: auto;
    left: 0;
}
.home-banner-blogs-wrapper .slick-list {
	height: 130px;
}
.home-banner-blogs-items-wrapper.slick-slider {
    overflow: hidden;
	padding: 0 30px;
    height: 130px;
}
.banner-content-wrapper .header-social-links a:hover i {
    color: #00B4D5;
}
.home-visit-event-learn-items-wrapper {
    justify-content: space-between;
    background: #123C60;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
}
.home-visit-event-learn-item {
    width: calc(100%/3);
}
.home-visit-event-learn-item-inner {
    padding: 30px 50px;
    display: flex;
    gap: 20px;
}
.home-visit-event-learn-item.visit-item {
    position: relative;
}
.home-visit-event-learn-item.visit-item:after {
    background: #FFFFFF;
    position: absolute;
    display: block;
    margin: auto 0;
    width: 0.8px;
    height: 40px;
    content: '';
    bottom: 0;
    right: 0;
    top: 0;
}
.home-visit-event-learn-item.visit-item .home-visit-event-learn-item-inner {
    padding-left: 70px;
}
.home-visit-event-learn-item.event-item .home-visit-event-learn-item-inner {
    padding-left: 85px;
}
.home-visit-event-learn-item.learn-item .home-visit-event-learn-item-inner {
    background: linear-gradient(279deg, #A5D6C8 -40.01%, #0087B4 74.48%);
}
.home-visit-event-learn-item-title {
    margin-bottom: 8px;
}
.home-visit-event-learn-item-title p {
    align-items: center;
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
    display: flex;
    gap: 20px;
    transition: 0.6s all ease-in-out;
}
.home-visit-event-learn-item-title p i {
    line-height: 15px;
    font-size: 15px;
}
.home-visit-event-learn-item-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.home-visit-event-learn-item.event-item {
    width: 35%;
}
.home-visit-event-learn-item.visit-item {
    width: 30%;
}
.visit-event-learn-inner-row .text-content-inner {
    max-width: 70%;
    margin: 0 auto;
}
.home-experiences-wrapper {
    margin: 0 -15px;
    display: flex;
}
.experience-item {
    width: calc(100%/3);
}
.experience-item-inner {
    padding: 0 15px;
}
.experience-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
	transition: 0.6s all ease-in-out;
}
.experience-item a:hover .experience-item-image img {
    transform: scale(1.15) !important;
}
.experience-item-image {
    border-radius: 12px;
    overflow: hidden;
    height: 235px;
}
.experience-item-image-wrapper {
    margin-bottom: 15px;
}
.experience-item-excerpt {
    margin: 18px 0 20px;
}
.experience-item-title * {
    line-height: 22px;
    font-weight: 700;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.experience-item-excerpt p {
    min-height: 100px;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.experience-item-link p {
    text-transform: uppercase;
    align-items: center;
    width: fit-content;
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    gap: 20px;
    transition: 0.6s all ease-in-out;
}
.experience-item a:hover .experience-item-link p {
    color: #00B4D5;
}
.experience-item-link p i {
    transition: 0.6s all ease-in-out;
}
.experience-item a:hover .experience-item-link p i {
    color: #00B4D5;
}
.experience-item-details-wrapper {
    justify-content: space-between;
    flex-direction: column;
    display: flex;
}
.home-experiences-wrapper .experience-item-excerpt p {
    -webkit-line-clamp: 4;
    min-height: 80px;
}
.home-visit-event-learn-item-title p i {
    transition: 0.6s all ease-in-out;
}
.home-visit-event-learn-item a:hover .home-visit-event-learn-item-title p {
    color: #00B4D5;
}
.home-visit-event-learn-item a:hover .home-visit-event-learn-item-title p i {
    color: #00B4D5;
}
.home-visit-event-learn-item.learn-item a:hover .home-visit-event-learn-item-title p {
    color: #012D53;
}
.home-visit-event-learn-item.learn-item a:hover .home-visit-event-learn-item-title p i {
    color: #012D53;
}
.home-foundations-wrapper {
    margin: 0 -15px;
    display: flex;
}
.foundation-item {
    width: calc(100%/3);
}
.foundation-item-inner {
    padding: 0 15px;
}
.foundation-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
	transition: 0.6s all ease-in-out;
}
.foundation-item a:hover .foundation-item-image img {
	transform: scale(1.15) !important;
}
.foundation-item-image {
	overflow: hidden;
    height: 225px;
}
.foundation-item-image-wrapper {
    margin-bottom: 15px;
}
.foundation-item-title p {
    justify-content: space-between;
    align-items: flex-start;
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
    display: flex;
    transition: 0.6s all ease-in-out;
}
.foundation-item-title p i {
    line-height: 25px;
    font-size: 15px;
    transition: 0.6s all ease-in-out;
}
.foundation-item-excerpt p {
    line-height: 20px;
    min-height: 60px;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.foundation-item-excerpt {
    margin-top: 25px;
}
.foundation-item-details-wrapper {
    min-height: 110px;
}
.foundation-item a:hover .foundation-item-title p {
    color: #00B4D5;
}
.foundation-item a:hover .foundation-item-title p i {
    color: #00B4D5;
}
.wpb_wrapper .gws-button a {
    border-radius: 25px;
    padding: 12px 40px;
}
.home-banner-blogs-wrapper .slick-list .slick-track {
    overflow: hidden;
    height: 130px;
}
body.home footer#colophon {
    background: transparent;
}
body.home footer#colophon .footer-newsletter-pattern-wrapper {
    display: none;
}
.vc_row.explore-the-blue-inner-row {
    padding-right: calc((100% - 1170px)/2);
    align-items: center;
    display: flex;
}
.vc_row.explore-the-blue-row {
    position: relative;
}
.vc_row.explore-the-blue-row:after {
    background: linear-gradient(0deg, rgba(1, 55, 102, 0) 0%, rgba(1, 55, 102, 0.86) 30%, rgba(1, 55, 102, 1.0) 41%,rgba(1, 55, 102, 0.8) 57%, rgba(1, 55, 102, 0) 100%);
    position: absolute;
    height: 390px;
    top: -115px;
    content: '';
    width: 100%;
    right: 0;
    left: 0;
}
.vc_row.live-unparalleled-inner-row {
    position: relative;
    z-index: 2;
}
.vc_row.explore-the-blue-inner-row > .vc_column_container:last-child {
    padding-left: 110px;
    z-index: 2;
}
.vc_row.groups-schools-events-inner-row {
    position: relative;
}
.vc_row.groups-schools-events-inner-row:after {
    background: linear-gradient(0deg, rgba(1, 55, 102, 0) 0%, rgba(1, 55, 102, 0.86) 30%, rgba(1, 55, 102, 1.0) 41%, rgba(1, 55, 102, 0.8) 57%, rgba(1, 55, 102, 0) 100%);
    position: absolute;
    height: 390px;
    top: -230px;
    content: '';
    width: 100%;
    right: 0;
    left: 0;
}
.vc_row.groups-schools-events-inner-row .wpb_wrapper {
    position: relative;
    z-index: 2;
}
.vc_row.groups-schools-events-inner-row .gws-image-content-item.odysseo-groups-schools-events-cols {
    padding-left: calc((100% - 1170px)/2);
	mix-blend-mode: multiply;
	position: relative;
    max-width: 50%;
	z-index: 3;
}
.gws-kpi-wrapper .kpi-title-text-wrapper {
    margin-bottom: 25px;
    max-width: 90%;
    padding: 0;
    gap: 5px;
}
.vc_row.explore-the-blue-inner-row > .vc_column_container:first-child:after {
    background: linear-gradient(270deg, rgba(1, 55, 102, 0) 0%, rgba(1, 55, 102, 0.86) 30%, rgba(1, 55, 102, 1) 41%, rgba(1, 55, 102, 0.8) 57%, rgba(1, 55, 102, 0) 100%);
    position: absolute;
    right: -200px;
    width: 500px;
    height: 100%;
    content: '';
    bottom: 0;
    top: 0;
}
.explore-the-blue-inner-row .text-content-inner {
    max-width: 65%;
}
.container-explore-blue-icons .container-col.explore-blue-icons {
    margin-bottom: -25px;
}
.gws-kpi-wrapper:nth-child(2) .kpi-title-text-wrapper .kpi-text-wrapper {
    max-width: 65%;
}
.gws-kpi-wrapper .kpi-title-text-wrapper .kpi-main-title-wrapper p {
    font-family: 'Red Hat Display';
    line-height: 64px;
    font-weight: 300;
    font-size: 54px;
}
.gws-kpi-wrapper .kpi-title-text-wrapper .kpi-text-wrapper p {
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
}
.protecting-oceans-inner-row .text-content-inner {
    max-width: 35%;
}
.text-content-wrapper.center.why-visit-blue-text {
    padding-left: calc((100% - 1170px)/2);
    position: relative;
    max-width: 45%;
	z-index: 2;
    height: 0;
    top: 50px;
}
.text-content-wrapper.center.why-visit-blue-text .text-content-inner {
    padding-left: 90px;
}
.gws-image-content-item.why-visit-odysseo-cols {
    padding-right: calc((100% - 1170px)/2);
	position: relative;
    margin-left: auto;
    margin-right: 0;
    max-width: 50%;
	z-index: 2;
}
.gws-image-item.groups-schools-events-graphics {
    right: calc((100% - 1170px)/2);
    position: absolute;
    top: 55px;
}
.gws-image-item.why-visit-odysseo-graphics {
    position: absolute;
	left: -90px;
    bottom: 0;
}
.gws-image-item.groups-schools-events-graphics svg,
.gws-image-item.why-visit-odysseo-graphics svg {
    overflow: visible;
}
.gws-image-content-item.why-visit-odysseo-cols .image-content-details-wrapper {
    backdrop-filter: blur(7.5px);
}
.gws-image-item.groups-schools-events-octopus-graphic {
    padding-right: calc((100% - 1170px) / 2);
    position: absolute;
    right: 250px;
    top: 220px;
	z-index: 2;
}
.explore-the-blue-inner-row .image img {
    transition: 0.6s all ease-in-out;
}
.vc_row.explore-the-blue-inner-row > .vc_column_container:first-child:hover img {
    transform: scale(1.05) !important;
}
.explore-the-blue-inner-row .image {
    overflow: hidden;
    height: 550px;
}
.gws-image-item.why-visit-odysseo-graphics svg {
    height: 400px;
    width: 400px;
}
.odysseo-groups-schools-events-cols .image-content-details-wrapper {
    padding: 0;
}
.odysseo-groups-schools-events-cols .text-content-wrapper {
    max-width: 85%;
}
.gws-content-wrapper.container-groups-schools-events-btns {
    max-width: 85%;
}
.groups-schools-events-btns .gws-button {
    width: 100%;
}
.groups-schools-events-btns .gws-button a {
    border-top: 0.25px solid #ffffff80 !important;
    padding: 22px 30px 22px 0;
    position: relative;
    line-height: 24px;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
}
.groups-schools-events-btns .gws-button-wrapper:last-child .gws-button a {
    border-bottom: 0.25px solid #ffffff80 !important;
}
.groups-schools-events-btns .gws-button a .icon {
    margin-right: 15px;
}
.groups-schools-events-btns .gws-button a .icon svg path {
    fill: #A5D6C8 !important;
}
.groups-schools-events-btns .gws-button a i {
    height: fit-content;
    position: absolute;
    margin: auto 0;
    right: 30px;
    bottom: 0;
    top: 0;
}
.groups-schools-events-btns .gws-button a:hover {
    border-radius: 5px !important;
    padding-left: 15px;
}
.groups-schools-events-btns .gws-button a:hover svg path {
    fill: #00B4D5 !important;
}
.container-col.why-visit-odysseo-btns {
    gap: 22px;
}
.container-col.why-visit-odysseo-btns .icon-wrapper .icon-content-text {
    max-width: 90%;
}
.container-col.why-visit-odysseo-btns .icon-wrapper {
    gap: 25px;
}
.container-col.why-visit-odysseo-btns .icon-wrapper .icon {
    width: 6%;
}
.container-col.why-visit-odysseo-btns .icon-wrapper .icon-content {
    width: 94%;
}
.container-col.why-visit-odysseo-btns .icon-wrapper .icon svg {
    animation: spin 20s linear infinite;
}
.container-col.why-visit-odysseo-btns .gws-icon-item {
    margin-bottom: 0;
}
.container-col.why-visit-odysseo-btns .icon-wrapper .icon-content-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.vc_row.protecting-oceans-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding-bottom: 220px;
    position: relative;
}
.vc_row.protecting-oceans-image-row {
    position: relative;
}
.protecting-oceans-image .image {
    height: 425px;
}
.vc_row.protecting-oceans-projects-row {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.vc_row.protecting-oceans-image-row .vc_column_container:after {
    background: linear-gradient(0deg, #022C51 0%, rgba(1, 45, 83, 0) 100%);
    position: absolute;
    height: 50px;
    width: 100%;
    content: '';
    bottom: 0;
    right: 0;
    left: 0;
}
.vc_row.protecting-oceans-image-row .vc_column_container {
    position: relative;
}
.vc_row.protecting-oceans-image-row .vc_column_container .vc_column-inner {
    position: relative;
}
.vc_row.protecting-oceans-image-row .vc_column_container .vc_column-inner:after {
    background: linear-gradient(0deg, #022C51 0%, rgba(1, 45, 83, 0) 50%);
    position: absolute;
    height: 260px;
    width: 100%;
    content: '';
    bottom: 0;
    right: 0;
    left: 0;
}
.odysseo-news-left-graphics-row svg, 
.odysseo-news-right-graphics-row svg {
    overflow: visible;
}
.home-blogs-wrapper {
    justify-content: center;
    align-items: stretch;
    display: flex;
    gap: 30px;
}
.home-blogs-left-wrapper {
    width: 40%;
}
.home-blogs-right-wrapper {
    width: 60%;
}
.home-blogs-left-wrapper .blog-item {
    height: 100%;
}
.home-blogs-left-wrapper .blog-item a {
    display: block;
    height: 100%;
}
.home-blogs-left-wrapper .blog-item .blog-item-inner {
    height: 100%;
}
.home-blogs-wrapper .blog-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: 0.6s all ease-in-out;
}
.home-blogs-wrapper .blog-item a:hover .blog-item-image img {
    transform: scale(1.15) !important;
}
.home-blogs-wrapper .blog-item-image {
    overflow: hidden;
    height: 145px;
}
.home-blogs-wrapper .home-blogs-left-wrapper .blog-item-image {
    height: 240px;
}
.home-blogs-wrapper .blog-item-inner {
    backdrop-filter: blur(11.45px);
    background: #FFFFFF1A;
    border-radius: 15px;
    overflow: hidden;
}
.home-blogs-wrapper .blog-item-details-wrapper {
    padding: 35px 30px 45px;
}
.home-blogs-wrapper .blog-item-title {
    margin-bottom: 10px;
}
.home-blogs-wrapper .blog-item-title p {
    font-family: 'Red Hat Display';
    line-height: 22px;
    font-weight: 700;
    font-size: 18px;
}
.home-blogs-wrapper .blog-item-excerpt p {
    line-height: 20px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-blogs-right-wrapper .blog-item-inner {
    display: flex;
}
.home-blogs-right-wrapper {
	justify-content: flex-start;
    flex-direction: column;
    display: flex;
    gap: 10px;
}
.home-blogs-right-wrapper .blog-item-inner .blog-item-image-wrapper {
    width: 33%;
}
.home-blogs-right-wrapper .blog-item-inner .blog-item-details-wrapper {
    padding: 25px;
    width: 67%;
}
.home-blogs-right-wrapper .blog-item-inner .blog-item-details-wrapper .blog-item-title {
    margin-bottom: 15px;
}
.home-blogs-right-wrapper .blog-item-inner .blog-item-details-wrapper .blog-item-title p {
    line-height: 20px;
    font-size: 16px;
}
.vc_row.odysseo-news-inner-row > .vc_column_container > .vc_column-inner >  .wpb_wrapper {
    position: relative;
}
.gws-content-wrapper.container-odysseo-news-btns {
    position: absolute;
    bottom: -190px;
    z-index: 2;
}
.vc_row.odysseo-news-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    position: relative;
}
.gws-image-item.odysseo-news-left-graphics-row {
    position: absolute;
    right: -190px;
    top: 0;
}
.gws-image-item.odysseo-news-right-graphics-row {
    position: absolute;
    bottom: -75px;
    left: -115px;
}
.gws-image-item.odysseo-news-right-graphics-row svg {
    height: 400px;
    width: 400px;
}
.vc_row.odysseo-news-row {
    padding-bottom: 70px;
}
.container-odysseo-news-btns .gws-button.add-chevron a {
    padding: 12px 15px;
}


/* Archive Experience */
.archive-experience-banner-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.archive-experience-banner-wrapper {
    position: relative;
    height: 700px;
}
.archive-experience-banner-image-graphics-wrapper {
    position: relative;
    height: 100%;
}
.archive-experience-banner-image {
    position: relative;
    height: 100%;
}
.archive-experience-banner-image-right-graphics-background {
    right: calc((100% - 1170px)/2);
    position: absolute;
    bottom: 100px;
    z-index: 2;
}
.archive-experience-banner-image-left-graphics {
    position: absolute;
    bottom: 45px;
    left: -80px;
    z-index: 2;
}
.archive-experience-posts-wrapper {
    background: #F4FCFF;
    padding: 60px 0 90px;
    position: relative;
    z-index: 2;
}
.archive-experience-banner-image-graphics-wrapper:after {
    background: linear-gradient(180deg, rgba(1, 45, 83, 0) 1%, #012D53 51%, rgba(1, 45, 83, 0) 100%);
    position: absolute;
    bottom: -145px;
    height: 345px;
    content: '';
    width: 100%;
    right: 0;
    left: 0;
}
.archive-experience-banner-title-subtitle-desc-wrapper {
    left: calc((100% - 1170px)/2);
    position: absolute;
    bottom: 100px;
    width: 585px;
}
.archive-experience-banner-image-left-graphics svg {
    overflow: visible;
    height: 400px;
    width: 400px;
}
.archive-experience-banner-image:after {
    background: linear-gradient(0deg, rgba(1, 45, 83, 1) 0%, rgba(1, 45, 83, 1) 100%);
    position: absolute;
    opacity: 0.5;
    height: 100%;
    content: '';
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.archive-experience-banner-image-right-graphics {
    position: absolute;
    margin: auto 0;
    bottom: 0;
    top: 0;
}
.archive-experience-banner-image-right-background {
    position: relative;
    right: 100px;
}
.archive-experience-banner-subtitle {
    margin: 25px 0 30px;
    max-width: 80%;
}
.archive-experience-banner-title h1 {
    line-height: 58px;
    font-weight: 700;
    font-size: 48px;
}
.archive-experience-banner-subtitle p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.archive-experience-banner-desc p {
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
}
.archive-experience-banner-desc {
    max-width: 90%;
}
.archive-experience-posts-title {
    margin-bottom: 25px;
}
.archive-experience-posts-title h2 {
    text-align: center;
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.archive-experience-posts-title-wrapper {
    margin-bottom: 55px;
}
.archive-experience-posts-desc {
    max-width: 55%;
    margin: 0 auto;
}
.archive-experience-posts-desc p {
    text-align: center;
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.archive-experience-posts-items-wrapper {
    margin: -28px -15px;
    flex-wrap: wrap;
    display: flex;
}
.archive-experience-posts-items-wrapper .experience-item-inner {
    padding: 28px 15px;
}
.archive-experience-posts-items-wrapper .experience-item-image {
    height: 260px;
}
.archive-experience-posts-items-wrapper .experience-item-link p {
    border-bottom: 1px solid transparent;
}
.archive-experience-posts-items-wrapper .experience-item a:hover .experience-item-link p {
    border-bottom: 1px solid #00B4D5;
}
.archive-experience-posts-bottom-right-graphics svg {
    transform: rotate(-30deg);
    overflow: visible;
    height: 600px;
    width: 600px;
}
.archive-experience-posts-bottom-right-graphics {
    position: absolute;
    bottom: -15px;
    right: -150px;
}
.archive-experience-posts-bottom-right-graphics svg path {
    fill: #00B4D5;
}
.archive-experience-posts-inner-wrapper {
    position: relative;
    z-index: 2;
}
body.post-type-archive-experience footer#colophon {
    padding-top: 445px;
}
body.post-type-archive-experience .footer-newsletter-wrapper {
    overflow: visible;
}
.archive-experience-inner-wrapper {
    position: relative;
}
.archive-experience-plan-your-visit-wrapper {
    position: absolute;
    bottom: -400px;
    margin: 0 auto;
    right: 0;
    left: 0;
}
.archive-experience-plan-your-visit-content-wrapper {
    background: linear-gradient(90deg, rgba(0, 180, 213, 0.50) 0%, rgba(165, 214, 200, 0.50) 100%);
    backdrop-filter: blur(11px);
    padding: 35px 40px 40px;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    text-align: center;
    display: flex;
    gap: 35px;
}
.archive-experience-plan-your-visit-content-title-desc-wrapper {
    max-width: 63%;
    margin: 0 auto;
}
.archive-experience-plan-your-visit-content-title {
    margin-bottom: 15px;
}
.archive-experience-plan-your-visit-content-title h2 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.archive-experience-plan-your-visit-content-desc p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.archive-experience-plan-your-visit-content-btns-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 20px;
}
.archive-experience-plan-your-visit-btn a {
    border: 1px solid #012D53;
    text-transform: uppercase;
    justify-content: center;
    background: #012D53;
    border-radius: 75px;
    align-items: center;
    padding: 16px 40px;
    line-height: 20px;
    color: #FFFFFF;
    font-size: 16px;
    display: flex;
    gap: 20px;
    transition: 0.6s all ease-in-out;
}
.archive-experience-plan-your-visit-btn a:visited {
	color: #FFFFFF;
}
.archive-experience-plan-your-visit-btn a svg {
    height: 36px;
    width: 35px;
}
.archive-experience-plan-your-visit-btn a:hover {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: #012D53;
}
.archive-experience-plan-your-visit-btn a:hover svg path {
    fill: #012D53;
}
.archive-experience-plan-your-visit-btn a svg path {
    transition: 0.6s all ease-in-out;
}
.archive-experience-plan-your-visit-btn.plan-your-trip-btn a {
    border-color: #00B4D5;
    background: #00B4D5;
}
.archive-experience-plan-your-visit-btn.plan-your-trip-btn a:hover {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: #00B4D5;
}
.archive-experience-plan-your-visit-btn.plan-your-trip-btn a:hover svg path {
    fill: #00B4D5;
}


/* Plan your trip */
.banner-logo-top {
    margin-bottom: 15px;
    width: 260px;
}
.banner-logo-top img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.page-banner-wrapper .banner-image-wrapper {
    min-height: 450px;
    max-height: 700px;
}
.page-banner-wrapper {
    position: relative;
}
.page-banner-wrapper .banner-image.overlay:after {
    background: linear-gradient(0deg, rgba(1, 45, 83, 0.5) 0%, rgba(1, 45, 83, 0.5) 100%);
}
.page-banner-wrapper .banner-content-wrapper {
    padding-bottom: 100px;
	padding-top: 85px;
}
.page-banner-wrapper .banner-heading h1 {
    font-weight: 700;
}
.page-banner-wrapper .banner-heading {
    margin-bottom: 15px;
}
.page-banner-wrapper .banner-subtitle {
    margin: 15px 0 30px;
}
.page-banner-wrapper .banner-description {
    margin-top: 30px;
}
.banner-date-location-btn-wrapper .top-header-date-wrapper {
    margin: 45px 0 25px;
    position: initial;
    opacity: 1;
}
.banner-date-location-btn-wrapper .gws-button {
    margin-top: 25px;
}
.banner-date-location-btn-wrapper .top-header-date-wrapper p {
    opacity: 1;
}
.banner-date-location-btn-wrapper .gws-button a {
    text-transform: uppercase;
    background: #00B4D5;
}
.banner-date-location-btn-wrapper .gws-button.add-icon a {
    gap: 12px;
}
.banner-date-location-btn-wrapper .gws-button a:hover {
    background: #012D53;
}
.banner-date-location-btn-wrapper .top-header-date-wrapper p {
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    gap: 15px;
}
.banner-date-location-btn-wrapper .top-header-date-wrapper p.top-header-date-closed {
    text-transform: initial;
    padding-left: 33px;
    font-weight: 400;
}
.page-banner-wrapper .banner-text-holder {
    max-width: 100%;
}
.page-banner-wrapper .banner-toptitle p {
    font-weight: 700;
}
.guided-tour-row .image-content-details-wrapper,
.self-guided-tour-row .image-content-details-wrapper {
    padding: 0;
}
.guided-tour-row .image-content-details-wrapper .gws-heading,
.self-guided-tour-row .image-content-details-wrapper .gws-heading {
    padding: 20px 30px;
    margin-bottom: 0;
}
.guided-tour-row .image-content-details-wrapper .text-content-wrapper,
.self-guided-tour-row .image-content-details-wrapper .text-content-wrapper {
    padding: 0 30px;
}
.guided-tour-row .image-content-details-wrapper .gws-button-wrapper .gws-button a,
.self-guided-tour-row .image-content-details-wrapper .gws-button-wrapper .gws-button a {
    border-radius: 0 0 15px 15px !important;
}
.guided-tour-row .gws-image-content-item,
.self-guided-tour-row .gws-image-content-item {
    padding-right: 75px;
}
.vc_row.self-guided-tour-inner-row {
    padding-right: calc((100% - 1170px)/2);
    padding-left: calc((100% - 1170px)/2);
}
.photobooth-souvenir-icons .icon-wrapper {
    padding: 20px 30px 40px;
}
.gws-image-item.photobooth-image {
    position: absolute;
    right: -115px;
    top: -125px;
    width: 68%;
}
.photobooth-souvenir-icons .gws-icon-item:first-child .icon-content {
    max-width: 70%;
}
.photobooth-souvenir-icons .gws-icon-item:first-child .icon-content .icon-content-title {
    max-width: 80%;
}
.self-guided-tour-row .image-content-details-wrapper .text-content-wrapper {
    margin-bottom: 30px;
}
.self-guided-tour-row .image-content-details-wrapper .gws-heading {
    padding-bottom: 30px;
    padding-top: 30px;
}
.buy-your-tickets-inner-wrapper {
    box-shadow: 0 2px 10px #0000001a;
    border-radius: 15px;
    overflow: hidden;
}
.buy-your-tickets-titles-wrapper {
    padding: 30px 35px;
}
.buy-your-tickets-title-wrapper {
    justify-content: space-between;
    margin-bottom: 25px;
    display: flex;
}
.buy-your-tickets-title-wrapper h2 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.buy-your-tickets-title-wrapper svg {
    height: 60px;
    width: auto;
}
.buy-your-tickets-text p {
    line-height: 22px;
    font-size: 18px;
}
.buy-your-tickets-form-wrapper {
    padding: 40px 40px 55px;
}
.buy-your-tickets-form-info-wrapper {
    margin-top: 30px;
}
.buy-your-tickets-form-info-wrapper p {
    text-align: center;
    line-height: 20px;
    font-size: 15px;
}
.date-time-selection-wrapper {
    justify-content: space-between;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}
.date-time-selection-wrapper > div {
	position: relative;
    width: 50%;
}
.ticket-subtotal-wrapper {
    margin: 50px 0 35px;
}
.ticket-subtotal-wrapper p {
    text-align: center;
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.add-to-cart-btn-wrapper input[type="submit"] {
    border: 1px solid #012D53;
    text-transform: uppercase;
    font-family: 'Carlito';
    background: #012D53;
    padding: 25px 100px;
    border-radius: 50px;
    line-height: 25px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 21px;
    transition: 0.6s all ease-in-out;
}
.add-to-cart-btn-wrapper {
    text-align: center;
}
.add-to-cart-btn-wrapper input[type="submit"]:hover {
	border-color: #012D53;
    background: transparent;
    color: #012D53;
}
.buy-your-tickets-wrapper {
    position: absolute;
    top: -235px;
    z-index: 2;
}
.gws-column-wrapper.gws-col-accessible-family-cols {
    padding: 35px 50px 40px;
    background: #012D53;
    border-radius: 12px;
    overflow: hidden;
}
.gws-content-wrapper.container-accessible-family-title {
    padding-top: 25px;
}
.gws-col-accessible-family-cols .gws-icon-item {
    margin-bottom: 0;
}
.gws-col-accessible-family-cols .gws-icon-item .icon-wrapper {
    gap: 20px;
}
.gws-col-accessible-family-cols .gws-icon-item .icon svg path {
    fill: #A5D6C8;
}
.gws-col-accessible-family-cols .gws-icon-item .icon-content-title {
    margin-bottom: 20px;
}
.gws-col-accessible-family-cols .gws-icon-item .icon-content-title p {
    font-family: 'Red Hat Display';
}
.gws-col-accessible-family-cols .gws-icon-item .icon-content-text p {
    font-weight: 400;
}
.vc_row.sustainability-food-inner-row {
    padding-right: calc((100% - 1170px)/2);
    padding-left: calc((100% - 1170px)/2);
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    background: linear-gradient(180deg, #A5D6C8 0%, #F4FCFF 100%);
    padding: 0 45px 0 65px;
    border-radius: 12px;
    position: relative;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child {
    padding-right: 17px;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child {
    padding-left: 17px;
}
.sustainability-image-texts .gws-image-item {
    position: absolute;
    left: -60px;
    top: 10px;
}
.container-col.sustainability-image-texts {
    padding-left: 85px;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child .gws-icon-item {
    margin-bottom: 0;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child .gws-icon-item .icon-wrapper {
    align-items: flex-start;
    gap: 30px;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child .gws-icon-item .icon-wrapper .icon {
    width: 12%;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child .gws-icon-item .icon-wrapper .icon-content {
    width: 88%;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child .gws-icon-item .icon-wrapper .icon-content .icon-content-title p {
    font-family: 'Red Hat Display';
}
.vc_row.sustainability-food-inner-row > .vc_column_container:first-child .gws-icon-item .icon-wrapper .icon svg {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.container-ready-to-dive-texts {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    z-index: 2;
}
.gws-image-item.ready-to-dive-graphics {
    position: absolute;
    right: -212px;
    z-index: 1;
    top: 0;
}
.gws-image-item.ready-to-dive-graphics svg {
    overflow: visible;
    height: 400px;
    width: 400px;
}
.gws-image-item.ready-to-dive-graphics svg path {
    fill: #00B4D5;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child .gws-icon-item {
    position: relative;
    margin-bottom: 0;
    z-index: 2;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child .gws-icon-item .icon-wrapper {
    padding: 30px 35px 35px 25px;
    gap: 30px;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child .gws-icon-item .icon-wrapper .icon {
    width: 12%;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child .gws-icon-item .icon-wrapper .icon-content {
    width: 88%;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child .gws-icon-item .icon-wrapper .icon-content .icon-content-title {
    margin-bottom: 10px;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child .gws-icon-item .icon-wrapper .icon-content .icon-content-title p {
    line-height: 28px;
    font-size: 24px;
}
.vc_row.sustainability-food-inner-row > .vc_column_container:last-child .gws-icon-item .icon-wrapper .icon-content .icon-content-text p {
    font-weight: 400;
}
.how-to-get-inner-row .wpb_wrapper {
    border: 1px solid #00B4D5;
    padding: 30px 0 50px;
    border-radius: 15px;
}
.gws-column-wrapper.gws-col-how-to-get-title-cols {
    border-bottom: 1px solid #00B4D5;
    padding: 0 100px 25px 70px;
}
.gws-column-wrapper.gws-col-how-to-get-icons-cols {
    padding: 25px 100px 0 70px;
}
.gws-column-wrapper.gws-col-how-to-get-icons-cols .gws-icon-item {
    margin-bottom: 0;
}
.gws-column-wrapper.gws-col-how-to-get-icons-cols .gws-icon-item .icon-wrapper {
    gap: 20px;
}
.gws-column-wrapper.gws-col-how-to-get-icons-cols .gws-icon-item .icon-content-title {
    margin-bottom: 20px;
}
.gws-column-wrapper.gws-col-how-to-get-icons-cols .gws-icon-item .icon-content-title p {
    line-height: 28px;
    font-size: 24px;
}
.gws-column-wrapper.gws-col-how-to-get-icons-cols .gws-icon-item .icon-content-text p, 
.gws-column-wrapper.gws-col-how-to-get-icons-cols .gws-icon-item .icon-content-text ul li {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.wpb_wrapper .gws-button.add-icon a {
    gap: 10px;
}
.ticket-category-wrapper {
    margin-bottom: 30px;
}
.ticket-category-inner-wrapper {
    background: #00B4D51A;
    border-radius: 100px;
    width: fit-content;
    overflow: hidden;
    display: flex;
}
.ticket-category-inner-wrapper > div {
    width: fit-content;
}
.ticket-category-inner-wrapper .ticket-category-item-wrapper p {
    text-transform: uppercase;
    border-radius: 30px;
    padding: 16px 20px;
    line-height: 20px;
    overflow: hidden;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: 0.6s all ease-in-out;
}
.ticket-category-inner-wrapper .ticket-category-item-wrapper.active p {
    background: #012D53;
    color: #FFFFFF;
}
.ticket-type-item-wrapper:not(:last-child) {
    margin-bottom: 25px;
}
.ticket-type-item-wrapper {
    display: flex;
}
.ticket-type-item-wrapper label {
    position: relative;
    padding-left: 20px;
    display: flex;
    width: 50%;
}
.ticket-main-row {
    display: flex;
    justify-content: space-between;
}
/* .ticket-type-item-wrapper > input {
    display: none;
} */
.ticket-type-item-title-desc {
    cursor: pointer;
}
.ticket-type-item-price {
    height: fit-content;
    width: 15%;
    margin-left: 15px;
    margin-right: 10px;
}
.ticket-type-item-quantity {
    justify-content: space-between;
    height: fit-content;
    cursor: pointer;
    display: flex;
    width: 25%;
}
.ticket-type-item-desc {
    margin-top: 8px;
}
.ticket-type-item-desc p {
    line-height: 20px;
    font-size: 16px;
}
.ticket-type-item-title p {
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
}
.ticket-type-item-price p {
    font-family: 'Red Hat Display';
    line-height: 22px;
    font-weight: 700;
    font-size: 18px;
}
.ticket-type-item-price p span.woocommerce-Price-currencySymbol {
    font-family: 'Arial';
    padding-right: 3px;
    line-height: 20px;
    font-size: 16px;
}
/* span.quantity-symbol.odysseo-blue-bg {
    background: #00B4D5;
} */
span.quantity-symbol {
    background: #00B4D5;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #FFF;
    line-height: 22px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    height: 25px;
    width: 25px;
    transition: 0.6s all ease-in-out;
}
.ticket-type-item-quantity  input[type="text"] {
    width: calc(100% - 50px);
    font-family: 'Carlito';
    height: fit-content;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
    color: #00B4D5;
    font-size: 24px;
    cursor: pointer;
    display: block;
    opacity: 0.3;
    padding: 0;
    border: 0;
    transition: 0.6s all ease-in-out;
}
/* .ticket-type-item-wrapper label:before {
    background-color: transparent;
    border: 1.5px solid #00B4D5;
    border-radius: 5px;
    position: absolute;
    cursor: pointer;
    height: 25px;
    width: 25px;
    content: '';
    left: 0;
    top: 0;
    transition: 0.6s all ease-in-out;
}
.ticket-type-item-wrapper label:after {
    position: absolute;
    border-radius: 2px;
    height: 13px;
    content: '';
    width: 7px;
    opacity: 0;
    left: 9px;
    top: 5px;
    border: solid #FFFFFF;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    transition: 0.6s all ease-in-out;
} */
.ticket-type-item-wrapper input:checked + label:after {
    opacity: 1;
}
.ticket-type-item-wrapper input:checked + label:before {
    background: #00B4D5;
}
.ticket-type-item-wrapper input:checked + label span.quantity-symbol {
    background: #00B4D5;
    color: #FFFFFF;
}
.ticket-type-item-wrapper input:checked + label input[type="text"] {
    opacity: 1;
}
.date-time-selection-wrapper > div input[type="date"], 
.date-time-selection-wrapper > div input[type="time"] {
    padding: 15px 25px 15px 20px;
    border: 1px solid #00B4D5;
	font-family: 'Carlito';
    border-radius: 10px;
    position: relative;
	line-height: 20px;
    color: #012d53;
    cursor: pointer;
	font-size: 16px;
    width: 100%;
}
.date-time-selection-wrapper > div input[type="date"]::placeholder, 
.date-time-selection-wrapper > div input[type="time"]::placeholder {
	font-family: 'Carlito';
    color: #012d5380;
	line-height: 20px;
	font-size: 16px;
}
.date-time-selection-wrapper > div input[type="date"]:before,
.date-time-selection-wrapper > div input[type="time"]:before {
    content: attr(placeholder);
    background: #FFFFFF;
    position: absolute;
}
.date-time-selection-wrapper > div input[type="date"]:focus:before, 
.date-time-selection-wrapper > div input[type="date"]:valid:before,
.date-time-selection-wrapper > div input[type="time"]:focus:before, 
.date-time-selection-wrapper > div input[type="time"]:valid:before {
    content: '';
}
.date-time-selection-wrapper > div input[type="date"]::-webkit-calendar-picker-indicator,
.date-time-selection-wrapper > div input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}
.date-time-selection-wrapper > div input[type="date"]:after,
.date-time-selection-wrapper > div input[type="time"]:after {
    font-family: 'Font Awesome 6 Pro';
    pointer-events: none;
    height: fit-content;
    position: absolute;
    line-height: 20px;
    content: '\f133';
    font-weight: 300;
    font-size: 20px;
    margin: auto 0;
    right: 25px;
    top: -2px;
    bottom: 0;
}
.date-time-selection-wrapper > div input[type="time"]:after {
	content: '\f017';
}
.date-time-selection-wrapper > div:after {
    background: #A5D6C8;
    position: absolute;
    margin: auto 0;
    display: block;
    height: 25px;
    right: 60px;
    content: '';
    width: 1px;
    bottom: 0;
    top: -3px;
}


/* School and Associations */
.gws-col-why-choose-icons-cols .icon-wrapper.position-column {
    text-align: center;
    align-items: center;
    gap: 15px;
}
.gws-col-why-choose-icons-cols .icon-wrapper .icon-content-title {
    margin-bottom: 25px;
}
.gws-col-why-choose-icons-cols .icon-wrapper .icon-content-title p {
    line-height: 28px;
    font-size: 24px;
}
.gws-col-why-choose-icons-cols .icon-wrapper .icon-content-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.gws-col-why-choose-icons-cols .gws-icon-item {
    margin-bottom: 0;
}
.tailored-programmes-inner-row .text-content-wrapper:first-child {
    border-bottom: 0.25px solid #012D53;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.group-learn-inner-row .vc_column_container:first-child {
    padding-right: 20px;
}
.group-learn-inner-row .vc_column_container:last-child {
    padding-left: 80px;
}
.group-learn-inner-row .gws-image-item {
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}
.gws-image-item.group-learn-graphics {
    position: absolute;
    top: -200px;
    left: -75px;
    transform: rotate(100deg);
}
.gws-image-item.group-learn-graphics svg {
    overflow: visible;
    height: 550px;
    width: 550px;
}
.gws-image-item.group-learn-graphics svg path {
    fill: #00B4D5;
}
.group-learn-inner-row .container-col.why-visit-odysseo-btns {
    gap: 10px;
}
.group-learn-inner-row .container-col.why-visit-odysseo-btns .icon {
    width: 5%;
}
.group-learn-inner-row .container-col.why-visit-odysseo-btns .icon-content {
    width: 95%;
}
.vc_row.group-learn-inner-row {
    align-items: center;
    display: flex;
}
.school-plan-your-visit-inner-row .vc_column_container:last-child {
    padding-left: 75px;
}
.container-choose-experience-texts .text-content-inner {
    padding: 20px 25px 25px 20px;
    border-radius: 10px;
}
.container-choose-experience-texts .text-content-inner p.text-block-title {
    color: #00B4D5 !important;
    margin-bottom: 5px;
}
.useful-info-box .image-content-details-wrapper {
    padding: 65px 85px 40px;
}
.ready-to-inspire-inner-row .wpb_wrapper {
    background: linear-gradient(90deg, rgba(0, 180, 213, 0.50) 0%, rgba(165, 214, 200, 0.50) 100%);
    backdrop-filter: blur(11px);
    border-radius: 12px;
}
.ready-to-inspire-inner-row .text-content-wrapper {
    max-width: 60%;
    margin: 0 auto;
}
.ready-to-inspire-inner-row .container-col.ready-to-inspire-btns > div {
    width: fit-content;
}
.ready-to-inspire-inner-row .container-col.ready-to-inspire-btns {
    justify-content: center;
    gap: 25px;
}
.useful-info-reservation-inner-row .vc_column_container:first-child {
    padding-right: 50px;
}
.useful-info-reservation-inner-row .vc_column_container:last-child {
    padding-left: 20px;
}
.useful-info-reservation-inner-row .container-col.why-visit-odysseo-btns .icon-wrapper {
    align-items: flex-start;
    gap: 20px;
}
.useful-info-reservation-inner-row .container-col.why-visit-odysseo-btns {
    gap: 20px;
}
.useful-info-reservation-inner-row .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content-title {
    margin-bottom: 10px;
}
.useful-info-reservation-inner-row .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content-title p {
    font-family: 'Red Hat Display';
    color: #737D82;
}
.useful-info-reservation-inner-row .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content-text {
    max-width: 100%;
}
.useful-info-reservation-inner-row .useful-info-box  .container-col.why-visit-odysseo-btns .icon-wrapper .icon {
    width: 8%;
}
.useful-info-reservation-inner-row .useful-info-box .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content {
    width: 92%;
}
.useful-info-reservation-inner-row .reservation-col .container-col.why-visit-odysseo-btns .icon-wrapper .icon {
    width: 5.5%;
}
.useful-info-reservation-inner-row .reservation-col .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content {
    width: 94.5%;
}
.useful-info-reservation-inner-row .reservation-col .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content .icon-content-title {
    margin-bottom: 0;
}
.useful-info-reservation-inner-row .reservation-col .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content .icon-content-text {
    margin-top: 10px;
}
.useful-info-reservation-inner-row .reservation-col .container-col.why-visit-odysseo-btns .gws-icon-item:nth-child(2) .icon-wrapper {
    align-items: center;
}
.vc_row.useful-info-reservation-inner-row {
    align-items: center;
    display: flex;
}
.school-associations-form-row {
    scroll-margin-top: 75px;
}


/* Single Experience */
.single-experience-wrapper {
    padding-bottom: 60px;
    padding-top: 165px;
}
.single-experience-image-box-wrapper {
    margin-top: 60px;
}
.single-experience-banner-content-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
    gap: 40px;
}
.single-experience-content {
    width: 48%;
}
.single-experience-banner {
    border-radius: 10px;
    height: 375px;
    overflow: hidden;
    width: 52%;
}
.single-experience-banner img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.single-experience-content-title {
    margin-bottom: 35px;
}
.single-experience-content-title h1 {
    line-height: 58px;
    font-weight: 700;
    font-size: 48px;
}
.single-experience-content-description {
    margin-top: 35px;
}
.single-experience-content-description p {
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
}
.single-experience-content-subtitle p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.single-experience-content-subtitle {
    max-width: 80%;
}
.single-experience-whats-included-what-you-need-to-know-wrapper {
    justify-content: space-between;
    margin: 60px auto 0;
    max-width: 95%;
    display: flex;
    gap: 100px;
}
.single-experience-image-box-inner-wrapper {
    position: relative;
}
.single-experience-image-box-banner img {
    object-fit: cover;
    min-height: 275px;
    width: 100%;
}
.single-experience-image-box-banner {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.single-experience-image-box-content {
    justify-content: center;
    flex-direction: column;
    padding: 50px 200px;
    align-items: center;
    position: absolute;
    text-align: center;
    display: flex;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.single-experience-image-box-banner:after {
    background: linear-gradient(0deg, #00000033 0%, #00000033 100%);
    position: absolute;
    height: 100%;
    content: '';
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.single-experience-image-box-content-title h2 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.single-experience-image-box-content-title {
    margin-bottom: 25px;
}
.single-experience-image-box-content-description p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-image-box-content-description p strong {
    font-weight: 700;
}
.single-experience-details-wrapper {
    margin: 45px auto 0;
    max-width: 95%;
}
.single-experience-why-you-love-it-booking-form-wrapper {
    margin: 45px auto 0;
    max-width: 95%;
}
.single-experience-whats-included-wrapper {
    width: 40%;
}
.single-experience-what-you-need-to-know-wrapper {
    width: 60%;
}
.single-experience-whats-included-content-title {
    margin-bottom: 30px;
}
.single-experience-whats-included-content-title h2 {
    line-height: 34px;
    font-weight: 700;
    font-size: 24px;
}
.single-experience-whats-included-content-note {
    margin-top: 20px;
}
.single-experience-whats-included-content-note p {
    line-height: 18px;
    font-weight: 400;
    font-size: 14px;
}
.single-experience-whats-included-content-item:not(:last-child) {
    margin-bottom: 10px;
}
.single-experience-whats-included-content-item {
    align-items: center;
    display: flex;
    gap: 25px;
}
.single-experience-whats-included-content-item-graphic svg {
    animation: spin 20s linear infinite;
}
.single-experience-whats-included-content-item-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-what-you-need-to-know-content-title {
    margin-bottom: 20px;
}
.single-experience-what-you-need-to-know-content-title h2 {
    line-height: 34px;
    font-weight: 700;
    font-size: 24px;
}
.single-experience-what-you-need-to-know-content-button.gws-button {
    justify-content: center;
    margin-top: 25px;
}
.single-experience-what-you-need-to-know-content-note {
    text-align: center;
    margin-top: 15px;
}
.single-experience-what-you-need-to-know-content-note p {
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
}
.single-experience-what-you-need-to-know-content-button.gws-button a {
    padding: 15px 40px;
}
.single-experience-what-you-need-to-know-content-subtitle-items {
    padding: 25px 30px 30px;
    background: #00b4d51a;
    border-radius: 15px;
}
.single-experience-what-you-need-to-know-content-subtitle {
    border-bottom: 1px solid #00B4D5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.single-experience-what-you-need-to-know-content-subtitle p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.single-experience-what-you-need-to-know-content-item {
    align-items: center;
    display: flex;
    gap: 15px;
}
.single-experience-what-you-need-to-know-content-item:not(:last-child) {
    margin-bottom: 15px;
}
.single-experience-what-you-need-to-know-content-item-text {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-what-you-need-to-know-content-item-icon svg {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.single-experience-what-you-need-to-know-content-item-icon {
    width: 25px;
}
.single-experience-details-inner-wrapper {
    padding: 30px 35px 40px 60px;
    border: 1px solid #00B4D5;
    border-radius: 15px;
    display: flex;
    gap: 40px;
}
.single-experience-details-content-left {
    width: 35%;
}
.single-experience-details-content-right {
    width: 65%;
}
.single-experience-details-content-title h2 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.single-experience-details-description * {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-what-you-need-to-know-content-button.gws-button a:hover {
    background: #012D53;
    color: #FFFFFF;
}
.buy-your-tickets-wrapper.single-experience-buy-your-tickets-wrapper {
    position: initial;
    width: 60%;
}
.single-experience-why-you-love-it-booking-form-wrapper {
    display: flex;
    gap: 35px;
}
.single-experience-why-you-love-it-inner-wrapper {
    background: linear-gradient(90deg, rgba(0, 180, 213, 0.50) 0%, rgba(165, 214, 200, 0.50) 100%);
    backdrop-filter: blur(11px);
    padding: 70px 25px 65px;
    border-radius: 12px;
}
.single-experience-why-you-love-it-content-title {
    margin-bottom: 90px;
}
.single-experience-why-you-love-it-content-title h2 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.single-experience-why-you-love-it-content-description p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience .footer-newsletter-wrapper {
    overflow: visible;
}
.single-experience .footer-newsletter-wrapper svg path {
    fill: #00B4D5;
}
.single-experience .footer-newsletter-pattern-wrapper {
    transform: rotate(-270deg);
    left: -50px;
    top: -250px;
}
.single-experience-booking-form .gfield--type-html {
    line-height: 20px;
    font-weight: 400;
    color: #012D53;
    margin-top: 11px;
    font-size: 16px;
}
.single-experience-booking-form .gfield--type-html strong {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.single-experience-booking-form .gform-footer.gform_footer.top_label {
    justify-content: center;
    margin-top: 35px;
}
.single-experience-booking-form .gform-theme.gform-theme--framework.gform_wrapper .gform-footer.gform_footer.top_label input[type="submit"].button {
    border: 1px solid #012D53;
    text-transform: uppercase;
    font-family: 'Carlito';
    background: #012D53;
    padding: 25px 100px;
    border-radius: 50px;
    line-height: 25px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 21px;
    transition: 0.6s all ease-in-out;
}
.single-experience-booking-form .gform-theme.gform-theme--framework.gform_wrapper .gform-footer.gform_footer.top_label input[type="submit"].button:hover {
    background: transparent;
    border-color: #012D53;
    color: #012D53;
}
.single-experience-buy-your-tickets-wrapper .buy-your-tickets-form-wrapper {
    padding: 25px 30px 30px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gform_fields {
    column-gap: 20px;
    row-gap: 13px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container.ginput_container_date input {
    cursor: pointer;
    height: 60px;
    width: 100%;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container input {
    border: 1px solid #00B4D5;
    border-radius: 10px;
    padding: 12px 25px;
    line-height: 20px;
    color: #00B4D5;
    font-weight: 400;
    box-shadow: none;
    font-size: 16px;
    height: 45px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container input::placeholder {
    color: #00b4d54d;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework label.gfield_label.gform-field-label {
    padding-left: 10px;
    margin-bottom: 8px;
    line-height: 18px;
    color: #00B4D5;
    font-weight: 400;
    font-size: 14px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-date label.gfield_label.gform-field-label {
    display: none;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container.ginput_container_date img.ui-datepicker-trigger {
    max-inline-size: 22px;
    max-block-size: 22px;
    height: fit-content;
    position: absolute;
    transform: none;
    margin: auto 0;
    right: 25px;
    bottom: 0;
    top: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number label.gfield_label.gform-field-label {
    padding-left: 35px;
    line-height: 20px;
    font-weight: 700;
    color: #012D53;
    font-size: 16px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number .ginput_container input {
    border: transparent;
    text-align: center;
    line-height: 21px;
    color: #012D53;
    font-weight: 700;
    font-size: 21px;
    height: 25px;
    padding: 0;
    padding-left: 7px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number .ginput_container input::placeholder {
    line-height: 21px;
    color: #012D53;
    font-weight: 700;
    font-size: 21px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number .ginput_container {
    position: relative;
    margin-left: 35px;
    width: 40%;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number .ginput_container span {
    justify-content: center;
    background: #00B4D5;
    align-items: center;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    color: #FFFFFF;
    font-weight: 900;
    display: flex;
    height: 25px;
    width: 25px;
    left: 0;
    top: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number .ginput_container span.plus-button {
    left: auto;
    right: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container.ginput_container_date {
    position: relative;
    width: 100%;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-date input.gform_hidden {
    width: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container.ginput_container_date:after {
    background: #A5D6C8;
    position: absolute;
    margin: auto 0;
    height: 25px;
    content: '';
    right: 60px;
    width: 1px;
    bottom: 0;
    top: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container--name {
    column-gap: 20px;
    margin: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container--name span.gform-grid-col {
    padding: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container--name span.gform-grid-col label.gform-field-label.gform-field-label--type-sub {
    padding-left: 10px;
    margin-bottom: 8px;
    line-height: 18px;
    font-weight: 400;
    color: #00B4D5;
    font-size: 14px;
}
.gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container_number input[type=number]::-webkit-inner-spin-button,
.gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container_number input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	pointer-events: none;
	opacity: 0;
	margin: 0;
}
.single-experience-gallery-top-wrapper {
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
}
.single-experience-gallery-image img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.single-experience-gallery-image a {
    display: block;
    height: 200px;
}
.single-experience-gallery-inner-wrapper {
    padding-top: 90px;
}
.single-experience-gallery-image {
    display: none;
}
.single-experience-gallery-image:first-child, 
.single-experience-gallery-image:nth-child(2), 
.single-experience-gallery-image:nth-child(3), 
.single-experience-gallery-image:nth-child(4), 
.single-experience-gallery-image:nth-child(5), 
.single-experience-gallery-image:nth-child(6) {
    display: block;
}
.single-experience-gallery-image:first-child, 
.single-experience-gallery-image:nth-child(6) {
    width: 40%;
}
.single-experience-gallery-image:nth-child(2), 
.single-experience-gallery-image:nth-child(4) {
    width: 21.5%;
}
.single-experience-gallery-image:nth-child(3), 
.single-experience-gallery-image:nth-child(5) {
    width: 35%;
}
.single-experience-details-subtitle1 {
    margin-bottom: 5px;
}
.single-experience-details-subtitle1 h3 {
    line-height: 28px;
    font-weight: 700;
    font-size: 24px;
}
.single-experience-details-subtitle1-description {
    margin-bottom: 15px;
}
.single-experience-details-subtitle1-description p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-details-subtitle2 {
    margin-bottom: 20px;
}
.single-experience-details-subtitle2 h3 {
    line-height: 28px;
    font-weight: 700;
    font-size: 24px;
}
.single-experience-details-content-item:not(:last-child) {
    margin-bottom: 20px;
}
.single-experience-details-content-item {
    align-items: center;
    display: flex;
    gap: 25px;
}
.single-experience-conditions-content-item:not(:last-child) {
    margin-bottom: 10px;
}
.single-experience-conditions-content-item {
    align-items: center;
    display: flex;
    gap: 25px;
}
.single-experience-conditions-content-item-graphic svg {
    animation: spin 20s linear infinite;
}
.single-experience-conditions-content-item-graphic svg path {
    fill: #FFFFFF;
}
.single-experience-conditions-content-item-title-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-conditions-content-item-title-text p strong {
    font-weight: 700;
}
.single-experience-conditions-content-item-title p {
    font-weight: 700;
}
.single-experience-conditions-content-title {
    margin-bottom: 90px;
    max-width: 84%;
}
.single-experience-conditions-content-title h2 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.single-experience-conditions-inner-wrapper {
    background: linear-gradient(90deg, rgba(0, 180, 213, 0.50) 0%, rgba(165, 214, 200, 0.50) 100%);
    padding: 70px 30px 60px;
    backdrop-filter: blur(11px);
    border-radius: 12px;
}
.single-experience-why-you-love-it-conditions-wrapper {
    flex-direction: column;
    display: flex;
    width: 40%;
}
.single-experience-conditions-wrapper {
    margin-bottom: 35px;
}
.single-experience-whats-included-bottom-conditions-wrapper {
    align-items: center;
    margin: 45px auto 0;
    max-width: 95%;
    display: flex;
    gap: 175px;
}
.single-experience-whats-included-bottom-wrapper {
    width: 35%;
}
.single-experience-details-schedule-content-item {
    background: #00B4D51A;
    break-inside: avoid;
    border-radius: 10px;
    padding: 15px;
}
.single-experience-whats-included-content-item-time {
    align-items: center;
    margin-bottom: 5px;
    display: flex;
    gap: 15px;
}
.single-experience-whats-included-content-item-time p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-whats-included-content-item-time i {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-whats-included-content-item-details-item-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-whats-included-content-item-details-item-text p strong {
    font-weight: 700;
}
.single-experience-whats-included-content-item-details-item:not(:last-child) {
    margin-bottom: 10px;
}
.single-experience-whats-included-content-item-details-item {
    padding-left: 35px;
    position: relative;
    display: block;
}
.single-experience-whats-included-content-item-details-item-icon {
    justify-content: center;
    align-items: center;
    position: absolute;
    margin: auto 0;
    display: flex;
    height: 27px;
    width: 27px;
    bottom: 0;
    left: 0;
    top: 0;
}
.single-experience-details-schedule-inner-wrapper {
    column-gap: 30px;
    column-count: 3;
}
.single-experience-details-schedule-content-item:not(:last-child) {
    margin-bottom: 10px;
}
.single-experience-details-schedule-content-title-subtitle {
    padding-bottom: 20px;
    break-inside: avoid;
}
.single-experience-details-schedule-content-title-subtitle h2 {
    margin-bottom: 15px;
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.single-experience-details-schedule-content-title-subtitle h3 {
    line-height: 28px;
    font-weight: 700;
    font-size: 24px;
}
.single-experience-details-schedule-wrapper {
    margin-top: 60px;
}
.single-experience-whats-included-bottom-content-title {
    margin-bottom: 20px;
}
.single-experience-whats-included-bottom-content-title h2 {
    line-height: 42px;
    font-weight: 700;
    font-size: 32px;
}
.single-experience-whats-included-bottom-content-item {
    align-items: center;
    display: flex;
    gap: 25px;
}
.single-experience-whats-included-bottom-content-item:not(:last-child) {
    margin-bottom: 10px;
}
.single-experience-whats-included-bottom-content-item-graphic svg {
    animation: spin 20s linear infinite;
}
.single-experience-whats-included-bottom-content-item-text p {
    line-height: 22px;
    font-weight: 400;
    font-size: 18px;
}
.single-experience-whats-included-bottom-content-item-text p strong {
    font-weight: 700;
}
.single-experience-whats-included-bottom-items-wrapper {
    max-width: 90%;
}


/* Single Event */
.single-event-wrapper {
    padding-top: 180px;
}
.single-event-content {
    text-align: center;
}
.single-event-content-title {
    margin-bottom: 15px;
}
.single-event-content-title h1 {
    line-height: 58px;
    font-weight: 700;
    font-size: 48px;
}
.single-event-content-subtitle p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.corporate-event-content-inner-row .wpb_column.vc_column_container:first-child {
    padding-right: 25px;
}
.corporate-event-content-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 75px;
}
.corporate-event-content-inner-row .icon-content-text p {
    line-height: 22px;
    font-size: 18px;
}
.corporate-event-content-inner-row .icon-wrapper .icon svg {
    animation: spin 20s linear infinite;
}
.container-type-of-event-icons .gws-icon-item:not(:last-child) {
    margin-bottom: 10px;
}
.tab-event-venues-tabs .gws-tabs-wrapper.position-row .gws-tab-top {
    padding-top: 80px;
    border-radius: 0;
    padding-left: 0;
    width: 45%;
}
.tab-event-venues-tabs .gws-tabs-wrapper.position-row .gws-tab-bottom {
    width: 55%;
}
.corporate-event-venues-inner-row .wpb_wrapper {
    position: relative;
}
.corporate-event-venues-inner-row .wpb_wrapper > .gws-heading {
    position: absolute;
    left: 30px;
    top: 0;
}
.tab-event-venues-tabs .image-content-details-wrapper {
    padding: 35px 70px 0 40px;
}
.tab-event-venues-tabs .image-content-details-wrapper > div.gws-heading {
    margin-bottom: 10px;
}
.tab-event-venues-tabs .image-content-details-wrapper > div.text-content-wrapper {
    margin-bottom: 40px;
}
.tab-event-venues-tabs .image-content-details-wrapper > div.gws-content-wrapper.container-event-venues-icons {
    margin-bottom: 35px;
}
.gws-content-wrapper.container-event-venues-icons .gws-icon-item:not(:last-child) {
    margin-bottom: 15px;
}
.gws-content-wrapper.container-event-venues-icons .gws-icon-item .icon-wrapper {
    border: 0;
    gap: 15px;
}
.gws-content-wrapper.container-event-venues-icons .gws-icon-item .icon-wrapper .icon-content {
    border: 0;
    padding: 0;
}
.gws-content-wrapper.container-event-venues-icons .gws-icon-item .icon-wrapper .icon-content .icon-content-title {
    margin: 0;
}
.gws-content-wrapper.container-event-venues-icons .gws-icon-item .icon-wrapper .icon-content .icon-content-title p {
    font-weight: 400;
}
.tab-event-venues-tabs .gws-tabs-wrapper.add-line .gws-title-tab .tab-title p:after {
    margin: 0 auto;
    height: 0.5px;
    width: 90%;
    opacity: 1;
    right: 0;
}
.tab-event-venues-tabs .gws-tabs-wrapper.position-row.add-number.border-radius-all .gws-tab-top .tab-title p {
    border-radius: 10px;
    padding: 25px 30px;
    line-height: 24px;
    font-size: 20px;
}
.tab-event-venues-tabs .gws-tabs-wrapper.position-row.add-number.border-radius-all .gws-tab-top .tab-title p span:before {
    line-height: 50px;
    font-size: 40px;
}
.tab-event-venues-tabs .gws-tabs-wrapper.position-row.add-number.border-radius-all .gws-tab-top .tab-title p span {
    padding-left: 75px;
}
.tab-event-venues-tabs .gws-tabs-wrapper.add-line .gws-title-tab:first-child .tab-title p:before {
    background: #00B4D5;
    position: absolute;
    margin: 0 auto;
    height: 0.5px;
    content: '';
    width: 90%;
    opacity: 1;
    right: 0;
    left: 0;
    top: 0;
    transition: 0.6s all ease-in-out;
}
.gws-cta-banner-inner-wrapper {
    background: linear-gradient(90deg, #00b4d580 0%, #a5d6c880 100%);
    justify-content: space-between;
    backdrop-filter: blur(12px);
    align-items: center;
    border-radius: 15px;
    padding: 35px 75px;
    display: flex;
}
.gws-cta-banner-title p {
    line-height: 30px;
    color: #012D53;
    font-weight: 700;
    font-size: 26px;
}
.gws-cta-banner-right .gws-button a {
    border: 1px solid #00B4D5;
    background: #00B4D5;
    color: #FFFFFF;
}
.gws-cta-banner-right .gws-button a:visited {
    color: #FFFFFF;
}
.gws-cta-banner-right .gws-button a:hover {
    background: transparent;
    color: #00B4D5;
}
.birthday-party-banner-row .corporate-event-content-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 60px;
}
.birthday-party-what-awaits-row .corporate-event-venues-inner-row .wpb_wrapper > .gws-heading {
    position: initial;
}
.birthday-party-what-awaits-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    position: relative;
}
.vc_row.what-awaits-cta-row {
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
}
.what-awaits-cta-row .gws-cta-banner-inner-wrapper {
    padding: 25px 75px;
}
.what-awaits-cta-row .gws-cta-banner-inner-wrapper .gws-cta-banner-left {
    max-width: 50%;
}
.what-awaits-cta-row .gws-cta-banner-inner-wrapper .gws-cta-banner-title p {
    line-height: 25px;
    font-size: 21px;
}
.gws-col-what-awaits-cols .image-content-details-wrapper {
    justify-content: flex-start;
    padding: 20px 0 0;
}
.gws-col-what-awaits-cols .image-content-details-wrapper > div:not(:last-child) {
    margin-bottom: 10px;
}
.gws-col-what-awaits-cols .image-content-details-wrapper .gws-heading-inner-wrapper {
    align-items: flex-start;
    min-height: 65px;
    max-width: 80%;
}
.birthday-party-form-row .buy-your-tickets-wrapper.single-experience-buy-your-tickets-wrapper,
.team-building-packages-row .buy-your-tickets-wrapper.single-experience-buy-your-tickets-wrapper {
    margin-left: auto;
    margin-right: 0;
    width: 90%;
}
.birthday-party-form-row .buy-your-tickets-wrapper.single-experience-buy-your-tickets-wrapper .buy-your-tickets-text {
    max-width: 75%;
}
.birthday-party-form-row .single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number .ginput_container {
    width: 55%;
}
.birthday-party-form-row .gform-theme.gform-theme--framework.gform_wrapper .custom-check label {
    text-transform: initial;
    line-height: 20px;
    color: #00B4D5;
    font-size: 16px;
}
.birthday-party-form-row .gform-theme.gform-theme--framework.gform_wrapper .custom-check label:before {
    border: 2px solid #00B4D5;
    top: -13px;
}
.birthday-party-form-row .gform-theme.gform-theme--framework.gform_wrapper .custom-check label:after {
    border-color: #00B4D5;
    top: -11px;
}
.birthday-party-form-row .single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-checkbox legend.gfield_label {
    margin-bottom: 5px;
    padding-left: 40px;
    line-height: 20px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 16px;
}
.birthday-party-form-row .buy-your-tickets-title-wrapper {
    margin-bottom: 0;
}
.birthday-party-form-row {
    scroll-margin-top: 100px;
}
.team-building-banner-row .corporate-event-content-inner-row .wpb_column.vc_column_container:first-child {
    padding-right: 0;
}
.team-building-banner-row p.text-block-title {
    margin-bottom: 5px;
}
.team-building-banner-row .container-type-of-event-icons .gws-icon-item:not(:last-child) {
    margin-bottom: 15px;
}
.team-building-banner-row .container-type-of-event-icons .gws-icon-item .icon {
    width: 6%;
}
.team-building-banner-row .container-type-of-event-icons .gws-icon-item .icon-content {
    width: 94%;
}
.team-building-banner-row .corporate-event-content-inner-row .icon-content-text p {
    line-height: 20px;
    font-size: 16px;
}
.team-building-banner-row .corporate-event-content-inner-row .icon-content-title {
    margin-bottom: 0;
}
.team-building-banner-row .corporate-event-content-inner-row .icon-content-title p {
    font-family: 'Red Hat Display';
    color: #737D82;
}
.vc_row.team-building-why-choose-inner-row {
    background: linear-gradient(180deg, #A5D6C8 0%, #F4FCFF 100%);
    padding: 0 100px 0 65px;
    border-radius: 12px;
}
.container-team-building-why-choose-icons .gws-icon-item:not(:last-child) {
    margin-bottom: 25px;
}
.container-team-building-why-choose-icons .gws-icon-item .icon-wrapper {
    align-items: flex-start;
    border: 0;
    gap: 27px;
}
.container-team-building-why-choose-icons .gws-icon-item .icon {
    width: 12%;
}
.container-team-building-why-choose-icons .gws-icon-item .icon-content {
    width: 88%;
}
.container-team-building-why-choose-icons .gws-icon-item .icon-content .icon-content-text p {
    font-weight: 400;
}
.container-team-building-why-choose-icons .gws-icon-item .icon-content .icon-content-title p {
    font-family: 'Red Hat Display';
}
.container-team-building-why-choose-icons .gws-icon-item:last-child .icon-content .icon-content-title {
    max-width: 55%;
}
.team-building-packages-row .buy-your-tickets-title-wrapper h2 {
    max-width: 65%;
}
.team-building-packages-row .buy-your-tickets-wrapper.single-experience-buy-your-tickets-wrapper {
    width: 95%;
}
.team-building-packages-row .text-content-inner.border-radius-all {
    padding: 60px 50px 85px;
}
.team-building-packages-row .text-content-inner.border-radius-all p.text-block-title {
    margin-bottom: 35px;
    max-width: 70%;
}
.team-building-packages-row .buy-your-tickets-title-wrapper {
    margin-bottom: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container textarea {
    border: 1px solid #00B4D5;
    border-radius: 10px;
    padding: 12px 25px;
    line-height: 20px;
    color: #00B4D5;
    font-weight: 400;
    box-shadow: none;
    font-size: 16px;
    height: 45px;
    outline: 0;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container textarea::placeholder {
    color: #00b4d54d;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
}
.team-building-packages-row .single-experience-booking-form .gfield--type-html strong {
    font-family: 'Red Hat Display';
    line-height: 22px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 18px;
}
.team-building-packages-row .single-experience-booking-form .gfield--type-html span.form-contact-icon {
    align-items: center;
    line-height: 22px;
    color: #00B4D5;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    gap: 20px;
}
.team-building-packages-row .single-experience-booking-form .gfield--type-html span.form-contact-icon a {
    color: #00B4D5;
    transition: 0.6s all ease-in-out;
}
.team-building-packages-row .single-experience-booking-form .gfield--type-html span.form-contact-icon a:visited {
    color: #00B4D5;
}
.team-building-packages-row .single-experience-booking-form .gfield--type-html span.form-contact-icon a:hover {
    color: #012D53;
}
.team-building-packages-row .single-experience-booking-form .gfield--type-html span.form-contact-icon i {
    font-weight: 400;
}
.team-building-packages-row .single-experience-booking-form .gfield--type-html {
    padding-left: 20px;
}


/* Become a member */
.become-member-annual-pass-inner-row .text-content-wrapper {
    max-width: 85%;
}
.become-member-annual-pass-inner-row .wpb_column.vc_column_container:first-child {
    padding-right: 25px;
}
.annual-pass-benefits .image-content-details-wrapper {
    background: linear-gradient(180deg, #64c3d21a 0%, #ffffff1a 100%) !important;
    padding: 30px 20px 55px 30px;
    border-radius: 15px;
}
.container-membership-benefits-icons .gws-icon-item:not(:last-child) {
    margin-bottom: 20px;
}
.container-membership-benefits-icons .gws-icon-item .icon-wrapper {
    gap: 30px;
}
.container-membership-benefits-icons .gws-icon-item .icon {
    width: 6%;
}
.container-membership-benefits-icons .gws-icon-item .icon-content {
    width: 94%;
}
.container-membership-benefits-icons .gws-icon-item .icon svg {
    animation: spin 20s linear infinite;
}
.become-member-annual-pass-inner-row .gws-button a {
    padding: 25px 100px;
    border-radius: 50px;
    line-height: 25px;
    font-size: 21px;
}
.gws-content-wrapper.container-membership-box {
    padding: 195px 35px 75px;
    background: #A5D6C84D;
    border-radius: 10px;
}
.become-member-annual-pass-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    position: relative;
}
.gws-image-item.annual-pass-graphics {
    transform: rotate(25deg) scaleX(-1);
    position: absolute;
    bottom: -35px;
    left: 80px;
}
.gws-image-item.annual-pass-graphics svg path {
    fill: #00B4D5;
}
.gws-image-item.annual-pass-graphics svg {
    overflow: visible;
}
.vc_row.become-member-annual-pass-inner-row {
    position: relative;
    z-index: 2;
}
.member-ticket-price .icon-wrapper {
    justify-content: center;
    gap: 15px;
}
.member-ticket-price .icon-wrapper .icon-content-text p {
    text-transform: uppercase;
    font-weight: 700;
}
.become-member-form-row {
    scroll-margin-top: 50px;
}
.become-member-form-row .buy-your-tickets-wrapper.single-experience-buy-your-tickets-wrapper {
    margin-left: auto;
    margin-right: 0;
    width: 50%;
}
.become-member-form-row .single-experience-buy-your-tickets-wrapper .buy-your-tickets-form-wrapper {
    padding: 30px 80px 70px;
}
.become-member-form-row .gws-image-item.annual-pass-graphics {
    bottom: auto;
    left: -55px;
    top: 100px;
}
.become-member-form-row .single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number label.gfield_label.gform-field-label {
    justify-content: center;
    margin-top: 20px;
    padding-left: 0;
}
.become-member-form-row .single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .gfield--type-number .ginput_container {
    margin: 0 auto;
    width: 55%;
}
.become-member-form-row .single-experience-booking-form .gform-footer.gform_footer.top_label {
    margin-top: 120px;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container select {
    border: 1px solid #00B4D5;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 12px 25px;
    line-height: 20px;
    color: #00B4D5;
    font-weight: 400;
    box-shadow: none;
    font-size: 16px;
    height: 45px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container_select {
    position: relative;
}
.single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container_select:after {
    font-family: 'Font Awesome 5 pro';
    pointer-events: none;
    position: absolute;
    color: #00B4D5;
    content: '\f078';
    font-weight: 900;
    font-size: 14px;
    left: initial;
    right: 11px;
    top: 15px;
}


/* Volunteer */
.gws-image-item.volunteer-graphics {
    transform: rotate(-165deg) scaleX(-1);
    position: absolute;
    left: -75px;
    top: 100px;
}
.gws-image-item.volunteer-graphics svg path {
    fill: #00B4D5;
}
.gws-image-item.volunteer-graphics svg {
    overflow: visible;
}
.vc_row.volunteer-details-inner-row {
    padding: 0 40px;
}
.vc_row.volunteer-details-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 110px;
}
.custom-gallery-wrapper .single-experience-gallery-inner-wrapper {
    padding: 0;
}
.vc_row.ready-to-dive-inner-row {
    background: linear-gradient(180deg, #A5D6C8 0%, #F4FCFF 100%);
    padding: 65px 75px 85px 140px;
    border-radius: 12px;
    align-items: center;
    display: flex;
}
.vc_row.ready-to-dive-inner-row .ready-to-dive-images.wpb_column.vc_column_container {
    padding-right: 65px;
    position: relative;
}
.vc_row.ready-to-dive-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 90px;
}
.gws-image-item.ready-to-dive-fish-graphics {
    position: absolute;
    right: 10px;
    top: -35px;
}
.gws-col-why-volunteer-cols .text-content-wrapper .text-block-title {
    font-family: 'Red Hat Display';
    margin-bottom: 30px;
    max-width: 85%;
}
.gws-col-why-volunteer-cols .text-content-wrapper {
    position: relative;
}
.gws-col-why-volunteer-cols .text-content-wrapper:not(:last-child):after {
    background: #012D53;
    position: absolute;
    margin: auto 0;
    right: -50px;
    height: 70%;
    content: '';
    width: 1px;
    bottom: 0;
    top: 0;
}


/* Donation */
.vc_row.donation-banner-inner-row {
    align-items: center;
    display: flex;
}
.vc_row.contribution-difference-details-inner-row {
    margin: 0 auto !important;
    max-width: 85%;
}
.vc_row.ready-to-dive-inner-row.how-to-donate-inner-row {
    background: linear-gradient(180deg, #00b4d54d 0%, #ffffff4d 100%);
    padding: 50px 200px 65px 85px;
    backdrop-filter: blur(11px);
}
.vc_row.ready-to-dive-inner-row.how-to-donate-inner-row .ready-to-dive-images.wpb_column.vc_column_container {
    padding-right: 60px;
}
.vc_row.ready-to-dive-inner-row.how-to-donate-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 0;
}


/* About us */
.about-us-banner-row .page-banner-wrapper .banner-image.overlay:after {
    background: linear-gradient(180deg, #012d5300 0.81%, #012D53 100%);
    height: 350px;
    top: auto;
}
.mission-values-inner-row .text-content-wrapper {
    max-width: 80%;
}
.about-unique-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    position: relative;
}
.gws-image-item.about-fish-cutout {
    position: absolute;
    top: 240px;
    left: 0;
}
.gws-image-item.odysseo-unique-pattern {
    transform: rotate(-155deg) scaleX(-1);
    position: absolute;
    right: -60px;
    top: 180px;
}
.gws-image-item.odysseo-unique-pattern svg {
    overflow: visible;
}
.gws-image-item.odysseo-unique-pattern svg path {
    fill: #00B4D5;
}
.about-unique-inner-row .container-membership-benefits-icons .gws-icon-item:not(:last-child) {
    margin-bottom: 10px;
}
.about-unique-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 25px;
}
.about-unique-inner-row .wpb_column.vc_column_container:last-child .gws-heading, 
.about-unique-inner-row .wpb_column.vc_column_container:last-child .text-content-wrapper, 
.about-unique-inner-row .wpb_column.vc_column_container:last-child .gws-button-wrapper {
    padding-left: 60px;
}
.container-membership-benefits-icons .gws-icon-item .icon-wrapper {
    gap: 25px;
}
.icon-content-text p {
    line-height: 22px;
    font-size: 18px;
}
.container-membership-benefits-icons .gws-icon-item .icon-content {
    width: 95.5%;
}
.container-membership-benefits-icons .gws-icon-item .icon {
    width: 4.5%;
}
.about-unique-inner-row .wpb_column.vc_column_container:last-child .text-content-wrapper .text-content-inner {
    max-width: 95%;
}
.about-main-promoters-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 155px;
}
.vc_row.about-key-promoters-inner-row {
    border-radius: 12px;
    overflow: hidden;
    padding: 0 50px;
}
.gws-col-key-promoters-images .image {
    justify-content: center;
    align-items: center;
    display: flex;
}
.gws-col-key-promoters-images .image img {
    width: 130px !important;
    height: auto !important;
}


/* Cart */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    padding-top: 175px;
    max-width: 1170px;
    margin: 0 auto;
}
.woocommerce-cart main#primary,
.woocommerce-checkout main#primary {
    background: url('/wp-content/uploads/2026/01/cart-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 35px;
}
.woocommerce-cart-top-text-wrapper h2 {
    text-align: center;
    line-height: 28px;
    font-weight: 700;
	color: #FFFFFF;
    font-size: 24px;
}
.woocommerce-cart-top-text-wrapper {
    margin-bottom: 30px;
}
form#booking-cart-form, 
form.woocommerce-checkout {
    background: #F4FCFF;
    border-radius: 15px;
    position: relative;
    margin-top: 50px;
	padding: 50px;
    z-index: 2;
    gap: 50px;
}
form#booking-cart-form {
	display: flex;
}
.woocommerce-cart-form-left {
    width: 60%;
}
.woocommerce-cart-form-right {
    justify-content: space-between;
    flex-direction: column;
    padding-left: 75px;
    display: flex;
    width: 40%;
}
.woocommerce-cart-checkout-steps {
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.woocommerce-cart-checkout-step {
    align-items: center;
    position: relative;
    color: #FFFFFF;
    display: flex;
    gap: 15px;
}
.woocommerce-cart-checkout-step p {
    line-height: 22px;
    font-weight: 700;
    font-size: 18px;
}
.woocommerce-cart-checkout-step span {
    font-family: 'Red Hat Display', sans-serif;
    border: 1px solid #FFFFFF;
    justify-content: center;
    background: transparent;
    align-items: center;
    border-radius: 50%;
    line-height: 22px;
    font-weight: 900;
    font-size: 22px;
    display: flex;
    height: 50px;
    width: 50px;
}
.woocommerce-cart-checkout-step:not(:last-child):after {
    border: 1px dashed;
    position: absolute;
    content: '';
    height: 1px;
    right: -50%;
    width: 40%;
}
.woocommerce-cart-checkout-step.active span {
    background-color: #00B4D5;
    border-color: #00B4D5;
}
.woocommerce-cart .footer-newsletter-wrapper, 
.woocommerce-checkout .footer-newsletter-wrapper {
    overflow: visible;
}
.woocommerce-cart footer#colophon:after,
.woocommerce-checkout footer#colophon:after {
    background: linear-gradient(0deg, #012d5300 8.23%, #012d5399 32.88%, #012d53 54.04%, #012d53b0 66.17%, #012d5300 85.71%);
    position: absolute;
    height: 480px;
    bottom: 635px;
    width: 100%;
    content: '';
    z-index: 1;
    right: 0;
    left: 0;
}
.woocommerce-cart footer#colophon, 
.woocommerce-checkout footer#colophon {
    position: relative;
}
.woocommerce-cart .footer-container, 
.woocommerce-checkout .footer-container {
    position: relative;
    z-index: 2;
}
.booking-date-opening-hours {
    justify-content: space-between;
    margin-bottom: 40px;
    display: flex;
}
.booking-cart-date {
    justify-content: space-between;
    border: 1px solid #00B4D5;
    align-items: center;
    border-radius: 10px;
    position: relative;
    padding: 0 20px;
    display: flex;
    width: 250px;
}
.booking-cart-date p {
    margin: 0 !important;
    border: none;
    width: 70%;
}
.booking-cart-date p input {
    text-align: center;
    background: none;
	font-size: 15px;
    outline: none;
    border: none;
}
.booking-cart-date p input:focus{
    outline: none !important;
	border: none !important;
	box-shadow: none;
    background: none;
}
.booking-cart-date:after {
    background: #A5D6C8;
    position: absolute;
    height: 25px;
    content: '';
    width: 1px;
    left: 20%;
}
.booking-cart-date:before {
    font-family: 'Font Awesome 5 pro';
    content: '\f133';
	color: #012D53;
}
.booking-cart-opening-hours {
    position: relative;
    width: 50%;
}
.booking-cart-opening-hours p {
    line-height: 20px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 16px;
}
.booking-cart-opening-hours span {
    line-height: 20px;
    color: #00B4D5;
    font-weight: 400;
    font-size: 16px;
}
.booking-cart-opening-hours:before {
    font-family: 'Font Awesome 5 pro';
    position: absolute;
    content: '\f017';
    color: #00B4D5;
    left: -25px;
    top: 1px;
}
span.woocommerce-Price-currencySymbol {
    font-family: 'Arimo', sans-serif;
    margin-right: 5px;
    font-weight: 600;
}
.booking-total-preview {
    margin-top: 75px;
}
.booking-total-preview p {
    line-height: 25px;
    color: #012D53;
    font-weight: 700;
    font-size: 21px;
}
.woocommerce-cart-odysseo-notice-alert img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.woocommerce-cart-odysseo-notice-alert {
    margin-bottom: 12px;
    height: auto;
    width: 30px;
}
.woocommerce-cart-odysseo-notice {
    background: #A5D6C8;
    margin-bottom: 35px;
    border-radius: 10px;
    color: #012D53;
    padding: 30px;
}
.woocommerce-cart-odysseo-notice h3 {
    font-family: 'Red Hat Display', sans-serif;
    margin-bottom: 10px;
    line-height: 22px;
    font-weight: 700;
	color: #012D53;
    font-size: 18px;
}
.woocommerce-cart-odysseo-notice p {
    line-height: 20px;
    font-weight: 400;
    color: #012D53;
    font-size: 16px;
}
.cart-checkout-next {
    text-align: right;
}
.woocommerce-cart-form-right .cart-checkout-next button.checkout-button.alt.wc-forward {
    background-color: #012D53 !important;
    padding: 20px 65px !important;
    text-transform: uppercase;
    border-radius: 100px;
    line-height: 25px;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 21px;
    outline: 0;
    border: 0;
    transition: 0.6s all ease-in-out;
}
.woocommerce-cart-form-right .cart-checkout-next button.checkout-button.alt.wc-forward:hover {
    background: #00B4D5 !important;
}
.cart-booking-product:not(:last-child) {
    margin-bottom: 25px;
}
.cart-booking-product {
    align-items: center;
    display: flex;
}
.cart-booking-product span.product-name {
    line-height: 20px;
    font-weight: 700;
    color: #012D53;
    font-size: 16px;
    width: 275px;
}
.cart-booking-product span.product-price {
    margin: 0 40px;
    width: 100px;
}
.cart-booking-product span.product-price span.woocommerce-Price-amount.amount {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 22px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 18px;
    display: flex;
}
.qty-control {
    align-items: center;
    display: flex;
    width: 150px;
}
.qty-control .qty-input {
    justify-content: center;
    padding: 0 0 0 15px;
    align-items: center;
    text-align: center;
    line-height: 21px;
    background: none;
    color: #012D53;
    border-radius: 0;
    font-weight: 700;
    font-size: 21px;
    margin: 0 auto;
    display: flex;
    border: none;
    width: 55px;
}
.qty-control button {
    justify-content: center;
    background: #00B4D5;
    align-items: center;
    border-radius: 50%;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    height: 25px;
    border: none;
    width: 25px;
    padding: 0;
}
.qty-control.disabled-qty {
    pointer-events: none;
    opacity: 0.4;
}
.product-checkbox {
    border: 1.5px solid #00B4D5;
    position: relative;
    border-radius: 5px;
    margin-right: 25px;
    cursor: pointer;
    height: 25px;
    width: 25px;
    appearance: none;
    -webkit-appearance: none;
    transition: 0.6s all ease-in-out;
}
.product-checkbox:checked {
    background-color: #00B4D5;
}
.product-checkbox:after {
    position: absolute;
    display: none;
    content: '';
}
.product-checkbox:checked:after {
    border-radius: 2px;
    display: block;
    height: 13px;
    left: 7.5px;
    width: 7px;
    top: 3px;
    border: solid #FFFFFF;
    transform: rotate(45deg);
    border-width: 0 2.75px 2.75px 0;
}
.disabled-date {
    background: #F5F5F5;
    cursor: not-allowed;
}


/* Checkout */
.woocommerce-billing-fields h3 {
    display: none;
}
form.woocommerce-checkout .checkout-step {
    justify-content: space-between;
    display: flex;
}
.checkout-step-2-left {
    color: #012D53;
    width: 35%;
}
.checkout-step-2-right {
    width: 50%;
}
.woocommerce .checkout-step-2-right label {
    padding-bottom: 6px;
    padding-left: 10px;
    line-height: 18px;
    color: #012D53;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
}
.woocommerce .checkout-step-2-right input, 
.woocommerce .checkout-step-2-right .select2-container {
    border: 1px solid #00B4D5 !important;
    border-radius: 10px !important;
    color: #00b4d54d !important;
    background: transparent;
    padding: 12px 20px;
    line-height: 20px;
    box-shadow: none;
    font-size: 16px;
    display: block;
    height: 45px;
    width: 100%;
}
.woocommerce .checkout-step-2-right label span.required {
    color: #FE0650;
}
.woocommerce .checkout-step-2-right input::placeholder, 
.woocommerce .checkout-step-2-right .select2-container::placeholder {
    color: #00b4d54d !important;
    line-height: 20px;
    font-size: 16px;
}
.woocommerce .checkout-step-2-right p#billing_first_name_field {
    padding-right: 10px;
    width: 50%;
    order: 1;
}
.woocommerce .checkout-step-2-right p#billing_last_name_field {
    padding-left: 10px;
    width: 50%;
    order: 2;
}
.woocommerce .checkout-step-2-right .woocommerce-billing-fields__field-wrapper {
    flex-wrap: wrap;
    display: flex;
    row-gap: 12px;
}
.woocommerce .checkout-step-2-right p#billing_country_field {
    width: 100%;
    order: 4;
}
.woocommerce .checkout-step-2-right p#billing_phone_field {
    width: 100%;
    order: 3;
}
.woocommerce .checkout-step-2-right p#billing_email_field {
    width: 100%;
    order: 5;
}
.woocommerce .checkout-step-2-right p#terms_conditions_field {
    width: 100%;
    order: 7;
}
.woocommerce .checkout-step-2-right p#privacy_policy_field {
    width: 100%;
    order: 6;
}
.woocommerce .checkout-step-2-right span.woocommerce-input-wrapper {
    display: block;
    width: 100%;
}
.woocommerce .checkout-step-2-right .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
    color: #00B4D5;
    font-size: 16px;
    padding: 0;
}
.woocommerce .checkout-step-2-right .select2-container--default .select2-selection--single {
    background: transparent;
    height: fit-content;
    border: 0;
    margin: 0;
}
.woocommerce .checkout-step-2-right .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.woocommerce .checkout-step-2-right .select2-container--default .select2-selection--single .select2-selection__arrow::before {
    font-family: 'Font Awesome 5 pro';
    pointer-events: none;
    position: absolute;
    color: #00B4D5;
    content: '\f078';
    font-weight: 900;
    font-size: 14px;
    left: initial;
    right: 20px;
    top: 10px;
}
.woocommerce .checkout-step-2-right label.checkbox {
    padding: 0;
}
.woocommerce .checkout-step-2-right .input-checkbox {
    border: 1.5px solid #00B4D5 !important;
    border-radius: 4px !important;
    position: relative;    
    margin-right: 10px;
    cursor: pointer;
    height: 20px;
    width: 20px;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    transition: 0.6s all ease-in-out;
}
.woocommerce .checkout-step-2-right .input-checkbox:checked {
    background-color: #00B4D5;
    border-color: #00B4D5;
}
.woocommerce .checkout-step-2-right .input-checkbox:after {
    position: absolute;
    display: none;
    content: '';
}
.woocommerce .checkout-step-2-right .input-checkbox:checked:after {
    display: block;
    height: 12px;
    left: 5.5px;
    width: 6px;
    top: 1px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.woocommerce .checkout-step-2-right label.checkbox {
    text-transform: uppercase;
    align-items: center;
    line-height: 18px;
    font-weight: 400;
    color: #00B4D5;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    padding: 0;
    gap: 3px;
}
.woocommerce .checkout-step-2-right label.checkbox a {
    color: #00B4D5;
    transition: 0.6s all ease-in-out;
}
.woocommerce .checkout-step-2-right label.checkbox a:visited {
    color: #00B4D5;
}
.woocommerce .checkout-step-2-right label.checkbox a:hover {
    color: #012D53;
}
.woocommerce .checkout-step-2-right label.checkbox span.required {
    display: none;
}
.select2-container--default .select2-results__option--highlighted[data-selected] {
	background-color: #00B4D5 !important;
    color: #FFFFFF !important;
}
.select2-container--open .select2-dropdown--below {
    box-shadow: 0 2px 10px #0000001a;
    border-radius: 0 0 10px 10px;
    background: #F4FCFF;
    border: 0;
}
.select2-results__option {
    font-family: 'Carlito', sans-serif;
    padding: 10px 20px !important;
    color: #012D53 !important;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
    outline: 0;
}
.select2-container--default .select2-results__option[aria-selected=true], 
.select2-container--default .select2-results__option[data-selected=true] {
    background: #A5D6C8;
}
.select2-search--dropdown {
    padding: 10px !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    font-family: 'Carlito', sans-serif;
    border-color: #00B4D5 !important;
    background: transparent;
    border-radius: 10px;
    padding: 10px 15px;
    line-height: 20px;
    font-weight: 400;
    color: #00B4D5;
    font-size: 16px;
}
.checkout-step-2-right .step-nav {
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.woocommerce button.next-step.button.alt {
    background-color: #012D53 !important;
    padding: 20px 65px !important;
    text-transform: uppercase;
    border-radius: 100px;
    line-height: 25px;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 21px;
    outline: none;
    transition: 0.6s all ease-in-out;
}
.woocommerce button.next-step.button.alt:hover {
    background: #00B4D5 !important;
}
.checkout-step-2-left-heading h3 {
    line-height: 25px;
    font-weight: 700;
    color: #012D53;
    font-size: 21px;
}
.checkout-step-2-left-text p {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 22px;
    font-weight: 500;
    margin-top: 15px;
    color: #012D53;
    font-size: 18px;
}
.checkout-step-2-right .booking-total-preview {
    margin: 0;
}










/* To check from here */


.checkout-step-3-left-heading h3 {
    color: #012D53;
    font-size: 20px;
    font-weight: 700;
}
.checkout-step-3-left-heading {
    margin-bottom: 30px;
}
.checkout-cart-item span.item-price {
    color: #00B4D5;
    font-size: 18px;
	font-weight: 700;
}
.checkout-step-3-left-contact p {
    color: #00B4D5;
    display: flex;
    margin: 5px 0;
}
.checkout-step-3-left-contact p strong {
    color: #012D53;
    width: 185px;
    display: block;
}
.checkout-cart-item {
    display: flex;
	margin: 15px 0 20px;
	justify-content: space-between;
	width: -webkit-fill-available;
}
.checkout-cart-details-price {
    margin-left: 150px;
}
.checkout-step-3-left-cart {
    margin: 50px 0;
    border-bottom: 2px solid #00B4D5;
}
.checkout-step-3-left {
    width: 50%;
}
.checkout-step-3-right {
    width: 45%;
    background-color: #FFF;
    border-radius: 0 30px 30px 0;
}
form.checkout.woocommerce-checkout.checkout-step-3 {
    padding: 0;
}
.checkout-step-3-left, 
.checkout-step-3-right {
    padding: 50px;
}
.checkout-step-3-left {
    padding-right: 0;
}
.checkout-cart-item-details span {
    color: #00B4D5;
    font-size: 18px;
}
.checkout-cart-totals p {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    font-size: 18px;
}
.checkout-cart-totals span {
    width: 150px;
    text-align: right;
    font-weight: 700;
}
p.item-price-unit {
    color: #00B4D5;
    font-size: 18px;
}
.checkout-cart-totals p {
    color: #00B4D5;
}
.checkout-cart-details-price span {
    color: #00B4D5;
    font-weight: 700;
    font-size: 18px;
}
.woocommerce-cart-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.woocommerce-cart-logo {
    width: 200px;
    margin: 0 auto;
}
.woocommerce-cart-top-section {
    padding-top: 150px;
}
.woocommerce .checkout-step-2-right a {
    text-decoration: underline !important;
}
.checkout-step-3-right #payment.woocommerce-checkout-payment #place_order {
    display: none;
}
.checkout-step-3-right span.woocommerce-terms-and-conditions-checkbox-text {
    color: #012D53;
}
form.woocommerce-checkout {
    position: relative;
}
.checkout-step-3-right button.button.alt {
    border-radius: 100px;
    background: #00B4D5 !important;
    padding: 20px 60px;
    height: fit-content;
}
.checkout-step-3-right .step-nav {
    display: flex;
    justify-content: space-between;
}
.checkout-step-3-right button.prev-step.button {
    border-radius: 100px;
    background: #012D53 !important;
    padding: 20px 60px;
    height: fit-content;
    color: #FFF;
}
.checkout-step-3-right-checkout-wrapper .woocommerce-checkout-payment {
    border-radius: 20px !important;
}
.checkout-step-3-right-checkout-wrapper {
    margin-bottom: 30px;
}
.checkout-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.checkout-cart-item-img {
    width: 90px;
}
.checkout-cart-item-wrapper {
    display: flex;
    gap: 25px;
}
.checkout-step-3-total-wrapper {
    margin: 30px 0;
    text-align: center;
}
.checkout-step-3-total-wrapper p {
    color: #012D53;
    font-size: 18px;
    font-weight: 700;
}







/* Order Received */
.order-received-wrapper {
    background: #F4FCFF;
    padding: 50px;
    border-radius: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}
.order-received-wrapper h2 {
    text-align: center;
    color: #012D53;
    font-size: 44px;
    font-weight: 800;
}
.order-received-wrapper > p {
    color: #012D53;
    font-size: 28px;
    margin: 20px auto;
    max-width: 60%;
    text-align: center;
}
.order-received-contact-info {
    max-width: 60%;
    color: #012D53;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.order-received-contact-info p {
    color: #00B4D5;
    display: flex;
    margin: 5px 0;
    font-size: 18px;
    width: 75%;
}
.order-received-contact-info p strong {
    width: 250px;
    display: flex;
    font-weight: 400;
    color: #012D53;
}
.digital-passes-wrapper {
    margin: 50px auto;
    max-width: 60%;
}
.digital-passes-text p {
    color: #012D53;
    text-align: center;
}
.digital-passes-btn a {
    color: #FFF !important;
    background: #00B4D5;
    padding: 12px 36px !important;
    border-radius: 30px !important;
    text-align: center;
}
.digital-passes-btn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.woocommerce-cart-top-left {
    position: absolute;
    left: 0;
    top: 40%;
    display: flex;
    gap: 20px;
    align-items: center;
}
.woocommerce-cart-top-left a {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: #FFF !important;
    text-transform: uppercase;
}
.booking-products p.no-cart-items {
    font-size: 18px;
    font-weight: 700;
    color: #012D53;
}
.cart-booking-product-content {
    display: flex;
    align-items: center;
}
.cart-btn-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.woocommerce .checkout-step-2-right .step-nav a {
    color: #FFF;
    background: #00b4d5;
    padding: 15px 50px;
    border-radius: 30px;
    text-decoration: none !important;
}
.checkout-step-2-right .step-nav {
    gap: 20px;
}
.checkout-step-2-right .woocommerce-billing-fields {
    margin-bottom: 30px;
}
.woocommerce-order-pay ul.order_details {
    display: none;
}
.woocommerce-order-pay main#primary {
    height: 1000px;
}
.woocommerce-order-pay .woocommerce > p {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 700;
}



/* To check till here */



/* Single Foundation */
.single-foundation-text-content-wrapper {
    padding-top: 60px;
}
.single-foundation-wrapper {
    padding: 170px 0 75px;
}
.single-foundation-content-title {
    margin-bottom: 15px;
}
.single-foundation-content {
    text-align: center;
}
.single-foundation-content-subtitle {
    margin: 15px 0 60px;
}
.single-foundation-content-second-title-title {
    margin: 35px 0;
}
.single-foundation-content-title h1 {
    line-height: 58px;
    font-weight: 800;
    font-size: 48px;
}
.single-foundation-content-subtitle p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.single-foundation-content-second-title-title p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.single-foundation-content-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.single-foundation-content-image {
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}
.coral-get-involved-donate-inner-row .donate-coral-col {
    padding-left: 20px;
}
.donate-coral-col > .vc_column-inner > .wpb_wrapper {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.donate-coral-col > .vc_column-inner > .wpb_wrapper .gws-content-wrapper.container-donation-icon-texts {
    background: #012D5380;
    padding: 55px 30px 75px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.vc_row.coral-get-involved-donate-inner-row {
    align-items: stretch;
    display: flex;
}
.donate-coral-col > .vc_column-inner {
    height: 100%;
}
.donate-coral-col > .vc_column-inner > .wpb_wrapper .gws-image-item {
    height: 100%;
}
.donate-coral-col > .vc_column-inner > .wpb_wrapper .gws-image-item .image-wrapper {
    height: 100%;
}
.donate-coral-col > .vc_column-inner > .wpb_wrapper .gws-image-item .image {
    height: 100%;
}
.innovative-coral-inner-row .gws-tabs-wrapper.position-row .gws-tab-top {
    width: 45%;
}
.innovative-coral-inner-row .gws-tabs-wrapper.position-row .gws-tab-bottom {
    width: 55%;
}
.innovative-coral-inner-row .gws-tabs-wrapper .tab-title p {
    text-align: center;
    line-height: 26px;
    font-size: 22px;
}
.innovative-coral-inner-row .gws-tabs-wrapper.position-row.border-radius-all .gws-tab-top .tab-title p {
    padding: 20px;
}
.innovative-coral-inner-row .gws-tabs-wrapper.add-line .gws-title-tab .tab-title p:after {
    margin: 0 auto;
    opacity: 1;
    width: 90%;
    right: 0;
}
.innovative-coral-inner-row .gws-tabs-wrapper.add-line .gws-title-tab.active .tab-title p:after {
    opacity: 0;
}
.innovative-coral-inner-row .gws-title-tab:not(:last-child) .tab-title {
    margin-bottom: 0;
}
.innovative-coral-inner-row .image-content-details-wrapper {
    padding: 40px 35px 0;
}
.innovative-coral-inner-row .add-line .icon-content {
    padding: 0;
    border: 0;
}
.innovative-coral-inner-row .container-col.why-visit-odysseo-btns {
    gap: 10px;
}
.innovative-coral-inner-row .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content-text {
    max-width: 100%;
}
.coral-get-partners-inner-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    position: relative;
    padding: 0 180px;
}
.coral-get-partners-inner-row {
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
}
.container-partners-logo .image-wrapper .image {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    display: flex;
}
.container-partners-logo .image-wrapper .image img {
    margin: 0 auto;
    height: auto;
    width: 100%;
}
.get-involved-coral-col > .vc_column-inner > .wpb_wrapper {
    background: linear-gradient(180deg, #00b4d54d 0%, #ffffff4d 100%);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}
.gws-content-wrapper.container-get-involved-icon-texts {
    padding: 45px 0 50px;
}
.gws-image-item.donate-icon-graphics {
    height: fit-content;
}
.importance-blue-carbon-inner-row > .vc_column_container > .vc_column-inner > .wpb_wrapper > .text-content-wrapper {
    max-width: 75%;
    margin: 0 auto;
}
.unique-marine-inner-row > .vc_column_container > .vc_column-inner > .wpb_wrapper > .text-content-wrapper {
    max-width: 55%;
    margin: 0 auto;
}
.importance-blue-carbon-inner-row > .vc_column_container > .vc_column-inner > .wpb_wrapper > .text-content-wrapper:nth-child(3) {
    max-width: 55%;
}
.gws-col-importance-blue-carbon-cols .text-content-inner.border-radius-all,
.gws-col-unique-marine-cols .text-content-inner.border-radius-all {
    border-radius: 10px;
    padding: 40px 30px;
}
.gws-col-unique-marine-cols .text-content-wrapper p.text-block-title {
    color: #00B4D5 !important;
    margin-bottom: 20px;
}
.why-visit-odysseo-btns .icon-content-title {
    margin-bottom: 5px;
}
.why-visit-odysseo-btns .icon-content-title p {
    color: #012D53 !important;
}
.learn-more-brandon-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    border: 1px solid #00B4D5;
    border-radius: 12px;
    position: relative;
}
.gws-image-item.learn-more-brandon-graphics-left {
    transform: rotate(-75deg) scaleX(-1);
    position: absolute;
    left: 20px;
    top: 25px;
}
.gws-image-item.learn-more-brandon-graphics-right {
    transform: rotate(75deg) scaleX(-1);
    position: absolute;
    bottom: 10px;
    right: 25px;
}
.gws-image-item.learn-more-brandon-graphics-left svg,
.gws-image-item.learn-more-brandon-graphics-right svg {
    overflow: visible;
    height: 275px;
    width: 275px;
}
.gws-image-item.learn-more-brandon-graphics-left svg path,
.gws-image-item.learn-more-brandon-graphics-right svg path {
    fill: #00B4D5;
}


/* Odysseo Foundation */
.homepage-odysseo-foundation-logo .image {
    width: 250px;
}
.foundation-main-projects-inner-row .foundation-item-excerpt p {
    -webkit-line-clamp: 6;
}
.foundation-main-projects-inner-row .foundation-item-excerpt {
    margin-top: 10px;
}
.foundation-impact-inner-row .container-col.why-visit-odysseo-btns .icon-wrapper .icon-content-text {
    max-width: 100%;
}
.foundation-impact-inner-row .container-col.why-visit-odysseo-btns {
    gap: 10px;
}
.foundation-impact-inner-row .wpb_column.vc_column_container:last-child {
    padding-left: 30px;
}
.vc_row.protect-ocean-row {
    align-items: center;
    display: flex;
}
.vc_row.protect-ocean-row .wpb_column.vc_column_container:first-child {
    padding-right: 115px;
}
.vc_row.protect-ocean-row .gws-button a {
    padding: 12px 100px;
}
.vc_row.protect-ocean-row .wpb_wrapper .gws-button.border-only a {
    border-color: transparent;
}
.vc_row.protect-ocean-row .wpb_wrapper .gws-button.border-only a:hover {
    background: transparent !important;
    border-color: #00B4D5 !important;
    color: #00B4D5 !important;
}
.vc_row.protect-ocean-row .wpb_wrapper .gws-button.border-only a:hover i {
    color: #00B4D5 !important;
}
.container-col.partners-logo {
    align-items: center;
}
.meet-our-team-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    position: relative;
}
.gws-image-item.meet-our-team-graphics {
    transform: rotate(-175deg) scaleX(-1);
    position: absolute;
    left: -185px;
    top: 200px;
}
.gws-image-item.meet-our-team-graphics svg {
    overflow: visible;
    height: 600px;
    width: 600px;
}
.gws-image-item.meet-our-team-graphics svg path {
    fill: #00B4D5;
}
.team-wrapper {
    align-items: center;
    display: flex;
}
.team-right-wrapper {
    background: #ffffff80;
    align-items: stretch;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    width: 65%;
}
.team-left-wrapper {
    padding: 0 65px 0 75px;
    width: 35%;
}
.team-position-wrapper {
    margin-top: 5px;
}
.team-position-wrapper p {
    line-height: 25px;
    font-weight: 700;
    font-size: 21px;
}
.team-title-wrapper h3 {
    line-height: 28px;
    font-weight: 700;
    font-size: 24px;
}
.team-image-wrapper {
    width: 285px;
}
.team-content {
    width: calc(100% - 285px);
    align-items: center;
    padding: 35px;
    display: flex;
}
.team-image {
    height: 100%;
    width: 100%;
}
.team-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.team-text p {
    line-height: 20px;
    font-size: 16px;
}


/* Error 404 */
.error-404-banner img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.error-404-wrapper {
    position: relative;
    height: 100vh;
}
.error-404-details-wrapper {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    text-align: center;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.error-404-banner-wrapper {
    height: 100%;
}
.error-404-banner {
    height: 100%;
}
.error-404-btns-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 20px;
}
.error-404-main-title {
    margin-bottom: 85px;
}
.error-404-main-title h1 {
    text-transform: uppercase;
    line-height: 150px;
    font-size: 150px;
    font-weight: 700;
}
.error-404-content-title p {
    text-transform: uppercase;
    line-height: 38px;
    font-weight: 700;
    font-size: 28px;
}
.error-404-btns-wrapper .gws-button a {
    border: 1px solid #00B4D5;
    text-transform: uppercase;
    background: #00B4D5;
    padding: 12px 35px;
    color: #FFFFFF;
}
.error-404-btns-wrapper .gws-button a:visited {
    color: #FFFFFF;
}
.error-404-btns-wrapper .gws-button a:hover {
    backdrop-filter: blur(2px);
    background: #ffffff66;
    border-color: #FFFFFF;
}
.error-404-btns-wrapper .error-right-btn .gws-button a {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: #00B4D5;
}
.error-404-btns-wrapper .error-right-btn .gws-button a:visited {
    color: #00B4D5;
}
.error-404-btns-wrapper .error-right-btn .gws-button a:hover {
    background: #ffffff66;
    color: #FFFFFF;
}


/* Thank you */
.thank-you-banner-inner-row .wpb_wrapper {
    position: relative;
}
.gws-content-wrapper.container-thank-you-text {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    height: 100vh;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}


/* Search */
.search-wrapper {
    padding: 240px 0 100px;
}
.main-search-inner-wrapper {
    background: #a5d6c84d;
    border-radius: 10px;
    padding: 30px;
}
.main-search-title-wrapper {
    margin-bottom: 20px;
}
.search-wrapper .odysseo-widthcontainer {
    max-width: 50%;
}
.main-search-wrapper {
    margin-bottom: 20px;
}
.main-search-title h3 {
    font-family: 'Red Hat Display', sans-serif;
    text-transform: uppercase;
    line-height: 25px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 21px;
}
.main-search-holder form {
    position: relative;
}
.main-search-holder form input {
    background: #FFFFFF;
    border-radius: 10px;
    color: #012d5380;
    line-height: 22px;
    font-size: 18px;
    padding: 20px;
    width: 100%;
    border: 0;
}
.main-search-holder form input::placeholder {
    color: #012d5333;
    line-height: 22px;
    font-size: 18px;
}
.main-search-holder form button {
    background: transparent;
    position: absolute;
    margin: auto 0;
    right: 20px;
    outline: 0;
    padding: 0;
    border: 0;
    bottom: 0;
    top: 0;
}
.main-search-holder form button i {
    line-height: 24px;
    color: #64C3D2;
    font-weight: 400;
    font-size: 24px;
}
.main-search-holder form input:focus {
    color: #012d5380;
}
.search-posts-wrapper article {
    background: #a5d6c814;
    border-radius: 10px;
    padding: 30px;
}
.search-posts-wrapper .search-item-title p {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 22px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 18px;
}
.search-posts-wrapper article:not(:last-child) {
    margin-bottom: 20px !important;
}
.search-posts-wrapper article .entry-summary {
    margin: 20px 0 !important;
    line-height: 20px;
    color: #737D82;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-btn p {
    text-transform: uppercase;
    align-items: center;
    line-height: 20px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    gap: 20px;
    transition: 0.6s all ease-in-out;
}
.search-item-image {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}
.search-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.search-item {
    align-items: center;
    display: flex;
    gap: 40px;
}
.search-left {
    height: 100%;
    width: 50%;
}
.search-right {
    width: 100%;
}
.search-item-image-wrapper {
    height: 250px;
}
.search-item.search-has-image .search-right {
    width: 50%;
}
nav.navigation.pagination {
    justify-content: center;
    margin-top: 90px;
    width: 100%;
}
a.page-numbers, 
.page-numbers {
    color: #00b4d566;
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin: 0 6px;
    transition: 0.6s all ease-in-out;
}
a.page-numbers:visited {
    color: #00b4d566;
}
a.page-numbers:hover,
.page-numbers:hover {
    color: #00b4d5;
}
.page-numbers.current {
    color: #00b4d5;
}
span.page-numbers.dots {
    margin: 0 12px;
}
a.page-numbers i {
    background: #00BBD61A;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 14px;
    color: #00b4d5;
    font-size: 14px;
    display: flex;
    height: 40px;
    width: 40px;
}
.nav-links {
    align-items: center;
    display: flex;
}


/* Gravity Form Calendar */
.ui-datepicker {
    border: 1px solid  #00B4D5 !important;
    box-shadow: 0 4px 10px #0000001a;
    background: #FFFFFF !important;
    border-radius: 10px !important;
    padding: 10px !important;
}
.ui-datepicker-calendar {
    margin-top: 5px !important;
}
.ui-datepicker-header {
    border-radius: 6px 6px 0 0 !important;
    background:  #00B4D5 !important;
    color: #FFFFFF !important;
    border: none !important;
}
.ui-datepicker-calendar td a {
    background: #FFFFFF !important;
    color:  #00B4D5 !important;
    border-radius: 4px;
}
.ui-datepicker-calendar td a.ui-state-active,
.ui-datepicker-calendar td a:hover {
    background:  #00B4D5;
    color: #FFFFFF;
}
.ui-datepicker .ui-datepicker-prev, 
.ui-datepicker .ui-datepicker-next {
    top: 4px !important;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
    background: transparent;
    outline: 0;
    border: 0;
}
.ui-datepicker .ui-datepicker-next span:after,
body .gform-theme--foundation.ui-datepicker .ui-datepicker-next:before {
    font-family: 'font awesome 5 pro' !important;
    position: absolute;
    content: '\f054';
    color: #FFFFFF;
    font-weight: 900;
    font-size: 12px;
    display: block;
    text-indent: 0;
    margin: auto 0;
    height: 16px;
    width: 12px;
    z-index: 26;
    bottom: 0;
    right: 0;
    top: 0;
}
.ui-datepicker .ui-datepicker-prev span:after,
body .gform-theme--foundation.ui-datepicker .ui-datepicker-prev:before {
    font-family: 'font awesome 5 pro' !important;
    position: absolute;
    content: '\f053';
    color: #FFFFFF;
    font-weight: 900;
    font-size: 12px;
    display: block;
    text-indent: 0;
    margin: auto 0;
    height: 16px;
    width: 12px;
    z-index: 26;
    bottom: 0;
    right: 0;
    top: 0;
}
.gform-theme-datepicker.ui-datepicker .ui-datepicker-prev, 
.gform-theme-datepicker.ui-datepicker .ui-datepicker-next {
    position: relative !important;
    top: 1px !important;
}
.ui-datepicker-title select {
    background: #00B4D5 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    font-size: 16px !important;
    flex: initial !important;
    width: 90px !important;
    padding: 0 !important;
    outline: 0 !important;
    border: 0 !important;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
.ui-datepicker-title select.ui-datepicker-year {
    width: 40px !important;
}
.ui-datepicker-title select.ui-datepicker-month {
    text-align: right !important;
}
.ui-datepicker-calendar td .ui-state-default {
    background: transparent !important;
    font-weight: 700 !important;
    height: 30px !important;
    justify-content: center;
    width: 30px !important;
    padding: 0 !important;
    border: 0 !important;
    align-items: center;
    line-height: 18px;
    font-size: 14px;
    display: flex;
}
.ui-datepicker td {
    height: 30px !important;
    width: 30px !important;
    padding: 0 !important;
}
.ui-datepicker table th {
    height: 30px !important;
    width: 30px !important;
    padding: 0 !important;
}
.ui-datepicker table th span {
    height: 30px !important;
    justify-content: center;
    width: 30px !important;
    align-items: center;
    line-height: 18px;
    color: #012D53;
    font-size: 14px;
    display: flex;
}
.ui-state-hover, 
.ui-widget-content .ui-state-hover, 
.ui-widget-header .ui-state-hover, 
.ui-state-focus, 
.ui-widget-content .ui-state-focus, 
.ui-widget-header .ui-state-focus, 
.ui-button:hover, 
.ui-button:focus {
    background: transparent !important;
    color: initial !important;
    border: 0 !important;
}
.ui-datepicker-title {
    justify-content: center !important;
}
body .gform-theme--foundation.ui-datepicker .ui-datepicker-next:before {
    right: 3px;
    top: 3px;
}
body .gform-theme--foundation.ui-datepicker .ui-datepicker-prev:before {
    top: 3px;
}


/* Privacy Policy */
.vc_row.privacy-policy-content-row {
    margin: 0 auto !important;
    max-width: 80%;
}
.gfield--type-captcha label.gfield_label.gform-field-label {
    display: none;
}


/* Archive Blog */
.archive-blog-wrapper {
    padding: 180px 0 110px;
}
.archive-blog-subtitle p {
    line-height: 25px;
    color: #737D82;
    font-weight: 700;
    font-size: 21px;
}
.archive-blog-title h1 {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 58px;
    font-weight: 700;
    font-size: 48px;
}
.archive-blog-title {
    margin-bottom: 15px;
}
.archive-blog-title-subtitle {
    text-align: center;
}
.archive-blog-banner-wrapper {
    margin-bottom: 90px;
}
.archive-blog-posts-first-wrapper {
    margin-bottom: 110px;
}
.archive-blog-posts-items-wrapper {
    position: relative;
    margin: -30px -25px;
    flex-wrap: wrap;
    display: flex;
}
.content-blog-item {
    width: calc(100% / 3);
}
.archive-blog-posts-wrapper .blog-item-inner {
    flex-direction: column;
    padding: 30px 25px;
    display: flex;
}
.content-blog-item .blog-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
	transition: 0.6s all ease-in-out;
}
.content-blog-item a:hover .blog-item-image img {
    transform: scale(1.15) !important;
}
.content-blog-item .blog-item-image {
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
}
.content-blog-item .blog-item-image-wrapper {
    margin-bottom: 15px;
}
.content-blog-item .blog-item-excerpt {
    margin: 12px 0 40px;
}
.content-blog-item .blog-item-title h3 {
    line-height: 28px;
    font-weight: 700;
    font-size: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.content-blog-item .blog-item-excerpt p {
    line-height: 20px;
    min-height: 60px;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.content-blog-item .blog-item-link p {
    text-transform: uppercase;
    align-items: center;
    width: fit-content;
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    gap: 20px;
    transition: 0.6s all ease-in-out;
}
.content-blog-item a:hover .blog-item-link p {
    color: #00B4D5;
}
.content-blog-item .blog-item-link p i {
    transition: 0.6s all ease-in-out;
}
.content-blog-item a:hover .blog-item-link p i {
    color: #00B4D5;
}
.content-blog-item .blog-item-title-category {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    display: flex;
}
.content-blog-item .blog-item-author-and-icon {
    align-items: center;
    margin: 40px 0 35px;
    display: flex;
    gap: 10px;
}
.content-blog-item .blog-item-link {
    margin-top: 35px;
}
.content-blog-item .blog-item-category p {
    font-family: 'Red Hat Display', sans-serif;
    background: #A5D6C84D;
    border-radius: 30px;
    line-height: 18px;
    padding: 5px 20px;
    color: #A5D6C8;
    font-weight: 500;
    font-size: 14px;
    display: block;
}
.content-blog-item .blog-item-author p {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 22px;
    color: #012D53;
    font-weight: 700;
    font-size: 18px;
}
.content-blog-item .blog-item-icon {
    border-radius: 50%;
    overflow: hidden;
}
.archive-blog-posts-wrapper .archive-blog-posts-first-wrapper .blog-item-inner {
    align-items: center;
    flex-direction: row;
    padding: 0;
    gap: 70px;
}
.archive-blog-posts-wrapper .archive-blog-posts-first-wrapper .content-blog-item {
    width: 100%;
}
.archive-blog-posts-first-wrapper .content-blog-item .blog-item-image-wrapper {
    width: 50%;
    margin: 0;
}
.archive-blog-posts-first-wrapper .blog-item-details-wrapper {
    width: 50%;
}
.archive-blog-posts-first-wrapper .content-blog-item .blog-item-title h3 {
    line-height: 42px;
    font-size: 38px;
    -webkit-line-clamp: 2;
}
.archive-blog-posts-first-wrapper .content-blog-item .blog-item-title-category {
    align-items: flex-start;
    margin-bottom: 35px;
}
.archive-blog-posts-first-wrapper .content-blog-item .blog-item-excerpt {
    margin: 35px 0;
}
.archive-blog-posts-first-wrapper .content-blog-item .blog-item-excerpt p {
    -webkit-line-clamp: 5;
}
.archive-blog-posts-first-wrapper .content-blog-item .blog-item-image {
    height: 360px;
}


/* Single Blog */
.single-blog-image-wrapper {
    margin: 60px auto 50px;
    max-width: 90%;
}
.single-blog-wrapper {
    padding: 200px 0 145px;
}
.single-blog-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.single-blog-image {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}
.single-blog-title-wrapper {
    margin: 15px auto 60px;
    max-width: 85%;
}
.single-blog-title-wrapper h1 {
    font-family: 'Red Hat Display', sans-serif;
    text-align: center;
    line-height: 58px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 48px;
}
.single-blog-back-button-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
}
.single-blog-category-title-image-author-date-wrapper {
    position: relative;
}
.single-blog-category-wrapper p {
    font-family: 'Red Hat Display', sans-serif;
    background: #A5D6C84D;
    border-radius: 30px;
    line-height: 18px;
    padding: 5px 20px;
    color: #A5D6C8;
    font-weight: 500;
    font-size: 14px;
    display: block;
}
.single-blog-category-wrapper {
    margin: 0 auto 15px;
    width: fit-content;
}
.single-blog-back-button-wrapper i {
    line-height: 16px;
    color: #00B4D5;
    font-weight: 900;
    font-size: 16px;
}
.single-blog-author-date-wrapper {
    justify-content: space-between;
    margin: 50px auto 85px;
    align-items: center;
    max-width: 85%;
    display: flex;
}
.single-blog-author-icon-wrapper {
    align-items: center;
    display: flex;
    gap: 10px;
}
.single-blog-icon {
    border-radius: 50%;
    overflow: hidden;
}
.single-blog-author p {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 22px;
    color: #012D53;
    font-weight: 700;
    font-size: 18px;
}
.single-blog-date p {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 22px;
    color: #737D82;
    font-weight: 700;
    font-size: 18px;
}
.other-blogs-wrapper {
    padding-top: 85px;
}
.other-blogs-posts-wrapper {
    margin: -30px -25px;
    display: flex;
}
.other-blogs-posts-wrapper .blog-item-inner {
    padding: 30px 25px;
}
.other-blogs-posts-wrapper .blog-item-link {
    display: none;
}
.other-blogs-posts-wrapper .blog-item-author-and-icon {
    margin-bottom: 0;
}
.other-blogs-title-wrapper {
    margin-bottom: 60px;
}
.other-blogs-title-wrapper p {
    font-family: 'Red Hat Display', sans-serif;
    text-align: center;
    line-height: 58px;
    color: #00B4D5;
    font-weight: 700;
    font-size: 48px;
}


/* Archive Upcoming Event */
.archive-upcoming-event-wrapper {
    padding: 180px 0 85px;
}
.archive-upcoming-event-banner-title h1 {
    font-family: 'Red Hat Display', sans-serif;
    text-align: center;
    line-height: 58px;
    color: #012D53;
    font-weight: 700;
    font-size: 48px;
}
.archive-upcoming-event-banner-title {
    margin-bottom: 90px;
}
.archive-upcoming-event-posts-items-wrapper {
    margin: -30px -15px;
    flex-wrap: wrap;
    display: flex;
}
.upcoming-event-item {
    width: calc(100% / 3);
}
.archive-upcoming-event-posts-wrapper .upcoming-event-item-inner {
    flex-direction: column;
    padding: 30px 15px;
    display: flex;
}
.upcoming-event-item .upcoming-event-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
	transition: 0.6s all ease-in-out;
}
.upcoming-event-item a:hover .upcoming-event-item-image img {
    transform: scale(1.05) !important;
}
.upcoming-event-item .upcoming-event-item-image {
    overflow: hidden;
    height: 260px;
}
.upcoming-event-item .upcoming-event-item-image-wrapper {
    margin-bottom: 20px;
}
.upcoming-event-item .upcoming-event-item-excerpt {
    margin: 15px 0 30px;
}
.upcoming-event-item .upcoming-event-item-title h3 {
    line-height: 22px;
    font-weight: 700;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.upcoming-event-item .upcoming-event-item-excerpt p {
    line-height: 20px;
    min-height: 60px;
    font-weight: 400;
    color: #012D53;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.upcoming-event-item .upcoming-event-item-link p {
    text-transform: uppercase;
    align-items: center;
    width: fit-content;
    line-height: 20px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    gap: 20px;
    transition: 0.6s all ease-in-out;
}
.upcoming-event-item a:hover .upcoming-event-item-link p {
    color: #00B4D5;
}
.upcoming-event-item .upcoming-event-item-link p i {
    transition: 0.6s all ease-in-out;
}
.upcoming-event-item a:hover .upcoming-event-item-link p i {
    color: #00B4D5;
}
.upcoming-event-item .upcoming-event-item-link {
    margin-top: 30px;
}


/* Single Upcoming Event */
.upcoming-event-banner-inner-row-wrapper .gws-heading {
    padding-left: 50px;
}
.upcoming-event-banner-inner-row-wrapper .vc_column_container:first-child {
    padding-right: 30px;
}
.upcoming-event-banner-inner-row-wrapper {
    align-items: center;
    display: flex;
}
.vc_row.upcoming-event-included-inner-row-wrapper {
    background: linear-gradient(180deg, #00b4d54d 0%, #ffffff4d 100%);
    padding: 60px 30px 30px 70px;
    backdrop-filter: blur(12px);
    border-radius: 12px;
}
.vc_row.upcoming-event-included-inner-row-wrapper .vc_column_container:first-child {
    padding-right: 25px;
}
.vc_row.upcoming-event-included-inner-row-wrapper .vc_column_container:last-child {
    padding-left: 25px;
}
.gws-image-item.upcoming-event-whats-included-graphics {
    margin-right: auto;
    margin-left: 40px;
    height: 300px;
    width: 300px;
}
.gws-image-item.upcoming-event-whats-included-graphics svg path {
    fill: #00B4D5;
}
.gws-image-item.upcoming-event-whats-included-graphics svg {
    overflow: visible;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.upcoming-event-optional-inner-row-wrapper .vc_column_container:first-child {
    padding-right: 35px;
}
.upcoming-event-optional-inner-row-wrapper .vc_column_container:last-child {
    padding-left: 35px;
}
.upcoming-event-optional-right .text-content-wrapper p em {
    font-family: 'Red Hat Display', sans-serif;
    text-transform: uppercase;
    font-style: normal;
    line-height: 16px;
    color: #737D82;
    font-weight: 700;
    font-size: 12px;
}
.gws-content-wrapper.container-upcoming-event-optional-box {
    background: linear-gradient(90deg, #00b4d580 0%, #a5d6c880 100%);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px;
}
.gws-content-wrapper.container-upcoming-event-optional-box .image {
    margin: 0 auto;
    height: 250px;
    width: 250px;
}


/* Investors */
.archive-investor-inner-wrapper .gws-outer-tab-item.active {
    display: block !important;
}
.archive-investor-inner-wrapper .gws-tabs-wrapper.position-row.border-radius-all .gws-tab-top .gws-title-tab.active .tab-title p {
    background: #00B4D526;
    color: #012D53;
}
.archive-investor-inner-wrapper .gws-tabs-wrapper.add-line .gws-title-tab .tab-title p:after {
    background: #00b4d526;
    border-radius: 10px;
    margin: 0 auto;
    opacity: 1;
    width: 95%;
    right: 0;
}
.archive-investor-inner-wrapper .gws-tabs-wrapper.position-row.border-radius-all .gws-tab-top .tab-title p {
    border-radius: 10px;
    text-align: center;
    line-height: 28px;
    color: #00B4D5;
    font-size: 24px;
    padding: 20px;
}
.archive-investor-inner-wrapper .gws-title-tab:not(:last-child) .tab-title {
    margin-bottom: 0;
}
.archive-investor-inner-wrapper .gws-outer-tab-item .gws-tabs-wrapper {
    align-items: center;
    display: flex;
    gap: 90px;
}
.archive-investor-inner-wrapper .gws-outer-tab-item .gws-tabs-wrapper .gws-tab-top {
    width: 50%;
    padding: 0;
}
.archive-investor-inner-wrapper .gws-outer-tab-item .gws-tabs-wrapper .gws-tab-bottom {
    width: 50%;
}
.archive-investor-wrapper {
    padding: 170px 0 115px;
}
.archive-investor-inner-wrapper .gws-outer-tab-top {
    border: 1px solid #A5D6C8;
    justify-content: center;
    margin: 0 auto 60px;
    align-items: center;
    width: fit-content;
    display: flex;
}
.archive-investor-inner-wrapper .tab-outer-title p {
    font-family: 'Red Hat Display', sans-serif;
    position: relative;
    padding: 10px 30px;
    line-height: 22px;
    color: #A5D6C8;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.6s all ease-in-out;
}
.archive-investor-inner-wrapper .gws-title-outer-tab:not(:last-child) .tab-outer-title p:after {
    background: #A5D6C8;
    position: absolute;
    height: 100%;
    content: '';
    width: 1px;
    bottom: 0;
    right: 0;
    top: 0;
}
.archive-investor-inner-wrapper .gws-title-outer-tab.active .tab-outer-title p {
    background: #A5D6C84D;
    color: #00B4D5;
}
.archive-investor-inner-wrapper .gws-tab-item {
    box-shadow: 0 0 4px 0 #012d531a;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
}
.archive-investor-inner-wrapper .gws-tab-item a {
    display: block;
    height: 100%;
    width: 100%;
}
.archive-investor-inner-wrapper .gws-tab-item a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


/* French */
html[lang="fr-FR"] body .banner-date-book-btn-wrapper {
    max-width: 56%;
}
html[lang="fr-FR"] body .what-awaits-cta-row .gws-cta-banner-inner-wrapper .gws-cta-banner-left {
    max-width: 60%;
}
html[lang="fr-FR"] body .single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container.ginput_container_date input {
    padding: 12px 10px;
}
html[lang="fr-FR"] body .single-experience-buy-your-tickets-wrapper .gform_wrapper.gform-theme.gform-theme--foundation.gform-theme--framework .ginput_container.ginput_container_date input::placeholder {
    line-height: 18px;
    font-size: 14px;
}
html[lang="fr-FR"] body .single-experience-image-box-banner img {
    min-height: 325px;
}
html[lang="fr-FR"] body .menu-search-container {
    right: 280px;
}


/* Hidden */
.home-banner-blogs-wrapper {
    display: none;
}
.archive-investor-inner-wrapper .gws-outer-tab-top {
    display: none;
}
.single-blog-author-icon-wrapper {
    display: none;
}
.content-blog-item .blog-item-author-and-icon {
    display: none;
}