/* Bootstrap CDN will be loaded in HTML */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css');

/* Custom styles converted from SCSS */
* {
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    min-height: 100vh;
}

body {
    background-color: #000;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 100%;
}

@media (min-width: 1024px) {
    .container {
        max-width: 980px;
    }
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

/* Header styles */
.main-menu {
    background-color: transparent;
    transition: all 0.3s ease-in-out 0s;
}

.main-menu .navbar {
    padding-bottom: 0;
    padding-top: 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .main-menu .navbar {
        align-items: stretch;
    }
}

.main-menu .navbar-brand {
    padding: 10px 0;
    transition: all 0.3s ease-in-out 0s;
}

@media (max-width: 768px) {
    .main-menu .navbar-brand {
        max-width: 220px;
    }
}

.main-menu .navbar-brand img {
    transition: all 0.3s ease-in-out 0s;
}

.main-menu .navbar-brand .normal_logo {
    display: block;
}

@media (max-width: 768px) {
    .main-menu .navbar-brand .normal_logo {
        display: none;
    }
}

.main-menu .navbar-brand .retina_logo {
    display: none;
}

@media (max-width: 768px) {
    .main-menu .navbar-brand .retina_logo {
        display: block;
    }
}

.main-menu .navbar-toggler {
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: white;
    font-size: 24px;
}

.main-menu .navbar-collapse {
    align-items: stretch;
}

@media (max-width: 768px) {
    .main-menu .navbar-collapse {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.main-menu .navbar-nav .nav-item {
    display: flex;
}

.main-menu .navbar-nav .nav-item .nav-link {
    align-items: center;
    color: white;
    display: flex;
    font-size: 14px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.25;
    padding: 0 20px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
}

@media (max-width: 768px) {
    .main-menu .navbar-nav .nav-item .nav-link {
        padding: 10px 15px;
    }
}

.main-menu .navbar-nav .nav-item .nav-link:hover,
.main-menu .navbar-nav .nav-item .nav-link:focus,
.main-menu .navbar-nav .nav-item .nav-link.active {
    color: #a81c51;
}

.main-menu.is-sticky {
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease-in-out 0s;
}

.main-menu.is-sticky .navbar .navbar-brand {
    max-width: 160px;
    transition: all 0.3s ease-in-out 0s;
}

/* Footer styles */
.site-footer {
    position: relative;
}

.site-footer:before {
    background-attachment: scroll;
    background-color: black;
    background-image: url(../images/title-line.png);
    background-position: left top;
    background-repeat: repeat-x;
    content: '';
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.footer-copyright {
    padding-bottom: 30px;
    padding-top: 30px;
}

.footer-links {
    margin-bottom: 35px;
}

.footer-links .footer-links-item:not(:last-child) {
    margin-right: 30px;
}

@media (max-width: 576px) {
    .footer-links .footer-links-item:not(:last-child) {
        margin-right: 15px;
    }
}

.footer-links .footer-links-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
}

.footer-links .footer-links-link:hover,
.footer-links .footer-links-link:focus {
    color: #a81c51;
    text-decoration: none;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.footer-copyright p a {
    color: white;
    transition: all 0.3s ease-in-out 0s;
}

.footer-copyright p a:hover,
.footer-copyright p a:focus {
    color: #a81c51;
    text-decoration: none;
}

/* Home section styles */
.section-header {
    padding-bottom: 60px;
}

.section-header h2 {
    color: white;
    font-size: 70px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin-bottom: 5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 36px;
    }
}

.section-header p {
    color: white;
    font-size: 14px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}

.home-aboutus {
    padding-bottom: 20px;
    padding-top: 60px;
}

.home-aboutus .home-aboutus-image {
    margin-bottom: 50px;
}

.home-aboutus .home-aboutus-content {
    margin-bottom: 50px;
}

.home-aboutus .home-aboutus-content h3 {
    color: white;
    font-size: 36px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.home-aboutus .home-aboutus-content p {
    color: white;
    font-size: 14px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}

.home-aboutus .home-aboutus-content .input-group .form-control {
    background-color: #252525;
    border-color: #464646;
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    box-shadow: none;
    color: #888888;
    font-size: 16px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    height: 55px;
}

.home-aboutus .home-aboutus-content .input-group .form-control::-webkit-input-placeholder {
    color: #888888;
    opacity: 1;
}

.home-aboutus .home-aboutus-content .input-group .form-control::-moz-placeholder {
    color: #888888;
    opacity: 1;
}

.home-aboutus .home-aboutus-content .input-group .input-group-addon .news-letter-submit {
    background-color: #a81c51;
    border: none;
    border-radius: 0;
    color: white;
    font-size: 16px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    height: 55px;
    padding: 5px 20px;
    text-transform: uppercase;
}

.home-aboutus .home-aboutus-content .input-group .input-group-addon .news-letter-submit:hover,
.home-aboutus .home-aboutus-content .input-group .input-group-addon .news-letter-submit:focus {
    outline: none;
}

/* Portfolio styles */
.portfolio-header {
    padding-bottom: 50px;
    padding-top: 60px;
}

.portfolio-buttons .portfolio-buttons-item {
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 13px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    outline: none;
    padding: 8px 20px 6px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
}

.portfolio-buttons .portfolio-buttons-item:not(:last-child) {
    margin-right: 20px;
}

.portfolio-buttons .portfolio-buttons-item.is-checked,
.portfolio-buttons .portfolio-buttons-item:hover,
.portfolio-buttons .portfolio-buttons-item:focus {
    background-color: #a81c51;
    border-color: #a81c51;
    color: white;
}

.portfolio {
    background-attachment: fixed;
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px;
}

@media (max-width: 1364.98px) {
    .portfolio {
        padding: 35px 15px 5px;
    }
}

.portfolio-item {
    border-color: #2e2e2e black black #2e2e2e;
    border-style: solid;
    border-width: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 15px;
    position: relative;
    width: 100%;
}

.portfolio-item:after {
    border: 15px solid #ffffff;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 0 0 5px 0 #000000 inset;
}

.portfolio-item img {
    transition: all 1.5s ease;
}

.portfolio-item .portfolio-item-overlay {
    background: rgba(203, 80, 109, 0.9) repeat;
    bottom: 0;
    color: white;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    transition: all 0.5s ease-in-out 0s;
    visibility: hidden;
    width: 100%;
}

.portfolio-item .portfolio-item-overlay .links {
    display: flex;
    justify-content: center;
    left: 0;
    padding: 0 15px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-200%);
    transition: all 0.6s ease-in-out 0s;
    width: 100%;
    z-index: 999;
}

.portfolio-item .portfolio-item-overlay .links a {
    align-items: center;
    border: 1px solid white;
    border-radius: 50%;
    color: white;
    display: flex;
    font-size: 20px;
    height: 47px;
    justify-content: center;
    width: 47px;
}

.portfolio-item .portfolio-item-overlay .links a:not(:last-child) {
    margin-right: 1rem;
}

.portfolio-item .portfolio-item-overlay .links a:hover,
.portfolio-item .portfolio-item-overlay .links a:focus {
    text-decoration: none;
}

.portfolio-item .portfolio-item-overlay .image-overlay-details {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    padding: 20px 15px 50px;
    position: absolute;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.6s ease-in-out 0s;
    width: 100%;
    z-index: 1;
}

.portfolio-item .portfolio-item-overlay .image-overlay-details h3 {
    color: white;
    font-size: 16px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-transform: uppercase;
}

.portfolio-item .portfolio-item-overlay .image-overlay-details h3 a {
    color: white;
}

.portfolio-item .portfolio-item-overlay .image-overlay-details h3 a:hover,
.portfolio-item .portfolio-item-overlay .image-overlay-details h3 a:focus {
    text-decoration: none;
}

.portfolio-item:hover img,
.portfolio-item:focus img {
    transform: scale(1.2);
}

.portfolio-item:hover .portfolio-item-overlay,
.portfolio-item:focus .portfolio-item-overlay {
    opacity: 1;
    visibility: visible;
}

.portfolio-item:hover .portfolio-item-overlay .links,
.portfolio-item:focus .portfolio-item-overlay .links {
    transform: translateY(-50%);
}

.portfolio-item:hover .portfolio-item-overlay .image-overlay-details,
.portfolio-item:focus .portfolio-item-overlay .image-overlay-details {
    transform: translateY(0);
}

/* Home banner styles */
.home-banner {
    background-attachment: scroll;
    background-color: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.home-banner-wrapper {
    align-items: center;
    display: flex;
    height: 100vh;
    padding: 15px;
    width: 100%;
}

.home-banner-wrapper h4 {
    color: rgba(119, 119, 119, 1);
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.5;
    margin-bottom: 35px;
}

.home-banner-wrapper h4 span {
    color: white;
}

.home-banner-wrapper h1 {
    font-size: 80px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    letter-spacing: 5px;
    line-height: 1.25;
    margin-bottom: 35px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .home-banner-wrapper h1 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .home-banner-wrapper h1 {
        font-size: 36px;
    }
}

.home-banner-wrapper h1 span {
    color: white;
}

.home-banner-wrapper h1 span:last-child {
    color: white;
}

.home-banner-button {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    color: white;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1;
    padding: 13px 35px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
}

.home-banner-button:hover,
.home-banner-button:focus {
    background-color: #a81c51;
    border-color: #a81c51;
    color: white;
    text-decoration: none;
}

/* Swipebox styles */
#swipebox-overlay img {
    border: none !important;
}

#swipebox-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    overflow: hidden;
    user-select: none;
    background: #0d0d0d;
}

#swipebox-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#swipebox-slider {
    transition: transform 0.4s ease;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    white-space: nowrap;
    position: absolute;
    display: none;
    cursor: pointer;
}

#swipebox-slider .slide {
    height: 100%;
    width: 100%;
    line-height: 1px;
    text-align: center;
    display: inline-block;
}

