/*
 Theme Name:   Twenty Nineteen Child
 Theme URI:    http://example.com/
 Description:  Twenty Nineteen Child Theme
 Author:       Maan Eksdi
 Author URI:   http://example.com
 Template:     twentynineteen
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  twentynineteen
*/

/* Testing Only CSS */


/* Custom CSS Starts Here */
* {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    display: block;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    line-height: 1.4;
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
h1 {
    font-size: 100px;
    line-height: 1;
}
h3 {
    font-size: 48px;
    line-height: 1.2;
}
h4 {
    font-size: 38px;
    line-height: 1.2;
}
h5 {
    font-size: 18px;
    line-height: 1.2;
}
h1, h3, h4 {
    font-family: 'Permanent Marker', cursive;
}
h1, h3, h4, p {
    margin: 0 0 24px;
}
p:last-child{
    margin-bottom: 0;
}
input, textarea {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    line-height: 1.4;
}
.anchor-div {
	position: relative;
	top: -100px;
}
.le-contain {
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.flex-contain {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.le-flex {
    display: flex;
    flex-wrap: wrap;
}
.align-center {
    align-items: center;
}
.align-flex-start {
    align-items: flex-start;
}
.justify-space-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.flex-half {
    flex: 0 0 50%;
}
.flex-onethird {
    flex: 0 0 33.333%;
}
.flex-twothird {
    flex: 0 0 66.666%;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-brand {
    display: block;
    width: 90%;
    max-width: 224px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.site-brand img {
    width: 100%;
    height: auto;
}
.bordered-button {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background-color: rgba(255,255,255,0);
    padding: 20px 30px;
    display: inline-block;
    border: 3px solid #fff;
    font-weight: 700;
}
.bordered-button:hover {
    color: #111;
    background-color: rgba(255,255,255,1);
}
.bordered-button.black {
    font-size: 16px;
    line-height: 1;
    color: #000;
    background-color: rgba(0,0,0,0);
    padding: 20px 30px;
    display: inline-block;
    border: 3px solid #000;
    font-weight: 700;
}
.bordered-button.black:hover {
    color: #fff;
    background-color: rgba(0,0,0,1);
}
.solid-button {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background-color: rgba(0,0,0,1);
    padding: 20px 30px;
    display: inline-block;
    border: 3px solid #000;
    font-weight: 700;
}
.solid-button:hover {
    color: #000;
    background-color: rgba(255,255,255,1);
}
h3.underlined-heading {
    position: relative;
	display: inline-block;
	margin-bottom: 35px;
}
h3.underlined-heading::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 11px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

#site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 30px 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
#site-header.fixed-header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    background-color: #111;
}
#site-header.fixed-header .site-brand {
    max-width: 180px;
}
#menu-primary-menu .menu-item {
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    margin-left: 32px;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
#menu-primary-menu .menu-item:hover, #menu-primary-menu .menu-item.current-menu-item.page_item, #menu-primary-menu .menu-item.current-section {
    border-bottom: 2px solid #fff;
}
#menu-primary-menu .menu-item.home-icon	{
	font-size: 20px;
}

#hpsec1 {
    position: relative;
    padding: 186px 0 206px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#hpsec1 .bordered-button {
    margin-top: 50px;
}
#hpsec1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 60%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 60%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.banner-toptext {
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
}
/*#hpsec1 .banner-toptext {
    position: relative;
    top: -20px;
}*/
#hpsec1 h1 {
    max-width: 570px;
    margin: 0 auto;
}

#hpsec2-to-hpsec3 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#hpsec2 {
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
#hpsec2 h3 {
    position: relative;
    margin-bottom: 80px;
}
#hpsec2 h3::after {
    content: '';
    width: auto;
    height: 10px;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
#hpsec2 .le-contain {
    position: relative;
}
.hpsec2-menu-wrapper {
    max-width: 678px;
    margin: 0 auto;
}
.hpsec2-menu-wrapper .menu-panel {
    flex: 0 0 50%;
    max-width: 310px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    border: 3px solid #111;
    position: relative;
    min-height: 412px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.hpsec2-menu-wrapper .menu-panel::before {
    content: '';
    display: block;
    width: 600px;
    height: 257px;
    position: absolute;
    background-color: #171717;
    opacity: 0.94;
    margin: 0 auto;
}
.menu-panel .menu-content {
    color: #fff;
    position: relative;
}
#left-menu {
    align-items: flex-end;
    padding-bottom: 60px;
}
#left-menu.menu-panel::before {
    transform: rotate(-30deg);
    bottom: 0;
    left: -160px;
}
#right-menu {
    padding-top: 30px;
}
#right-menu.menu-panel::before {
    top: -70px;
    transform: rotate(-30deg);
    min-height: 265px;
}
.right-side-image {
    position: absolute;
    display: block;
    max-width: 156px;
    height: 206px;
    top: 0;
    right: 40px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.left-side-image {
    content: '';
    position: absolute;
    display: block;
    max-width: 115px;
    height: 164px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 80px;
    bottom: -75px;
}

#hpsec3 {
    text-align: center;
    padding: 50px 0 80px;
}
#hpsec3 h3 {
    position: relative;
    margin-bottom: 80px;
    display: inline-block;
}
#hpsec3 h3::after {
    content: '';
    width: auto;
    height: 10px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}
.service-item {
    padding: 40px 0;
}
.service-item:first-child {
    padding-top: 0px;
}
.service-item:last-child {
    padding-bottom: 0px;
}
.service-item .service-item-image, .service-item .service-item-text {
    flex: 0 0 50%;
    max-width: 50%;
}
.service-item-image img {
    width: 100%;
    margin: 0 auto;
}
.service-item .service-item-text {
    text-align: left;
    max-width: 510px;
}
.service-item-text strong {
    font-size: 20px;
}
.service-item:nth-child(2n) .service-item-image {
    order: 2;
}
#hpsec3 .button-wrap {
    text-align: left;
    margin-top: 40px;
	display: none;
}

