
/*
--------------------------
- Default Typography
--------------------------
*/
@property --primary-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #C6414B;
}
@property --on-primary-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #FFFFFF;
}
@property --dark-grey {
  syntax: "<color>";
  inherits: false;
  initial-value: #3D3D3D;
}
@property --soft-grey {
  syntax: "<color>";
  inherits: false;
  initial-value: #707070;
}


.playfair-display-w400 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: 'Ubuntu', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #000;
    letter-spacing: 1.5px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: inherit;
    font-family: 'Ubuntu', sans-serif;
}

h1 {
    font-size: 36px;
    line-height: 70px;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

h2 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 0px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0px;
}

h4 {
    font-size: 20px;
    line-height: 27px;
}

h5 {
    font-size: 16px;
    line-height: 24px;
}

h6 {
    font-size: 14px;
    line-height: 24px;
}

p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 28px;
    margin: 0;
}

p img {
    margin: 0;
}

span {
    font-family: 'Ubuntu', sans-serif;
}


/* em and strong */

em {
    font: 15px/30px;
}

strong,
b {
    font: 15px/30px;
}

small {
    font-size: 11px;
    line-height: inherit;
}


/*  blockquotes */

blockquote {
    border-left: 0 none;
    font-family: 'Ubuntu', sans-serif;
    margin: 10px 0;
    padding-left: 40px;
    position: relative;
}

blockquote::before {
    color: #4e5665;
    content: "ï„";
    font-family: FontAwesome;
    font-size: 36px;
    left: 20px;
    line-height: 0;
    margin: 0;
    opacity: 0.5;
    position: absolute;
    top: 20px;
}

blockquote p {
    font-style: italic;
    padding: 0;
    font-size: 18px;
    line-height: 36px;
}

blockquote cite {
    display: block;
    font-size: 12px;
    font-style: normal;
    line-height: 18px;
}

blockquote cite:before {
    content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited {
    color: #8B9798;
    border: none
}


/* abbreviations */

abbr {
    color: #444;
    font-weight: 700;
    font-variant: small-caps;
    text-transform: lowercase;
    letter-spacing: .6px;
}

abbr:hover {
    cursor: help;
}


/* links */

a,
a:visited {
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: 0;
}

a:hover,
a:active {
    color: #ffb607;
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
    color: #FFFFFF;
}

p a,
p a:visited {
    line-height: inherit;
    outline: 0;
}

a.active {
    color: #FFFFFF!important;
}


/* list */

ul,
ol {
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0;
}

ul {
    margin: 0;
    list-style-type: none;
}

ol {
    list-style: decimal;
}

ol,
ul.square,
ul.circle,
ul.disc {
    margin-left: 0px;
}

ul.square {
    list-style: square outside;
}

ul.circle {
    list-style: circle outside;
}

ul.disc {
    list-style: disc outside;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 0;
}

ul ul li,
ul ol li,
ol ol li,
ol ul li {
    margin-bottom: 0px;
}

li {
    line-height: 18px;
    margin-bottom: 0px;
}
/* definition list */

dl {
    margin: 12px 0;
}

dt {
    margin: 0;
    color: #11ABB0;
}

dd {
    margin: 0 0 0 20px;
}

/*-----------------------------------------------------------------------------------
DEFAULT
-----------------------------------------------------------------------------------*/

/*google font*/
@import url('https://fonts.googleapis.com/css?family=Exo+2:400,500,600,700,800,900|Ubuntu:400,500,700');

/* Your default CSS. */
*{margin: 0;padding:0;box-sizing: border-box;}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: 0;
}

html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
    z-index: 0;
    background-color: #fff;
    background-image: url("../bpm-images/bg/srcki_bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 1.5px;
    color: #888;
    line-height: 30px;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
    body {
        background-image: none;
        background-attachment: scroll;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background-image: url("../bpm-images/bg/srcki_bg.png");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        transform: translateZ(0);
    }
}

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

button,
input,
textarea {
    letter-spacing: 1px;
}

/*custome css*/

