@font-face {
    font-family: Miller Banner Light;
    src: url(../fonts/Miller-Banner-Light.woff);
}
@font-face {
    font-family: akkurat;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/akkurat_light_regular-webfont.woff2);
}
@font-face {
    font-family: akkurat;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Akkurat.ttf);
}
@import url("https://fonts.googleapis.com/css?family=Crimson+Text&display=swap");
body {
    color: #202020;
    background: #fff;
    font-family: "akkurat", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 300;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a,
a:hover,
a:focus {
    text-decoration: none;
}
p,
a,
strong,
ul,
li {
    margin: 0;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
}
a img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
a:hover img {
    opacity: 0.85;
}
a:active,
a:hover {
    outline: 0;
}
a.undlink {
    text-decoration: underline;
}
b,
strong {
    font-weight: 400;
}
p strong {
    font-family: "akkurat", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-weight: 400;
}
h5 {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
}
.mid-hed {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar.menu-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    /* margin-left: 20px; */
}
.top-bar.menu-bar .logo {
    width: 80px;
    margin: 0;
    /* margin-right: 20px; */
}

.top-bar.menu-bar .logo-link {
    display: block;
    width: 100%;
    height: 100%;
}
.top-bar.menu-bar .mobile-button {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.top-bar.menu-bar .mobile-button svg {
    width: 100%;
    height: 100%;
}
.top-bar.menu-bar .menu-wrap {
    display: none;
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 20px;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
.top-bar.menu-bar .menu-wrap.open {
    display: flex;
}
.top-bar.menu-bar .close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: block;
}
.top-bar.menu-bar .close svg {
    width: 100%;
    height: 100%;
}
.top-bar.menu-bar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.top-bar.menu-bar ul.menu {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
    max-height: 85vh;
}
.top-bar.menu-bar ul.menu li {
    white-space: nowrap;
    font-size: 30px;
    position: relative;
    text-align: left;
}
.top-bar.menu-bar ul.menu li a {
    padding: 5px 20px;
    font-size: 30px;
    display: block;
}
.top-bar.menu-bar ul.menu li:hover .submenu {
    display: block;
}
.top-bar.menu-bar ul.menu li.logo {
    /* margin: 0 auto 20px auto; */
    width: 120px;
}
.top-bar.menu-bar ul.submenu {
    position: static;
    display: block;
    top: 100%;
    left: 50%;
    padding: 10px 0;
    margin-bottom: 20px;
}
.top-bar.menu-bar ul.submenu::before {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #d2d2d2;
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
}
.top-bar.menu-bar ul.submenu li {
    padding: 5px 15px;
    font-size: 15px;
}
.top-bar.menu-bar ul.submenu li a {
    font-size: 15px;
}
/* @media screen and (min-width: 500px) {
    .top-bar.menu-bar .logo {
        margin: 0 40px;
    }
} */
@media screen and (max-width: 1199px) {
    .top-bar.menu-bar .menu-wrap.open {
        background: #fefefe;
    }

    .top-bar.menu-bar ul.menu li:not(.logo) {
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }

    .top-bar.menu-bar ul.menu {
        justify-content: flex-start;
    }

    .top-bar.menu-bar ul.menu li a {
        font-size: 16px;
        line-height: 28px;
    }

    .top-bar.menu-bar ul.submenu {
        margin-bottom: 0;
        padding: 0;
    }

    .top-bar.menu-bar ul.menu ul.submenu li {
        padding-left: 0;
        border-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .top-bar.menu-bar ul.menu ul.submenu li a {
        font-size: 15px;
        line-height: 25px;
    }
}
@media screen and (min-width: 1220px) {
    .top-bar.menu-bar {
        gap: 0;
    }
    .top-bar.menu-bar .menu-wrap {
        display: block;
        position: static;
        overflow: visible;
    }
    .top-bar.menu-bar .mobile-button {
        display: none;
    }
    .top-bar.menu-bar .close {
        display: none;
    }
    .top-bar.menu-bar ul.menu {
        flex-direction: row;
    }
    .top-bar.menu-bar ul.menu li {
        font-size: 20px;
        text-align: center;
    }
    .top-bar.menu-bar ul.menu li a {
        padding: 20px;
        font-size: 16px;
    }
    .top-bar.menu-bar ul.menu li.logo {
        display: none;
    }
    .top-bar.menu-bar ul.submenu {
        position: absolute;
        display: none;
        background-color: #d2d2d2;
        transform: translateX(-50%);
    }
    .top-bar.menu-bar ul.submenu::before {
        content: "";
    }
    .top-bar.menu-bar ul.submenu li {
        font-size: 20px;
    }
    .top-bar.menu-bar ul.submenu li a {
        padding: 5px;
        font-size: 20px;
    }
}

.menu-icon {
    width: 22px;
    cursor: pointer;
    position: relative;
    z-index: 200;
}
.menu-icon span {
    width: 100%;
    height: 1px;
    background: #202020;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: block;
    margin: 5px 0px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.menu-icon.open span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: 6px;
}
.menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu-icon.open span:nth-child(3) {
    display: none;
}
.menu-icon:hover {
    opacity: 0.5;
}
.menu-pop {
    overflow: auto;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.menu-pop.open {
    z-index: 1000;
    visibility: visible;
    opacity: 1;
}
.menu-pop > div.aci {
    padding: 26px 80px 22px;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0px;
}

.banner {
    height: 100vh;
    position: relative;
}

.ban-sec {
    text-align: center;
}
.banner h1 {
    margin: 0;
    color: #fff;
    font-size: 46px;
    font-weight: normal;
    font-family: "Miller Banner Light", "Crimson Text", serif;
    letter-spacing: 1px;
    width: 100%;
}

.banner a {
    border: 1px solid #000;
    color: #232323;
    padding: 20px 60px;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.5px;
    font-family: "Miller Banner Light";
    border-radius: 0;
    background: #fff;
    transition: all 0.2s linear;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.banner a:hover {
    color: #fff;
    background: #000;
}
.banner .container {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-video {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .banner-video {
        height: 90vh;
    }
}

.banner-video.banner-video--natural {
    height: auto;
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

.banner-video .custom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #ffffff;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.banner-video .custom-controls button {
    color: #ffffff;
    border: none;
    background: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video .custom-controls svg {
    fill: currentcolor;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.no-enhance .banner-video .custom-controls .m-video__button {
    display: none;
}

.banner-video .custom-controls .m-video__button[aria-pressed="true"] {
    display: none;
}

.banner-slider {
    height: 80vh;
    overflow: hidden;
}

.banner-slider .owl-carousel,
.banner-slider .owl-carousel .owl-stage-outer,
.banner-slider .owl-carousel .owl-stage-outer .owl-stage,
.banner-slider .owl-carousel .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
}

.banner-slider .item {
    height: 100%;
    position: relative;
}

.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider .owl-dots {
    position: relative;
    bottom: 50px;
    text-align: center;
}

.banner-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.8;
    border-radius: 50%;
}

.banner-slider .owl-dots .owl-dot.active {
    opacity: 1;
}

.owl-dot + .owl-dot {
    margin-left: 20px;
}

.banner-slider h2 {
    margin: 0;
    color: #fff;
    font-size: 46px;
    font-weight: normal;
    font-family: "Miller Banner Light", "Crimson Text", serif;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hom-sec {
    padding: 35px 0;
}
.hom-sec img {
    width: 100%;
}
.hom-sec p {
    margin-bottom: 25px;
}
.hom-sec .image-holder {
    position: relative;
    margin-bottom: 20px;
}
.hom-sec .image-holder:hover img {
    opacity: 0.85;
}
.hom-sec .imgovertext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 36px !important;
    color: #fff;
    font-family: "Miller Banner Light", "Crimson Text", serif;
    left: 0;
}
.hom-sec a {
    text-decoration: underline;
}
.sid-img {
    padding-top: 200px;
}
.sid-img img {
    max-width: 465px;
    width: 100%;
}
footer {
    padding: 51px 10px 66px;
    background: #000;
    margin-top: 100px;
    position: relative;
}
footer {
}
.fot-info {
}
.fot-info address,
.fot-info a {
    display: block;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    margin: 0px;
    color: #fff;
    font-weight: 400;
}
.fot-info .email {
    text-decoration: underline;
}
.sio-div a {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 16px;
    line-height: 22px;
    width: 49%;
    margin-bottom: 10px;
}
.wel-hed h4 {
    font-size: 35px;
    font-family: "Miller Banner Light", "Crimson Text", serif;
    color: #202020;
}
.wel-cont p {
    font-size: 20px;
    font-family: "Miller Banner Light", "Crimson Text", serif;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}
.wel-cont a {
    font-size: 17px;
    font-family: "Miller Banner Light", "Crimson Text", serif;
    line-height: 32px;
    font-weight: 400;
    text-decoration: underline;
}
.welcom-section {
    padding: 110px 0;
}
.menu-li {
    text-align: center;
    position: absolute;
    width: 100%;
    /*top: 50%;*/
    top: 53%;
    transform: translateY(-50%);
}
.category-bespoke-events section {
    margin-top: 30px;
}
.pro-lis > a:hover {
    opacity: 0.7;
}
a:active,
a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}
.prod-section {
    margin-top: 10px;
}
.menu-li li {
}
.menu-li li a {
    display: inline;
    vertical-align: top;
    color: #202020;
    text-decoration: none;
    font-size: 34px;
    line-height: 46px;
    font-family: "Miller Banner Light";
}
.menu-li ul {
    padding-left: 0px;
    list-style: none;
}
.menu-li ul li:last-child a {
    font-size: 12px;
    font-family: "akkurat", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    /* line-height: 22px;*/
}
.abou-img img,
.foun-img img {
    width: 100%;
}
.abou-cont p,
.sec-abou p {
    margin-bottom: 20px;
}
.abou-cont a,
.sec-abou a {
    display: block;
    text-decoration: underline;
}
.abou-section {
    padding: 110px 0px 25px;
}
.abou-cont {
    padding-left: 25px;
}
.sec-abou {
    padding-left: 0px;
}
.sec-img {
    margin-bottom: 20px;
}
.sec-img img {
    width: 100%;
}
.foun-abou p {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 43px;
    padding: 0 50px;
    font-style: italic;
}
.foun-abou span {
    display: block;
    font-size: 15px;
    font-style: normal;
}
.foun-abou {
    text-align: center;
}
.abo-mid {
    height: 100%;
    position: relative;
}
.abo-mid > div {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
}
.sec-abou h2,
.abou-cont h2 {
    color: #000;
    margin-bottom: 60px;
    font-size: 46px;
    font-weight: normal;
    font-family: "Miller Banner Light";
    letter-spacing: 1px;
}
.abou-cont p a,
.sec-abou p a {
    color: #39f;
    /*  text-decoration: none;*/
}
.maxbutton-1 {
    margin: -35px 0px 30px;
}
.maxbutton-2 {
    margin: 15px 0px 30px;
}
.tgr-sec {
    padding: 109px 0 120px 0;
}
.tgrse-sec {
    padding: 109px 0px 0px 0px;
}
.maxbutton-2.maxbutton {
    width: auto !important;
}
.pos-img {
}
.pos-img img {
    width: 100%;
}
.pot-lis {
    padding: 0 0 62px;
    margin: 0 0 64px;
    border-bottom: 1px solid #eae9e7;
}
.pro-lis {
}
.por-con img {
    max-width: 100%;
    margin-bottom: 20px;
}
.pro-lis > time {
    font-size: 12px;
    margin: 0 0 36px;
    display: block;
}
.pro-lis > h4 a {
    font-size: 46px;
    line-height: 50px !important;
    margin: 0 0 58px;
    font-weight: normal;
    font-family: "Miller Banner Light";
}
.pro-lis > h4 {
    font-size: 46px;
    line-height: 50px !important;
    margin: 0 0 58px;
    font-weight: normal;
    font-family: "Miller Banner Light";
}
.pro-lis > h4 a:hover {
    color: #000;
}
.pro-lis > div {
    margin: 0 0 120px;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
}
.pro-lis > a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #202020;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
}
.por-con time {
    text-align: center;
    display: block;
    margin-bottom: 30px;
}
.por-con h1 {
    text-align: center;
    font-family: "Miller Banner Light";
    font-weight: normal;
    margin: 20px 0;
    font-size: 46px;
}
.bot-post .left-po {
    float: left;
    position: relative;
    z-index: 10;
}
.bot-post .rit-po {
    float: right;
    position: relative;
    z-index: 10;
}
.left-po span {
    display: inline-block;
    margin-right: 30px;
}
.rit-po span {
    margin-left: 30px;
    display: inline-block;
}
.hr {
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    margin-top: 50px;
}
.por-con > a {
    margin-bottom: -15px;
    display: block;
}
.arch-hed {
    text-align: center;
    margin: 50px 0px;
}
.arch-hed h1 {
    margin: 0;
    color: #000;
    font-size: 46px;
    font-weight: normal;
    font-family: "Miller Banner Light";
    letter-spacing: 1px;
    text-align: center;
}
.map-sec {
    background-image: url(../img/bg-contact.jpg);
    background-size: cover;
    padding: 70px 0px 70px;
}
.lefcon-img img {
    width: 100%;
}
.contact-form h4 {
    color: #202020;
    margin: 0 0 22px;
    font-weight: normal;
    font-family: "Miller Banner Light";
    letter-spacing: 1px;
    font-size: 46px;
}
.contact-form a {
    text-decoration: underline;
    margin: 0 0 55px;
    display: block;
}
.contact-form span {
    display: block;
    font-size: 17px;
    line-height: 22px;
    font-weight: bold;
    margin: 0 0 55px;
}
.contact-form label {
    font-size: 12px;
}
.contact-form input {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #53514d;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    height: 20px;
    padding: 2px 10px;
    background: none;
    outline: none;
    margin: 0 0 40px;
}
.contact-form textarea {
    resize: both;
    height: 57px;
    margin: 0 0 47px;
    display: block;
    max-width: 100%;
    width: 100%;
    overflow: auto;
    border: 0;
    border-bottom: 1px solid #202020;
    padding: 0;
    font-size: 12px;
    line-height: 16px;
    background: none;
}
.contact-form input[type="submit"] {
    font-size: 12px;
    line-height: 17px;
    margin: 0;
    height: 45px;
    padding: 14px 62px;
    border: 1px solid #000;
    text-align: center;
    background: none;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    outline: none;
    width: 153px;
}
.contact-form input[type="submit"]:hover {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #000;
    color: #fff;
}
.sub-nav {
    text-align: center;
    /*margin: 0 0 35px;*/
    margin: 35px 0 15px;
}

.sub-nav li {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
}
.contact-frame {
    padding: 92px 0 0;
}
.contact-frame h4 {
    font-size: 46px;
    margin: 0 0 3px;
    font-family: "Miller Banner Light";
    font-weight: normal;
}
.contact-box {
    width: 49%;
    display: inline-block;
    padding: 0 48px 0 0;
    margin: 65px 0 0;
    vertical-align: top;
}
.clear {
    clear: both;
}
.contact-box h6 {
    font-size: 16px;
    margin: 0 0 8px;
    display: block;
    font-weight: 600;
    line-height: 20px;
}
.contact-box a {
    text-decoration: underline;
}
.con-hr {
    padding: 92px 0 0;
    margin: 88px 0 0;
    border-top: 1px solid #eae9e7;
}
.distribution_section {
}
.distribution {
}
.distribution p {
    font-size: 16px;
}
.distribution p a {
    font-size: 14px;
    line-height: inherit;
    text-decoration: underline;
}
.distribution h4 {
    font-size: 46px;
    margin: 0 0 20px;
    font-family: "Miller Banner Light";
    font-weight: normal;
}
.contact-box a {
    display: block;
}
.contact-box a span {
    text-decoration: none;
}
.uk-div {
    margin-bottom: 10px;
}
.cari-div {
}
.cari-div h4 {
    margin: 0 0 60px;
    font-family: "Miller Banner Light";
    font-weight: normal;
    font-size: 46px;
}
.cari-div p {
    margin: 0 0 67px;
    font-size: 17px;
    line-height: 24px;
}
.carre-div > a {
    font-size: 14px;
    line-height: 19px;
    padding: 18px 81px;
    height: 55px;
    font-family: "Miller Banner Light";
    color: #202020;
    border: 1px solid #000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 45px;
    transition: all 0.5s;
}
.carre-div > a:hover {
    background: #000;
    color: #fff;
}
.carre-div > div {
    margin-bottom: 20px;
}
.carousel-section {
    background: url(../img/bg-contact.jpg) no-repeat;
    background-size: auto;
    background-size: cover;
    overflow: hidden;
    padding: 115px 0 82px 0;
}
#sync1 .item {
    margin: 5px;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
#sync2 .item {
    margin: 5px;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}
#sync2 .item h1 {
    font-size: 18px;
}
.owl-theme {
    /*default owl-theme theme reset .disabled:hover links */
}
.owl-theme .owl-nav [class*="owl-"] {
    transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*="owl-"].disabled:hover {
    background-color: #d6d6d6;
}
#sync1.owl-theme {
    position: relative;
}
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
    height: 50px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    border: 1px solid #000;
    padding: 14px 20px !important;
    width: 50px;
}
#sync1.owl-theme .owl-prev {
    left: -130px;
}
#sync1.owl-theme .owl-next {
    right: -130px;
}
.flex-holder .image-holder {
    width: 36%;
    padding: 0;
    float: left;
}
.flex-holder .text-box {
    width: 64%;
    padding: 0 20% 0 5%;
    float: left;
    text-align: left;
}
.flex-holder .text-box h4 {
    font-size: 46px;
    font-weight: normal;
    font-family: "Miller Banner Light";
    margin: 0 0 29px;
    color: #202020;
}
.flex-holder .text-box p {
    font-size: 24px;
    line-height: 34px;
    font-family: "Miller Banner Light";
}
.flex-holder .image-holder img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
#sync1,
#sync2 {
    width: 75%;
    margin: 0 auto;
}
.flex-holder {
    position: relative;
    padding-bottom: 5px;
}
#sync2 .owl-stage > div:after {
    width: 100%;
    height: 1px;
    background-color: #000;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
}
#sync2 .owl-stage > div:first-child:after {
    width: 50%;
    left: auto;
    right: 0px;
}
#sync2 .owl-stage > div:last-child:after {
    width: 50%;
}
#sync2 .owl-stage > div:before {
    width: 1px;
    height: 10px;
    background-color: #000;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}
