:root {
    --pm-bg-color: #F52F6E;
    --sc-bg-color: #3D3B40;
    --pm-text-color: #ffffff;
    --sc-text-color: #333333;
    --mc-color: #000000;
    --main-font: 'Roboto', sans-serif;
    --pm-heading-font-size: 1.7rem;
    --sc-heading-font-size: 1.4rem;
    --pm-text-font-size: 1rem;
}

*,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-size: var(--base-font-size);
}

a {
    text-decoration: none;
    color: var(--primary-text-color);
}

p {
    font-size: var(--pm-text-font-size);
}

/* HTML5 display-role reset for older browsers  */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-family: var(--main-font);
    line-height: 0;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: 100%;
    height: auto;
}

.container {
    position: relative;
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    height: 100%;
}


.content {
    font-size: 18px;
    color: var(--sc-text-color);
}

.brand-logo {
    font-size: 1.8em;
}

.btn {
    background: var(--pm-text-color);
    padding: 11px 24px;
    border: none;
    color: var(--mc-color);
}

.btn-custom-primary {
    background: var(--pm-bg-color);
    padding: 20px 46px;
    font-size: 1em;
    color: var(--pm-text-color);
    border-radius: 0 50px 50px 0;
    cursor: pointer;
}

.hero-wrapper {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 240px;
}

.hero-area {
    background-size: cover;
    /* min-height: auto; */
    position: relative;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: overlay;
    min-height: 50vh;
}

.inner-hero-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.inner-hero-area h2 {
    text-align: center;
    font-size: 2.4em;
    color: var(--pm-text-color);
    padding: 80px 0 40px;
    line-height: 1.5;
    font-weight: 600;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.input-group input {
    height: 60px;
    border: 1px solid #ededed;
    padding: 10px 44px;
    width: 100%;
}

.input-group .input-controller:first-child input {
    border-radius: 50px 0 0 50px;
}

/* input colo icon section  */
.input-controller {
    position: relative;
    color: var(--mc-color)
}

.input-controller i {
    color: #828282;
    position: absolute;
    z-index: 7;
    font-size: 1.6rem;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    height: 100%;
    line-height: 60px;
    padding-right: 15px;
}

.offer-box {
    position: absolute;
    background-color: var(--pm-bg-color);
    height: 220px;
    width: 220px;
    left: 50px;
    bottom: -50px;
    border-radius: 50%;
    text-align: center;
    color: var(--pm-text-color);
    border: 5px solid var(--pm-text-color);
    z-index: 555;
}

.offer-box h3 {
    font-size: 1.1em;
    line-height: 1.5;
    padding: 40px 30px 0;
}

.offer-box h4 {
    font-size: 2.8em;
    font-weight: 600;
    line-height: 1.5;
}

.offer-box p {
    font-size: 0.8em;
}

.offer-box h4 a {
    font-size: 40px;
    line-height: 62px;
    font-weight: 700;
}

.offer-box p a {
    font-size: 14px;
    text-decoration: underline;
}

section.container-box {
    width: 90%;
    margin: 0 auto;
    padding: 70px 0;
}

/* mobile css  */
#mobile-menu-opener {
    display: inline-block;
    height: 45px;
    width: 45px;
    position: relative;
    opacity: 0;
    z-index: -556;
}

#mobile-menu-opener:after {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    height: 3px;
    width: 100%;
    background: var(--sc-text-color);
    transform: translateY(-50%);
    border-radius: 4px;
    transition: all 0.5s ease-in-out;

}

#mobile-menu-opener span {
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 100%;
    background: var(--sc-text-color);
    transform: translateY(-50%);
    border-radius: 4px;
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

#mobile-menu-opener:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% + 12px);
    height: 3px;
    width: 100%;
    background: var(--sc-text-color);
    transform: translateY(-50%);
    border-radius: 4px;
    transition: all 0.5s ease-in-out;

}

#mobile-menu-opener.menu-open span {
    width: 0%;
    opacity: 0;
}

#mobile-menu-opener.menu-open:before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 4px;
}

#mobile-menu-opener.menu-open:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 4px;
}

/* card style  */
.trip-section {
    padding: 70px 0 14px;
}

.trip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card.trip-card {
    width: calc(33.33% - 30px);
    margin: 0 0 40px;
    transition: all 0.2s ease-in-out;
}

.card.card.trip-card:hover {
    box-shadow: 0 21px 59px -30px rgba(0, 0, 0, 45);
    transition: all 0.2s ease-in-out;
}

.image-figure {
    position: relative;
}

.card.trip-card .trip-content {
    height: calc(100% - 300px);
}

.card.trip-card .image-figure {
    height: 300px;
}