/*----------------------------
  14. Basic margin padding
-----------------------------*/
a.scrollup-btn{
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 58px;
    font-size: 29px;
    color: orangered;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-animation: zumping-btn 1s linear 0s infinite;
    -o-animation: zumping-btn 1s linear 0s infinite;
    animation: zumping-btn 1s linear 0s infinite;
}
a.scrollup-btn.visible{
    opacity: 1;
    visibility: visible;
}
@keyframes zumping-btn{
    0%{
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    50%{
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    100%{
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

a.scrollup-btn:hover{
    background-color: #ffb607;
    color: #fff;
}

/*--------------------------
  17. Padding top
---------------------------*/
.pt--10 { padding-top: 10px; }
.pt--15 { padding-top: 15px; }
.pt--20 { padding-top: 20px; }
.pt--30 { padding-top: 30px; }
.pt--40 { padding-top: 40px; }
.pt--50 { padding-top: 50px; }
.pt--60 { padding-top: 60px; }
.pt--70 { padding-top: 70px; }
.pt--80 { padding-top: 80px; }
.pt--90 { padding-top: 90px; }
.pt--100 { padding-top: 100px; }
.pt--110 { padding-top: 110px; }
.pt--120 { padding-top: 120px; }
.pt--130 { padding-top: 130px; }
.pt--140 { padding-top: 140px; }
.pt--150 { padding-top: 150px; }
.pt--160 { padding-top: 160px; }
.pt--170 { padding-top: 170px; }
.pt--180 { padding-top: 180px; }
.pt--190 { padding-top: 190px; }

/*------------------------
  18. Padding bottom
---------------------------*/
.pb--10 { padding-bottom: 10px; }
.pb--15 { padding-bottom: 15px; }
.pb--20 { padding-bottom: 20px; }
.pb--30 { padding-bottom: 30px; }
.pb--40 { padding-bottom: 40px; }
.pb--50 { padding-bottom: 50px; }
.pb--60 { padding-bottom: 60px; }
.pb--70 { padding-bottom: 70px; }
.pb--80 { padding-bottom: 80px; }
.pb--90 { padding-bottom: 90px; }
.pb--100 { padding-bottom: 100px; }
.pb--110 { padding-bottom: 110px; }
.pb--120 { padding-bottom: 120px; }
.pb--130 { padding-bottom: 130px; }
.pb--140 { padding-bottom: 140px; }
.pb--150 { padding-bottom: 150px; }
.pb--160 { padding-bottom: 160px; }
.pb--170 { padding-bottom: 170px; }
.pb--180 { padding-bottom: 180px; }
.pb--190 { padding-bottom: 190px; }


/*------------------------------
  19. Page section padding 
-------------------------------*/
.ptb--10 { padding: 10px 0; }
.ptb--20 { padding: 20px 0; }
.ptb--30 { padding: 30px 0; }
.ptb--40 { padding: 40px 0; }
.ptb--50 { padding: 50px 0; }
.ptb--60 { padding: 60px 0; }
.ptb--70 { padding: 70px 0; }
.ptb--80 { padding: 80px 0; }
.ptb--90 { padding: 90px 0; }
.ptb--100 { padding: 100px 0; }
.ptb--110 { padding: 110px 0; }
.ptb--120 { padding: 120px 0; }
.ptb--130 { padding: 130px 0; }
.ptb--140 { padding: 140px 0; }
.ptb--150 { padding: 150px 0; }
.ptb--160 { padding: 160px 0; }
.ptb--170 { padding: 170px 0; }
.ptb--180 { padding: 180px 0; }

/* padding none */
.pt--none { padding-top: 0!important; }
.pb--none { padding-bottom: 0!important; }
.ptb--none { padding: 0!important; }

.bg-img-1{
    background: #252525 url(../images/bg/contact-bg.jpg) center center/cover no-repeat;
}

.bg-img-2{
    background: #252525 url(../images/slider/slider-bg2.jpg) center center/cover no-repeat;
}

.pos-rel{
    position: relative;
    z-index: 1;
}
.bg-gray{
    background-color: #f9f9f9;
}
.bg_light{
  background-color: transparent;
}
.bg-red{
  background-color: #C6414B;
}
.bg_dark{
    background-color: #1F2229;
}
.bg_black{
    background-color: #191A1F;
}
.bg-grayblack{
    background-color: #0e0e0e;
}
.bg-black{
    background-color: #000;
}
.text-theme{
    color: #ffcb2a;
}
.bg-theme{
    background-color: #ffcb2a;
}
/* scroll top */
a.scroll_to_top {
    position: fixed;
    right: 28px;
    bottom: 45px;
    z-index: 999;
    height: 50px;
    width: 50px;
    background: #C6414B;
    border-radius: 50%;
    font-size: 30px;
    color: #444;
    opacity: 0;
    text-align: center;
    line-height: 50px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
a.scroll_to_top.active{
    opacity: 2;
}

/*prealoder css*/
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    height: 100%;
    width: 100%;
    display: flex;
    background-color: #fff;
}
#preloader  .loader{
    margin: auto;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #444;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: ldrrotating 1000ms linear 0s infinite;
}
@keyframes ldrrotating{
    0%{
        transform: rotate(0deg)scale(1);
    }
    50%{
        transform: rotate(180deg)scale(1.1);
    }
    100%{
        transform: rotate(360deg)scale(1);
    }
}
border-box {
    margin-right: 3rem;
    margin-left: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
/*============================================
 Header Area
*=============================================*/

.text-shadow {   
text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
}
 
.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}


.header-area {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 20px 0px;
    background: #C6414B;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
}

.sticky-menu {
    background-color: rgba(214, 45, 71, 0.9);
}

.logo a {
    display: inline-block;
}

.logo a img {
    max-width: 120px;
}

.main-menu nav ul {
    text-align: center;
    margin: 0;
}

.main-menu nav ul li {
    display: inline-block;
}

.main-menu nav ul li a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    margin-left: 15px;
    position: relative;
    padding-left: 10px;
    text-transform: capitalize;
}

.main-menu nav ul li:hover>a, .main-menu nav ul li a:hover, .main-menu nav ul li.active a {
    color: #FFFFFF;
}

/* mobile menu */

.slicknav_menu {
    padding: 0;
    margin-top: 15px;
}

.slicknav_menu .slicknav_menutxt {
    display: none;
}

.slicknav_menu {
    background: transparent;
    margin-top: 21px;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #C6414B;
    height: 2px;
    width: 19px;
    margin: 3px 0px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.slicknav_btn {
    background-color: transparent;
    position: relative;
    margin-top: -57px;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(1px, 7px);
    transform: rotate(45deg) translate(1px, 7px);
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-6px);
    transform: rotate(-45deg) translateY(-6px);
}

.slicknav_nav {
    background: #C6414B;
    border: 3px solid #000;
    margin: 0;
    padding: 6px 0px;
}

.slicknav_nav a:hover {
    background: #fefefe none repeat scroll 0 0;
    border-radius: 1;
}

.slicknav_nav a {
    font-size: 14px;
    letter-spacing: 0.01em;
    border: 1px solid #000;
}

.slicknav_nav .slicknav_arrow {
    float: right;
}

.slicknav_nav .slicknav_row:hover, .slicknav_nav .slicknav_row:hover .slicknav_arrow {
    border-radius: 0;
    background-color: #3c3333;
}
.nav-brand {
    margin: 0;
    padding: 0;
    display: block;
}
.nav-brand h2 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 10px;
    text-transform: uppercase;
}
/*============================================
    END Header Area
*=============================================*/

/*============================================
    1.2 Hero Area
*=============================================*/

.hero-area {
    min-height: 635px;
}

.full-height {
    height: 100vh;
}

.hero-content span {
    font-size: 19px;
    letter-spacing: 0;
    word-spacing: 3px;
    font-weight: 400;
    display: block;
    line-height: 21px;
    text-transform: uppercase;
    color: #ffcc2f;
}

.hero-content h2 {
    font-size: 62px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 65px;
    margin: 8px 0px 30px;
    font-weight: 900;
    font-family: 'Exo 2', sans-serif;
}

.hero-content p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
}

.hero-content a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0;
    background: #ffba00;
    padding: 12px 55px;
    border-radius: 33px;
    margin-top: 52px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-content a:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    background-color: #fff;
    color: #ffcb2a;
}

/* scrolldown */

a.scrl_me_down {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 5%;
    z-index: 9;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.5s ease 1.9s;
    transition: all 0.5s ease 1.9s;
}

a.scrl_me_down span {
    display: inline-block;
    color: #fff;
    font-size: 55px;
    -webkit-animation: scrooldown 1000ms linear 0s infinite;
    animation: scrooldown 1000ms linear 0s infinite;
}

