body, div, span, img, ul, ol, li, a, p, hr, h1, h2, h3 form, input, select, textarea, header, nav, main, footer, section {
	margin: 0px; padding: 0px; border: 0px; text-decoration: none;
}
:root {
    --app-height: calc(var(--vh, 1vh)*100);
    --slider-height: calc(var(--vh, 1vh)*100);
    --white: #fefefe;
    --black: #0a0a0a;
    --gold: #ccac00;
    --gray-light-m: #bbb;
}
body {
    background-color: var(--white);
    font-family: 'Montserrat';
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
}
.wrapper {
    width: 93%;
    margin: 0 auto;
}
.wrapper--first {
    width: 100%;
    max-width: 1400px;
}
.clear {
    width: 100%;
    height: 0px;
    overflow: hidden;
    clear: both;
}
a {
    outline-width: 0px;
}
a.link {
    font-weight: 600;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
a.link:hover {
    color: var(--blue-bg-d);
}
/*header-page*/
.header-page {
    position: relative;
    padding: 190px 0px 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.header-page::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.71) 0%, rgba(0, 0, 0, 0.49) 40%, rgba(0, 0, 0, 0.20) 70%);
}
.header-page h1 {
    position: relative;
    color: var(--white);
    font-family: 'lato';
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}
/*nav*/
.nav {
    position: fixed;
    top: 0px;
    width: 100%;
    background: var(--black);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.nav-wrapper {
    position: relative;
    padding: 20px 0;
}
.nav.fixed .nav-wrapper {
    padding: 10px 0;
}
.nav-wrapper, 
.nav .logo-area,
.nav .menu-wrapper {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.logo-area {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 180px;
    height: 180px;
    background-color: var(--black);
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.logo {
    display: block;
}
.logo img {
    display: block;
    position: relative;
    width: 90%;
    transform: translate(5%, 5%);
}
.nav.fixed .logo-area {
    width: 140px;
    height: 140px;
}
/*menu*/
.menu-wrapper {
    float: right;
}
ul.menu {
    list-style-type: none;
    font-family: 'Lato';
    cursor: pointer;
}
ul.menu > li {
    float: left;
    padding: 0 15px;
    position: relative;
}
ul.menu > li > a {
    position: relative;
    display: block;
    padding: 10px 0px;
    text-transform: none;
    line-height: 30px;
    font-size: 23px;
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
ul.menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 0;
    height: 2px;
    background-color: var(--white);
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
ul.menu > li:hover > a::after,
ul.menu > li.active > a::after {
    left: 10%;
    width: 80%;
    opacity: 1;
}
ul.menu > li:hover > a,
/*ul.menu > li.active > a {
    color: var(--gray-light-m);
}*/
ul.menu > li:hover > a::before,
ul.menu > li.active > a::before {
    opacity: 1;
}
/*submenu*/
.open-sub-menu {
    display: none;
}
@media screen and (min-width: 961px) {
    .sub-menu-wrapper {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        padding-top: 10px;
        opacity: 0;
        z-index: 10;
        visibility: hidden;
        -webkit-transition: all 400ms ease-in-out;
        -moz-transition: all 400ms ease-in-out;
        -o-transition: all 400ms ease-in-out;
        transition: all 400ms ease-in-out;
    }
    ul.menu > li:hover .sub-menu-wrapper {
        opacity: 1;
        visibility: visible;
    }
}
ul.sub-menu {
    position: relative;
    list-style-type: none;
    width: 200px;
    background-color: var(--white);
    border-radius: 7px;
    font-family: 'Lato';
    box-shadow: 0px 0px 10px 0px var(--black);
}
ul.sub-menu > li > a {
    display: block;
    padding: 10px 10px;
    font-size: 17px;
    font-style: italic;
    line-height: 25px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
ul.sub-menu > li:first-child > a {
    border-radius: 7px 7px 0px 0px;
}
ul.sub-menu > li:last-child > a {
    border-radius: 0px 0px 7px 7px;
}
/*ul.sub-menu > li:hover > a {
    color: var(--white);
}*/
/*mobile menu*/
.mobile-burger {
    position: relative;
    top: 0px;
    right: 0px;
    float: right;
    padding: 8px 10px;
    cursor: pointer;
    display: none;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mobile-burger .line {
    width: 40px;
    height: 4px;
    background-color: var(--white);
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mobile-burger.active .line:nth-child(2){
    opacity: 0;
}
.mobile-burger.active .line:nth-child(1){
    -webkit-transform: translateY(12px) rotate(45deg);
    -moz-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    -o-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
}
.mobile-burger.active .line:nth-child(3){
    -webkit-transform: translateY(-12px) rotate(-45deg);
    -moz-transform: translateY(-12px) rotate(-45deg);
    -ms-transform: translateY(-12px) rotate(-45deg);
    -o-transform: translateY(-12px) rotate(-45deg);
    transform: translateY(-12px) rotate(-45deg);
}
/*main*/
.main {
    overflow: hidden;
}
.content-wrapper {
    width: 100%;
    padding: 20px 0;
}
.error404 {
    padding: 25px 0px;
    font-weight: 600;
    font-size: 14px;
}
/*gallery*/
.gallery-title {
    margin: 20px 0;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
}
.gallery-intro {
    margin: 20px 0;
}
.gallery {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}
.gallery--space-between {
    justify-content: space-between;
}
.gallery__item {
    position: relative;
    display: block;
    width: 24.5%;
    padding-top: 17%;
    margin: 0.25%;
    overflow: hidden;
}
.gallery__img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.gallery__overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.gallery__mask {
    width: 100%;
    height: 100%;
    background-color: #191919;
    opacity: 0.0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.gallery__mask--more {
    opacity: 1 !important;
}
.gallery__zoom {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 27px;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.gallery__more {
    position: absolute;
    top: 50%;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    transform: translateY(-50%);
}
.gallery__more i {
    -webkit-transition: 200ms;
    -moz-transition: 200ms;
    -o-transition: 200ms;
    transition: 200ms;
}
.gallery__item:hover .gallery__img {
    transform: scale(1.1);
}
.gallery__item:hover .gallery__mask {
    opacity: 0.6;
}
.gallery__item:hover .gallery__zoom {
    opacity: 1;
}
.gallery__item:hover .gallery__more i {
    margin-left: 10px;
}
/*pagination*/
.pagination {
    margin: 10px 0px;
}
.pagination .link-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination .link {
    display: block;
    padding: 7px 10px 7px 10px;
    color: var(--gold);
    font-size: 17px;
    font-weight: 700;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.pagination .link:first-child {
    background-image: none;
}
.pagination .link:hover {
    color: var(--black);
}
.pagination .link.active {
    color: var(--black);
}
.pagination .info {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    margin-top: 5px;
}
/*section*/
.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}
.section__col {
    width: 49%;
    display: flex;
    align-items: center;
}
.section__col--center {
    justify-content: center;
}
.section__img {
    width: 100%;
    position: relative;
}
.section__img--bg {
    width: 95%;
}
.section__img--bg-right {
    left: 5%;
}
.section__img--bg-left {
    left: 0%;
}
.section__img--bg-gold::before {
    background-color: var(--gold);
}
.section__img--bg-black::before {
    background-color: var(--black);
}
.section__img--bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}
.section__img--bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    padding-top: 5%;
    background-color: var(--white);
}
.img-wrapper {
    position: relative;
    width: 100%;
}
.section__img--bg-right .img-wrapper {
    padding-top: 5%;
    right: 5%;
}
.section__img--bg-left .img-wrapper {
    padding-top: 5%;
    left: 5%;
}
.img-wrapper img {
    display: block;
    width: 100%;
}
.section h2 {
    font-size: 25px;
}
.section h3 {
    font-size: 20px;
}
.section__text p {
    margin: 20px 0;
    text-align: justify;
}
.section__text b {
    font-weight: 600;
}
.section__text ul {
    padding-left: 30px;
}
.section__text ul li {
    padding: 3px 0;
}
/*section-img*/
.section-img {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-img::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.section-img__button {
    position: relative;
    color: var(--white);
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    border: 3px solid var(--white);
    padding: 10px 20px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.section-img__button:hover {
    color: var(--black);
    background-color: var(--white);
}
/*portfolio*/
.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
    gap: 10px;
}
.portfolio--main {
    gap: 0 !important;
    margin-top: 0;
}
.portfolio__item {
    position: relative;
    display: block;
    width: calc(33.33% - 10px);
    padding-top: 20%;
    overflow: hidden;
}
.portfolio.portfolio--main {
    margin: 0;
}
.portfolio--main .portfolio__item {
    width: 33.33% !important;
}
.portfolio__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.portfolio__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.portfolio__mask {
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.3;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.portfolio__text {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    text-shadow: 0px 0px 5px var(--black);
}
.portfolio__item:hover .portfolio__img {
    transform: scale(1.1);
}
.portfolio__item:hover .portfolio__mask {
    opacity: 0;
}
/*contact-cart*/
.contact-cart {
    padding: 30px;
    box-sizing: border-box;
    background-color: var(--black);
    display: inline-block;
}
.contact-cart__item {
    padding: 10px;
}
.contact-link {
    display: flex;
}
.contact-link__icon {
    width: 50px;
    height: 50px;
    background-color: var(--gray-light-m);
    color: var(--black);
    border-radius: 50%;
    text-align: center;
    font-size: 21px;
    line-height: 50px;
}
.contact-link__icon-light {
    width: 50px;
    height: 50px;
    color: var(--black);
    border-radius: 50%;
    text-align: center;
    font-size: 33px;
    line-height: 50px;
}
.contact-link__text {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    line-height: 50px;
    padding-left: 20px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
a.contact-link:hover .contact-link__text {
    color: var(--gray-light-m);
}
.contact-info__header {
    padding: 10px 0;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Lato';
}
.contact-info__text {
    font-size: 17px;
    margin: 10px 0;
}
.map-area {
    width: 100%;
    background-color: var(--black);
}
.map-area iframe {
    width: 100%;
    height: 300px;
    opacity: 0.7;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.map-area iframe:hover {
    opacity: 0.9;
}
/*footer*/
.footer {
    padding: 40px 0;
    background-color: var(--black);
}
.footer-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.footer-col {
    width: 40%;
    padding-bottom: 25px;
}
.footer-col__header {
    color: var(--white);
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Lato';
    padding-bottom: 15px;
}
/*footer-contact*/
.footer-contact,
.footer-media {
    display: flex;
    flex-direction: column;
}
.contact-item,
.media-item {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    padding: 5px 0;
}
.contact-item span,
.media-item span {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}
.contact-item .span-icon {
    width: 30px;
}
.contact-item i,
.media-item i {
    font-size: 25px;
    color: var(--gray-light-m);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.contact-item:hover i,
.media-item:hover i {
    color: var(--white);
}
.copy-author {
    clear: both;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light-m)
}
.copy-author .bright {
    color: var(--white);
}
#swipebox-slider {
    height: calc(100% - 50px) !important;
}