#sync2 p {
    font-family: "Miller Banner Light";
    font-size: 12px;
    line-height: 12px;
    padding-bottom: 5px;
}
#sync2 .current p {
    font-size: 18px;
}
.rm-lef {
    padding-left: 0px;
}
.win-img1 {
    padding: 100px 0 80px 0;
}
.win-img1 img {
    width: 100%;
}
.win-img2 {
}
.win-img2 img {
    width: auto;
    display: block;
    margin: 130px auto;
}
.win-img3 {
}
.win-img3 img {
    width: 100%;
}
.foun-abou:after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    background-image: url(../img/qut1.png);
    bottom: -70px;
}
.foun-abou:before {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    background-image: url(../img/qut2.png);
    top: -150px;
}
header .search {
    position: relative;
    z-index: 10;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    /* margin-right: 20px; */
}
/* header .clear {
    display: none;
} */
header .search input {
    border: 0px;
    font-size: 13px;
    font-family: "Miller Banner Light";
    color: #000;
    background-image: url(../img/srch.png);
    width: 63px;
    background-position: right;
    transition: all 0.5s;
    background-repeat: no-repeat;
    padding-right: 18px;
}
header .search input:focus {
    width: 150px;
    border-bottom: 1px solid #999;
    outline-style: none;
    box-shadow: none;
}
.search .shop {
    display: inline-block;
    border: 1px solid #202020;
    padding: 10px 20px;
    /* margin-right: 20px; */
    font-size: 13px;
    color: #202020;
    font-family: "Miller Banner Light";
    white-space: nowrap;
}
.search .user {
    display: inline-block;
    font-size: 13px;
    color: #202020;
    font-family: "Miller Banner Light";
    background-image: url(../img/user.png);
    background-position: right;
    padding-right: 18px;
    margin-right: 7px;
    background-repeat: no-repeat;
}
.search .phone {
    display: inline-block;
    font-size: 13px;
    color: #202020;
    font-family: "Miller Banner Light";
    background-image: url(../img/phone.png);
    background-position: right;
    padding-right: 18px;
    margin-right: 7px;
    background-repeat: no-repeat;
    background-size: 13px;
}
.search form {
    display: inline-block;
}
.sendpress-signup-form #error {
    color: #ff3636 !important;
}
.sendpress-signup-form #exists {
    color: #fb9d01 !important;
}
.sendpress-signup-form #thanks {
    color: #45cc00 !important;
}
.pro-lis > div img {
    display: none;
}
.head {
    float: left;
    position: relative;
    z-index: 10;
}
header {
    /* padding: 26px 0px 15px; */
    position: sticky;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    top: 0px;
}