@-webkit-keyframes scrooldown {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes scrooldown {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/*============================================
    END Hero Area
*=============================================*/

/*============================================
    1.3 About Area
*=============================================*/
.container {
    overflow: hidden;
}
.abt-thumb {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 12px;
}

.abt-thumb img {
    max-width: 100%;
}

.abt-content {
    border-top: 15px solid #efeaea;
    border-left: 15px solid #efeaea;
    padding: 40px 15px 15px 40px;
    margin-bottom: 100px;
}

.title-back {
    display: block;
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 900;
    color: #f3eeee;
    letter-spacing: 0;
    margin-bottom: -20px;
    position: relative;
    z-index: -1;
    font-family: 'Exo 2', sans-serif;
    -webkit-animation: upanddown 2000ms linear 0s infinite;
            animation: upanddown 2000ms linear 0s infinite;
}

@-webkit-keyframes upanddown {
    0% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes upanddown {
    0% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

.abt-content h2 {
    display: block;
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffba00;
    letter-spacing: 0;
    line-height: 52px;
    margin-bottom: 27px;
    font-family: 'Exo 2', sans-serif;
}

.abt-content p {
    color: #666;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 27px;
    margin-bottom: 15px;
}

/*============================================
    END About Area
*=============================================*/

/*============================================
    1.4 Classes Area
*=============================================*/
.title-under {
    border-bottom: 1px solid #444;
}

.title-under2 {
  border-bottom: 1px solid #fff;
}
.title-over {
  margin-top: 50px;
  border-top: 1px solid #444;
}
.title-over2 {
  margin-top: 50px;
  border-top: 1px solid #fff;
}
.section-title {
    background: transparent;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

#timetable .section-title {
    background: #C6414B;
}

#city .section-title {
    background: #C6414B;
}

#venue .section-title {
    background: #C6414B;
}

#price .section-title {
    background: #C6414B;
}

#djs .section-title {
    background: #C6414B;
}

#event .section-title {
    background: #C6414B;
}

#contact .section-title {
    background: #C6414B;
}

#terms .section-title {
    background: #C6414B;
}

#privacy .section-title {
    background: #C6414B;
}

.program-image {
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

.event-disclaimer {
    margin-top: 30px;
}

.event-disclaimer p,
.policy-copy p,
.program-note p {
    margin-bottom: 14px;
}

.policy-copy ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto 14px;
}

.policy-copy {
    text-align: center;
}

.program-note {
    text-align: center;
    padding: 10px 0 30px;
}

.program-note p {
    color: var(--dark-grey);
    font-size: 20px;
    line-height: 34px;
}

.program-note strong {
    color: #C6414B;
}

.section-subtitle {
  color: #C6414B;
  font-size: 10px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.section-title span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding-top: 10px;
    color: #FFFFFF;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 32px;
    color: #444;
    text-transform: uppercase;
}

.section-title p {
    margin-top: 15px;
    font-size: 19px;
    letter-spacing: 0;
    color: #999;
}

.section-title.title-over p {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 0;
  color: #999;
}

.section-title.title-over p span {
  font-size: 14px;
  color: #FF746C;
}
/*============================================
    END Classes Area
*=============================================*/

.social li {
    display: inline-block;
}

.social li a {
    display: block;
    font-size: 36px;
    color: #444;
    margin-right: 10px;
}

.social li a:hover {
    color: #C6414B;
}
 
/*============================================
    1.9 Contact
*=============================================*/

.contact-content {
    max-width: 500px;
    width: 100%;    
    padding: 30px 40px;
    border: #C6414B;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-content a, 
.contact-content ul li {
    font-size: 19px;
    color: #555;
    letter-spacing: 0;
    line-height: 30px;
    margin: 32px 0px;
}

#terms .contact-content ul {
    text-align: center;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
}

#terms .contact-content ul li {
    display: inline-block;
    text-align: left;
    margin: 10px 0;
}

.contact-content ul li i {
    width: 40px;
    font-size: 37px;
    color: #C6414B;
    margin-right: 20px;
    float: left;
    vertical-align: middle;
}
#google_map {
    height: 330px;
    border-radius: 5px;
    border: 10px solid #fff;
    box-shadow: 0px 0px 5px rgba(00,0,0,0.05);
}

/*============================================
    END Contact
*=============================================*/

/*============================================
    1.10 Footer Content
*=============================================*/

.footer-area {
    background-color: #1F2229;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
}

/*============================================
    END Footer Content
*=============================================*/

.slider-area {
    height: 100vh;
}

.misc-content {
    position: relative;
    text-align: center;
    padding: 150px;
}

.misc-content h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 70px;
    color: #C6414B;
    font-weight: 900;
    line-height: 70px;
    text-transform: uppercase;
}
.misc-content h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 36px;
    color: #fff;
    font-weight: 800;
    line-height: 48px;
    text-transform: uppercase;
}
.misc-content h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 30px;
    color: #fff;
    font-weight: 800;
    line-height: 36px;
    text-transform: uppercase;
}
.misc-content a {
    display: inline-block;
    height: 70px;
    width: 70px;
    background: #ffcc2f;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    margin-top: 70px;
    font-size: 25px;
    padding-left: 6px;
    color: #fff;
}

.zs-enabled .zs-slideshow .zs-bullets {
    bottom: 80px;
    display: none;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet {
    background-color: #fff;
    border: none;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

canvas#fireflyLayer {
    z-index: 1!important;
}

/* abt-misc-area */

.abt-misc-area {
    margin-top: -100px;
    padding: 100px 0px 100px;
    position: relative;
    z-index: 1;
    /*background: url(../bpm-images/bg/random.jpg) center/cover no-repeat;*/
    background: transparent;
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
}

.abt-misc-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: transparent;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

.abt-msc-content h2 {
    font-size: 53px;
    color: #C6414B;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 34px;
    font-family: 'Exo 2', sans-serif;
    text-align: center;
}

.abt-msc-content h4 {
    color: #FF746C;
    font-size: 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.13em;
}

.abt-msc-content p {
    letter-spacing: 0;
    font-size: 16px;
    color: #707070;
    text-align: justify;
}

.msc-abt-right ul li {
    display: block;
    font-size: 15px;
    color: #707070;
    letter-spacing: 0;
    padding-left: 19px;
    position: relative;
    margin-bottom: 14px;
}

.msc-abt-right ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 10px;
    width: 10px;
    background: #707070;
    border-radius: 50%;
}


