/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 25, 2021, 4:38:58 PM
    Author     : picoc
*/
/* 2021.03.29 (Logo color) - color: #ecc327;*/
#main_logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 22s;
}

#main_name {
    /* display: block; */
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 4s;
    background-color: rgb(0,0,0,0.4);
    color: #ecc327;
    padding: 5px 50px;
    /* width: 50%; */
    border-radius: 150px;
}

#main_name_private_events {
    /* display: block; */
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    animation: fadeIn 4s;
    background-color: rgb(0,0,0,0.4);
    color: #ecc327;
    padding: 5px 50px;
    border-radius: 50px;
    width: 55%;
}

@keyframes fadeIn{
    0%{opacity:0;}
    5%{opacity:0.05;}
    10%{opacity:0.1;}
    15%{opacity:0.15;}
    20%{opacity:0.2;}
    25%{opacity:0.25;}
    30%{opacity:0.3;}
    35%{opacity:0.35;}
    40%{opacity:0.4;}
    45%{opacity:0.45;}
    50%{opacity:0.5;}
    55%{opacity:0.55;}
    60%{opacity:0.6;}
    65%{opacity:0.65;}
    70%{opacity:0.7;}
    75%{opacity:0.75;}
    80%{opacity:0.8;}
    85%{opacity:0.85;}
    90%{opacity:0.9;}
    91%{opacity:0.91;}
    92%{opacity:0.92;}
    93%{opacity:0.93;}
    94%{opacity:0.94;}
    95%{opacity:0.95;}
    96%{opacity:0.96;}
    97%{opacity:0.97;}
    98%{opacity:0.98;}
    99%{opacity:0.99;}
    100%{opacity:1;}
}

/*
@keyframes fadeOut{
    0%{opacity:1;}
    5%{opacity:0.99;}
    10%{opacity:0.98;}
    15%{opacity:0.97;}
    20%{opacity:0.96;}
    25%{opacity:0.95;}
    30%{opacity:0.94;}
    35%{opacity:0.93;}
    40%{opacity:0.92;}
    45%{opacity:0.91;}
    50%{opacity:0.9;}
    55%{opacity:0.85;}
    60%{opacity:0.8;}
    65%{opacity:0.75;}
    70%{opacity:0.7;}
    75%{opacity:0.65;}
    80%{opacity:0.6;}
    85%{opacity:0.55;}
    90%{opacity:0.5;}
    91%{opacity:0.45;}
    92%{opacity:0.4;}
    93%{opacity:0.35;}
    94%{opacity:0.3;}
    95%{opacity:0.25;}
    96%{opacity:0.2;}
    97%{opacity:0.15;}
    98%{opacity:0.1;}
    99%{opacity:0.05;}
    100%{opacity:0;}
}
*/

#footer_logo{
    display: block;
    margin-top: 30px;
    margin-bottom: 29px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 4s;
}

/* Off-canvas Menu bar*/
* { box-sizing: border-box; }
/*
body {
  background-color: #343838;
  font-size: 16px;
}
*/
#main-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#title {
  color: #f6f6f6;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2em;
}

#btn #top, 
#btn #middle, 
#btn #bottom {
    background-color: #ecc327;
}

#btn {
  position: fixed;
  z-index: 5;
  top: 15px;
  /* 2021.04.14 - left: 15px;*/
  right: 15px;
  cursor: pointer;
  -webkit-transition: left 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: left 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

#btn div {
  width: 35px; /* Width (length) of the three bars */
  height: 2px;
  margin-bottom: 8px;
  background-color: white; /* color of button (bar) */
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91), opacity 500ms, box-shadow 250ms, background-color 500ms;
  transition: transform 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91), opacity 500ms, box-shadow 250ms, background-color 500ms;
}

#btn:hover > div { 
    box-shadow: 0 0 1px #00DFFC;
    background-color: #ecc327; /* color of button (bar), for mouse over the button (bar) */
    width: 50px;
}