#hpsec4 {
    padding: 40px 0;
}
#hpsec4 h3 {
    position: relative;
    margin-bottom: 50px;
    display: inline-block;
}
#hpsec4 h3::after {
    content: '';
    width: auto;
    height: 11px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}
#hpsec4 p {
    color: #858585;
}
#hpsec4 .flex-contain {
    background-color: #000;
    color: #fff;
    box-shadow: 0 0 38px 2px rgba(0,0,0,0.35);
}
.hpsec4-image {
    max-width: calc(50% - 60px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hpsec4-text-right {
    padding: 60px 73px 60px 0;
}

#hpsec5 {
    padding: 65px 0;
}
#hpsec5 .text-content {
    max-width: 300px;
}
.gallery-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#hpsec5 .flex-twothird {
    padding-right: 24px;
    max-width: 690px;
}
#gallery-img02 {
    min-height: 280px;
    margin: 24px 0 24px auto;
    width: 77%;
}
#gallery-img03 {
    min-height: 388px;
    margin: 0 0 0 auto;
    width: 45%;
}
#gallery-img04 {
    min-height: 448px;
    width: 86%;
    margin-bottom: 24px;
}
#gallery-img05 {
    min-height: 284px;
    width: 86%;
    margin-bottom: 24px;
}

#hpsec6 {
    position: relative;
    background-color: #f5f5f5;
    padding-top: 80px;
    overflow: hidden;
}
#hpsec6 .le-contain {
    position: relative;
}
#hpsec6::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-color: #fff;
    padding-bottom: 9%;
}
#hpsec6 .flex-twothird p {
    max-width: 625px;
}
#hpsec6 .flex-onethird {
    text-align: right;
}
#hpsec6 .paragraph-wrap {
    margin-bottom: 30px;
}
#articles-slider {
    width: 136%;
}
#articles-slider article.slick-slide {
    padding: 0 15px;
}
#articles-slider article.slick-slide .article-wrap {
    position: relative;
    min-height: 395px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    color: #fff;
}
article.slick-slide .article-wrap::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.article-detail {
    position: relative;
    padding: 0 20px 26px 26px;
}
.author-data img {
    max-width: 30px;
    margin-right: 8px;
}
#hpsec6 .solid-button {
    margin-right: 140px;
    text-align: center;
}
#articles-slider .slick-arrow {
    position: absolute;
    top: -106px;
    font-size: 34px;
    line-height: 1;
    padding: 14px 20px;
    background-color: #fff;
    box-shadow: 0 0 38px 2px rgba(0,0,0,0.3);
}
#articles-slider .slick-arrow.fa-caret-right {
    right: 26%;
}
#articles-slider .slick-arrow.fa-caret-left {
    right: 31%;
}

#hpsec7 {
    padding: 80px 0 160px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#hpsec7 .heading-wrap {
    max-width: 390px;
    margin: 0 auto 20px;
    color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    display: flex;
    flex-wrap: wrap;
    padding: 14px 40px 20px;
    text-align: center;
}
#hpsec7 p {
    font-size: 24px;
}
#hpsec7 .heading-wrap h4 {
    margin-bottom: 0;
}
#footer-social-icons {
    padding: 0;
}
#footer-social-icons li a i {
    font-size: 25px;
}
#footer-social-icons li {
    list-style: none;
    display: inline-block;
    margin-right: 25px;
}
#footer-social-icons li:hover {
    color: #ffffff;
}
#site-footer {
    position: relative;
    background-color: #242424;
    color: #fff;
    padding: 60px 0 40px;
	z-index: 999;
}
#site-footer::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    top: 18px;
}
#site-footer .menu {
    display: block;
    font-weight: 700;
    /*margin-bottom: 36px;*/
    margin-bottom: 14px;
    margin-top: 32px;
}
#site-footer .flex-contain {
    position: relative;
}
.footer-logo {
    padding: 13px;
    background-color: #242424;
    max-width: 220px;
    margin-top: -95px;
    box-shadow: 0 0 38px 2px rgba(0,0,0,0.3);
}
.footer-logo img {
    width: 100%;
}
.footer-copyright {
    font-size: 13px;
	color: #7c7c7c;
}
.footer-copyright a {
	color: inherit;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.footer-copyright a:hover {
	color: #fff;
}
#footer-column1 {
    max-width: 367px;
}

#footer-column1 #footer-social-icons {
    margin-top: 0;
}

#footer-column1 #footer-social-icons li a {
    color: #858585;
}

#unsw-list, #uts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}   
#unsw-list .sched-day, #uts-list .sched-day {
    text-transform: capitalize;
}
.footer-column h4 {
    font-size: 24px;
    color: #fff;
}
#footer-column2, #footer-column3 {
    color: #858585;
    max-width: 325px;
}
#footer-column3 {
    max-width: 195px;
}
#footer-column1-mobile {
    display: none;
}
#site-footer .menu a:hover {
    opacity: 0.3;
}

