:root {
    --t-xxs: 10px;
    --t-xs: 12px;
    --t-sm: 14px;
    --t-md: 15px;
    --t-base: 16px;
    --t-lg: 18px;
    --t-xl: 20px;
    --t-xxl: 24px;
    --h-xxs: 18px;
    --h-xs: 26px;
    --h-sm: 36px;
    --h-md: 40px;
    --h-base: 50px;
    --i-xxs: 12px;
    --i-xs: 14px;
    --i-sm: 17px;
    --i-md: 20px;
    --i-base: 24px;
    --i-lg: 30px;
    --i-xl: 38px;
    --i-xxl: 48px;
    --i-xxxl: 60px;
}

:root {
    --primary: #0069d9;
    --primary_dark: #0054ae;
    --primary_light: #99c3f0;
    --accent: #681aea;
    --accent_dark: #5315bb;
    --accent_light: #c3a3f7;
    --white: #fff;
    --black: rgb(34, 34, 34);
    --black_90: rgba(34, 34, 34, .90);
    --black_80: rgba(34, 34, 34, .80);
    --black_70: rgba(34, 34, 34, .70);
    --black_60: rgba(34, 34, 34, .60);
    --black_50: rgba(34, 34, 34, .50);
    --black_40: rgba(34, 34, 34, .40);
    --black_30: rgba(34, 34, 34, .30);
    --black_20: rgba(34, 34, 34, .20);
    --black_15: rgba(34, 34, 34, .15);
    --black_10: rgba(34, 34, 34, .10);
    --black_07: rgba(34, 34, 34, .07);
    --black_90_S: rgb(56,56,56);
    --black_80_S: rgb(78,78,78);
    --black_70_S: rgb(100,100,100);
    --black_60_S: rgb(122,122,122);
    --black_50_S: rgb(145,145,145);
    --black_40_S: rgb(167,167,167);
    --black_30_S: rgb(189,189,189);
    --black_20_S: rgb(211,211,211);
    --black_15_S: rgb(222,222,222);
    --black_10_S: rgb(233,233,233);
    --black_07_S: rgb(240,240,240);
    --error: #cc1e1e;
    --error_dark: #a31818;
    --error_light: #eba5a5;
    --warn: #dc700b;
    --success: #1c8250;
    --success_dark: #166840;
    --success_light: #a4cdb9;
    --font: Bozon, sans-serif;
    --program_color: #6654ed;
}

.Header {
    align-items: center;
    background: #fff;
    display: flex;
    flex-flow: column;
    width: 100%;
}

.SkipToContent.SkipToContent {
    background-color: #fff;
    left: 0.25em;
    padding: 0.25em;
    position: fixed!important;
    top: 0.25em;
}