.image-figure img {
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.card.trip-card .image-figure img {
    height: 100%;
}

.image-figure .flash-discount {
    position: absolute;
    right: -15px;
    top: 15px;
    background: var(--pm-bg-color);
    padding: 26px 40px;
    font-size: 24px;
    font-weight: 600;
    color: var(--pm-text-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
}

.trip-content {
    background-color: var(--sc-bg-color);
    color: var(--pm-text-color);
    padding: 25px 15px;
}

.trip-heading {
    font-size: var(--sc-heading-font-size);
    line-height: 24px;
}

p.trip-text {
    margin-top: 15px;
    line-height: 21px;
    font-weight: 300;
}

ul.trip-features {
    margin-top: 25px;
    color: var(--sc-bg-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

ul.trip-features li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--pm-text-color);
    margin-right: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 0 6px 6px 0;
    transition: all 0.3s ease;
}

li.featires-list.tooltip:hover {
    background: var(--pm-bg-color);
}

ul.trip-features li img {
    width: 50%;
}

/* tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: var(--pm-bg-color);
    color: var(--pm-text-color);
    text-align: center;
    border-radius: 6px;
    padding: 20px 0;
    position: absolute;
    z-index: 1;
    bottom: 115%;
    left: 50%;
    width: 200px;
    transition: all 0.2s linear;
    line-height: 15px;
    transform: translateX(-50%);
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--pm-bg-color) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* tooltip close */

/* bg-section */
.bg-section {
    background-color: #e5e5e5;
    padding: 54px 0;
}

.advertize-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advertize-figure {
    width: calc(55% - -10px);
    height: 100%;
}

.advertize-figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.text-advertive {
    background-color: var(--pm-bg-color);
    width: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 5rem 4rem;
    transform: translateY(-50%);
}

.text-advertive h2 {
    font-size: 2em;
    color: var(--pm-text-color);
    line-height: 44px;
    position: relative;
}

.text-advertive h2:before {
    content: "";
    position: absolute;
    height: 4px;
    background-color: var(--pm-text-color);
    bottom: -10px;
    width: 167px;
    left: 0;
}

.text-advertive p {
    color: var(--pm-text-color);
    padding: 30px 0;
    line-height: 24px;
}

.btn-custom-secondary {
    border-radius: 4px;
    padding: 14px 40px;
    transition: all 0.2s ease-in-out;
    background-position: right;
}

.btn-custom-secondary:hover {
    background: linear-gradient(to right, #222222 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: left;
    color: #fff;
}

/* accrodian */
.accrodian-box {
    padding: 48px 0;
}

.accrodian h2 {
    font-size: 2em;
    color: var(--sc-text-color);
    line-height: 1.5;
}

.accrodian h2:before {
    content: "";
    position: absolute;
    height: 3px;
    background-color: var(--sc-text-color);
    top: 48px;
    width: 67px;
}

.accrodian p {
    padding: 24px 0;
    line-height: 1.5;
}

.content p {
    padding: 14px 0;
    line-height: 1.5;

}

.accrodian-item h2 {
    position: relative;
    background: #e5e5e5;
    padding: 14px 8px;
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;

}

.accrodian-item .acordian-content {
    display: block;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: 0.5s all ease-in-out;
}

.accrodian-item.ac-open .acordian-content {
    height: auto;
    opacity: 1;
}

.accrodian-item p {
    line-height: 24px;
    padding: 14px;
}

.accrodian-heading span {
    background: var(--sc-text-color);
    color: var(--pm-text-color);
    border-radius: 50%;
    font-size: 1.6rempx;
    margin-right: 5px;
    height: 1.6rem;
    display: inline-block;
    width: 1.6rem;
    text-align: center;
    line-height: 1.6;
}

.accrodian-item .accrodian-heading>i {
    background: #333;
    color: #fff;
    border-radius: 50%;
    margin: 0;
    right: 9px;
    position: absolute;
    top: 15px;
    height: 1.6rem;
    width: 1.6rem;
    text-align: center;
    line-height: 1.6;
}

/* help box */
.container-help {
    display: flex;
    justify-content: center;
}

.help-box {
    background: #e5e5e5;
    padding: 50px;
}

.help-text {
    position: relative;
    background: #ffffff;
    padding: 45px 30px;
    text-align: center;
    width: 42%;
    border-radius: 0px 50px 0 50px;
    margin-right: 30px;
}

.help-text h2 {
    font-size: 1.2em;
    position: relative;
    line-height: 1.2;
}

.help-text h2:before {
    content: '';
    position: absolute;
    height: 3px;
    width: 80px;
    background-color: var(--sc-text-color);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.help-text p {
    padding: 36px 74px 36px;
    line-height: 21px;
    font-size: 0.9em;
}

.help-text .btn-custom-help {
    background: var(--pm-bg-color);
    border-radius: 4px;
    padding: 14px 40px;
    border: none;
    transition: all 0.5s ease-out;
    background-position: right;
    color: var(--pm-text-color)
}

.help-text .btn-custom-help:hover {
    background: linear-gradient(to right, #222222 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: left;
    color: var(--pm-text-color);
    transition: all 0.5s ease-out;
    cursor: pointer;
}

/* footer section */
footer.main-footer {
    background: var(--sc-bg-color);
    padding: 70px;
    color: var(--pm-text-color);
}

.footer {
    width: calc(33.33% - 120px);
}

.footer h2 {
    font-size: 1.3em;
    font-weight: 300;
}

.footer-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-bottom: 1px solid #606060;
    padding-bottom: 20px;
}

.footer ul {
    padding: 20px 0;
}

.footer ul li {
    display: block;
    font-size: 0.9em;
}

.footer ul li a {
    line-height: 36px;
    font-weight: 300;
    transition: 1s;
}

.footer ul li a:hover {
    transition: 0.9s;
    padding-left: 3px;
    color: #bfbdbd;
}

.footer-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px 0;
}

.footer-logo-text h2 {
    font-size: 1.8em;
    font-weight: 300;
}

.social-icon i {
    font-size: 2em;
    padding: 0 5px;
}

.copyright-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9em;
    font-weight: 300;
}

.tm-condtion p {
    font-size: 0.9em;
    font-weight: 300;
}

.ui-state-default,
.ui-widget-header .ui-state-default {
    line-height: 1;
}

.cabin-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.cabin-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cabin-pagination ul span,
.cabin-pagination ul a {
    padding: 10px 15px;
}

.cabin-pagination ul li.active span,
.cabin-pagination ul li:hover a {
    background: var(--pm-bg-color);
    color: var(--pm-text-color);
}

.cabin-pagination ul li.disabled span {
    background: #b9b9b9;
}

.sub-heading {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px;
    margin-bottom: 25px;
    justify-content: center;
    align-items: center;
}

.sub-heading h2 {
    font-size: 2em;
    font-weight: 600;
    line-height: 2em;
}