/* @media screen and (min-width: 1024px) {
    header {
        padding: 26px 80px 15px;
    }
} */
/* .clear {
    clear: both;
} */
/* .pg-ti {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
} */

/* @media screen and (max-width: 1000px) {
    .pg-ti {
        position: static;
        margin: 0 auto 0 20px;
    }
} */

.pg-ti__heading {
    font-size: 18px;
    text-align: center;
    font-family: "akkurat", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-weight: 300;
    margin: 0;
}

@media screen and (min-width: 1220px) {
    .pg-ti {
        display: none;
    }
}

.nerssb h4 {
    margin: 0px 0px 10px 0px !important;
    padding: 0px !important;
    color: #ffffff !important;
    font-family: "Open Sans", sans-serif !important;
    font-size: 16px !important;
    line-height: 100%;
    text-align: left !important;
    font-weight: 400;
}
#form-wrap {
}
#form-wrap p:nth-child(3) label {
    display: none !important;
}
#form-wrap p:nth-child(2) {
    width: 55%;
}
#form-wrap .submit {
    width: 25%;
}
#form-wrap .sp_email {
    width: 100%;
    font-size: 13px;
    padding: 10px 10px;
    height: auto;
    font-family: Arial;
    border-radius: 0px;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    background-color: #000000 !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    clear: left;
    height: 35px;
}
#form-wrap .submit input {
    border: none !important;
    cursor: pointer !important;
    width: 100%;
    border-radius: 0px !important;
    height: 35px !important;
    background-color: #2d2d2d !important;
    color: #ffffff !important;
    font-family: "Arial", sans-serif !important;
    font-size: 14px !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    font-weight: 600;
}
#form-wrap p {
    display: inline-block;
}
#back-to-top {
    position: absolute;
    right: 0px;
    top: 0px;
}
footer > div {
    position: relative;
}
.src-lis img {
    width: 100%;
}
.search-res {
    margin: 50px 0px;
}
.search-res h1 {
    font-size: 46px;
    line-height: 50px !important;
    margin: 0 0 58px;
    font-weight: normal;
    font-family: "Miller Banner Light";
    text-decoration: underline;
}
#lightgallery > a {
    height: 125px;
    vertical-align: top;
    display: inline-block;
    margin: 2px 1px;
}
#lightgallery {
    text-align: center;
}
#lightgallery > a img {
    width: auto;
    height: 100%;
}
.gal-sect {
    margin-top: 50px;
    padding: 50px 50px 0px;
}
span.wpcf7-not-valid-tip {
    font-size: 13px;
    margin-bottom: -20px;
    margin-top: -35px;
}
.share-btn p {
    text-align: center;
    width: 100%;
    position: absolute;
    width: 150px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    cursor: pointer;
    z-index: 10;
}
.share-btn > div {
    opacity: 0;
    transition: all 0.4s;
}
.share-btn p.open + div {
    opacity: 1;
}
.share-btn p.open {
    display: none;
}
.ssba,
.ssba a {
    font-size: 15px !important;
    margin: 0 7px;
}
.ssba img {
    font-size: 15px;
}
.share-btn {
    position: absolute;
    left: 0px;
    right: 0px;
}
.banner > a {
    width: 150px;
    position: absolute;
    right: 50px;
    top: 50px;
    z-index: 10;
}
#owl-about {
    position: relative;
}
#owl-about .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
}
#owl-about .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
}
#owl-about .owl-nav button span {
    font-size: 45px;
}
#owl-about .owl-nav button {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px !important;
    height: 40px;
    line-height: 17px;
}
.pagi {
    text-align: center;
}
.pagi a,
.pagi span {
    display: inline-block;
    padding: 0px 15px;
    font-size: 13px;
}
.maxbutton-1 {
    background-image: url(../img/clock_icon_white.png);
    background-repeat: no-repeat;
    background-position: 22px 17px;
    background-size: 20px;
}
.maxbutton-1:hover {
    background-image: url(../img/clock_icon.png);
}
#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: #fff;
    top: 0px;
}
.loader {
    display: block;
    position: absolute;
    z-index: 3;
    border: 4px solid #fff;
    top: 50%;
    transform: translateY(-50%);
    animation: loader 2s infinite ease;
    text-align: center;
    margin: 0 auto;
    left: 0px;
    right: 0px;
}
.loader img {
    max-width: 500px;
    width: 100%;
}