.is-visuallyHidden {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.Header-navMenu {
    background: #04242b;
    color: #fff;
    display: flex;
    font-size: var(--t-sm);
    font-weight: 600;
    height: 40px;
    justify-content: center;
    padding: 0 30px;
    width: 100%;
}

.Header-navMenu_content, .Header-navMenu_left {
    align-items: center;
    display: flex;
    height: 100%;
}

.Header-navMenu_content {
    justify-content: space-between;
    max-width: 1500px;
    width: 100%;
}

.Header-navMenu_content, .Header-navMenu_left {
    align-items: center;
    display: flex;
    height: 100%;
}

.LanguageSelector {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 100%;
    margin-left: 40px;
    width: 110px;
}

.Header-navMenu_right {
    align-items: center;
    display: flex;
}

.Header-navMenu_right a {
    color: #fff;
    margin-right: 30px;
    text-decoration: none;
}

.Header-navMenu_right a:last-child {
    margin-right: 0;
}

.Header-navMenu_right a {
    color: #fff;
    margin-right: 30px;
    text-decoration: none;
}
.Header-navMenu_right a:hover{
    color: #fa901b;
}


.Header-main {
    grid-column-gap: 20px;
    align-content: center;
    align-items: center;
    display: flex;
    grid-template-columns: 175px 1fr auto;
    min-height: 104px;
    padding: 0 40px;
    position: relative;
    width: 100%;
    justify-content: space-between;
}

/* .Header-main_logoContainer {
    align-items: center;
    display: flex;
    height: inherit;
    max-width: 175px;
    min-width: 145px;
} */
.Header-main_logo{
    width: 200px;
}
/* .Header-main_logoContainer img {
    max-height: 55px;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
} */

.Header-main_inputContainer {
    display: flex;
    justify-content: center;
}

.SearchForm {
    border-radius: 5px;
    box-shadow: 0 1px 5px rgb(34 34 34 / 12%), 0 6px 10px rgb(34 34 34 / 25%);
    display: grid;
    grid-template-columns: 1fr 1fr 46px;
    height: 46px;
    justify-content: center;
    max-width: 700px;
    min-width: 450px;
    width: 90%;
}

.SearchForm__location, .SearchForm__search {
    position: relative;
}

.SearchForm__input-icon {
    color: #22222266;
    left: 20px;
    position: absolute;
    top: 10px;
}

.SearchForm input {
    border: none;
    border-radius: 5px;
    font-size: 18px;
    height: 100%;
    outline: none;
    padding-left: 50px;
    width: 100%;
}

.SearchForm__divider {
    background-color: var(--black_20);
    height: 90%;
    position: absolute;
    top: 5%;
    width: 1px;
    z-index: 2;
}

.SearchForm__submit-btn {
    background: var(--primary);
    border: none;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
    outline: none;
    width: 46px;
}

.SearchForm__submit-icon {
    color: var(--white);
    margin-top: 5px;
}

.Header-main_userCtrlContainer {
    min-width: 100px;
    width: 20%;
}

.Header-userCtrl_noUser {
    grid-column-gap: 8px;
    display: grid;padding: 10px;
    grid-template-columns: repeat(2,auto);
}

.button__elem {
    display: inline-block;
}

.Header-userCtrl_noUser * {
    white-space: nowrap;
}

.button__elem button.medium.round {
    border-radius: 2px !important;
    box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
}

.button__elem button.medium {
    font-size: var(--t-xs);
    line-height: 16px;
    min-height: 30px;
    padding: 6px 16px;
}

.button__elem button.primary-outlined {
    background: rgba(0,0,0,0);
    border: 1px solid var(--btn_color_main);
    color: var(--btn_color_main);
}

.button__elem button.primary-color {
    --btn_color_main: var(--primary);
    --btn_color_dark: var(--primary_dark);
    --btn_color_light: var(--primary_light);
}

.button__elem button {
    border-radius: 2px;
    transition: all .3s ease;
    text-align: center;
    font-family: var(--font);
    width: 100%;
    font-weight: 600;
    letter-spacing: 1.5px;
    outline: none;
    border: none;
    display: grid;
    align-items: center;
    justify-content: center;
}

/* 
.MegaCatMenu {
    display: flex;
    padding: 0 30px;
} */
/* 
.MegaCatMenu-container {
    display: flex;
    justify-content: center;
    position: relative;
} */

.MegaCatMenu-headingItem {
    --border-bottom-width: 2px;
    /* align-items: center; */
    /* background: transparent; */
    /* background-image: linear-gradient(var(--black_70_S),var(--black_70_S)); */
    /* background-position: 55% 100%; */
    /* background-repeat: no-repeat; */
    background-size: 0 var(--border-bottom-width);
    border: none;
    cursor: pointer;
    /* display: inline-block; */
    /* display: flex; */
        color: #000;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.8px;
    /* margin-right: 30px; */
    /* outline: none; */
    padding: 10px 10px 20px;
    /* transition: background-size .3s; */
}

.wrapper{
    width: 100%;
    /* background: #efefef; */
    background-image: linear-gradient(to top, #f2f2f2 0%, #e9e9e9 100%);
    padding: 0.5em;
}
.gta-foot{
    margin-top: 10%;
}
.SmallTeaserCard-background {
    align-items: center;
    background-position: 0 bottom;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 2px 1px var(--black_07),0 2px 6px var(--black_20);
    cursor: pointer;
    display: flex;
    border-radius: 5px;
    height: 84%;
    justify-content: space-around;
    margin: auto;
    width: 100%;
}



.Home-themeParks {
    min-height: 195px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.ThemeParksNearYou-container {
    border-radius: 15px;
}
.ThemeParksNearYou-container {
    background: #fff;
    /* box-shadow: 0 2px 1px#22222212,0 2px 6px #22222233; */
}

.ThemeParksNearYou-title {
    text-align: left;
}

.ThemeParksNearYou-title {
    font-size: 32px;
    margin-top: 0;
    padding: 15px 10px 0;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.ThemeParksNearYou-contentContainer {
    width: auto;
}

.ThemeParksNearYou-contentContainer {
    margin: 0 auto;
    padding: 0 10px 8px;
}



.TileImage-stacked.TileImage.clickable {
    cursor: pointer;
}

.TileImage-stacked.TileImage {
    grid-row-gap: 12px;
    display: grid;
    grid-template-rows: 72px auto;
    position: relative;
    text-decoration: none;
}

.TileImage-stacked .TileImage-image {
    background-position: 57%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    padding: 4rem;
}

.TileImage-stacked .TileImage-text-head {
    font-size: var(--t-sm);
    padding-bottom: 8px;
}

.TileImage-stacked .TileImage-text-head {
    color: var(--black);
    font-size: var(--t-base);
    font-weight: 600;
    margin: 0;
}

.TileImage-stacked .TileImage-text-body {
    font-size: var(--t-xs);
    padding-bottom: 8px;
}

.TileImage-stacked .TileImage-text-body {
    color: var(--black);
    font-size: var(--t-sm);
    font-weight: 400;
    margin: 0;
}



.Home-popBrands {
    background: var(--white);
    box-shadow: 0 2px 1px var(--black_07),0 2px 6px var(--black_20);
    min-height: 162px;
    margin-bottom: 22px;
    border-radius: 5px;
}

.CampaignHeader {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 8px 15px;
    width: 100%;
}

.CampaignHeader h2 {
    font-size: var(--t-base);
    margin: 0;
}



.Home-mobileBanner {
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 1px var(--black_07),0 2px 6px var(--black_20);
    height: 298px;
}

.MobileTeaser-content-left-image {
    grid-area: image;
    height: 128px;
    margin: 45px auto 0;
    width: 128px;
    position: relative;
    left: 60px;
}

.MobileTeaser-content-mobileCta {
    align-items: end;
    grid-area: cta;
    margin: 24px 0 0;
    width: 530px;
}

.MobileTeaser-content-headline {
    font-size: var(--t-lg);
    font-weight: 400;
    grid-area: topRow;
    margin-top: 19px;
}

.MobileTeaser-content-bold {
    font-size: var(--t-lg);
    font-weight: 600;
    white-space: pre-wrap;
}

.MobileTeaser-content-description {
    font-size: var(--t-lg);
    grid-area: description;
    padding-top: 8px;
    width: 530px;
}

.MobileTeaser-appBadges {
    float: left;
    grid-area: buttons;
    margin-top: 15px;
    margin-bottom: 35px;
}

.MobileTeaser-appBadges a {
    padding: 5px;
}

.MobileTeaser-appBadges img {
    height: 50px;
}

.MobileTeaser-right-image {
    grid-area: rightImage;
    padding-top: 17px;
    padding-right: 20px;
    position: relative;
    right: 60px;
}




.Footer {
background: var(--white);
color: var(--black);
display: block;
position: relative;
width: 100%;
}
.Footer-userNav {
align-items: center;
display: flex;
flex-flow: column;
}

.Footer-uppernav {
background-color: var(--program_color);
padding: 24px;
text-align: center;
width: 100%;
}
.Footer-modalContainer.noMobile, .Footer-modalContainer.noUser {
grid-template-columns: auto auto;
justify-items: center;
}
.Footer-modalContainer {
grid-gap: 100px;
grid-gap: 15px;
color: var(--white);
display: grid;
grid-template-columns: 1fr 1fr auto;
text-align: left;
}
.Footer-modalInfo {
align-items: center;
display: grid;
grid-template-rows: 1fr 1fr 2fr;
height: 120px;
min-width: 200px;
padding-left: 36px;
}
.Footer-modalInfoHeader {
align-items: center;
display: flex;
position: relative;
}
.icon__elem.icon__lg {
font-size: var(--i-lg);
}
.Footer-modalInfoIcon {
display: flex;
justify-content: center;
}
.Footer-modalInfoTitle {
font-size: var(--t-lg);
font-weight: 300;
margin: 5px 0;
}
.Footer-modalInfoSubtext {
font-size: var(--t-xs);
font-weight: 300;
padding-bottom: 5px;
}
.button__elem {
display: inline-block;
}
.button__elem button.large.round {
border-radius: 36px;
}
.Footer-btnContainer .button__elem.Footer-btn button {
border-color: var(--white);
color: var(--white);
}
.button__elem button.large {
font-size: var(--t-md);
line-height: 20px;
min-height: 40px;
padding: 7px 24px;
}
.button__elem button.secondary-outlined {
background: rgba(0,0,0,0);
border: 1px solid #fff;
color: #fff;
}
.button__elem button.primary-color {
--btn_color_main: var(--primary);
--btn_color_dark: var(--primary_dark);
--btn_color_light: var(--primary_light);
}
.button__elem button {
border-radius: 2px;
transition: all .3s ease;
text-align: center;
font-family: var(--font);
width: 100%;
font-weight: 600;
letter-spacing: 1.5px;
outline: none;
border: none;
display: grid;
align-items: center;
justify-content: center;
}
button, [type=button], [type=reset], [type=submit] {
-webkit-appearance: button;
}
button, select {
text-transform: none;
}
button, input {
overflow: visible;
}
button, input, optgroup, select, textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
}
.button__elem button span.button__label {/* line-height: inherit; */vertical-align: middle;/* vertical-align: -webkit-baseline-middle; */vertical-align: -moz-middle-with-baseline;/* transform: translate(0, 0); *//* margin-bottom: -2px; */}
.Footer-modalInfo {
align-items: center;
display: grid;
grid-template-rows: 1fr 1fr 2fr;
height: 120px;
min-width: 200px;
padding-left: 36px;
}
.Footer-modalInfoHeader {
align-items: center;
display: flex;
position: relative;
}
.icon__elem.icon__lg {
font-size: var(--i-lg);
}
.Footer-modalInfoIcon {
display: flex;
justify-content: center;
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
.Footer-modalInfoTitle {
font-size: var(--t-lg);
font-weight: 300;
margin: 5px 0;
}
.Footer-modalInfoSubtext {
font-size: var(--t-xs);
font-weight: 300;
padding-bottom: 5px;
}
.button__elem button.large.round {
border-radius: 36px;
}
.Footer-btnContainer .button__elem.Footer-btn button {
border-color: var(--white);
color: var(--white);
}

.button__elem button.large {
font-size: var(--t-md);
line-height: 20px;
min-height: 40px;
padding: 7px 24px;
}

.button__elem button.secondary-outlined {
background: rgba(0,0,0,0);
border: 1px solid #fff;
color: #fff;
}

.button__elem button.primary-color {
--btn_color_main: var(--primary);
--btn_color_dark: var(--primary_dark);
--btn_color_light: var(--primary_light);
}

.button__elem button {
border-radius: 2px;
transition: all .3s ease;
text-align: center;
font-family: var(--font);
width: 100%;
font-weight: 600;
letter-spacing: 1.5px;
outline: none;
border: none;
display: grid;
align-items: center;
justify-content: center;
}

button, [type=button], [type=reset], [type=submit] {
-webkit-appearance: button;
}

button, select {
text-transform: none;
}

button, input {
overflow: visible;
}

button, input, optgroup, select, textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
}
.button__elem button span.button__label {/* line-height: inherit; *//* vertical-align: middle; *//* vertical-align: -webkit-baseline-middle; */vertical-align: -moz-middle-with-baseline;/* transform: translate(0, 0); *//* margin-bottom: -2px; */}
.Footer-bottomNavLinks {
    background-color: #000;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 15px;
    width: 100%;
}
.Footer-bottomNavUl {
display: flex;
justify-content: space-around;
list-style: none;
margin: 0;
padding: 0;
width: 50%;
}
.Footer-bottomNavUl a, .Footer-bottomNavUl li {
color: var(--white) !important;
font-size: var(--t-xs);
text-decoration: none;
}

.active, .inactive {
cursor: pointer;
text-decoration: none;
}

a {
background-color: rgba(0,0,0,0);
}
.Footer-bottomNavUl a, .Footer-bottomNavUl li {
color: var(--white);
font-size: var(--t-xs);
text-decoration: none;
}
.Footer-bottomNavUl a, .Footer-bottomNavUl li {
color: var(--white);
font-size: var(--t-xs);
text-decoration: none;
}
.Footer-bottomNavUl a, .Footer-bottomNavUl li {
color: var(--white);
font-size: var(--t-xs);
text-decoration: none;
}

@media screen and (min-width: 1024px){
.Footer-uppernav {
padding: 24px 56px;
}
.Footer-modalContainer.noMobile, .Footer-modalContainer.noUser {
grid-gap: 100px;
display: inline-grid;
}
.Footer-modalContainer {
margin: 0 auto;
max-width: 1500px;
}
.Footer-modalInfoIcon {
left: -40px;
position: absolute;
}
.Footer-modalInfoIcon {
left: -40px;
position: absolute;
}
.Home-featuredDeals {
margin-bottom: 90px;
}
}

.CampaignCard-offer {
    background: var(--white);
    box-shadow: 0 2px 1px var(--black_07),0 2px 6px var(--black_20);
    cursor: pointer;
    min-height: 210px;
    overflow: hidden;
    border-radius: 5px;
}

.CampaignCard-offer_imgContainer {
    min-height: 123px;
}

.CampaignCard-offer_imgContainer img {
    color: transparent;
    width: 100%;
}

.CampaignCard-offer_content {
    padding: 3px 10px;
}

.CampaignCard-offer_content h4 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: var(--t-lg);
    margin: 0px 0px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.CampaignCard-offer_content p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: var(--t-sm);
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
}


.carousel-item {
height: 100%;
}
.carousel-item img {position: relative;width: 172px;object-fit: cover;}
.primaryBanner_info {
cursor: pointer;
display: grid;
font-family: var(--font);
grid-template-columns: 1fr 3fr 2fr;
grid-template-rows: 1fr 1fr 1fr;
height: 100%;
position: absolute;
width: 100%;
top: 0;
left: 0;
}
.primaryBanner_infoBar {align-items: center;align-self: end;background: #292929;display: flex;grid-column: 1/-1;grid-row: 3/-1;height: 70px;justify-content: space-between;width: 100%;}
.primaryBanner_logo_container {/* margin-bottom: 15px; */margin-left: 10px;/* background: #fff; */padding: 0.25rem;}
.primaryBanner_title-description.travelEnabled {
max-width: 60%;
margin: 0 0 0 -10rem;
}
.primaryBanner_title {
color: #fff;
line-height: 8px;
font-size: 1rem;
margin: 1rem 0 0 0;
}
.primaryBanner_offer {
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
margin-top: 1rem;
color: #fff;
}
.primaryBanner_viewDeals {
justify-self: right;
margin-left: 5px;
padding-right: 15px;
white-space: nowrap;
}
.button__elem button.large {
font-size: var(--t-md);
line-height: 20px;
min-height: 40px;
padding: 7px 24px;
}
.button__elem button.large.round {
border-radius: 36px;
}
.button__elem button span.button__label {/* line-height: inherit; *//* vertical-align: middle; *//* vertical-align: -webkit-baseline-middle; */vertical-align: -moz-middle-with-baseline;/* transform: translate(0, 0); *//* margin-bottom: -2px; */}
.primaryBanner_logo {
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
border-radius: 5px;
height: 100%;
width: 100%;
}

.primaryBanner_logo_container {
    /* margin-bottom: 55px; */
    margin-left: 10px;
    /* background: #292929; */
    /* padding: 10px; */
    /* width: 21%; */
    /* border-radius: 12px; */
}

.primaryBanner_title-description.travelEnabled {
    max-width: 60%;padding-right: 10px;
    margin: 0 0 0 0;
}
.carousel {
    height: 100%;
}
.carousel-inner{
    height: 100%;
    border-radius: 0px;
}
.section-space {
    padding-top: 60px;
    padding-bottom: 60px;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    padding: 1em;
    margin-top: 20px;
}
.card-registration .select-input.form-control[readonly]:not([disabled]) {
font-size: 1rem;
line-height: 2.15;
padding-left: .75em;
padding-right: .75em;
}
.card-registration .select-arrow {
top: 13px;
}
.select {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 12px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.prod-detail{
    padding-top: 60px;
    padding-bottom: 60px;
}
.prod-detail-text{
    margin-top: 20px;
}
.prod-detail-text-top{
    border: 1px solid rgb(247 138 47);
    border-radius: 0.25rem;
    padding: 20px;
}
.prod-detail-text-top p{
    color: #fff;
    margin-bottom: 0;
}
.prod-detail-text-bottom{
    background-color: #7b7b7b33 !important;
    border: 1px solid #fa901b !important;
    color: #fff;
    padding: 30px;
}
.prod-detail-text-bottom p{
    margin-top: 0px;
    margin-bottom: 1rem;
    text-align: center;
}
.btn-prod{
    color: #fff;
    font-size: 14px;
    background-color: #fa901b;
    text-transform: capitalize;
    line-height: 50px;
    padding: 0 44px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    border: none;
    display: block;
    margin: auto;
}
.btn-prod:hover{
    color: #fff;
}
a,a:hover {
    text-decoration: none !important;
}
.ThemeParksNearYou-contentContainer a {
    text-decoration: none;
}


.page-container {
    padding: 70px 0;
}

.section-grey {
    background-image: linear-gradient(0deg, transparent, #bfe1e9);
}
.section-heading {
    padding: 0px 0px 60px 0;
    font-weight: 500;
    /* text-transform: uppercase; */
}
.main-header {
    /* font-size: 3rem; */
    font-weight: 800;
    font-size: 40px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.package {
    background-color: #fff;
    border: solid 1px #eff3f7;
    box-shadow: -0.939px 5.926px 11.57px 1.43px rgb(0 0 0 / 4%);
}
.package_top.color-top {
    background-color: #404040;
    background: #fa901b;
    color: #fff;
}
.package_top {
    background-color: #27c3a1;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}
.package_top.color-top p {
    font-style: normal;
    font-size: 20px !important;
    font-weight: 700 !important;
}
.package_top p {
    /* color: white; */
    font-weight: 900 !important;
    text-align: center;
    text-transform: uppercase;
}
.package_icon {
    width: 100%;
    margin: 20px 0;
}
.package_icon .icon_color_1 {
    background-color: #fa901b;
}
.package_icon_wrap {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package_icon_wrap img {
    width: 50px;
    height: 50px;
}
/* .ThemeParksNearYou-container {
    height: 450px;
} */
.package img {
    max-width: 100%;
}
.package_cost .amount {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
}
.package_cost .sub-month {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    display: block;
}
.package_list li {
    padding-top: 10px;
    /* border-bottom: solid 1px #ccc; */
    padding-bottom: 10px;
}
.package_list_wrap {
    display: flex;
    width: 300px;
    position: relative;
    margin: 0 auto;
}
.package_list_tick {
    margin-right: 15px;
}
.package_list_tick i {
    color: #fa901b;
}
.package_list_text p {
    margin: 0;
    font-weight: 600;
    color: #444748;
}
.package_list_text p span {
    margin: 0;
    font-weight: 400;
    color: #93adc8;
}
.button-main {
    font-weight: 800;
    color: #fff !important;
    text-align: center;
    padding: 8px 25px;
    transition: .5s all;
    -webkit-transition: .5s all;
    border-radius: 100px !important;
    background-color: #fa901b !important;
    height: 43px;
}
.ThemeParksNearYou-container {
    background: #181818;
    /* box-shadow: 0 2px 1px#22222212,0 2px 6px #22222233; */
    padding: 20px;
}
.TileImage-text {
    margin: 57px 0 0;
    background: #0c2a3d;
    padding: 20px 10px;
}
.col-md-2.ThemeParksNearYou-contentContainer.ng-scope {
    padding: 0;
    margin: 7px 18px;
}
.footer-main {
    background: #090808;
    /* background-image: url(../images/footer-bg.png); */
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px 20px;
    width: 100%;
}
.footer-main .footer-middle-head h3, .footer-main .footer-last-head h3{
    font-size: 23px;
    color: #fff;
    margin-bottom: 22px;
}
.footer-main .footer-middle-head ul, .footer-main .footer-last-head ul{
   margin: 0px;
   margin-bottom: 20px;
   padding: 0px;
}
.footer-main .footer-middle-head ul li, .footer-main .footer-last-head ul li{
    list-style: none;
    margin-bottom: 15px;
}
.footer-main .footer-middle-head ul li a, .footer-main .footer-last-head ul li a{
    font-size: 14px;
    word-break: break-all;
    color: #fff !important;
}
.footer-main .footer-last-head ul li span{
    font-size: 14px;
    color: #fff !important;
    font-weight: 600;
}
a:hover {
    text-decoration: underline;
}

.pro-each {
    border: 1px solid #ccc;
}


/* additional css */
.gta-nav{
    padding: 15px 0px;
    width: 100%;
}
.row{
    margin-right: 0px !important; 
    margin-left: 0px !important;
}
.gta-prd{
    /* background: linear-gradient(0deg, #09596b, #ee4136); */
    margin-top: 10%;
    border-radius: 1rem;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 1px#22222212,0 2px 6px #22222233;
    border: 1px solid #fa901b;
}
.gta-prd-img{
    /* padding: 15px; */
}
.gta-prd-img img{
    padding: 0;
    border-radius: 15px;
    background-color: #fff;
    margin-bottom: 10px;
}
.gta-prd-txt {
    background: linear-gradient(46deg, #09596b, #fa901b);
    color: #fff;
    border-radius: 1rem;
    padding: 15px;
}
.gta-prd .gta-prd-txt h4, .gta-prd .gta-prd-txt p{
    color: #ffffff;
    margin-bottom: 10px;
}
.gta-prd .gta-prd-txt h4{
    font-size: 20px;
    text-transform: capitalize;
    line-height: 25px;
    margin-bottom: 15px;
}
div.gta-prd:last-child{
    margin-left:10%;
}
/*laptop view*/
@media screen and (min-width: 992px){
    .MegaCatMenu-container{
        text-align: center;
    margin-top: 15px;
    }
    .gta-abt img{
        margin-top: 10%;
    }
    .gta-prd .gta-prd-txt h4{
            height: 2rem;
    }
}



/*tablet*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .MegaCatMenu-container{
        text-align: center;
    margin-top: 15px;
    }
    .gta-abt img{
        margin-top: 11%;
    }
    .gta-prd .gta-prd-txt h4{
            height: 5rem;
    }
}



/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .MegaCatMenu-container{
        text-align: center;
    margin-top: 15px;
    }
    .gta-abt img{
        margin-top: 5%;
    }
    .gta-prd .gta-prd-txt h4{
            height: 6rem;
    }
}



/*mobile view*/
@media screen and (max-width: 575px){
    .gta-abt img{
        display: none;
    }
}

.MegaCatMenu a.MegaCatMenu-headingItem:hover{
    color: #fa901b;

}

.sec1-prodiv-lft1 h1, .sec1-prodiv-lft1 ul li{
    color: #fff;
}


a:hover{
    color: inherit;
}

.button-main{
    border-radius: 0!important;
}