#btn.active {
    /* 2021.04.14 - left: 230px;*/
    right: 4px; /* Close sign */
}

#btn.active div { 
    background-color: white; /* color of X mark (close menu) */
}

#btn.active:hover > div { 
    box-shadow: 0 0 1px #343838;
}

#btn.active {
    background: transparent; /* X (Close) place */
    padding: 10px 12px;
    opacity: 1;
    transition: all 0.3s;
}

/*
#btn.active #top {
  -webkit-transform: translateY(10px) rotate(-135deg);
  -ms-transform: translateY(10px) rotate(-135deg);
  transform: translateY(10px) rotate(-135deg);
}

#btn.active #middle {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

#btn.active #bottom {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}
*/

#box {
  position: fixed;
  /* 2021.04.16 - z-index: 4;*/
  z-index: 40;
  overflow: auto;
  top: 0px;
  /* 2021.04.14 - left: -275px;*/
  right: -275px;
  width: 275px;
  opacity: 0;
  padding: 20px 0px;
  height: 100%;
  background-color: #1E2429; /* background color of top an bottom layer of menu */
  color: #343838;
  -webkit-transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

#box.active {
  /* 2021.04.14 - left: 0px;*/ /* locate the menu on left hand side*/
  right: 0px; /* locate the menu on right hand side*/
  opacity: 1;
}

#items {
  position: relative;
  top: 50%; /* effect the position of first menu item (Reservations) */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent; /* background color of menu items */
  font-family: 'Droid Serif', sans-serif;
  text-transform: uppercase;
}

#items .item {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  padding: 13px 30px; /* Gap between each menu item */
  -webkit-transition: all 250ms;
  transition: all 250ms;
  text-align: center;
}

#items .item:hover {
    padding: 13px 45px; /* Gap between each menu item */
    background-color: rgba(52, 56, 56, 0.2);
}

#items .item a {
    color: #ecc327;
}

#items a .item {
    color: white; /* color of menu items */
}

#items a:hover .item {
    /* 2021.05.11 - color: #C59A6D;*/ /* color of menu items */
    color: #ecc327;
}