.anc-txt p a {
    color: #202020;
    margin-top: 7px;
    text-decoration: underline;
}
.page-template-page-event .pot-lis {
    margin-top: 50px;
}
.page-template-page-event .pro-lis {
    padding-left: 30px;
}
.or_wrapper em {
    font-size: 18px;
    line-height: 20px;
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 7px;
}
.flight_club_page p {
    margin-bottom: 10px;
    line-height: 20px;
}
.line_or {
    position: absolute;
    height: 1px;
    background: #dfdfdf;
    width: 100%;
    left: 0;
    top: 10px;
}
.or_wrapper {
    position: relative;
    height: 20px;
    margin: 20px 0;
    text-align: center;
}
.flight_club {
    margin-top: 50px;
}
.page-template-page-flight_club .pot-lis {
    margin-top: 50px;
}
.main_login_btn {
    display: block;
    background: #000;
    color: #fff !important;
    text-decoration: none !important;
    padding: 15px 0;
    text-align: center;
}
.flight_club_express_form {
    margin-bottom: 10px;
    line-height: 20px;
}
.fligt-form input[type="text"],
.fligt-form input[type="email"],
.fligt-form input[type="date"],
.fligt-form select {
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    padding-bottom: 5px;
    padding-left: 0px;
    border: none;
    border-bottom: 1px solid #dfdfdf;
}
.fligt-form select {
    padding: 0 10px;
}
.fligt-form input[type="submit"] {
    border: 1px solid #000;
    font-size: 15px;
    color: #000;
    display: inline-block;
    padding: 16px 25px;
    margin-top: 25px;
    cursor: pointer;
    background: none;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    outline: none;
}
.fligt-form input[type="submit"]:hover {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #000;
    color: #fff;
}
.flit-cb p {
    margin-bottom: 15px;
}
.seemor {
    text-align: center;
    margin-top: 100px;
    border-top: 1px solid #eae9e7;
    padding: 110px 0px 40px;
}
.seemor a {
    border: 1px solid #000;
    color: #232323;
    padding: 20px 60px;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.5px;
    font-family: "Miller Banner Light";
    border-radius: 0;
    background: #fff;
    transition: all 0.2s linear;
}
.seemor a:hover {
    color: #fff;
    background: #000;
}
.error-404 {
    text-align: center;

    margin-top: 60px;
}
.fligt-form span.wpcf7-not-valid-tip {
    font-size: 13px;
    margin-bottom: 0px;
    margin-top: 5px;
}

