﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div:after {
    content: '';
    clear: both;
    display: block;
}

a {
    text-decoration: none !important;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

/* New css */
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

:root {
    --color-white-100: hsl(206, 5%, 100%);
    --color-white-200: hsl(206, 5%, 90%);
    --color-white-300: hsl(206, 5%, 80%);
    --color-white-400: hsl(206, 5%, 65%);
    --color-white-500: hsl(206, 5%, 50%);
    --color-black-100: hsl(213, 20%, 10%);
    --color-black-200: hsl(213, 23%, 8%);
    --color-black-300: hsl(214, 21%, 6%);
    --color-black-400: hsl(210, 21%, 6%);
    --color-black-500: hsl(216, 22%, 4%);
    --color-black-600: hsl(220, 18%, 3%);
    --color-black-700: hsl(220, 27%, 2%);
    --color-black-800: hsl(180, 20%, 1%);
    --color-blue-100: hsl(214, 95%, 93%);
    --color-blue-200: hsl(213, 97%, 87%);
    --color-blue-300: hsl(212, 96%, 78%);
    --color-blue-400: hsl(213, 94%, 68%);
    --color-blue-500: hsl(217, 91%, 60%);
    --color-blue-600: hsl(221, 83%, 53%);
    --color-blue-700: hsl(224, 76%, 48%);
    --color-blue-800: hsl(226, 71%, 40%);
    --color-blue-900: hsl(224, 64%, 33%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-weight: 400;
    line-height: 1.5;
    height: -webkit-fill-available;
    color: #fff;
    /*background-image: linear-gradient(to right, rgba(164,46,87,1), rgba(42,17,78,1));*/
}


a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.section {
    margin: 0 auto;
    padding: 6rem 0 1rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.banner-inner .heading-xl {
    font-size: 5rem;
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #fff;
    width: 90%;
}

.heading-lg {
    font-family: inherit;
    font-size: clamp(2.179rem, 5vw, 3.176rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.heading-md {
    font-family: inherit;
    font-size: clamp(1.794rem, 4vw, 2.379rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
}

.heading-sm {
    font-family: inherit;
    font-size: clamp(1.476rem, 3vw, 1.782rem);
    font-weight: 600;
    line-height: 1.5;
}

.heading-xs {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.5;
}

.paragraph {
    font-size: 14px;
    color: #ddd;
    width: 80%;
}

.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    outline: none;
    border: none;
    border-radius: 0.25rem;
    text-transform: unset;
    transition: all 0.3s ease-in-out;
}

.btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
}

.btn-darken {
    padding: 0.75rem 2rem;
    color: #000;
    background: #fff !important;
    box-shadow: var(--shadow-medium);
    border-radius: 50px;
}

.btn-neutral {
    padding: 0.75rem 2rem;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}

.banner-column .btn img {
    transform: translateX(0px);
    display: inline-block;
}

.banner-column .btn:hover {
    background: #e6ac89;
}

    .banner-column .btn:hover img {
        transform: translateX(10px);
        transition: .5s all;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
}

    .header.on-scroll {
        background: var(--color-black-300);
        box-shadow: var(--shadow-medium);
    }

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.25rem;
    width: 100%;
    height: 4.25rem;
    margin: 0 auto;
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1px;
    color: var(--color-white-100);
    text-transform: uppercase;
}

.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease-in-out;
}

    .menu.is-active {
        top: 0;
        width: 100%;
        height: auto;
    }

.menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
}

.menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white-100);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-block {
    display: inline-block;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    margin-left: auto;
    padding: 0.65rem 1.5rem;
    border-radius: 3rem;
    text-transform: capitalize;
    color: var(--color-white);
    background-color: var(--color-blue-600);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 48rem) {
    .menu {
        position: relative;
        top: 0;
        width: auto;
        height: auto;
        padding: 0rem;
        margin-left: auto;
        background: none;
        box-shadow: none;
    }

    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 2rem;
        margin: 0 auto;
    }

    .menu-link {
        text-transform: capitalize;
    }

    .menu-block {
        margin-left: 2rem;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: -1;
    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}

@media only screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: var(--color-white-100);
    transition: 0.25s ease-in-out;
}

    .burger-line:nth-child(1) {
        top: 0px;
    }

    .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 70%;
    }

    .burger-line:nth-child(3) {
        top: 1rem;
    }