.abt-msc-content ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: table;
}

.abt-msc-content ul li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: var(--dark-grey);
  letter-spacing: 0;
  margin: 0 12px 14px;
}

.abt-msc-content li:before {
  content: '♡';
  margin-right: 10px;
  font-size: 18px;
  line-height: 1;
}

.msc-abt-right h4 {
    color: #FF746C;
    font-size: 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.13em;
}

.landing-area {
  margin-top: 100px;
  padding: 50px 0px 50px;
  display: block;
  position: relative;
  clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
}

/*landing area*/
.landing-content {
  position: relative;
  text-align: center;
  padding: 50px;
}

.landing-content h1 {
  color: #C6414B;
  font-size: 70px;
  font-weight: 800;
  line-height: 80px;
  text-align: center;
}

.landing-area .playfair-display-w400 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
}

.landing-content h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #C6414B;
  margin-bottom: 7px;
  letter-spacing: 0;
  line-height: 60px;
  font-family: 'Exo 2', sans-serif;
}

.landing-content h3 {
  color: #000;
  font-size: 27px;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 42px;
  margin-bottom: 45px;
  font-family: 'Exo 2', sans-serif;
}

.landing-content h4 {
  font-size: 22px;
  color: #707070;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 40px;
}

.landing-content h4 span {
  color: #ff746c;
  font-family: 'Exo 2', sans-serif;
}

.landing-content p {
  font-size: 16px;
  color: #707070;
  letter-spacing: 0;
  line-height: 28px;
}

.landing-content a {
  display: inline-block;
  font-size: 17px;
  color: #fff;
  border-radius: 5px;
  letter-spacing: 0;
  font-weight: 700;
  background: #C6414B;
  padding: 10px 35px;
  margin: 53px 0px 79px;
}

.landing-content a:hover {
  color: #fff;
  box-shadow: 0px 3px 17px rgb(141, 141, 141);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}


/* upcooming-events */

.upv-content {
    text-align: center;
}

.upv-content h2 {
    font-size: 44px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #C6414B;
    margin-bottom: 7px;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 42px;
    font-family: 'Exo 2', sans-serif;
}

.upv-content h3 {
    color: #707070;
    font-size: 27px;
    letter-spacing: 0;
    line-height: 42px;
    margin-bottom: 45px;
    font-family: 'Exo 2', sans-serif;
}

.upv-content h4 {
    font-size: 22px;
    color: #707070;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 40px;
}

.upv-content h4 span {
    color: #C6414B;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 20px;
}

.upv-content p {
    font-size: 18px;
    color: #707070;
    letter-spacing: 0;
    line-height: 28px;
}

.upv-content a {
    display: inline-block;
    font-size: 17px;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 0;
    font-weight: 700;
    background: #C6414B;
    padding: 10px 35px;
    margin: 40px 0px 20px;
}

.upv-content a:hover {
    color: #fff;    
    box-shadow: 0px 3px 17px rgb(141, 141, 141);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
}

.count-down {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.count-down .cdown {
    margin: 0px 15px;
    display: inline-block;
    text-align: center;
    border: 5px solid #C6414B;
    height: 150px;
    width: 150px;
    border-radius: 10%;
    padding-top: 30px;
}

.count-down .cdown .time-count {
    font-size: 50px;
    line-height: 55px;
    color: var(--dark-grey);
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
}

.count-down .cdown p {
    color: var(--dark-grey);
}

/* facts-area */

.msc-title.section-title h1 {
    font-size: 39px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    
}

.msc-title.section-title h2 {
    font-size: 39px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    
}

.msc-title.section-title h3 {
    font-size: 29px;
    font-weight: 700;
    line-height: 38px;
    color: #C6414B;
    font-family: 'Exo 2', sans-serif;
    
}
/*accomodation area */
.card-body {
    text-align: center;
}
.card-body h4 {
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    font-size: 18px;
    color: #C6414B;
    font-weight: 900;
    line-height: 48px;
    text-transform: uppercase;
}

.card-body p {
    color: var(--dark-grey);
}
.card-body .hid {
    color: #C6414B;
    text-transform: uppercase;
}

.card-body a {
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0;
    border: 1px solid #C6414B;
    padding: 10px 31px;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: #C6414B;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 38px;
}

.card-body a:hover, .card-body a.active {
    color: #fff!important;
    background: #C6414B;
    box-shadow: 0px 3px 17px black;
}
.card-body {
    align-items: center;
    justify-content: center;
}
.card-body .table-sm{
  color: var(--dark-grey);
  margin: 10px;  
}
.card-body .table-sm th, td {
  border: 1px solid #ddd;
  text-align: center;
}
.card-body h3{
  color: #C6414B  ;
}

.card-body span{
  color: var(--dark-grey);
}

.bg_light .card-body span{
  color: var(--dark-grey);
}

.card-body ul li {
  display: block;
  font-size: 15px;
  text-align: left;
  color: var(--dark-grey);
  letter-spacing: 0;
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
}

.card-body ul li:before {
  content: '♡';
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  width: 10px;
}

.card .info {position: absolute;
left: 15px;
top: 10px;
border-left: 5px solid #fff;
padding: 10px 0px 10px 12px;
background: rgba(255, 255, 255, 0.9);
width: 95%;
-webkit-transform: translateX(-10px);
        transform: translateX(-10px);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}

.card .info h4 {
font-size: 19px;
letter-spacing: 0;
color: #202020;
font-weight: 500;
-webkit-transform: translateX(-10px);
        transform: translateX(-10px);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
}

.card .info span {     
font-size: 14px;
letter-spacing: 0;
color: #000;
font-weight: 300;
-webkit-transform: translateX(-10px);
        transform: translateX(-10px);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition: all 0.7s ease 0s;
transition: all 0.7s ease 0s;
}

.card:hover .info, .card:hover .info h4, .card:hover .info span {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
-webkit-transform: translateX(0px);
        transform: translateX(0px);
}
.card:hover .info h3 {
    text-align: center;
    color: #fd5f04;
    font-weight: 400;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.3)
}
.card:hover .info th {
    text-align: center;
}
.card:hover .info td {
    color: #000;
    font-weight: 300;
    text-align: center;
}
.card:hover .info span {
    text-align: center;
}

/* dark feature blog */