/* Body */
.full-screen {
    position: relative;
    opacity: 0.65;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

/*
.home_background_01 {
    background-image: url("../../images/background/home_background_02_01.jpg");
}

.home_background_02 {
    background-image: url("../../images/background/home_background_03.jpg");
}
*/

/* Text Style - Home */

.section_style {
    display: table-cell;
    /* 2021.04.09 - height: 100%;*/
    vertical-align: middle;
}

.section_style p {
    font-size: 50px;
    color: #ecc327;
    padding: 0;
    margin: 0;
    font-family: 'Droid Serif', sans-serif;
    font-style: italic;
    font-weight: 200;
    /*opacity: 0.3;*/
}

.section_style small {
    font-size: 16px;
    color: white;
    padding: 20px 0 1px;
    margin: 0;
    font-family: 'Droid Serif', sans-serif;
    font-style: italic;
    display: block;
    text-align: justify;
}

.section_style a {
    font-size: 16px;
    color: rgb(92.5,76.5,15.3,0.9);
    margin: 0;
    font-family: 'Droid Serif', sans-serif;
    font-style: italic;
    display: inline-block;
    text-align: right;
}

.section_style a:hover {
    color: #ecc327;
}

/* Text Location */

.text_locate_bottom_left {
    position: absolute;
    top: 60%;
    left: 5%;
    right: 40%;
}

.text_locate_bottom_right {
    position: absolute;
    top: 50%;
    left: 45%;
    right: 15%;
}

.text_locate_bottom_center {
    position: absolute;
    top: 60%;
    left: 35%;
    right: 35%;
}

.background_black {
    background-color: black;
}

/*
.overlay_1 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: url(../../images/background/20210114_empress_218_edited_01.jpg);
}
*/

/* Section 01 */

.section_home_01 {
    padding: 15% 0;
    position: relative;
    height: 0; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    padding-top: 40%; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    z-index: 1;
}

#section_01_background {
    background-image: url("../../images/background/empress_design_interior_01.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80% auto;
}

.section_01_message_position {
    position: absolute;
    /* top: 70%; */
    bottom: 10%;
    left: 5%;
    right: 40%;
}

/* Section 02 */

.section_home_02 {
    padding: 15% 0;
    position: relative;
    height: 0; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    padding-top: 40%; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    z-index: 1;
}

#section_02_background {
    background-image: url("../../images/background/fermented.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80% auto;
    margin-left: 50px;
}

.section_02_message_position {
    position: absolute;
    /* top: 70%; */
    bottom: 18%;
    left: 40%;
    right: 5%;
}

/* Section 03 */

.section_home_03 {
    padding: 15% 0;
    position: relative;
    height: 0; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    padding-top: 40%; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    z-index: 1;
}

#section_03_background {
    background-image: url("../../images/background/empress_design_interior_03.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto;
    margin-right: 50px;
}

.section_03_message_position {
    position: absolute;
    /* top: 70%; */
    bottom: 18%;
    left: 5%;
    right: 40%;
}

/* Section 04 */

.section_home_04 {
    padding: 15% 0;
    position: relative;
    height: 0; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    padding-top: 40%; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    z-index: 1;
}

#section_04_background {
    background-image: url("../../images/background/empress_design_interior_02.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80% auto;
    margin-left: 0px;
}

.section_04_message_position {
    position: absolute;
    /* top: 70%; */
    bottom: 25%;
    left: 40%;
    right: 5%;
}

/* Section 05 */

.section_home_05 {
    padding: 15% 0 60px;
    position: relative;
    height: 0; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    padding-top: 40%; /* Set the container's height to 0 and set the padding-bottom to the percentage of the width */
    z-index: 1;
}

#section_05_background {
    background-image: url("../../images/background/yanyan_tableware_01.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% auto;
}

.section_05_message_position {
    position: absolute;
    /* top: 70%; */
    bottom: 18%;
    left: 5%;
    right: 40%;
}

.logo_boon {
    float:right;
    margin-left:20px
}

.small-small-box i {
    font-size: 20px;
    color: #232323;
    display: block;
}

.small-small-box a {
    /* margin-top: 15px; */
    /* 2021.04.08 - display: block;*/
    display: inline-block;
    /* 2021.04.08 - text-decoration: underline !important;*/
    font-weight: 600;
    font-size: 16px;
}

/* Gallery */
#projects {
    padding: 100px 0 60px;
}