.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 3rem;
}

.main {
    position: relative;
    min-height: 100vh;
    z-index: 0;
    /*background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);*/
    background-image: linear-gradient(60deg, #a85155 0%, #007784 100%);
}

.banner-image {
    position: absolute;
    z-index: -0;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.1;
    z-index:-1;
}

.banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.75rem;
}

.banner-links {
    position: absolute;
    top: 10%;
    right: 1.5rem;
    display: grid;
    justify-items: center;
    row-gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 64rem) {
    .banner-links {
        opacity: 1;
        visibility: visible;
    }
}

.banner-links > * {
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--color-white-100);
}

.banner-links::before {
    position: absolute;
    content: "";
    top: -3rem;
    width: 4rem;
    height: 1.5px;
    transform: rotate(90deg);
    background: var(--color-white-100);
}

.banner-links::after {
    position: absolute;
    content: "";
    bottom: -3rem;
    width: 4rem;
    height: 2px;
    transform: rotate(90deg);
    background: var(--color-white-100);
}

.banner-links a:hover img {
    transform: scale(1.5);
    transition: .5s all;
}
/* Popups */
:root {
    --color-white: hsl(0, 0%, 100%);
    --color-black: hsl(0, 0%, 6%);
    --color-light: hsl(206, 33%, 96%);
    --color-night: hsl(214, 100%, 10%);
    --color-blue: hsl(225, 100%, 60%);
    --color-orange: hsl(9, 100%, 57%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


.btn {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    border: none;
    outline: none;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: all 0.35s ease-in-out;
}

.btn-large {
    padding: 1rem 3rem;
}

.btn-medium {
    padding: 0.65rem 1.75rem;
}

.btn-primary {
    border-radius: 3rem;
    color: var(--color-white);
    background: hsl(225, 100%, 60%);
    box-shadow: var(--shadow-medium);
}

.btn-lighten {
    border-radius: 3rem;
    color: var(--color-black);
    background: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.title {
    font-family: inherit;
    text-transform: unset;
    text-rendering: optimizeLegibility;
}

.title-medium {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: #000;
}

.loginform .formBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 1rem auto;
}

.loginform .form-control {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 1rem auto;
}

.loginform .form-input {
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: inherit;
    width: 100%;
    height: auto;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    border-bottom: 2px solid blue;
    color: #000;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.loginform .form-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 0 10px;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    z-index: -99;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease-in-out;
}

    .modal-overlay.visible {
        z-index: 999;
        opacity: 1;
        visibility: visible;
    }

    .modal-overlay .modal-content {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 100%;
        width: auto;
        height: auto;
        padding: 2.5rem;
        border: none;
        outline: none;
        border-radius: 0.25rem;
        color: #000;
        background: #fff;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.thumbnail .img-thumbnail {
    height: 164px;
}

#image-gallery-image {
    max-height: 400px;
}

.modal-overlay .modal-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-blue);
    box-shadow: var(--shadow-medium);
}

.modal-overlay .modal-icons i.fas {
    font-size: 2rem;
    line-height: 1.5;
}
/* Captcha */
.captchaBox {
    background-color: #ddd;
    display: flex;
    margin-bottom: 20px;
}

    .captchaBox .columns {
        flex: auto;
        width: 33.33%;
    }

.columns input[type="text"] {
    width: 97%;
    padding: 7px 10px;
    margin-top: 7px;
}

.columns .captchaimg {
    width: 84px;
    height: 29px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px;
    margin-left: 10px;
}

.columns .verifyImg {
}

.logintitle {
    padding: 10px 0;
}

.forgotbox {
    float: right;
    text-align: right;
    font-size: 13px;
}

.signup-reg {
    float: left;
    text-align: left;
    font-size: 13px;
}

#modalClose {
    margin-right: 10px;
}

.forgotbox a {
    color: #adadad;
}

    .forgotbox a:hover {
        color: #000;
    }

.signup-reg a {
    color: #adadad;
}

    .signup-reg a:hover {
        color: #000;
    }

/* Menu */
.navigation {
    height: 70px;
    background: transparent;
    z-index: 9;
    position: relative;
}

.brand {
    position: absolute;
    float: left;
    line-height: 70px;
    text-transform: uppercase;
    font-size: 1.4em;
}

    .brand a,
    .brand a:visited {
        color: #ffffff;
        text-decoration: none;
    }

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}