/* Inner Pages */
.page-banner {
    position: relative;
    padding: 190px 0 130px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 60%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 60%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
#cusec2 {
    padding: 80px 0 140px;
}
#cusec2 .contact-info-wrap {
    display: block;
    width: 50%;
    padding-right: 25px;
	background-color: #fff;
	position: relative;
	z-index: 1;
}
.contact-info-wrap .label-tabs {
	position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #000;
	background-color: #fff;
	margin-bottom: 10px;
}
.label-tabs .tab {
    display: block;
    width: 50%;
    text-align: center;
    padding: 20px 0;
	color: #858585;
	cursor: pointer;
}
.label-tabs .tab.active {
    background-color: #000;
	color: #fff;
	cursor: default;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.tab-contents .content {
    box-shadow: 0 0 20px 2px rgba(0,0,0,0.15);
}
.content .map-wrap {
    display: block;
}
.map-wrap iframe {
    display: block;
	width: 100%;
	height: 424px;
}
.content .details-wrap {
    padding: 20px;
}
.details-wrap .info:not(:last-child) {
    margin-bottom: 12px;
}
.details-wrap .info, .details-wrap .info a,
.details-wrap .info, .details-wrap .info span {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	font-size: 16px;
	line-height: 1.2;
	color: #858585;
}
.details-wrap .info a:hover {
	color: #000;
}
.info i {
    display: flex;
    background-color: #000;
	color: #fff;
    width: 38px;
    height: 38px;
    font-size: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}
#cusec2 .contact-form-wrap .wpforms-field {
    position: relative;
    padding: 0;
    margin-bottom: 15px;
}
#cusec2 .contact-form-wrap .wpforms-field::before, #cusec2 .contact-form-wrap .wpforms-field::after {
    content: '';
    position: absolute;
    display: block;
    height: 24px;
    width: 1px;
    background-color: #000;
    bottom: 0;
}
#cusec2 .contact-form-wrap .wpforms-field.select-input {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	margin-top: 30px;
}
#cusec2 .contact-form-wrap .wpforms-field.select-input::before {
	content: '';
	position: absolute;
	display: block;
	height: 12px;
	width: auto;
	background-color: #fff;
	top: 0;
	left: -1px;
	right: -1px;
	bottom: unset;
}
#cusec2 .contact-form-wrap .wpforms-field.select-input::after {
	content: '\f0d7';
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	font-size: 24px;
	line-height: 1;
	position: absolute;
	display: block;
	height: unset;
	width: auto;
	background-color: transparent;
	bottom: unset;
	top: calc(50% - 10px);
	right: 15px;
	color: #aaa;
}
#cusec2 .contact-form-wrap .wpforms-field::before {
    left: 0;
}
#cusec2 .contact-form-wrap .wpforms-field::after {
    right: 0;
}
#cusec2 .contact-form-wrap input, #cusec2 .contact-form-wrap textarea {
    border: 0px;
    border-bottom: 1px solid #000;
    border-radius: 0;
	padding: 15px;
	height: auto;
    font-size: 16px;
    outline: none !important;
}
#cusec2 .contact-form-wrap textarea {
    height: 150px;
}
#cusec2 .contact-form-wrap {
    position: relative;
	padding-left: 13px;
    width: 50%;
}

#cusec2 .contact-form-wrap::before, #cusec2 .contact-form-wrap::after {
    content: '';
    position: absolute;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	z-index: -1;
}
#cusec2 .contact-form-wrap::before {
    width: 93px;
    height: 87px;
	top: -60px;
	right: -75px;
}
#cusec2 .contact-form-wrap::after {
    width: 90px;
    height: 95px;
    bottom: -35px;
    right: 65px;
}
.contact-form-wrap h3 {
    position: relative;
	margin-bottom: 35px;
}
.contact-form-wrap h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 11px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}
.contact-form-wrap p {
    color: #858585;
	margin-bottom: 40px;
}
.contact-form-wrap .wpforms-submit-container {
    text-align: center;
}
#cusec2 .contact-form-wrap button {
    display: inline-block;
    padding: 20px 40px;
    color: #fff;
	background-color: #000;
    border: none;
    font-weight: 700;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
#cusec2 .contact-form-wrap button:hover {
	background-color: #444;
}
#cusec2 .contact-form-wrap .cform-input select {
	position: relative;
	z-index: 1;
	background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
	border: none !important;
	border-bottom: 1px solid #000 !important;
	color: #999;
}
#cusec2 .contact-form-wrap .cform-input select::-ms-expand {
	display: none;
}
#cusec2 .contact-form-wrap .cform-input select::placeholder {
	color: #999;
	opacity: 1;
}

#cusec2 .contact-form-wrap .cform-input select:-ms-input-placeholder {
	color: #999;
}

#cusec2 .contact-form-wrap .cform-input select::-ms-input-placeholder {
	color: #999;
}

#about-row1 .about-image {
    display: block;
    max-width: 50%;
    width: 475px;
    height: 463px;
}
.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-row .about-text {
    flex: 1;
}
.about-text p {
    color: #858585;
    letter-spacing: 0.2px;
}
#ausec2 {
    padding: 65px 0;
}
#about-row1 .about-text {
    padding-left: 30px;
    margin-top: 25px;
}
#about-row2 .about-image {
    display: block;
    width: 694px;
    max-width: 80%;
    height: 526px;
}
#about-row2 .about-text {
	margin-top: 145px;
    padding-right: 36px;
}
#about-row2 .about-text p {
    font-size: 18px;
    letter-spacing: 0px;
}
#about-row2 h3 {
    max-width: 250px;
}
#ausec2-shroud {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
#ausec2 .le-contain {
    position: relative;
}
#ausec2 .middle-paragraph {
    position: absolute;
	color: #fff;
    left: 50px;
    right: unset;
    margin: -108px auto 0;
    max-width: 1030px;
    padding: 54px 90px 54px 135px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#bloglist-section {
	padding: 105px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