.portfolio .categories-grid span {
    font-size: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.portfolio .categories-grid .categories ul li {
    list-style: none;
    margin: 20px 0;
}

.portfolio .categories-grid .categories ul li a {
    display: inline-block;
    color: #60606e;
    padding: 0 10px;
    margin: 0 14px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio .categories-grid .categories ul li a:hover,
.portfolio .categories-grid .categories ul li a:focus {
    text-decoration: none;
}

.portfolio .categories-grid .categories ul li a.active {
    background-color: #425BB5;
    padding: 0px 20px;
    color: white;
    text-decoration: none;
}

.portfolio_filter {
    padding-left: 0;
}

.portfolio_item {
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
    font-family: 'Droid Serif', sans-serif;
    margin-left: auto;
    margin-right: auto;
}

.portfolio_item .portfolio_item_hover {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: transparent;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #333;
}

.portfolio_item .portfolio_item_hover .item_info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 100%;
    font-weight: bold;
}

.portfolio_item .portfolio_item_hover .item_info span {
    display: block;
    color: #fff;
    font-size: 18px;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em {
    font-style: normal;
    display: inline-block;
    /*background-color: #425BB5;*/
    padding: 5px 20px;
    color: #fff;
    margin-top: 10px;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
    font-size: 10px;
    letter-spacing: 2px;
}

.portfolio_item:hover .portfolio_item_hover {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    color: #ecc327;
}

.portfolio .categories-grid .categories ul li {
    float: left;
}

.portfolio .categories-grid .categories ul li a {
    padding: 0 10px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio_filter {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.portfolio_item img {
    /* 2021.04.11 (make photo to Black & White color)
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    */
}

.portfolio-padding {
    padding: 50px 0;
}

.portfolio-inner {
    padding-bottom: 0 !important;
    padding-top: 55px;
}

.portfolio-modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    border: none;
}

.popup-modal {
    background: black;
}

.close-popup-modal {
    float: right;
    margin: 20px;
    font-size: 22px;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    position: fixed;
    z-index: 100000;
    right: 14px;
    color: #ecc327; /* color of X mark */
}

.popup_gallery_image01-on .close-popup-modal, 
.popup_gallery_image02-on .close-popup-modal, 
.popup_gallery_image03-on .close-popup-modal, 
.popup_gallery_image04-on .close-popup-modal, 
.popup_gallery_image05-on .close-popup-modal, 
.popup_gallery_image06-on .close-popup-modal, 
.popup_gallery_image07-on .close-popup-modal, 
.popup_gallery_image08-on .close-popup-modal, 
.popup_gallery_image09-on .close-popup-modal, 
.popup_gallery_image10-on .close-popup-modal, 
.popup_gallery_image11-on .close-popup-modal, 
.popup_gallery_image12-on .close-popup-modal, 
.animatedModal-on .close-popup-modal {
    opacity: 1;
}

.portfolio-modal-content h2 {
    font-family: 'Droid Serif', sans-serif;
    font-size: 40px;
    line-height: 50px;
    color: #ecc327;
}

.portfolio-modal-content h3 {
    font-family: 'Droid Serif', sans-serif;
    font-size: 25px;
    line-height: 50px;
    color: #ecc327;
}

.portfolio-modal-content p {
    font-family: 'Droid Serif', sans-serif;
    color: white;
    text-align: justify;
}

.portfolio-modal-content a {
    font-size: 16px;
    color: rgb(92.5,76.5,15.3,0.9);
    margin: 0;
    font-family: 'Droid Serif', sans-serif;
    font-style: italic;
    display: inline-block;
    text-align: right;
}

.portfolio-modal-content a:hover {
    color: #ecc327;
}

.portfolio-modal-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
}

.gallery_image_description {
    padding: 50px 0;
}

.h-50 {
    height: 50px;
}

/* Private Events */

#section_private_events {
    
}

.tabs-content {
  /*
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8vh;
  */
  position: relative;
  background-image: url(../../images/room/room_the_empress.jpg);
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
}

.tabs {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.tabs li {
  display: inline-block;
  text-align: center;
  margin: 10px;
}

.tabs a {
  display:block;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  color:#fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 15px;
  border: 1px solid #fff;
  border-radius: 10px;
  width: 200px;
}

.tabs a:hover {
  /* 2021.05.15 - color: #ff7d27; */
  color: #ecc327;
}

.tabs .active {
  /* 2021.05.15 - border: 4px solid #ff7d27; */
  border: 1px solid #ecc327;
  color: #ecc327;
}

.tabgroup div  {
    padding-top: 5%;
    /* animation: fadeIn 2s; */
}

.tabgroup h1 {
    color: #ecc327;
    animation: fadeIn 1s;
}

.tabgroup p {
  /* 2021.05.15 - background-color: rgba(0, 0, 0, 0.5); */
  color: white;
  font-size: 15px;
  animation: fadeIn 2s;
  text-align: justify;
  /* 2021.05.15 - padding: 25px; */
}

.header_container {
    padding: 20px; /* padding of logo at top bar */
}

.circle_gradient_effect {
    border-radius: 10%;
    display: inline-block;
    position: relative;
}

.circle_gradient_effect img {
    border-radius: 10%;
    display: block;
    border: 1px solid black;
}

.circle_gradient_effect:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);
    border-radius: 10%;
    position: absolute;
    top: 0;
    left: 0;
}

.round_reservation {
    /* 2021.05.11 - color: #C59A6D; */
    color: #ecc327;
    border-style: solid;
}