nav {
    float: right;
}

    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        background: rgba(0,0,0,.5);
    }

        nav ul li {
            float: left;
            position: relative;
        }

            nav ul li a,
            nav ul li a:visited {
                display: block;
                padding: 0 20px;
                line-height: 50px;
                color: #ffffff;
                text-decoration: none;
            }

                nav ul li a:hover,
                nav ul li a:visited:hover {
                    /*background: #2581DC;*/
                    /*background: #361d48;*/
                    background: #e8e8e870;
                    color: #000;
                }

                nav ul li a:not(:only-child):after,
                nav ul li a:visited:not(:only-child):after {
                    padding-left: 4px;
                    content: " ▾";
                }

            nav ul li ul li {
                max-width: 300px;
                min-width: 290px;
                width: 100%;
            }

                nav ul li ul li a {
                    padding: 15px;
                    line-height: 20px;
                }

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: rgb(0 0 0 / 29%);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #262626;
    height: 70px;
    width: 70px;
}

@media only screen and (max-width: 798px) {
    .nav-mobile {
        display: block;
    }

    nav {
        width: 100%;
        padding: 70px 0 15px;
    }

        nav ul {
            display: none;
        }

            nav ul li {
                float: none;
            }

                nav ul li a {
                    padding: 15px;
                    line-height: 20px;
                }

                nav ul li ul li a {
                    padding-left: 30px;
                }

    .nav-dropdown {
        position: static;
    }

    main {
        overflow: visible;
    }

    body {
        overflow-y: scroll !important;
    }

    .heading-xl {
        font-size: 2.5rem !important;
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .paragraph {
        font-size: 14px;
        color: #ddd;
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .banner-links {
        row-gap: 0.5rem;
        opacity: 1;
        visibility: visible;
        display: flex;
    }

        .banner-links > * {
            display: inline-block;
        }

    .banner-links {
        position: relative;
        text-align: center;
        margin: 0 auto;
        right: 0;
        top: 0;
    }

        .banner-links::before {
            content: "";
            top: -1rem;
            width: 4rem;
            height: 1.5px;
            transform: rotate(180deg);
            left: 0;
            right: 0;
            margin: 0 auto;
        }

        .banner-links::after {
            content: "";
            bottom: -1rem;
            width: 4rem;
            height: 1.5px;
            transform: rotate(180deg);
            left: 0;
            right: 0;
            margin: 0 auto;
        }

        .banner-links > * {
            font-size: 2.25rem;
            line-height: 1.25;
            padding: 0px 10px;
        }

    .banner-column .btn {
        margin: 0 auto;
    }

    .modal-overlay {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 90%;
    }
}

@media screen and (min-width: 799px) {
    .nav-list {
        display: block !important;
    }
}




#nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

    #nav-toggle span,
    #nav-toggle span:before,
    #nav-toggle span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 5px;
        width: 35px;
        background: #ffffff;
        position: absolute;
        display: block;
        content: "";
        transition: all 300ms ease-in-out;
    }

        #nav-toggle span:before {
            top: -10px;
        }

        #nav-toggle span:after {
            bottom: -10px;
        }

    #nav-toggle.active span {
        background-color: transparent;
    }

        #nav-toggle.active span:before, #nav-toggle.active span:after {
            top: 0;
        }

        #nav-toggle.active span:before {
            transform: rotate(45deg);
        }

        #nav-toggle.active span:after {
            transform: rotate(-45deg);
        }