#swipebox-slider .slide:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}

#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: middle;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
    transition: 0.5s;
    position: absolute;
    left: 0;
    z-index: 999;
    height: 50px;
    width: 100%;
    text-shadow: 1px 1px 1px black;
    background: #000;
    opacity: 0.95;
}

#swipebox-bottom-bar {
    bottom: -50px;
}

#swipebox-bottom-bar.visible-bars {
    transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
    top: -50px;
}

#swipebox-top-bar.visible-bars {
    transform: translate3d(0, 50px, 0);
}

#swipebox-title {
    display: block;
    width: 100%;
    text-align: center;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
    background-image: url(../images/icons.png);
    background-repeat: no-repeat;
    border: none !important;
    text-decoration: none !important;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 0;
}

#swipebox-arrows {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 50px;
}

#swipebox-prev {
    background-position: -32px 13px;
    float: left;
}

#swipebox-next {
    background-position: -78px 13px;
    float: right;
}

#swipebox-close {
    top: 0;
    right: 0;
    position: absolute;
    z-index: 9999;
    background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
    display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
    opacity: 0.3;
}

#swipebox-top-bar {
    color: white !important;
    font-size: 15px;
    line-height: 43px;
    font-family: Helvetica, Arial, sans-serif;
}

@media screen and (min-width: 800px) {
    #swipebox-close {
        right: 10px;
    }

    #swipebox-arrows {
        width: 92%;
        max-width: 800px;
    }
}