.sub_title {
    color: #ecc327;
    font-size: 14px;
    animation: fadeIn 4s;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    font-weight: bold;
    opacity: 0.9;
    font-family: 'Droid Serif', sans-serif;
    font-style: italic;
    padding-top: 20px;
}

@keyframes moveOut{
    from {
        0%{opacity:1;}
    }
    to {
        100%{opacity:0;}
    }
}

.main_body {
    margin: 60px 0;
}

.email_address {
    color: white;
}

.email_address:hover {
    color: #ecc327;
}

/* Tripleseat Lead Form */
.tripleseat_div {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}

/* Press / Article */
.press_title {
    margin-top: 100px;
    color: white;
    text-align: left;
    font-size: 30px;
    /* font-style: italic; */
}

.press_inquiry {
    /* margin-top: 100px; */
    color: white;
    text-align: center;
    font-size: 13px;
}

.banner_text_heading {
    color: #ecc327;
    font-family: 'Droid Serif', sans-serif; font-weight: bold;
    text-align: left;
    padding: 0 0 10px;
}

.banner_text_block {
    padding: 50px 0 60px;
}

.article_description {
    padding-top: 50px;
}

.article_description p {
    font-size: 16px;
    color: white;
    font-family: 'Droid Serif', sans-serif;
    padding: 0 0 15px 0;
    text-align: justify;
}

.boxed_press {
    box-shadow: 0 30px 50px 0 rgba(1, 1, 1, 0.18);
    padding: 8rem 4rem 0;
    background-color: black;
    margin-top: -60px;
}

.image_article_empress_logo_main {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}

.image_article {
  display: block;
  max-width: 60%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Menus */

.boxed_menus {
    padding: 1% 1% 8rem;
}

.menu_note {
    text-align: center;
    color: white;
    font-size: 16px;
    padding: 20px 0 0 0;
    text-shadow: 0 2px 5px #ecc327;
}

.menu_item_subject {
    text-align: left;
    color: #ecc327;
    font-size: 16px;
    padding: 15px 0 0;
}

.menu_item_description {
    text-align: left;
    color: white;
    font-size: 14px;
    /* padding: 0 0 15px; */
}

.menu_item_column_name_1 {
    text-align: left;
    color: #ecc327;
    font-size: 14px;
    opacity: 1;
}

.menu_item_column_name_2 {
    text-align: center;
    color: #ecc327;
    font-size: 14px;
    opacity: 1;
}

.menu_item_price {
    text-align: center;
    color: #ecc327;
    font-size: 14px;
    padding: 15px 0 0;
}

.menu_item_gap {
    padding: 75px;
}

.menu_container {
    /*
    padding-right: 15px;
    padding-left: 15px;
    */
    margin-right: auto;
    margin-left: auto; /* effect the position of logo */
  }

  .menu_item_category {
    text-align: center;
    color: white;
    font-size: 16px;
    padding: 20px 0 0 0;
    text-shadow: 0 2px 5px #ecc327;
  }

/* Text Slider */
.mySlides {display: none;}

.mySlides img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  /* max-width: 1000px; */
  width: 100%;
  position: relative;
  margin: auto;
  margin-top: 170px;
}

/* Caption text */
.mySlides_text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 5px;
  width: 5px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Disable this class, becuase it will effect the background colour of button on "Private Events" page
.active {
  background-color: #717171;
}
*/

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 4s;
  animation-name: fade;
  animation-duration: 4s;
}

@-webkit-keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the left */
  .prev {
    left: 0;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a grey background color */
  .prev:hover, .next:hover {
    background-color: transparent;
    color: #ecc327;
  }

  .article_number {
      color: #a2a2a2;
      text-align: center;
      font-size: 13px;
  }

  .top_logo {
    animation: fadeIn 10s;
  }

  /* Award */
  #section_award{
    padding: 50px 0;
  }

  #award_logo{
    display: block;
    margin-top: 30px;
    margin-bottom: 29px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 5s;
  }