#bloglist {
    margin: 0 -10px;
}
.bloglist-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: calc(33.33% - 20px);
    height: 400px;
    margin: 10px;
    padding-bottom: 20px;
    overflow: hidden;
}
.bloglist-item .blog-thumbnail {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bloglist-item .blog-title {
    position: relative;
    z-index: 2;
    color: #fff;
	padding: 14px 21px;
	background-color: rgba(0,0,0,0.5);
	opacity: 1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.bloglist-item:hover .blog-title {
	opacity: 0;
}
.blog-title p {
    font-size: 14px;
    margin-bottom: 12px;
}
.blog-title h5 {
    margin: 0;
}
.bloglist-item .blog-hover {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    z-index: 3;
    color: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.bloglist-item:hover .blog-hover {
	opacity: 1;
}
.blog-hover a {
    position: relative;
    padding: 18px 36px;
    line-height: 1;
    border: 3px solid #fff;
    font-weight: 700;
	background-color: rgba(255,255,255,0);
}
.blog-hover a:hover {
    background-color: rgba(255,255,255,1);
	color: #000;
}
.blog-hover .hover-stripe {
    position: absolute;
	top: 100px;
	left: -50%;
	width: 200%;
	height: 200px;
    background-color: rgba(0,0,0,0.6);
    transform: rotate(-45deg);
}
#bloglist-section .pagination {
    text-align: center;
	margin-top: 70px;
}
#bloglist-section .pagination .page-numbers {
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex-wrap: wrap;
    background-color: #f5f5f5;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    margin: 8px;
}
#bloglist-section .pagination .page-numbers.current {
    background-color: #fff;
	box-shadow: 0px 0px 38px 2px rgba(0,0,0,0.26);
}
#bloglist-cta #hpsec7 .le-contain {
    position: relative;
}
#bloglist-cta #hpsec7 {
    background-position: top center;
    background-color: transparent;
    padding-top: 100px;
    margin-top: -20px;
}

#single-blog {
    padding: 130px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
.single-blog-contain {
    display: block;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}
.single-blog-wrap .blog-featured-image {
	display: block;
    max-width: 100%;
    box-shadow: 0px 0px 50px 3px rgba(0,0,0,0.26);
    margin: 0 auto 48px;
}
.single-blog-content .category-date {
    margin-bottom: 30px;
}
.single-blog-content h3 {
    margin-bottom: 15px;
}
.single-blog-content .blog-category {
    display: inline-block;
}
.blog-category > p {
    display: inline-block;
    margin: 0;
}
.blog-category .post-categories {
	display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-category .post-categories li {
    display: inline-block;
}
.single-blog-content .blog-date {
    display: inline-block;
}
.single-blog-inside p {
    color: #858585;
    margin-bottom: 30px;
}
.single-blog-inside p:last-child {
	margin-bottom: 0;
}
.single-blog-share {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	margin-top: 60px;
}
.single-blog-share h5 {
    margin: 0 25px 0 0;
	font-size: 20px;
}
.social-links a {
	display: inline-block;
	width: 34px;
	padding: 8px 0px;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	color: #fff;
	border-radius: 50px;
	background-color: #a5a5a5;
	margin: 0 3px;
}
.social-links a:hover {
	background-color: #000;
}
#single-blog hr {
    border: none;
    height: 1px;
    display: block;
    width: 100%;
    background-color: #e1e1e1;
    margin: 40px 0 0;
}
.latest-list {
    
}
.latest-list .latest-item {
    position: relative;
    display: block;
    width: 48.5%;
	color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	box-shadow: 0px 0px 30px 2px rgba(0,0,0,0.26);
}
.latest-list .latest-item::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
}
.latest-list .latest-item:first-child {
    margin-right: 3%;
}
.single-latest-blog {
    margin-top: 40px;
}
.post-info .category {
    margin: 0;
}
.post-info h5 {
    margin: 15px 0;
    max-width: 350px;
}
.latest-item .post-info {
	position: relative;
    padding: 100px 20px 20px;
}

#gallery-sliders-section {
    padding: 40px 0 100px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}
.top-slider-wrap {
    margin-bottom: 100px;
}
.gal-slider-wrap .gal-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
	padding-bottom: 90px;
}
.gal-slider .slick-arrow {
    position: absolute;
    bottom: 0;
	background-color: #fff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    width: 54px;
    height: 54px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 30px 2px rgba(0,0,0,0.26);
}
.gal-slider .slick-arrow.fa-caret-right {
    right: 44%;
}
.gal-slider .slick-arrow.fa-caret-left {
    left: 44%;
}
.gal-slider .gal-slider-item {
    padding: 0 10px;
}
.gal-slider-item img {
    display: block;
    width: 100%;
}
.gal-slider-wrap h3.underlined-heading {
    width: 100%;
    text-align: center;
	margin-bottom: 60px;
}

#menu-section {
    padding: 80px 0 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