/*============
changes :
Author  : DS
 =======*/

.pd-tc {
    color: white;
    padding-top: 10px;
}
.pd-tc:hover {
    color: white;
}

#pd-img-block .win-img1 {
    padding: 0 !important;
}

.pd-found-para {
    margin-bottom: 40px;
    margin-top: 40px;
}
.pd-found-para h2 strong {
    font-size: 25px;
}

.l-a-c h1 strong {
    font-size: 25px !important;
}
.parallax-window h1 {
    font-weight: 700 !important;
}

@media all and (max-width: 800px) and (min-width: 520px) {
    .l-a-c .col-lg-6:nth-child(1) {
        margin-bottom: 95px !important;
    }
}

@media all and (max-width: 900px) {
    .l-a-c:nth-child(even) .row {
        flex-direction: column-reverse;
        text-align: center !important;
    }

    .l-a-c:nth-child(even) .row h1,
    .l-a-c:nth-child(even) .row p {
        text-align: center !important;
    }
    .l-a-c:nth-child(even) .row h1 {
        padding-top: 15px;
    }
    .l-a-c p,
    .l-a-c h1 {
        text-align: center !important;
    }

    .l-a-c .col-lg-6 {
        padding: 15px;
    }
}

.menu-li li a {
    /*   font-size: 34px !important;
    line-height: 50px !important;*/
}
.menu-li ul li:last-child a {
    font-size: 12px !important;
}