.bg_dark .blog-content h2 a {
    color: #e6e2e2;
}

.bg_dark .blog-content h2 a:hover {
    color: #ffcb2a;
}

.bg_dark .blog-content span {
    color: #cac7c7;
}


/* dark contact */

.contact-area.bg_dark .contact-content a, 
.contact-area.bg_dark .contact-content ul li {
    color: #fff;
}
/* Slider */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slide {
    filter:invert(100%);
    filter:grayscale(100%);
}

.lft {
    transform: perspective(900px) rotateY(30deg);
}
.rght {
    transform: perspective(400px) rotateY(-2deg);
}

.feat {
  text-align: center;
  align-content: center;
  justify-content: center;
  text-shadow: 2px 2px 2px #000000;
} 
.feat img {
margin-top: -40px;
margin-bottom: -100px;
}
.feat h2 {
  color: white;
  font-size: 36px;
  font-weight: 600;
  padding-top: 10px;
}
.feat span{
  color: white;
  font-size: 24px;
  font-weight: 600;
}
/* work-area */

.portfolio-menu {
    overflow: hidden;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.portfolio-menu h2 {
    font-size: 32px;
    letter-spacing: 0;
    color: #444;
    line-height: 41px;
    border-bottom: 5px solid #ddd;
}

.portfolio-menu .prt-menu button {
    background: transparent;
    border: none;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
    color: rgb(253, 253, 253);
    margin-left: 23px;
    border-right: 1px solid #ddd;
    padding-right: 31px;
    line-height: 19px;
    cursor: pointer;
    outline: none;
}

.portfolio-menu .prt-menu button.active {
    color: #fd5f04;
}

.work-item {
    margin-bottom: 30px;
    position: relative;
}

.work-item .info {
    position: absolute;
    left: 19px;
    bottom: 10px;
    border-left: 5px solid #fff;
    padding: 10px 0px 10px 12px;
    background: rgba(255, 255, 255, 0.9);
    width: 90%;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.work-item .info h4 {
    font-size: 19px;
    letter-spacing: 0;
    color: #000;
    font-weight: 500;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.work-item .info span {
    font-size: 14px;
    letter-spacing: 0;
    color: #000000;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.work-item:hover .info, .work-item:hover .info h4, .work-item:hover .info span {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
}
/* Workshops area */
.schedule{
    text-align: center;
  
}
.schedule h4{
    text-align: center;
    color: #C6414B;
 }
.schedule span{
    font-size: 10px;
    padding: 0;
    margin:0;
}
.schedule ul{
    padding: 5px 0px;
    margin:0;
}

.schedule p{
    padding: 5px;
    margin:0;
}

.yellow{
    color: rgb(255, 210, 0);
}
.orange{
    color: orange;
}
.red{
    color: rgb(201, 8, 8);
}
.blue{
    color: rgb(0, 132, 255);
}
.green{
    color:  rgb(52, 197, 22);
}
.primary-color-pink{
  color: #C6414B
}


.schedule-item {
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 5px 5px;
    position: relative;
    overflow: hidden;
}
.sch{
    display: flex;
    align-items: center;
    justify-content: center;
    border: #C6414B;
}

.sch-afternoon-social{
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 132, 255);
  border-radius: 5px;
}
.sch-evening-party{
  background-color: rgb(255, 255, 255);
  border: 1px solid #C6414B;
  border-radius: 5px;
}

.disclaimer p{
  color: #C6414B;
  font-size: 14px;
  padding-bottom: 20px;
}
.privacy-policy p{
  color: #ffffff;
  font-size: 10px;
  padding-bottom: 20px;
}

.ljubljana{
  background-image: url("/assets/bpm-images/bg/bg-ljubljana.jpeg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.dj-list{
    /*background-image: url("/assets/bpm-images/bg/djs.png");*/
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.dj-list h2{
  font-size: 30px;
    font-weight: 700;
    line-height: 48px;
    color: #C6414B;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    text-align: center;
}


.dj-list p{
    font-size: 16px;
    color: #3d3d3d;
}
.time{
    padding: 0px;    
}

/* app-cta-area */

.effectupdown {
    -webkit-animation: effectupdown 3000ms linear 0s infinite;
            animation: effectupdown 3000ms linear 0s infinite;
}

.effectupdown2 {
    -webkit-animation: effectupdown 3000ms linear 1s infinite;
            animation: effectupdown 3000ms linear 1s infinite;
}

@-webkit-keyframes effectupdown {
    0% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes effectupdown {
    0% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

/* pricing-area */



/* pricing-area */

.bg_dark .prc-button a{
    font-size: 17px;
    letter-spacing: 0;
    border: 1px solid #C6414B;
    padding: 10px 31px;
    border-radius: 3px;
    color: #C6414B;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 38px;

}
.bg_dark .prc-button .a:hover, .bg_dark .prc-button a.active{
  color: #fff!important;
    background: #C6414B;
    box-shadow: 0px 3px 17px #FFFFFF;
}

.bg_light .prc-button a{
  font-size: 17px;
  letter-spacing: 0;
  border: 1px solid #C6414B;
  padding: 10px 31px;
  border-radius: 3px;
  color: #C6414B;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 38px;

}
.bg_light .prc-button .a:hover, .bg_light .prc-button a.active{
color: #fff!important;
  background: #C6414B;
  box-shadow: 0px 3px 17px #FFFFFF;
}
/*----------pricing row-----------------*/

.prc-row {
  text-align: center;
  background: #f9f9f9;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 5px 0px;
  padding: 5px 0px;
}


.prc-row h2 {
  font-size: 29px;
  letter-spacing: 0;
  color: #4239bd;
  font-weight: 600;
  text-shadow: 2px 2px 2px #000000;
  margin-top: 10px;
  margin-bottom: 5px
}

.prc-row strong {
  font-size: 29px;
  letter-spacing: 0;
  color: #4239bd;
  font-weight: 700;
  display: block;
  margin: 5px;
  padding: 5px;
}

.prc-row strong sup {
  font-weight: 300;
  font-size: 20px;
}

.prc-row strong sub {
  font-weight: 300;
  color: #4239bd;
  font-size: 16px;
}

.prc-row a {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0;
  border: 1px solid #4a3fbf;
  padding: 10px 10px;
  border-radius: 3px;
  color: #4a3fbf;
  font-weight: 600;
  text-transform: capitalize;
  margin: 5px;
}

.prc-row a:hover, .prc-row a.active {
  color: #fff!important;
  background: #4a3fbf;
  box-shadow: 0px 3px 17px rgba(74, 63, 191, 0.7);
}

.prc-row:hover {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/*pricing-arean bg-red*/
.bg-red .prc-row {
  background: #FFFFFF;
  margin: auto;
  outline: 2px solid #FF746C;
  outline-offset: -10px; 
  margin-bottom: 10px;
}

.bg-red .prc-button a{
  display: inline-block;
    font-size: 17px;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 0;
    font-weight: 700;
    background: #C6414B;
    outline: 1px #FFF;
    padding: 10px 35px;
    margin: 40px 0px 20px;
}

.bg-red .prc-row:before {
  background: #ffcb2a;
}

.bg-red .prc-row strong {
  font-size: 36px;
  color: #C6414B;
}

.bg-red .prc-row strong sub {
  color: #d3d1ec;
}

.bg-red .prc-row h2 {
  color: #707070;
}

.bg-red .prc-row strong sup {
  font-size: 20px;
  display: inline-block;
  position: relative;
  top: auto;
}

.bg-red .prc-row a {
  color: #C6414B;
  border: 1px solid #C6414B;
  margin: 5px 0px;
}

.bg-red .prc-row a:hover, .bg-red .prc-row a.active {
  color: #fff!important;
  background: #C6414B;
  box-shadow: 0px 3px 17px #FF746C;
}

.bg-red .prc-row span {
  font-size: 8px;
  color: #f8cc3b;
  margin-bottom: 5PX; 
}

.bg-red .prc-line {
  padding-left: 30px;
  padding-right: 30px;
}
.bg-red .prc {
  padding: 0px 0px;
  margin: auto;
}


/* pricing-area bg_dark */

.bg_dark .prc-row {
  background: #FFFFFF;
  margin: auto;
  outline: 2px solid #FF746C;
  outline-offset: -10px; 
  margin-bottom: 10px;
}

.bg_dark .prc-button {
  margin: auto;
  outline-offset: -10px; 
  margin-bottom: 10px;
}

.bg_dark .prc-row:before {
  background: #ffcb2a;
}

.bg_dark .prc-row strong {
  font-size: 36px;
  color: #C6414B;
}

.bg_dark .prc-row strong sub {
  color: #d3d1ec;
}

.bg_dark .prc-row h2 {
  color: #707070;
}

.bg_dark .prc-row strong sup {
  font-size: 20px;
  display: inline-block;
  position: relative;
  top: auto;
}

.bg_dark .prc-row a {
  color: #C6414B;
  border: 1px solid #C6414B;
  margin: 5px 0px;
}

.bg_dark .prc-row a:hover, .bg_dark .prc-row a.active {
  color: #fff!important;
  background: #C6414B;
  box-shadow: 0px 3px 17px #FF746C;
}

.bg_dark .prc-row span {
  font-size: 8px;
  color: #f8cc3b;
  margin-bottom: 5PX; 
}

.bg_dark .prc-line {
  padding-left: 30px;
  padding-right: 30px;
}
.bg_dark .prc {
  padding: 0px 0px;
  margin: auto;
}
@media (min-width: 140px) and (max-width: 480px){
  .bg_dark .prc{
    padding: 5px 0px;
  }
}
/* pricing-area bg_light */
.bg_light .prc-row {
  background: #FFFFFF;
  margin: auto;
  border: 2px solid #C6414B;
  outline-offset: -10px; 
  margin-bottom: 10px;
}

.bg_light .prc-button {
  margin: auto;
  outline-offset: -10px; 
  margin-bottom: 10px;
}

.bg_light .prc-row:before {
  background: #ffcb2a;
}

.bg_light .prc-row strong {
  font-size: 36px;
  color: #C6414B;
}

.bg_light .prc-row strong sub {
  color: #d3d1ec;
}

.bg_light .prc-row h2 {
  color: #707070;
}

.bg_light .prc-row strong sup {
  font-size: 20px;
  display: inline-block;
  position: relative;
  top: auto;
}

.bg_light .prc-row a {
  color: #C6414B;
  border: 1px solid #C6414B;
  margin: 5px 0px;
}

.bg_light .prc-row a:hover, .bg_light .prc-row a.active {
  color: #fff!important;
  background: #C6414B;
  box-shadow: 0px 3px 17px #FF746C;
}

.bg_light .prc-row span {
  font-size: 8px;
  color: #f8cc3b;
  margin-bottom: 5PX; 
}

.bg_light .prc-line {
  padding-left: 30px;
  padding-right: 30px;
}
.bg_light .prc {
  padding: 0px 0px;
  margin: auto;
}
@media (min-width: 140px) and (max-width: 480px){
  .bg_light .prc{
    padding: 5px 0px;
  }
}

/*gradient backgrounds*/
.gold{
background: rgb(170,133,13);
background: linear-gradient(90deg, rgba(170,133,13,1) 0%, rgba(250,210,90,0.9864320728291317) 50%, rgba(170,133,13,1) 100%);
}

.silver{
background: rgb(120,120,120);
background: linear-gradient(90deg, rgba(120,120,120,1) 0%, rgba(240,240,240,1) 50%, rgba(120,120,120,1) 100%);
}

.bronze{
background: rgb(108,46,22);
background: linear-gradient(90deg, rgba(108,46,22,1) 0%, rgba(251,216,197,1) 50%, rgba(108,46,22,1) 100%);
}

.sat{
  background: rgb(255,110,2);
  background: linear-gradient(90deg, rgba(255,110,2,1) 0%, rgba(250,226,37,1) 50%, rgba(255,110,2,1) 100%); 
}

.fri{
  background: rgb(28,102,216);
  background: linear-gradient(90deg, rgba(28,102,216,1) 0%, rgba(175,200,240,1) 50%, rgba(28,102,216,1) 100%);
}

.sun{
  background: rgb(20, 165, 85);
  background: linear-gradient(90deg, rgb(20, 165, 85) 0%, rgb(175, 240, 184) 50%, rgba(20, 165, 85) 100%);
}

.sensual{
  background: rgb(168,4,4);
  background: linear-gradient(90deg, rgba(168,4,4,1) 0%, rgba(227,134,134,1) 50%, rgba(168,4,4,1) 100%);
}
.urban{
  background: rgb(34,143,139);
  background: linear-gradient(90deg, rgba(34,143,139,1) 0%, rgba(198,250,251,1) 50%, rgba(34,143,139,1) 100%);
}

.waves{
  background: rgb(180, 68, 8);
  background: linear-gradient(90deg, rgba(180,68,8,1) 0%, rgba(252,222,207,1) 50%, rgba(180,68,8,1) 100%);
}


/*----------end prc row----------------*/
#venue .container {
    overflow: inherit;
}
/*------------sponsors------------------*/
#sponsors {
    padding: 60px 0;
  }
  
  #sponsors .sponsors-wrap {
       margin-bottom: 30px;
  }
  
  #sponsors .sponsor-logo {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    height: auto;
  }
  
  #sponsors .sponsor-logo:hover img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  
  #sponsors img {
    transition: all 0.4s ease-in-out;
  }
/*-----------animations----------------*/

.clr-chng {
  color: white;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-animation:colorchange 10s infinite alternate;
}

  @-webkit-keyframes colorchange {
    0% {       
      color: white;
    }     
    10% {      
      color: rgb(250, 223, 141);
    }      
    20% {        
      color: rgb(250,210,90);
    }      
    30% {        
      color: rgb(177, 154, 79);
    }      
    40% {      
      color: rgb(170,133,13);
    }  
    50% {        
      color: rgb(146, 115, 13);
    }      
    60% {      
      color: rgb(170,133,13);
    }      
    70% {      
      color: rgb(177, 154, 79);
    }
    80% {
   
      color: rgb(250,210,90);
    }      
    90% {
      color: rgb(250, 223, 141);
    }   
    100% {        
      color: white;
    }
  }
.fade-in {
	-webkit-animation: fade-in 1.5s ease-in both;
	        animation: fade-in 1.5s ease-in both;
}
 @-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.sliding-djs {
  background: transparent;/*background: transparent url(../bpm-images/bg/djs.png) repeat-x 50% 0;*/
  animation: infinite-shift-left 5000s linear;
}     

.sliding-con {
  background: transparent;/*background: transparent url(../bpm-images/bg/contact.png) repeat-x 50% 0;*/
  animation: infinite-shift-left 5000s linear;
}

.sliding-pri {
  background: transparent;/*background: transparent url(../bpm-images/bg/pricing.png) repeat-x 50% 0;*/
  animation: infinite-shift-left 5000s linear;
}

.sliding-ven {
  background: transparent;/*background: transparent url(../bpm-images/bg/venue.png) repeat-x 50% 0;*/
  animation: infinite-shift-left 5000s linear;
}

.sliding-djsc{
  background: transparent;/*transparent url(../bpm-images/bg/djsc.png) repeat-x 50% 0;*/
  animation: infinite-shift-left 5000s linear;
}

@keyframes infinite-shift-left {
  0% {
    background-position: 50000px;
  }
  100% {
    background-position: 0;
  }
}
/*------------------------------------------------------------------*/
.animated{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      -webkit-transform: scale3d(1.05, 1.05, 1.05);
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  
  @keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      -webkit-transform: scale3d(1.05, 1.05, 1.05);
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  
  .pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
  }

  
@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: scale3d(.3, .3, .3);
      transform: scale3d(.3, .3, .3);
    }
  
    20% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
    }
  
    40% {
      -webkit-transform: scale3d(.9, .9, .9);
      transform: scale3d(.9, .9, .9);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: scale3d(1.03, 1.03, 1.03);
      transform: scale3d(1.03, 1.03, 1.03);
    }
  
    80% {
      -webkit-transform: scale3d(.97, .97, .97);
      transform: scale3d(.97, .97, .97);
    }
  
    to {
      opacity: 1;
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  
  @keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: scale3d(.3, .3, .3);
      transform: scale3d(.3, .3, .3);
    }
  
    20% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
    }
  
    40% {
      -webkit-transform: scale3d(.9, .9, .9);
      transform: scale3d(.9, .9, .9);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: scale3d(1.03, 1.03, 1.03);
      transform: scale3d(1.03, 1.03, 1.03);
    }
  
    80% {
      -webkit-transform: scale3d(.97, .97, .97);
      transform: scale3d(.97, .97, .97);
    }
  
    to {
      opacity: 1;
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  
  .bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
  }
  
  @-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -3000px, 0);
      transform: translate3d(0, -3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, 25px, 0);
      transform: translate3d(0, 25px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, 5px, 0);
      transform: translate3d(0, 5px, 0);
    }
  
    to {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -3000px, 0);
      transform: translate3d(0, -3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, 25px, 0);
      transform: translate3d(0, 25px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, 5px, 0);
      transform: translate3d(0, 5px, 0);
    }
  
    to {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
  }
  
  @-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-3000px, 0, 0);
      transform: translate3d(-3000px, 0, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(25px, 0, 0);
      transform: translate3d(25px, 0, 0);
    }
  
    75% {
      -webkit-transform: translate3d(-10px, 0, 0);
      transform: translate3d(-10px, 0, 0);
    }
  
    90% {
      -webkit-transform: translate3d(5px, 0, 0);
      transform: translate3d(5px, 0, 0);
    }
  
    to {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-3000px, 0, 0);
      transform: translate3d(-3000px, 0, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(25px, 0, 0);
      transform: translate3d(25px, 0, 0);
    }
  
    75% {
      -webkit-transform: translate3d(-10px, 0, 0);
      transform: translate3d(-10px, 0, 0);
    }
  
    90% {
      -webkit-transform: translate3d(5px, 0, 0);
      transform: translate3d(5px, 0, 0);
    }
  
    to {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
  }
  
  @-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    from {
      opacity: 0;
      -webkit-transform: translate3d(3000px, 0, 0);
      transform: translate3d(3000px, 0, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(-25px, 0, 0);
      transform: translate3d(-25px, 0, 0);
    }
  
    75% {
      -webkit-transform: translate3d(10px, 0, 0);
      transform: translate3d(10px, 0, 0);
    }
  
    90% {
      -webkit-transform: translate3d(-5px, 0, 0);
      transform: translate3d(-5px, 0, 0);
    }
  
    to {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    from {
      opacity: 0;
      -webkit-transform: translate3d(3000px, 0, 0);
      transform: translate3d(3000px, 0, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(-25px, 0, 0);
      transform: translate3d(-25px, 0, 0);
    }
  
    75% {
      -webkit-transform: translate3d(10px, 0, 0);
      transform: translate3d(10px, 0, 0);
    }
  
    90% {
      -webkit-transform: translate3d(-5px, 0, 0);
      transform: translate3d(-5px, 0, 0);
    }
  
    to {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
  }
  
  @-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 3000px, 0);
      transform: translate3d(0, 3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, -5px, 0);
      transform: translate3d(0, -5px, 0);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 3000px, 0);
      transform: translate3d(0, 3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, -5px, 0);
      transform: translate3d(0, -5px, 0);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  .bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
  }
  /*-----------------------------------------------------------------
  magnific popup
  -----------------------------------------------------------------*/
  /* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8; }
  
  .mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden; }
  
  .mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box; }
  
  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  
  .mfp-align-top .mfp-container:before {
    display: none; }
  
  .mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045; }
  
  .mfp-inline-holder .mfp-content,
  .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto; }
  
  .mfp-ajax-cur {
    cursor: progress; }
  
  .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }
  
  .mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in; }
  
  .mfp-auto-cursor .mfp-content {
    cursor: auto; }
  
  .mfp-close,
  .mfp-arrow,
  .mfp-preloader,
  .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  
  .mfp-loading.mfp-figure {
    display: none; }
  
  .mfp-hide {
    display: none !important; }
  
  .mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044; }
    .mfp-preloader a {
      color: #CCC; }
      .mfp-preloader a:hover {
        color: #FFF; }
  
  .mfp-s-ready .mfp-preloader {
    display: none; }
  
  .mfp-s-error .mfp-content {
    display: none; }
  
  button.mfp-close,
  button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation; }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0; }
  
  .mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace; }
    .mfp-close:hover,
    .mfp-close:focus {
      opacity: 1; }
    .mfp-close:active {
      top: 1px; }
  
  .mfp-close-btn-in .mfp-close {
    color: #333; }
  
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%; }
  
  .mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap; }
  
  .mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent; }
    .mfp-arrow:active {
      margin-top: -54px; }
    .mfp-arrow:hover,
    .mfp-arrow:focus {
      opacity: 1; }
    .mfp-arrow:before,
    .mfp-arrow:after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      left: 0;
      top: 0;
      margin-top: 35px;
      margin-left: 35px;
      border: medium inset transparent; }
    .mfp-arrow:after {
      border-top-width: 13px;
      border-bottom-width: 13px;
      top: 8px; }
    .mfp-arrow:before {
      border-top-width: 21px;
      border-bottom-width: 21px;
      opacity: 0.7; }
  
  .mfp-arrow-left {
    left: 0; }
    .mfp-arrow-left:after {
      border-right: 17px solid #FFF;
      margin-left: 31px; }
    .mfp-arrow-left:before {
      margin-left: 25px;
      border-right: 27px solid #3F3F3F; }
  
  .mfp-arrow-right {
    right: 0; }
    .mfp-arrow-right:after {
      border-left: 17px solid #FFF;
      margin-left: 39px; }
    .mfp-arrow-right:before {
      border-left: 27px solid #3F3F3F; }
  
  .mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px; }
    .mfp-iframe-holder .mfp-content {
      line-height: 0;
      width: 100%;
      max-width: 900px; }
    .mfp-iframe-holder .mfp-close {
      top: -40px; }
  
  .mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%; }
    .mfp-iframe-scaler iframe {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      background: #000; }
  
  /* Main image in popup */
  img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto; }
  
  /* The shadow behind the image */
  .mfp-figure {
    line-height: 0; }
    .mfp-figure:after {
      content: '';
      position: absolute;
      left: 0;
      top: 40px;
      bottom: 40px;
      display: block;
      right: 0;
      width: auto;
      height: auto;
      z-index: -1;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      background: #444; }
    .mfp-figure small {
      color: #BDBDBD;
      display: block;
      font-size: 12px;
      line-height: 14px; }
    .mfp-figure figure {
      margin: 0; }
  
  .mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto; }
  
  .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px; }
  
  .mfp-image-holder .mfp-content {
    max-width: 100%; }
  
  .mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer; }
  
  @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
      padding-left: 0;
      padding-right: 0; }
    .mfp-img-mobile img.mfp-img {
      padding: 0; }
    .mfp-img-mobile .mfp-figure:after {
      top: 0;
      bottom: 0; }
    .mfp-img-mobile .mfp-figure small {
      display: inline;
      margin-left: 5px; }
    .mfp-img-mobile .mfp-bottom-bar {
      background: rgba(0, 0, 0, 0.6);
      bottom: 0;
      margin: 0;
      top: auto;
      padding: 3px 5px;
      position: fixed;
      box-sizing: border-box; }
      .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0; }
    .mfp-img-mobile .mfp-counter {
      right: 5px;
      top: 3px; }
    .mfp-img-mobile .mfp-close {
      top: 0;
      right: 0;
      width: 35px;
      height: 35px;
      line-height: 35px;
      background: rgba(0, 0, 0, 0.6);
      position: fixed;
      text-align: center;
      padding: 0; } }
  
  @media all and (max-width: 900px) {
    .mfp-arrow {
      -webkit-transform: scale(0.75);
      transform: scale(0.75); }
    .mfp-arrow-left {
      -webkit-transform-origin: 0;
      transform-origin: 0; }
    .mfp-arrow-right {
      -webkit-transform-origin: 100%;
      transform-origin: 100%; }
    .mfp-container {
      padding-left: 6px;
      padding-right: 6px; }
    }
    
    .covid {

      margin-left: 15px;
      padding-left: 10px;
    }

   
    .modal-dialog
    .modal-content {
      background-color: rgba(248, 246, 245, 0.95);
    }

    .modal-dialog
    .modal-content p {
      font-weight: 600;
    }
    .modal-content h4 {
        color: #fd5f04;
        text-align: center;
        text-shadow: 1px 1px #000;
    }
   
.modal-header {
  margin-top: 10rem;
  padding-top: 10rem;
}
.modal-header h5 {
  color:blue;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10rem;
}
.modal-dialog {
  margin-top: 20rem;
}
.modal-content {
    /* 80% of window height */
    height: 90rem;
}

.modal-body {
    /* 100% = dialog height, 120px = header + footer */
    margin-top: 0px;
    max-height: 100%;
    overflow-y: scroll;
}