#menu-section .menu-tabs-wrap {
    width: 100%;
    justify-content: center;
    align-items: center;
	margin-bottom: 80px;
}
#menu-section .menu-tabs-wrap::before, #menu-section .menu-tabs-wrap::after {
    content: '';
    display: block;
    height: 1px;
    flex: 1;
    background-color: #000;
}
.menu-tabs-wrap .menu-tabs {
    width: 100%;
    max-width: 425px;
    align-items: center;
}
.menu-tabs .menu-tab {
    display: block;
    width: 48%;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: #000;
    padding: 18px 0;
    border: 2px solid #000;
}
.menu-tabs .menu-tab.active {
	background-color: #000;
	color: #fff;
}
.menu-tabs .menu-tab:first-child {
    margin-right: 4%;
}
.menu-groups-wrap .menu-group {
    position: relative;
}
.menu-group .menu-group-anchor {
    position: absolute;
    top: -120px;
}
.menu-groups-wrap .menu-group:not(:last-child) {
    margin-bottom: 124px;
}
.menu-group .menu-group-list {
    display: block;
    width: 50%;
	padding-right: 30px;
	position: relative;
	z-index: 1;
}
.menu-group-list .menu-group-header {
    align-items: center;
	margin-bottom: 20px;
}
.menu-group-list .menu-list {
    padding: 24px;
    background-color: #fff;
	box-shadow: 0px 0px 26px 2px rgba(0,0,0,0.26);
}
.menu-list .menu-list-item {
	position: relative;
    padding: 10px 20px;
    border-top: 1px solid #ddd;
	cursor: default;
}
.menu-list-item:not(.active) {
	cursor: pointer;
}
.menu-list-item .indicator {
    position: absolute;
    right: 20px;
	opacity: 1;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu-list-item.active .indicator {
	opacity: 0;
}
.menu-list-item .menu-item-content {
    max-height: 0px;
	overflow: hidden;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu-list-item.active .menu-item-content {
	max-height: 1999px;
}
.menu-group-header .header-image {
    display: block;
    width: 112px;
    height: 112px;
	margin-right: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.menu-group-header .header-title h4 {
    margin: 0;
}
.menu-group-header .header-title .schedule {
    color: #858585;
}
.menu-list-item .menu-item-label {
    margin: 0 0 0;
    line-height: 1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu-list-item.active .menu-item-label {
	margin: 0 0 15px;
}
.menu-item-label sup {
    font-size: 12px;
}
.menu-item-content .menu-item-subheader {
    justify-content: space-between;
    align-items: flex-start;
	margin-bottom: 15px;
}
.menu-item-subheader .addon {
    display: block;
    width: 80%;
    max-width: 275px;
    font-size: 18px;
    color: #858585;
}
.menu-item-content .variation {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.variation-name sup {
    font-size: 12px;
    line-height: 1;
}
.menu-item-content .variation:last-child {
    margin-bottom: 20px;
}
.variation .variation-name {
    margin-bottom: 0;
    color: #858585;
	max-width: 205px;
	font-size: 16px;
}
.menu-item-addons {
    margin-bottom: 0;
    color: #858585;
    font-style: italic;
    margin-top: 10px;
    font-size: 16px;
}
.variation > hr {
    border: 1px dashed #858585;
    margin: 0 7px;
    flex: 1;
    position: relative;
    top: 7px;
}
.menu-item-subheader .price-label, .variation .price-tag {
    font-weight: 700;
}
.menu-group-images {
    display: block;
    width: 50%;
    z-index: 0;
}
.menu-group-images .image-item {
    display: block;
    margin-bottom: 25px;
    width: calc(100% + 80px);
    height: 400px;
    position: relative;
    right: 80px;
}
.image-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-group-images .image-item:last-child{
	margin-bottom: 0;
}

.menu-groups-wrap .menu-group:nth-child(2n) .menu-group-list {
    order: 2;
    padding-right: 0;
    width: calc(50% + 30px);
}
.menu-groups-wrap .menu-group:nth-child(2n) .menu-group-header {
    justify-content: flex-end;
}
.menu-groups-wrap .menu-group:nth-child(2n) .header-image {
    margin-left: 25px;
    margin-right: 0;
    order: 2;
}
.menu-groups-wrap .menu-group:nth-child(2n) .header-title {
    text-align: right;
}
.menu-groups-wrap .menu-group:nth-child(2n) .menu-group-images {
    width: calc(50% - 30px);
}
.menu-groups-wrap .menu-group:nth-child(2n) .menu-group-images .image-item {
    right: unset;
}

.drinks-menu-group .menu-list-item .menu-item-label {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.drinks-menu-group .menu-list-item .menu-item-label span:first-child {
    min-width: 60%;
}
.drinks-menu-group .menu-list-item .menu-item-label span:not(:first-child) {
	opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.drinks-menu-group .menu-list-item.active .menu-item-label span:not(:first-child) {
	opacity: 1;
}
.drinks-menu-group .price-tag1, .drinks-menu-group .price-tag2 {
    margin: 0;
}
.drinks-menu-group .between-prices {
    max-width: 11%;
}
#reservation-section .reservation-wrap {
    display: flex;
	flex-wrap: wrap;
    position: relative;
    border: 3px solid #000;
	border-bottom: none;
    padding: 75px 30px 120px;
	align-items: center;
	overflow: hidden;
}
.reservation-wrap .reservation-content {
	position: relative;
    display: block;
    width: 75%;
	z-index: 1;
}
.reservation-button {
    position: relative;
    z-index: 1;
    top: 50px;
}
.reservation-paragraph {
    max-width: 565px;
}
#reservation-section .reservation-wrap::before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
#reservation-section .reservation-wrap::after {
    content: '';
    position: absolute;
    display: block;
    -webkit-clip-path: polygon(50% 0, 100% 0%, 50% 100%, 0% 100%);
    clip-path: polygon(50% 0, 100% 0%, 50% 100%, 0% 100%);
	width: 82%;
	height: 149%;
	right: -200px;
	top: 0;
}
.reservation-wrap .reservation-content::before {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: 9px;
    top: -68px;
    transform: rotate(180deg);
}
.reservation-wrap .reservation-content::after {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 303px;
    bottom: -100px;
}
/** Reservation Page **/
#reserve,
#book {
	padding: 100px 0;
}
#reserve .rtb-booking-form button {
	border: 2px solid #000 !important;
	font-size: 16px;
	cursor: pointer;
	font-weight: 600;
}
/** Booking Page **/
#book .rtb-view-bookings-form .rtb-view-bookings-table {
	width: 100%;
	border: 1px solid #000;
}
#book .rtb-view-bookings-form-date-selector-div {
	padding-bottom: 30px;
}
#book .rtb-view-bookings-form-date-selector-div select {
	width: 250px;
	padding: 10px;
	font-size: 16px;
}
#book .rtb-view-bookings-form-date-selector-div select option:focus  {
	background-color: #000 !important;
}

/* 404 Page*/
#not-found-section {
    position: relative;
    display: block;
    width: 100%;
    padding: 200px 0;
	text-align: center;
}
#not-found-section h1 {
    font-size: 120px;
    line-height: 1.2;
}
#not-found-section h1 span {
    font-size: 64px;
    display: block;
}
#not-found-section p {
    font-size: 20px;
}
#not-found-section p a {
    text-decoration: underline;
}
#not-found-section p a:hover {
   	opacity: 0.7;
}