#cust-html-btn {
    display: flex;
    justify-content: center;
}

#cust-html-btn a {
    text-decoration: none;
}
.pd-btn-exp {
    color: black !important;
}
.page-id-180 .maxbutton-2 {
    display: table !important;
}

.pd-awards-cont-sec,
.pd-awards-tab-sec {
    padding: 5% 10%;
}
.pd-w-100 {
    width: 100%;
}
.pd-awards-cont-sec .row {
    align-items: center;
}
.pd-awards-cont-sec p {
    font-size: 12px;
    line-height: 15px;
    width: 80%;
}

.pd-award-img {
    top: 100px;
    right: 60px;
    position: absolute;
}

.pd-award-img img {
    width: 125px;
}

@media all and (max-width: 900px) {
    .pd-award-img {
        top: 80px;
        right: 40px;
        position: absolute;
    }

    .pd-award-img img {
        width: 90px;
    }
}

@media all and (max-width: 400px) {
    .pd-award-img {
        top: 60px;
        right: 30px;
    }
}

/* ////// award page style //////*/

.pd-awards-tab-sec input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.pd-awards-tab-sec .row {
    display: -webkit-box;
    display: flex;
}
.pd-awards-tab-sec .row .col {
    -webkit-box-flex: 1;
    flex: 1;
}
.pd-awards-tab-sec .row .col:last-child {
    margin-left: 1em;
}