article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}
/* Inner page design */
.nav-inner {
    background-color: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

    .nav-inner nav ul li a, .nav-inner nav ul li a:visited {
        color: #000;
    }

    .nav-inner .nav-dropdown {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }

/* Preheader */
.preheader {
    height: 35px;
    line-height: 35px;
    background-color: #485563;
}

    .preheader a {
        color: #fff;
    }

/* Page Inner */
.page-title {
    background-color: #cae1fb;
    padding: 10px 0;
    color: #000;
    font-weight: 500;
}

    .page-title a {
        color: #000;
    }

.subhead-page h3 {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    text-align: center !important;
}

.subhead-page {
    position: relative;
    padding: 10px 0;
}

    .subhead-page::after {
        width: 120px;
        height: 3px;
        background-color: #cadbf6;
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        margin: 0 auto;
        right: 0;
    }

/* Search Destinations */
.input-container {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.table4 td {
    width: 25%;
}

.form-captcha {
    width: 30%;
    min-width: 320px;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: .3rem;
    box-shadow: 0 0 4px #ddd;
}

.captcha-title {
    display: block;
    font-weight: 500;
    font-size: 20px;
}

.captchaimg {
    display: block;
    margin-bottom: 20px;
}

.table .form-control {
    appearance: auto !important;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
/* Home page Footer */
.homepage-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    text-align: center;
    color: #fff;
    background-color: #705f66;
}

    .homepage-footer img {
        display: inline-block;
    }

.inner-footer {
    height: 35px;
    text-align: center;
    color: #fff;
    background-color: #485563;
}

    .inner-footer img {
        display: inline-block;
    }

.container {
   /* width: 95% !important;*/
    max-width: 95% !important;
    margin: 0 auto;
}
/* Wrapper */
.wrapper {
   /* height: 100%;
    min-height: 100vh;*/
    height: max-content;
    min-height: inherit;
}
/* Gallery */
.btn:focus, .btn:active, button:focus, button:active {
    outline: none !important;
    box-shadow: none !important;
}

#image-gallery .modal-footer {
    display: block;
}

.thumb {
    margin-top: 15px;
    margin-bottom: 15px;
}
.thumb a img {
 width:100%;height:100%;
}
#image-gallery {
    z-index: 999999;
}

    #image-gallery .modal-content {
        width: 100% !important;
    }

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

#image-gallery .close {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    float: right;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-header .close span {font-size:30px;}
/* Rules Page design */
.choiceOption {
    border: 4px solid #ffb700;
    border-radius: 5px;
}

.columngap {
    border-right: 4px solid #ffb700;
    padding: 10px;
    position: relative;
}

    .columngap:last-child {
        border-right: 4px solid transparent;
    }

.selectDrop-down {
    margin: 0 auto;
    text-align: center;
}

    .selectDrop-down select {
        display: inline-block;
        width: 100%;
        border: 0;
        padding: 10px 10px 10px 30px;
        border-radius: 50px;
        background-color: transparent;
    }

.choiceOption input {
    display: inline-block;
    width: 100%;
    border: 0;
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    background-color: transparent;
}

    .selectDrop-down select:hover, .selectDrop-down select:focus,
    .choiceOption input[type="text"]:hover, .choiceOption input[type="text"]:focus, .choiceOption input[type="text"]:focus-visible {
        border: 0 !important;
        outline: none;
        box-shadow: 0 0 0px transparent !important;
    }

.btn-search {
    border-radius: 50px !important;
    padding: 8px 20px !important;
    width: 100%;
}

.fieldicon {
    position: absolute;
    left: 6px;
    top: 15px;
}

.innerSection {
    padding: 10px;
}

.rules-colum {
    display: flex;
}

.rulescontainer {
    border: 1px solid #ddd;
    margin: 20px 0;
}

.innerSection:first-child {
   /* border-right: 1px solid #ddd;*/
}

.innerSection ol {
    margin: 0;
    padding: 0;
}

    .innerSection ol li {
        list-style: decimal;
        border-bottom: 1px dashed #556a7f;
        list-style-position: inside;
        padding: 5px 0px 0px 5px;
    }

        .innerSection ol li:last-child {
           /* border-bottom: 0 !important;*/
        }

.receiptSubHeading3 {
    padding: 10px 0;
    margin-bottom: 20px;
    position: relative;
}

.rulesBody {
    padding: 0 !important;
}

.receiptSubHeading3 h3 {
    display: inline-block;
    font-size: 15px;
    padding: 0;
    margin: 0;
    background-color: #556a7f;
    padding: 10px 20px;
    color: #fff;
}

.receiptSubHeading3:after {
    content: '';
    height: 5px;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #b5bdc5;
}
/* Gallery Album */
.gallery-album-row .thumbnail {
    text-align:center;
    color:#000;
}
.gallery-album-row a.thumbnail {
  display:block;
  width:100%;height:200px;overflow:hidden;
}.gallery-album-row a.thumbnail img{
  width:100%;height:200px;overflow:hidden;
  display: inline-block;object-fit: cover;border: 20px solid rgba(225, 225, 225, 0.1);
}
 .gallery-album-row a.thumbnail img:hover {
        -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);   transition: transform .2s;
        }