/*Contact Us*/
body .contact-form-wrap .gform_wrapper ul li.gfield {
    margin-top: 0;
    padding-top: 0;
}

.contact-form-wrap .gform_wrapper li.hidden_label input {
    margin-top: 0;
}

.contact-form-wrap .gform_wrapper .gform_footer {
    text-align: center;
}

.contact-form-wrap .gform_wrapper .gform_footer .gform_button {
    display: inline-block;
    padding: 20px 40px !important;
    color: #fff;
    background-color: #000;
    border: none;
    font-weight: 700;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.contact-form-wrap .gform_wrapper .gform_footer .gform_button:hover {
    background-color: #444;
}

.contact-form-wrap .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
    margin-bottom: 0;
}

.contact-form-wrap .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.contact-form-wrap .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0;
}

.contact-form-wrap .gform_wrapper li.gfield.gfield_error,
.contact-form-wrap .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 0;
}

body .contact-form-wrap .gform_wrapper .top_label div.ginput_container {
    position: relative;
}

body .contact-form-wrap .gform_wrapper .top_label div.ginput_container:before,
body .contact-form-wrap .gform_wrapper .top_label div.ginput_container:after {
    content: '';
    position: absolute;
    display: block;
    height: 24px;
    width: 1px;
    background-color: #000;
    bottom: 0;
}

body .contact-form-wrap .gform_wrapper .top_label div.ginput_container:before {
    left: 0;
}

body .contact-form-wrap .gform_wrapper .top_label div.ginput_container:after {
    right: 0;
}

body .contact-form-wrap .gform_wrapper .top_label div.ginput_container_textarea:before,
body .contact-form-wrap .gform_wrapper .top_label div.ginput_container_textarea:after {
    bottom: 6px;
}

body .contact-form-wrap .gform_wrapper .top_label div.ginput_container_name:after {
    right: 15px;
}

.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error input[type=email],
.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error input[type=number],
.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error input[type=password],
.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error input[type=tel],
.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error input[type=text],
.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error input[type=url],
.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error select,
.contact-form-wrap .gform_wrapper.gf_browser_chrome .gfield_error textarea,
.contact-form-wrap .gform_wrapper.gf_browser_chrome li.gfield_error.field_sublabel_above .ginput_complex input[type=text] {
    margin-bottom: 0;
}