/* Accordion styles */
.pd-awards-tab-sec .tabs {
    border-radius: 8px;
    overflow: hidden;
    /*box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);*/
}

.pd-awards-tab-sec .tab {
    /*  width: 100%;
  color: black;
  overflow: hidden;
  border-top: 1px solid #80808052;*/
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #80808052;
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
    color: #202020;
}

.pd-awards-tab-sec .tab:last-child {
    border-bottom: 1px solid #80808052;
}

.pd-awards-tab-sec .tab-label {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 25px 5px;
    margin: 0;
    background: none;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
}
/*.tab-label:hover {
  background: none;
}*/
.pd-awards-tab-sec .tab-label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    transform: rotate(90deg);

    font-size: 20px;
    color: #20202096;
    font-weight: 100;
}
.pd-awards-tab-sec .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: none;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.pd-awards-tab-sec .tab-content p,
.pd-awards-tab-sec .tab-content a,
.pd-awards-tab-sec .tab-content strong,
.pd-awards-tab-sec .tab-content ul,
.pd-awards-tab-sec .tab-content li {
    font-size: 15px;
}

.pd-awards-tab-sec .tab-content {
    line-height: 25px;
    font-size: 15px;
}

.pd-awards-tab-sec .tab-close {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}
.pd-awards-tab-sec .tab-close:hover {
    background: #1a252f;
}

.pd-awards-tab-sec input:checked + .tab-label {
    background: none;
    color: black;
    border-top: 1px solid #00000030;
    box-shadow: none;
    border-radius: 0;
}
.pd-awards-tab-sec input:checked + .tab-label::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 20px;
    color: #20202096;
    font-weight: 100;
}
.pd-awards-tab-sec input:checked ~ .tab-content {
    max-height: 100%;
    padding: 5px 5px 45px;
}

/*================== award styles end ================*/

.popup ul li a {
    font-size: 34px !important;
    line-height: 50px !important;
}