/** My Responsive **/
@media only screen and (max-width: 1200px) {
    .le-contain {
        max-width: 1000px;
    }
    .flex-contain {
        max-width: 1000px;
    }
    .left-side-image {
        left: 50px;
    }
    .right-side-image {
        right: 5px;
    }
	#about-row1 .about-image {
		height: 530px;
	}
	#about-row2 .about-image {
		max-width: 60%;
	}
	.reservation-content h3.underlined-heading {
		font-size: 40px;
	}
	.reservation-paragraph {
		max-width: 75%;
	}
	#reserve {
		padding: 80px 0;
	}
}
@media only screen and (max-width: 1080px) {
    .le-contain {
        max-width: 900px;
    }
    .flex-contain {
        max-width: 900px;
    }
    .right-side-image {
        right: -32px;
    }
    .left-side-image {
        left: 10px;
    }
    #hpsec6 .solid-button {
        padding: 20px 20px;
    }
	#about-row1 .about-image {
		height: 560px;
	}
	#about-row2 .about-image {
		max-width: 50%;
	}
	
	.gal-slider .slick-arrow.fa-caret-right {
		right: 43%;
	}
	.gal-slider .slick-arrow.fa-caret-left {
		left: 43%;
	}

	#menu-section {
		padding: 40px 0;
	}
	.menu-group .menu-group-list {
		width: 100% !important;
		padding-right: 0 !important;
		max-width: 640px !important;
		margin: 0 auto 30px !important;
		order: 1 !important;
	}
	.menu-group-images {
		width: 100% !important;
		max-width: 640px !important;
		margin: 0 auto !important;
		order: 2 !important;
	}
	.menu-group-images .image-item {
		width: 100% !important;
		right: unset !important;
		left: unset !important;
	}
	.menu-groups-wrap .menu-group:not(:last-child) {
		margin-bottom: 60px;
	}
	
	.reservation-wrap .reservation-content {
		width: 100%;
		margin-bottom: 50px;
	}
	.reservation-paragraph {
		max-width: 100%;
	}
	#reservation-section .reservation-wrap::after {
		content: '';
		position: absolute;
		display: block;
		-webkit-clip-path: polygon(-40% -15%, 100% 50%, 100% 100%, 0% 100%);
		clip-path: polygon(-40% -15%, 100% 50%, 100% 100%, 0% 100%);
		width: 100%;
		height: 220px;
		right: unset;
		left: 0;
		top: unset;
		bottom: 0;
		z-index: 1;
	}
	.reservation-button {
		z-index: 2;
	}
	.reservation-wrap .reservation-content::after {
		right: 45%;
	}
}
@media only screen and (max-width: 980px) {
    .le-contain {
        max-width: 727px;
    }
    .flex-contain {
        max-width: 727px;
    }
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 60px;
    }
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 24px;
    }
    #responsive-menu-button {
        display: none !important;
    }
    #mobile-menu {
        display: block !important;
		position: relative;
        color: #fff;
        font-size: 32px;
    }
	#mobile-menu .fa-bars {
		position: relative;
		opacity: 1;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}
	#mobile-menu.is-active .fa-bars {
		opacity: 0;
	}
	#mobile-menu .fa-times {
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		font-size: 40px;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}
	#mobile-menu.is-active .fa-times {
		opacity: 1;
	}
    #hpsec1 {
        padding: 180px 0 160px;
    }
    #hpsec1 h1 {
        max-width: 360px;
    }
    #hpsec2 {
        padding: 40px 0;
    }
    section h3 {
        margin-bottom: 40px !important;
    }
    .service-item {
        padding: 20px 0;
    }
    .service-item .service-item-image, .service-item .service-item-text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .service-item .service-item-text {
        max-width: unset;
    }
    .service-item-image img {
        width: 100%;
        max-width: 320px;
        margin-bottom: 24px;
    }
    .service-item:nth-child(2n) .service-item-image {
        order: unset;
    }
    #hpsec3 {
        text-align: center;
        padding: 40px 0 40px;
    }
    #hpsec3 .button-wrap {
        margin-top: 24px;
    }
    .left-side-image {
        left: -80px;
    }
    .right-side-image {
        right: -110px;
    }
    #hpsec4 .flex-half {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #hpsec4 .hpsec4-image {
        padding-bottom: 60%;
    }
    #hpsec4 .hpsec4-text-right {
        padding: 40px;
    }
    #hpsec5 {
        padding: 40px 0;
    }
    #hpsec5 .text-content {
        max-width: unset;
        flex: 0 0 100%;
    }
    #hpsec5 .flex-twothird {
        flex: 0 0 100%;
        max-width: unset;
        padding-right: unset;
        margin: 0 auto;
    }
    #gallery-img01 {
        min-height: 0;
        flex: 0 0 100%;
        max-width: 500px;
        margin: 24px auto 0;
        padding-bottom: 55%;
    }
    #gallery-img02 {
        margin: 24px auto;
        width: 100%;
        min-height: 0;
        padding-bottom: 35%;
        max-width: 500px;
    }
    #gallery-img03 {
        width: 100%;
        min-height: 0;
        padding-bottom: 82%;
        margin: 0 auto 24px;
        max-width: 500px;
    }
    #hpsec5 .flex-onethird {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    #gallery-img04 {
        min-height: 0;
        width: 100%;
        margin-bottom: 24px;
        padding-bottom: 140%;
    }
    #gallery-img05 {
        min-height: 0;
        width: 100%;
        margin-bottom: 24px;
        padding-bottom: 90%;
    }
    #hpsec5 .button-wrap {
        text-align: center;
    }
    #hpsec6 {
        padding-top: 40px;
    }
    #hpsec6 .paragraph-wrap .flex-twothird {
        flex: 0 0 100%;
    }
    #hpsec6 .flex-twothird p {
        max-width: unset;
        margin-bottom: 24px;
    }
    #hpsec6 .flex-onethird {
        text-align: left;
    }
    #hpsec6 .solid-button {
        margin-right: 0;
    }
    #articles-slider .slick-arrow.fa-caret-left {
        right: 33%;
    }
    #hpsec7 {
        padding: 40px 0 80px;
    }
    #hpsec7 .heading-wrap {
        padding: 20px 40px 25px;
    }
    #hpsec7 p {
        font-size: 16px;
    }
    #footer-column1 {
        flex: 0 0 100%;
        max-width: unset;
        margin-top: -95px;
        margin-bottom: 24px;
    }
    #footer-column1-mobile {
        display: block;
        flex: 0 0 100%;
        text-align: center;
    }
    #footer-column1 .menu-primary-menu-container, #footer-column1 .footer-copyright {
        display: none;
    }
    #footer-column1 .footer-logo {
        margin: 0 auto;
    }
    #site-footer .flex-contain {
        justify-content: space-evenly;
    }
    #site-footer .menu {
        display: flex;
        justify-content: space-evenly;
    }
    #site-footer .menu a {
        font-size: 14px;
    }
	#cusec2 .contact-info-wrap, #cusec2 .contact-form-wrap {
		width: 100%;
		padding: 0;
	}
	#cusec2 .contact-info-wrap {
		margin-bottom: 40px;
	}
	
	#ausec2 {
		padding: 40px 0;
	}
	.about-row .about-image, .about-row .about-text {
		width: 100% !important;
		max-width: 100% !important;
	}
	.about-row .about-text {
		flex: unset;
	}
	.about-row .about-image {
		max-width: 440px !important;
		margin: 0 auto;
		height: 400px !important;
	}
	#ausec2 .middle-paragraph {
		position: relative;
		margin: 0;
		padding: 40px 60px;
		max-width: 100%;
		left: unset;
	}
	#about-row1 .about-text {
		padding: 0;
		margin: 40px 0;
	}
	#about-row2 .about-text {
		margin: 0;
		padding: 0;
		order: 2;
	}
	#about-row2 h3 {
		max-width: unset;
	}
	#about-row2 .about-image {
		margin: 40px auto;
	}
	
	#bloglist-section {
		padding: 40px 0 80px;
	}
	#bloglist {
		margin: 0;
	}
	.bloglist-item {
		width: 100%;
		max-width: 440px;
		height: 450px;
		margin: 10px auto;
	}
	.blog-hover .hover-stripe {
		position: absolute;
		top: calc(50% - 100px);
	}
	#bloglist-section .pagination {
		margin-top: 20px;
	}
	#bloglist-section .pagination .page-numbers {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	#bloglist-section .pagination .page-numbers.current {
		background-color: #fff;
		box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.26);
	}
	
	#single-blog {
		padding: 80px 0;
	}
	
	#gallery-sliders-section {
		padding: 40px 0 60px;
	}
	.top-slider-wrap {
		margin-bottom: 40px;
	}
	.gal-slider-wrap .gal-slider {
		padding-bottom: 70px;
	}
	.gal-slider .slick-arrow {
		width: 45px;
		height: 45px;
	}
	.gal-slider .slick-arrow.fa-caret-right {
		right: 42%;
	}
	.gal-slider .slick-arrow.fa-caret-left {
		left: 42%;
	}
	.menu-item-content .variation {
		margin-bottom: 15px;
	}
}
@media only screen and (max-width: 767px) {
    .le-contain {
        max-width: 600px;
    }
    .flex-contain {
        max-width: 600px;
    }
    .hpsec2-menu-wrapper .menu-panel {
        flex: 0 0 100%;
        margin: 0 auto 24px;
    }
    .left-side-image {
        bottom: 0;
        left: 20px;
    }
    .right-side-image {
        top: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 0 20px 70px rgba(255,255,255,0.9);
    }
    .left-side-image {
        left: 0;
        bottom: 0;
    }
	#ausec2 .middle-paragraph {
		background-size: 100% 100%;
	}
	.latest-list .latest-item {
		width: 100%;
		max-width: 440px;
		margin: 0 auto 24px !important;
	}
	.latest-list .latest-item:last-child {
		margin-bottom: 0 !important;
	}
	.gal-slider .slick-arrow.fa-caret-right {
		right: 41%;
	}
	.gal-slider .slick-arrow.fa-caret-left {
		left: 41%;
	}

	.reservation-content h3.underlined-heading {
		font-size: 32px;
	}
	.reservation-wrap .reservation-content::before {
		right: -8%;
		top: -8%;
	}
	#not-found-section h1 {
		font-size: 80px;
	}
	#not-found-section h1 span {
		font-size: 34px;
	}
}
@media only screen and (max-width: 640px) {
    .le-contain {
        max-width: 400px;
    }
    .flex-contain {
        max-width: 400px;
    }
	#hpsec1, .page-banner {
		height: 105vh;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
    #articles-slider {
        width: 100%;
    }
    #articles-slider article.slick-slide {
        padding: 0;
    }
    #articles-slider .slick-arrow.fa-caret-right {
        right: 0;
    }
    #articles-slider .slick-arrow.fa-caret-left {
        right: 70px;
    }
    #hpsec6 .flex-onethird {
        flex: 0 0 100%;
    }
    #articles-slider .slick-arrow {
        top: -93px;
    }
    #footer-column2, #footer-column3 {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 24px;
    }
	#cusec2 .contact-form-wrap::before {
		top: -20px;
	}
	#cusec2 .contact-form-wrap::after {
		right: 0px;
	}
	.label-tabs .tab {
		font-size: 14px;
	}
	.details-wrap .info, .details-wrap .info a {
		display: block;
		text-align: center;
    	margin-bottom: 20px !important;
	}
	.info i {
		margin: 0 auto;
	}
	.info p span {
		display: block;
	}
	.info p br {
		display: none;
	}
	
	#ausec2 {
		padding: 40px 0 0;
	}
	#ausec2 .middle-paragraph {
		padding: 60px;
	}
	
	.bloglist-item {
		height: 400px;
	}
	.bloglist-item {
		height: 320px;
	}
	
	.gal-slider .slick-arrow.fa-caret-right {
		right: 36%;
	}
	.gal-slider .slick-arrow.fa-caret-left {
		left: 36%;
	}
	.variation .variation-name {
		max-width: 130px;
		font-size: 14px;
	}
	.addon p, .variation .price-tag, .drinks-menu-group .price-tag1, .drinks-menu-group .price-tag2, .drinks-menu-group .menu-list-item .menu-item-label span, .menu-item-subheader .price-label, .menu-list-item .menu-item-label {
		font-size: 14px;
	}
	.menu-list-item .menu-item-label {
		max-width: 70%;
	}
	.drinks-menu-group .menu-list-item .menu-item-label span:first-child {
		min-width: 40%;
		max-width: 50%;
	}
	#reservation-section .reservation-wrap {
		padding: 40px 30px 70px;
	}
	.reservation-button {
		top: 30px;
	}
	#reservation-section .reservation-wrap::after {
		height: 160px;
		-webkit-clip-path: polygon(-70% -15%, 100% 30%, 100% 100%, 0% 100%);
		clip-path: polygon(-70% -15%, 100% 30%, 100% 100%, 0% 100%);
	}
	.reservation-button .bordered-button {
		padding: 15px 25px;
	}
	#site-footer .menu {
		display: none;
	}
}
@media only screen and (max-width: 440px) {
    .le-contain {
        max-width: 280px;
        width: 90%;
    }
    .flex-contain {
        max-width: 280px;
        width: 90%;
    }
    #site-header .flex-contain {
        max-width: unset;
        width: 90%;
    }
    .site-brand {
        max-width: 180px;
    }
    #hpsec1 {
        padding: 140px 0 80px;
    }
    #hpsec1::after {
        height: 60px;
    }
    #hpsec4 .hpsec4-text-right {
        padding: 20px;
    }
    #articles-slider article.slick-slide .article-wrap {
        min-height: 260px;
    }
    #hpsec6 .solid-button {
        padding: 10px 15px;
    }
    #articles-slider .slick-arrow {
        font-size: 20px;
        padding: 11px 15px;
        top: -72px;
    }
    #articles-slider .slick-arrow.fa-caret-left {
        right: 50px;
    }
    .footer-copyright {
        opacity: 1;
        color: #7c7c7c;
    }
    .footer-copyright span {
        display: block;
    }
    .footer-copyright br {
        display: none;
    }
    .footer-copyright a:hover {
        color: #fff;
        opacity: 1;
    }
	#cusec2 .contact-form-wrap::after {
		right: -40px;
	}

	.about-row .about-image {
		height: 300px !important;
	}
	#ausec2 .middle-paragraph {
		padding: 80px 40px;
	}
	#about-row1 h3 {
		max-width: 200px;
	}
	#about-row2 h3 {
		max-width: 200px;
	}
	.single-blog-inside p {
		font-size: 14px;
	}
	
	.gal-slider .slick-arrow.fa-caret-right {
		right: 31%;
	}
	.gal-slider .slick-arrow.fa-caret-left {
		left: 31%;
	}
	
	#menu-section .le-contain {
		max-width: unset;
	}
	#reservation-section .le-contain {
		max-width: unset;
	}
}