.popup ul li:nth-last-of-type(1) a {
    font-size: 12px !important;
}

.search .shop {
    transition: 0.5s;
}

.search .shop:hover {
    background: black;
    color: white;
    transition: 0.5s;
}

/*==== model styles =====*/

.modal-btn {
    background-color: #5dc8cd;
    border: none;
    padding: 14px;
    margin: 10px;
    cursor: pointer;
}

.back-drop {
    top: 0;
    left: 0;
    background-color: #635d5db8;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999999;
}

.model-wrp {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 9999999;
    /*   background: url('https://birdinhand.com.au/wp-content/uploads/2020/08/Web-Popup-March20-v2.png'); */
    height: 75%;
    width: 50%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.model-wrp .pd-model-img-ins {
    width: 100%;
}

@media (max-width: 768px) and (min-width: 750px) {
    .model-wrp {
        width: 80%;
        top: 25%;
    }
    .pd-mdl-cls {
        top: 15px;
    }
}

@media (max-width: 500px) {
    .model-wrp {
        height: 35%;
        top: 30%;
        width: 80%;
    }
}

@media (max-width: 1026px) and (min-width: 1024px) {
    .model-wrp {
        height: 45%;
        top: 25%;
        width: 45%;
    }
}

@media (max-width: 1367px) and (min-width: 1365px) and (max-height: 1025px) and (min-height: 1023px) {
    .model-wrp {
        height: 45%;
        top: 25%;
        width: 45%;
    }
}

@media (max-width: 1026px) and (min-width: 1024px) and (max-height: 1367px) and (min-height: 1365px) {
    .model-wrp {
        height: 25%;
        top: 25%;
        width: 45%;
    }
}

@media (max-width: 800px) and (min-width: 700px) {
    .model-wrp {
        height: 45%;
    }
}

@media (max-width: 376px) and (min-width: 374px) {
    .model-wrp {
        height: 29%;
    }
}

.pd-mdl-cls {
    position: relative;
    text-align: right;
}

.pd-mdl-cls button {
    border: none;
    background: url("https://birdinhand.com.au/wp-content/uploads/2020/08/close.png");
    width: 13px;
    height: 13px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: absolute;
    right: 2%;
    margin-top: 1%;
}

@media (max-width: 600px) {
    .pd-mdl-cls button {
        width: 9px;
        height: 9px;
    }
}

.model-header {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}
.model-content {
    padding: 15px;
    position: relative;
}
.model-footer {
    padding: 15px;
}

/*  Open model */

.open {
    display: block;
}
.close {
    display: none;
}

/* ==== model end  */

html {
    scroll-behavior: smooth;
}

.welcom-section .wel-hed h4 {
    font-weight: 400;
}

.pd-fight-club-page .pd-f-c-info p,
.pd-fight-club-page .pd-f-c-info ul {
    margin-bottom: 10px;
}

.pd-fight-club-page .pd-f-c-info ul {
    text-align: left !important;
}

.pd-fight-club-page .pd-f-c-info strong {
    font-weight: bold !important;
}

/* === menu styling ===*/
@media (max-width: 600px) {
    .menu-li li a {
        line-height: 40px;
        font-size: 23px !important;
    }
}

@media (max-width: 320px) {
    .menu-li li a {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .menu-pop > div.aci {
        padding: 26px 0px 22px;
    }
}

@media (max-width: 770px) and (min-width: 760px) {
    .menu-li li a {
        line-height: 65px;
    }
}

#section-region-select {
    border-bottom: 1px solid #e5e5e5;
}

.region-select {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.region-select,
.main-menu,
.secondary-menu {
    padding: 10px 80px;
}

.region-select select {
    background-color: rgb(244, 244, 244);
    line-height: 1.5;
    font-family: "Miller Banner Light";
    border: none;
    padding: 8px;
}

@media (max-width: 990px) {
    .region-select,
    .main-menu,
    .secondary-menu {
        padding: 10px;
    }
}

.region-select span {
    font-size: 12px;
    margin-right: 10px;
}

.dismiss-region-select {
    border: 1px solid transparent;
    background: none;
    width: 34px;
    height: 34px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dismiss-region-select svg {
    width: 12px;
    height: 12px;
    display: block;
    pointer-events: none;
}

.secondary-menu {
    border-top: 1px solid #e5e5e5;
}

.secondary-menu__menu {
    list-style: none;
    padding: 0;
    margin: -5px -10px; /* offset link padding */
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.secondary-menu__menu a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
}

@media screen and (min-width: 1220px) {
    .secondary-menu__menu {
        margin: -10px -20px;
        justify-content: center;
    }
    .secondary-menu__menu a {
        padding: 10px 20px;
    }
}

.visually-hidden {
    position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}
