@font-face {
    font-family: 'opensans_regular';
    src: url('/assets/includes/font/OpenSans-Regular-webfont.eot');
    src: url('/assets/includes/font/OpenSans-Regular-webfont.eot?') format('embedded-opentype'),
    url('/assets/includes/font/OpenSans-Regular-webfont.woff') format('woff'),
    url('/assets/includes/font/OpenSans-Regular-webfont.ttf') format('truetype'),
    url('/assets/includes/font/OpenSans-Regular-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans_semibold';
    src: url('/assets/includes/font/OpenSans-Semibold-webfont.eot');
    src: url('/assets/includes/font/OpenSans-Semibold-webfont.eot?') format('embedded-opentype'),
    url('/assets/includes/font/OpenSans-Semibold-webfont.woff') format('woff'),
    url('/assets/includes/font/OpenSans-Semibold-webfont.ttf') format('truetype'),
    url('/assets/includes/font/OpenSans-Semibold-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans_bold';
    src: url('/assets/includes/font/OpenSans-Bold-webfont.eot');
    src: url('/assets/includes/font/OpenSans-Bold-webfont.eot?') format('embedded-opentype'),
    url('/assets/includes/font/OpenSans-Bold-webfont.woff') format('woff'),
    url('/assets/includes/font/OpenSans-Bold-webfont.ttf') format('truetype'),
    url('/assets/includes/font/OpenSans-Bold-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

html {
    margin: 0 !important; /* Fix for magnific popup */
}

body {
    position: relative;
    z-index: 0;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0px;
    overflow-x: hidden;
    font-family: opensans_regular, arial;
}

body.fullscreen,
html.fullscreen {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

p {
    -webkit-font-smoothing: antialiased;
}

main p {
    margin-bottom: 25px;
}

a {

}

main a {
    font-size: 16px;
    text-decoration: underline;
    font-family: 'opensans_semibold';
}

ul {
    font-size: 0;
}

ul li {
    font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: opensans_bold;
    margin-bottom: 20px;
    letter-spacing: 0;
}

h1 {
    font-size: 48px;
    line-height: 52px;
}

h2 {
    font-size: 32px;
    line-height: 42px;
}

h3 {
    font-size: 20px;
    line-height: 35px;
}

h4 {
    font-size: 18px;
    line-height: 31px;
}

h5 {
    font-size: 14px;
    line-height: 25px;
}

h6 {
    font-size: 13px;
    line-height: 20px;
}

main {
    position: relative;
    z-index: 1;
}

.font-semibold {
    font-family: opensans_semibold;
}

.font-bold {
    font-family: opensans_bold;
}


/* ---------------------- */
/* Placholder             */
/* ---------------------- */
form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder,
form input::-moz-placeholder,
form textarea::-moz-placeholder,
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
    opacity: 1;
}


/* ---------------------- */
/* Preloader              */
/* ---------------------- */
@-webkit-keyframes loadingBar {
    0% {
        left: -100px
    }
    100% {
        left: 100px
    }
}

@-moz-keyframes loadingBar {
    0% {
        left: -100px
    }
    100% {
        left: 100px
    }
}

@keyframes loadingBar {
    0% {
        left: -100px
    }
    100% {
        left: 100px
    }
}

.loader {
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.loader span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 2px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.loader span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    -webkit-animation: loadingBar 1.4s ease;
    -moz-animation: loadingBar 1.4s ease;
    -o-animation: loadingBar 1.4s ease;
    animation: loadingBar 1.4s ease;
    animation-iteration-count: infinite;
}

body.loaded .loader {
    display: none;
}


/* ---------------------- */
/* Dividers               */
/* ---------------------- */
.divider10 {
    height: 10px;
    clear: both;
}

.divider20 {
    height: 20px;
    clear: both;
}

.divider30 {
    height: 30px;
    clear: both;
}

.divider40 {
    height: 40px;
    clear: both;
}

.divider50 {
    height: 50px;
    clear: both;
}

.divider60 {
    height: 60px;
    clear: both;
}

.divider70 {
    height: 70px;
    clear: both;
}

.divider80 {
    height: 80px;
    clear: both;
}

.divider90 {
    height: 90px;
    clear: both;
}

.divider100 {
    height: 100px;
    clear: both;
}


/*
================================================================
================================================================
	Header Styles
================================================================
================================================================
*/


/* ---------------------- */
/* Global                 */
/* ---------------------- */
header {
    position: relative;
    height: 144px;
    padding: 0 80px;
    z-index: 99;
}

.fullscreen header {
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
}


/* ---------------------- */
/* Logo                   */
/* ---------------------- */
header .logo {
    position: relative;
    height: 100%;
    float: left;
    pointer-events: auto;
}

header .logo a {
    position: relative;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
}

header .logo img {
    display: block;
}


/* ---------------------- */
/* Navigation (Main Links)*/
/* ---------------------- */
header > nav {
    position: relative;
    height: 100%;
    float: right;
    pointer-events: auto;
}

header > nav > ul {
    position: relative;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
}

header > nav > ul > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 50px;
    font-family: 'opensans_semibold';
}

header > nav > ul > li:first-child {
    margin-left: 0;
}

header > nav > ul > li > a {

}


/* ----------------------               */
/* Navigation (1st Level Dropdowns)     */
/* ----------------------               */
header > nav > ul > li ul {
    position: absolute;
    width: 170px;
    padding: 0;
    top: 50px;
    left: -20px;
    visibility: hidden;
    opacity: 0;
    z-index: -99;
}

header > nav > ul > li > ul {
    top: 25px;
    padding-top: 25px;
}

header > nav > ul > li li {
    position: relative;
    padding: 0 20px 6px;
}

header > nav > ul > li li::before {
    position: absolute;
    top: 12px;
    left: 20px;
    content: "";
    width: 5px;
    height: 1px;
}

header > nav > ul > li li:first-child {
    padding-top: 20px;
}

header > nav > ul > li li:first-child::before {
    top: 32px;
}

header > nav > ul > li li:last-child {
    padding-bottom: 20px;
}

header > nav > ul > li li a {
    line-height: 20px;
    display: inline-block;
    padding-left: 14px;
}

header > nav > ul > li.left > ul {
    left: auto;
    right: 0;
}

header > nav > ul > li.left ul ul,
header > nav > ul > li.left ul ul ul {
    left: -170px;
    border-left: 0;
    border-right: 3px solid transparent;
}


/* ----------------------               */
/* Navigation (2nd Level Dropdowns)     */
/* ----------------------               */
header > nav > ul > li ul ul {
    top: -20px;
    left: 170px;
    border-left: 3px solid transparent;
}

header > nav > ul > li li:first-child ul {
    top: 0px;
}


/* ----------------------               */
/* Navigation (3rd Level Dropdowns)     */
/* ----------------------               */
header > nav > ul > li ul ul ul {
    border-left: 0;
    z-index: 1;
}


/* ----------------------   */
/* Navigation (Responsive)  */
/* ----------------------   */
@-webkit-keyframes fadeNav {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeNav {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeNav {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

header.showNav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

header.showNav .logo {
    position: absolute;
    height: auto;
    float: none;
    top: 60px;
    left: 80px;
    z-index: 100;
}

header.showNav .logo a {
    top: 0;
    transform: none;
}

header .menu-icon {
    position: relative;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    width: 32px;
    height: 21px;
    cursor: pointer;
    display: none;
    z-index: 100;
    float: right;
    pointer-events: auto;
}

header.showNav .menu-icon {
    position: absolute;
    float: none;
    transform: none;
    top: 60px;
    right: 80px;
}

header .menu-icon span {
    position: absolute;
    display: block;
    width: 65%;
    height: 2px;
    top: 9px;
    right: 0;
}

header .menu-icon span:nth-child(1) {
    top: 0;
}

header .menu-icon span:nth-child(2) {
    top: 7px;
}

header .menu-icon span:nth-child(3) {
    top: 14px;
}

header.showNav .menu-icon {
    width: 32px;
    height: 22px;
}

header.showNav .menu-icon span {
    width: 55%;
    top: 10px;
}

header.showNav .menu-icon span:nth-child(1),
header.showNav .menu-icon span:nth-child(2),
header.showNav .menu-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(45deg);
}

header.showNav .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
}

header.showNav nav {
    position: relative;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: auto;
    -webkit-animation: fadeNav 0.5s;
    -moz-animation: fadeNav 0.5s;
    -o-animation: fadeNav 0.5s;
    animation: fadeNav 0.5s;
}


/* ---------------------- */
/* Hover Effects          */
/* ---------------------- */
header > nav > ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    z-index: auto;
}


/*
================================================================
================================================================
    Footer Styles
================================================================
================================================================
*/


/* ---------------------- */
/* Global                 */
/* ---------------------- */
footer {
    position: relative;
    height: 144px;
    padding: 0 80px;
    z-index: 99;
}

.fullscreen footer,
footer.showNav {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.fullscreen footer {
    pointer-events: none;
}


/* ---------------------- */
/* Copyrights             */
/* ---------------------- */
footer .copyrights {
    position: relative;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    float: left;
    overflow: hidden;
    font-size: 12px;
    line-height: 25px;
    height: 25px;
    cursor: default;
    pointer-events: auto;
}

footer .copyrights p {
    margin: 0;
}

footer .copyrights .text1 {

}

footer .copyrights a {
    text-decoration: underline;
    font-family: 'opensans_semibold';
}

footer:not(.mobile-tablet) .copyrights:hover .text1,
footer:not(.mobile-tablet) .copyrights:hover .text2 {
    transform: translateY(-28px);
}

footer.mobile-tablet .copyrights .text1 {
    display: none;
}


/* ---------------------- */
/* Social Icons           */
/* ---------------------- */
footer .social-links {
    position: relative;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    float: right;
    overflow: hidden;
    line-height: 25px;
    height: 25px;
    font-size: 0;
    pointer-events: auto;
}

footer .social-links span {
    font-size: 12px;
    display: block;
    text-align: right;
    cursor: pointer;
    line-height: 25px;
}

footer .social-links ul {
    line-height: 25px;
}

footer .social-links li {
    display: inline-block;
    line-height: 25px;
    margin-left: 20px;
}

footer .social-links li:first-child {
    margin: 0;
}

footer .social-links a {
    font-size: 12px;
}

footer:not(.mobile-tablet) .social-links:hover span,
footer:not(.mobile-tablet) .social-links:hover ul {
    transform: translateY(-28px);
}

footer.mobile-tablet .social-links span {
    display: none;
}


/*
================================================================
================================================================
    Pages
================================================================
================================================================
*/


/* ---------------------- */
/* Global                 */
/* ---------------------- */
.page {
    width: 1100px;
    margin: 80px auto;
    text-align: center;
}

.page .call-to-action {
    /*padding-top: 125px;*/
}

.page .call-to-action span {
    font-size: 16px;
    display: block;
    cursor: default;
}

.page .call-to-action a {
    font-size: 38px;
    line-height: 44px;
}


/* ---------------------- */
/* About                  */
/* ---------------------- */
.page-about {

}

.page-about .picture {
    margin-bottom: 70px;
}

.page-about .picture img {
    width: 70%;
}

.page-about .content {

}

.page-about .content .name {
    font-size: 48px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
}

.page-about .content .name::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: calc(50% - 20px);
    width: 40px;
    height: 2px;
}

.page-about .content .text {

}

.page-about .content .social-profiles {
    margin: 50px 0;
}

.page-about .content .social-profiles p {
    margin-bottom: 20px;
}

.page-about .content .social-profiles ul {

}

.page-about .content .social-profiles li {
    display: inline-block;
    margin: 0 10px;
}

.page-about .content .social-profiles a {
    display: block;
    padding: 8px;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid;
    border-radius: 50%;
}


/* ---------------------- */
/* Contact                */
/* ---------------------- */
.page-contact {

}

.page-contact .cover {
    position: relative;
    height: 500px;
    margin-bottom: 200px;
    background-position: center;
    background-size: cover;
}

.page-contact .cover h1 {
    position: relative;
    padding: 0 30px;
    top: 50%;
    font-size: 48px;
    cursor: default;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-contact .cover::before {
    position: absolute;
    content: "";
    top: -0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.page-contact .cover::after {
    position: absolute;
    content: "";
    bottom: -100px;
    left: calc(50% - 20px);
    width: 40px;
    height: 2px;
}

.page-contact .content {

}

.page-contact .content .info {
    margin: 90px auto;
    width: 800px;
}

.page-contact .content .info .details {
    display: inline-block;
    width: 33%;
}

.page-contact .content .info .details span {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
}

.page-contact .content .info .details a {
    font-size: 14px;
}

.page-contact .content .info .details p {
    margin: 0;
    cursor: default;
}

.page-contact .content form {
    font-size: 0;
    width: 800px;
    margin: 0 auto 50px;
}

.page-contact .content form input[type=text],
.page-contact .content form input[type=email] {
    font-size: 14px;
    display: inline-block;
    width: 47%;
    background: none;
    border: 0;
    border-bottom: 1px solid;
    padding: 0 0 12px;
    margin: 0 6% 50px 0;
}

.page-contact .content form input[type=email] {
    margin-right: 0;
}

.page-contact .content form textarea {
    font-size: 14px;
    display: block;
    border: 0;
    border-bottom: 1px solid;
    width: 100%;
    margin-bottom: 50px;
    height: 120px;
}

.page-contact .content form input[type=submit] {
    font-size: 14px;
    background: none;
    border: 1px solid;
    padding: 5px 18px;
}


/*
================================================================
================================================================
    Portfolio Styles
================================================================
================================================================
*/

/* ---------------------- */
/* Global                 */
/* ---------------------- */
.portfolio {
    position: absolute;
    width: 100%;
    height: 100%;
}

.portfolio .swiper-container {
    width: 100%;
    height: 100%;
}

.portfolio .swiper-slide .img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.portfolio .swiper-slide .img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.portfolio .swiper-slide .content:hover .img::before {
    opacity: 0.6;
}

.portfolio .swiper-slide h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    line-height: 72px;
    margin: 0;
    z-index: 2;
    opacity: 0;
    width: 80%;
    text-align: center;
}

.portfolio .swiper-slide .content:hover h1 {
    opacity: 1;
}

.portfolio .swiper-slide .discover {
    position: absolute;
    width: 100%;
    overflow: hidden;
    text-align: center;
    z-index: 2;
    top: calc(50% + 175px);
    padding-top: 60px;
}

.portfolio .swiper-slide .discover .container {
    position: relative;
    width: 100%;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
}

.portfolio .swiper-slide .discover p {
    line-height: 28px;
    margin: 0;
}

.portfolio .swiper-slide .discover span {
    display: inline-block;
    line-height: 28px;
    margin: 0;
    text-decoration: underline;
}

.portfolio .swiper-slide .content:hover .discover p,
.portfolio .swiper-slide .content:hover .discover span {
    transform: translateY(-28px);
}

.swiper-container .swiper-next,
.swiper-container .swiper-prev {
    position: absolute;
    top: 50%;
    z-index: 2;
    cursor: pointer;
    width: 30px;
    height: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.swiper-container .swiper-next .line,
.swiper-container .swiper-prev .line {
    position: absolute;
    top: 14px;
    left: 6px;
    width: 19px;
    height: 2px;
}

.swiper-container .swiper-next::before,
.swiper-container .swiper-prev::before {
    position: absolute;
    content: "";
    top: 12px;
    width: 8px;
    height: 2px;
    right: 4px;
    transform: rotate(45deg);
}

.swiper-container .swiper-next::after,
.swiper-container .swiper-prev::after {
    position: absolute;
    content: "";
    top: 16px;
    width: 8px;
    height: 2px;
    right: 4px;
    transform: rotate(-45deg);
}

.swiper-container .swiper-prev::before {
    top: 12px;
    right: 17px;
    transform: rotate(-45deg);
}

.swiper-container .swiper-prev::after {
    top: 16px;
    right: 17px;
    transform: rotate(45deg);
}

.swiper-container .swiper-next {
    right: 80px;
}

.swiper-container .swiper-prev {
    left: 80px;
}

.swiper-pagination {
    pointer-events: none;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 60px;
}

.swiper-pagination .pagination-line {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    top: 14px;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 30px;
    pointer-events: none;
}

.swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    z-index: 2;
}

.swiper-pagination-bullet-active::before {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    width: 18px;
    height: 18px;
    opacity: 0.15;
    border-radius: 50%;
}


/* ---------------------- */
/* Layered                */
/* ---------------------- */
.layered .swiper-slide {

}

.layered .swiper-slide .content {
    position: absolute;
    display: block;
    height: 400px;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, calc(-50% - 40px));
    -moz-transform: translate(0, calc(-50% - 40px), 0);
    transform: translate(0, calc(-50% - 40px), 0);
}

.layered .swiper-slide .img {
    position: absolute;
}

.layered .swiper-slide .img img {
    position: relative;
    width: 100%;
    height: 100%;
}

.layered .swiper-slide .img.left,
.layered .swiper-slide .img.right {
    width: 256px;
    height: 340px;
    top: 30px;
    left: 50%;
    -webkit-transform: translate(calc(-50% - 314px), 0);
    -moz-transform: translate(calc(-50% - 314px), 0);
    transform: translate(calc(-50% - 314px), 0);
}

.layered .swiper-slide .img.right {
    -webkit-transform: translate(calc(-50% + 314px), 0);
    -moz-transform: translate(calc(-50% + 314px), 0);
    transform: translate(calc(-50% + 314px), 0);
}

.layered .swiper-slide .content:hover .img.left {
    -webkit-transform: translate(calc(-50% - 314px), 0);
    -moz-transform: translate(calc(-50% - 314px), 0);
    transform: translate(calc(-50% - 314px), 0);
    transition-delay: 0s;
}

.layered .swiper-slide .content:hover .img.right {
    -webkit-transform: translate(calc(-50% + 314px), 0);
    -moz-transform: translate(calc(-50% + 314px), 0);
    transform: translate(calc(-50% + 314px), 0);
    transition-delay: 0s;
}

.layered .swiper-slide-active .img.left,
.layered .swiper-slide-active .img.right {
    -webkit-transform: translate(calc(-50% - 500px), 0);
    -moz-transform: translate(calc(-50% - 500px), 0);
    transform: translate(calc(-50% - 500px), 0);
    transition-delay: 0.35s;
}

.layered .swiper-slide-active .img.right {
    -webkit-transform: translate(calc(-50% + 500px), 0);
    -moz-transform: translate(calc(-50% + 500px), 0);
    transform: translate(calc(-50% + 500px), 0);
    transition-delay: 0.35s;
}

.layered .swiper-slide .img.center {
    width: 640px;
    height: 400px;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 2;
}

.layered .swiper-slide .content:hover .img:not(.center)::before {
    opacity: 0.95;
}


/* ---------------------- */
/* Adjusted               */
/* ---------------------- */
.adjusted .swiper-slide {

}

.adjusted .swiper-slide .content {
    position: absolute;
    display: block;
    height: 400px;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(calc(-50% - 40px));
    -moz-transform: translateY(calc(-50% - 40px));
    transform: translateY(calc(-50% - 40px));
}

.adjusted .swiper-slide .img {
    position: absolute;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.adjusted .swiper-slide .img img {
    position: relative;
    width: 100%;
    height: 100%;
}

.adjusted .swiper-slide .img.extra-left,
.adjusted .swiper-slide .img.extra-right,
.adjusted .swiper-slide .img.center {
    width: 225px;
}

.adjusted .swiper-slide .img.left,
.adjusted .swiper-slide .img.right {
    width: 301px;
    z-index: 2;
}

.adjusted .swiper-slide .img.extra-left,
.adjusted .swiper-slide .content:hover .img.extra-left {
    -webkit-transform: translate(calc(-50% - 363px), -50%);
    -moz-transform: translate(calc(-50% - 363px), -50%);
    transform: translate(calc(-50% - 363px), -50%);
    transition-delay: 0s;
}

.adjusted .swiper-slide .img.extra-right,
.adjusted .swiper-slide .content:hover .img.extra-right {
    -webkit-transform: translate(calc(-50% + 363px), -50%);
    -moz-transform: translate(calc(-50% + 363px), -50%);
    transform: translate(calc(-50% + 363px), -50%);
    transition-delay: 0s;
}

.adjusted .swiper-slide .img.left,
.adjusted .swiper-slide .content:hover .img.left {
    -webkit-transform: translate(calc(-50% - 210px), -50%);
    -moz-transform: translate(calc(-50% - 210px), -50%);
    transform: translate(calc(-50% - 210px), -50%);
    transition-delay: 0s;
}

.adjusted .swiper-slide .img.right,
.adjusted .swiper-slide .content:hover .img.right {
    -webkit-transform: translate(calc(-50% + 210px), -50%);
    -moz-transform: translate(calc(-50% + 210px), -50%);
    transform: translate(calc(-50% + 210px), -50%);
    transition-delay: 0s;
}

.adjusted .swiper-slide-active .img.extra-left {
    -webkit-transform: translate(calc(-50% - 526px), -50%);
    -moz-transform: translate(calc(-50% - 526px), -50%);
    transform: translate(calc(-50% - 526px), -50%);
    transition-delay: 0.35s;
}

.adjusted .swiper-slide-active .img.extra-right {
    -webkit-transform: translate(calc(-50% + 526px), -50%);
    -moz-transform: translate(calc(-50% + 526px), -50%);
    transform: translate(calc(-50% + 526px), -50%);
    transition-delay: 0.35s;
}

.adjusted .swiper-slide-active .img.left {
    -webkit-transform: translate(calc(-50% - 263px), -50%);
    -moz-transform: translate(calc(-50% - 263px), -50%);
    transform: translate(calc(-50% - 263px), -50%);
    transition-delay: 0.35s;
}

.adjusted .swiper-slide-active .img.right {
    -webkit-transform: translate(calc(-50% + 263px), -50%);
    -moz-transform: translate(calc(-50% + 263px), -50%);
    transform: translate(calc(-50% + 263px), -50%);
    transition-delay: 0.35s;
}

.adjusted .swiper-slide .content:hover .img:not(.left):not(.right)::before {
    opacity: 0.95;
}


/* ---------------------- */
/* Diagonal               */
/* ---------------------- */
.diagonal .swiper-slide {

}

.diagonal .swiper-slide .content {
    position: absolute;
    display: block;
    height: 400px;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(calc(-50% - 40px));
    -moz-transform: translateY(calc(-50% - 40px));
    transform: translateY(calc(-50% - 40px));
}

.diagonal .swiper-slide h1 {
    z-index: 3;
}

.diagonal .swiper-slide .img {
    position: absolute;
    height: auto;
    top: 50%;
    left: 50%;
    width: 260px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.diagonal .swiper-slide .img img {
    position: relative;
    width: 100%;
    height: 100%;
}

.diagonal .swiper-slide .img.extra-left {
    z-index: 1;
}

.diagonal .swiper-slide .img.left {
    z-index: 2;
}

.diagonal .swiper-slide .img.extra-right {
    z-index: 1;
}

.diagonal .swiper-slide .img.right {
    z-index: 2;
}

.diagonal .swiper-slide .img.center {
    z-index: 3;
}

.diagonal .swiper-slide .img.extra-left,
.diagonal .swiper-slide .content:hover .img.extra-left {
    -webkit-transform: translate(calc(-50% - 400px), calc(-50% + 40px));
    -moz-transform: translate(calc(-50% - 400px), calc(-50% + 40px));
    transform: translate(calc(-50% - 400px), calc(-50% + 40px));
    transition-delay: 0s;
}

.diagonal .swiper-slide .img.extra-right,
.diagonal .swiper-slide .content:hover .img.extra-right {
    -webkit-transform: translate(calc(-50% + 400px), calc(-50% - 40px));
    -moz-transform: translate(calc(-50% + 400px), calc(-50% - 40px));
    transform: translate(calc(-50% + 400px), calc(-50% - 40px));
    transition-delay: 0s;
}

.diagonal .swiper-slide .img.left,
.diagonal .swiper-slide .content:hover .img.left {
    -webkit-transform: translate(calc(-50% - 200px), calc(-50% + 20px));
    -moz-transform: translate(calc(-50% - 200px), calc(-50% + 20px));
    transform: translate(calc(-50% - 200px), calc(-50% + 20px));
    transition-delay: 0s;
}

.diagonal .swiper-slide .img.right,
.diagonal .swiper-slide .content:hover .img.right {
    -webkit-transform: translate(calc(-50% + 200px), calc(-50% - 20px));
    -moz-transform: translate(calc(-50% + 200px), calc(-50% - 20px));
    transform: translate(calc(-50% + 200px), calc(-50% - 20px));
    transition-delay: 0s;
}

.diagonal .swiper-slide-active .img.extra-left {
    -webkit-transform: translate(calc(-50% - 520px), calc(-50% + 80px));
    -moz-transform: translate(calc(-50% - 520px), calc(-50% + 80px));
    transform: translate(calc(-50% - 520px), calc(-50% + 80px));
    transition-delay: 0.35s;
}

.diagonal .swiper-slide-active .img.extra-right {
    -webkit-transform: translate(calc(-50% + 520px), calc(-50% - 80px));
    -moz-transform: translate(calc(-50% + 520px), calc(-50% - 80px));
    transform: translate(calc(-50% + 520px), calc(-50% - 80px));
    transition-delay: 0.35s;
}

.diagonal .swiper-slide-active .img.left {
    -webkit-transform: translate(calc(-50% - 260px), calc(-50% + 40px));
    -moz-transform: translate(calc(-50% - 260px), calc(-50% + 40px));
    transform: translate(calc(-50% - 260px), calc(-50% + 40px));
    transition-delay: 0.35s;
}

.diagonal .swiper-slide-active .img.right {
    -webkit-transform: translate(calc(-50% + 260px), calc(-50% - 40px));
    -moz-transform: translate(calc(-50% + 260px), calc(-50% - 40px));
    transform: translate(calc(-50% + 260px), calc(-50% - 40px));
    transition-delay: 0.35s;
}

.diagonal .swiper-slide .content:hover .img:not(.center)::before {
    opacity: 0.95;
}


/* ---------------------- */
/* Featured               */
/* ---------------------- */
.featured .swiper-slide {

}

.featured .swiper-slide .content {
    position: absolute;
    display: block;
    height: 400px;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, calc(-50% - 40px));
    -moz-transform: translate(0, calc(-50% - 40px));
    transform: translate(0, calc(-50% - 40px));
}

.featured .swiper-slide .img {
    position: absolute;
    width: 880px;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.featured .swiper-slide .img img {
    position: relative;
    width: 100%;
    height: 100%;
}


/* ---------------------- */
/* Slider                 */
/* ---------------------- */
.slider .swiper-slide {

}

.slider .swiper-slide .content {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}

.slider .swiper-slide .content::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.slider .swiper-slide .text {
    position: absolute;
    display: block;
    height: auto;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, calc(-50% + 50px));
    -moz-transform: translate(0, calc(-50% + 50px));
    transform: translate(0, calc(-50% + 50px));
}

.slider .swiper-slide h1 {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-bottom: 50px;
    padding-bottom: 50px;
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    -moz-transform: translate(0, -20px);
    transform: translate(0, -20px);
}

.slider .swiper-slide-active h1 {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    transform: translate(0, 0px);
}

.slider .swiper-slide h1:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: calc(50% - 20px);
    width: 40px;
    height: 2px;
}

.slider .swiper-slide .discover {
    position: relative;
    width: 100%;
    top: auto;
    padding-top: 0;
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    -moz-transform: translate(0, -20px);
    transform: translate(0, -20px);
}

.slider .swiper-slide-active .discover {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    transform: translate(0, 0px);
}

.slider .swiper-slide .discover .container {
    position: relative;
    width: 100%;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
}

.slider .swiper-slide .discover p {
    line-height: 28px;
    margin: 0;
}

.slider .swiper-slide .discover span {
    display: inline-block;
    line-height: 28px;
    margin: 0;
    text-decoration: underline;
}

.slider .swiper-slide .content:hover .discover p,
.slider .swiper-slide .content:hover .discover span {
    transform: translateY(0);
}

.slider .swiper-slide .text:hover .discover p,
.slider .swiper-slide .text:hover .discover span {
    transform: translateY(-28px);
}

.slider .swiper-pagination .pagination-line {
    opacity: 0.5;
}

.slider .swiper-pagination-bullet,
.slider .swiper-pagination-bullet-active {
    opacity: 0.8;
}

.slider .swiper-pagination-bullet-active::before {
    opacity: 0.5;
}


/* ---------------------- */
/* Text                   */
/* ---------------------- */
@-webkit-keyframes showDiv {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-moz-keyframes showDiv {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes showDiv {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.text-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-slider .container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 3;
}

.text-slider .slides,
.text-slider .slides li {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.text-slider .slides li {
    opacity: 0;
    z-index: 2;
}

.text-slider .slides li::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.text-slider .slides li.active {
    opacity: 1;
    -webkit-animation: showDiv 1.2s;
    -moz-animation: showDiv 1.2s;
    -o-animation: showDiv 1.2s;
    animation: showDiv 1.2s;
}

@media only screen and (min-width: 1280px) {
    .text-slider .slides li.activeInitial {

        opacity: 1;
        -webkit-animation: showDiv 1.2s;
        -moz-animation: showDiv 1.2s;
        -o-animation: showDiv 1.2s;
        animation: showDiv 1.2s;
    }
}

.text-slider .slides li.was-active {
    opacity: 1;
    z-index: 1;
}

.text-slider .content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    font-size: 0;
    text-align: center;
    z-index: 5;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.text-slider .content.tall {
    top: 0;
    padding: 250px 0;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}

.text-slider .content a {
    position: relative;
    display: inline-block;
    font-family: opensans_bold;
    font-size: 40px;
    text-decoration: none;
    padding-right: 40px;
    line-height: 62px;
    opacity: 1;
    background-position: center;
    background-size: cover;
}

.text-slider .content a:nth-child(2n) {
    padding-right: 0;
    padding-left: 40px;
}

.text-slider .content:hover a {
    opacity: 0.2;
}

.text-slider .content a:hover {
    opacity: 1;
}

.text-slider .content a::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    top: 31px;
    right: -6px;
    opacity: 1;
}

.text-slider .content a:hover::after {
    opacity: 0.2;
}

.text-slider .content a:nth-child(2n)::after {
    display: none;
}

.text-slider .content a .wrap {
    display: inline-block;
    position: relative;
    background-position: center;
    background-size: cover;
    width: 500px;
    height: 300px;
}

.text-slider .content a .wrap span {
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.text-slider .content a .wrap::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}


/* ---------------------- */
/* Grid                   */
/* ---------------------- */
.projects-grid {
    position: relative;
    width: 100%;
    height: auto;
    cursor: default;
}

.projects-grid .container {
    position: relative;
    width: 1100px;
    margin: 80px auto;
    text-align: center;
}

.projects-grid h1 {
    position: relative;
    font-size: 48px;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.projects-grid h1::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: calc(50% - 20px);
    width: 40px;
    height: 2px;
}

.projects-grid .sub-header {
    display: block;
    margin-bottom: 140px;
}

.projects-grid .projects {
    font-size: 0;
}

.projects-grid article {
    display: inline-block;
    width: 500px;
    margin: 0 100px 100px 0;
    cursor: pointer;
}

.projects-grid article:nth-child(2n) {
    margin-right: 0;
}

.projects-grid article a {
    display: block;
    text-decoration: none;
}

.projects-grid article .img {
    position: relative;
    margin-bottom: 20px;
}

.projects-grid article .img img {
    position: relative;
    width: 100%;
}

.projects-grid article .img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.projects-grid article:hover .img::after {
    opacity: 0.5;
}

.projects-grid article .img h2 {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 20px;
    font-size: 38px;
    line-height: 48px;
    opacity: 0;
    z-index: 2;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.projects-grid article:hover .img h2 {
    opacity: 1;
}

.projects-grid article .discover {
    position: relative;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
}

.projects-grid article .discover .text1 {
    margin: 0;
}

.projects-grid article .discover .text2 {
    text-decoration: underline;
    margin: 0;
}

.projects-grid article:hover .discover .text1,
.projects-grid article:hover .discover .text2 {
    transform: translateY(-28px);
}


/* ---------------------- */
/* Single                 */
/* ---------------------- */
.single-project {
    position: relative;
    text-align: center;
    cursor: default;
}

.single-project .container {
    width: 1100px;
    margin: 80px auto;
}

.single-project h1 {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.single-project h1::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: calc(50% - 20px);
    width: 40px;
    height: 2px;
}

.single-project .sub-header {
    display: block;
    margin-bottom: 80px;
}

.single-project .cover {
    position: relative;
    width: 100vw;
    margin-bottom: 150px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.single-project .cover img {
    position: relative;
    width: 100%;
}

.single-project .description {
    font-family: opensans_bold;
    font-size: 26px;
    line-height: 38px;
    padding-bottom: 150px;
    margin-bottom: 0;
}

.single-project .images {

}

.single-project .images::after {
    content: "";
    display: block;
    clear: both;
}

.single-project .images li {
    display: block;
    width: 48%;
    opacity: 0;
    -webkit-transform: translateY(120px);
    -moz-transform: translateY(120px);
    transform: translateY(120px);
}

.single-project .images li.appeared {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.single-project .images .left {
    float: left;
    margin-right: 4%;
}

.single-project .images .right {
    float: right;
}

.single-project .images .center {
    float: left;
    width: 100%;
    margin-top: 120px;
}

.single-project .images .right:first-child {
    margin-top: 80px;
}

.single-project .images .right + .left {
    margin-top: 580px;
}

.single-project .images .center {
    margin-top: 180px;
}

.single-project .images .center + .right {
    margin-top: 180px;
}

.single-project .images .center + .left {
    margin-top: 180px;
}

.single-project .images .left + .right {
    margin-top: 580px;
}

.single-project .images li img {
    max-width: 100%;
}

.single-project .next-project {
    padding-top: 250px;
}

.single-project .next-project .text1 {
    font-size: 16px;
    display: block;
    cursor: default;
}

.single-project .next-project a {
    display: block;
    font-size: 38px;
    line-height: 44px;
}

/*
================================================================
================================================================
    Transitions
================================================================
================================================================
*/

header li a,
header > nav > ul > li ul,
header > nav > ul > li li::before,
footer .social-links span,
footer .social-links ul,
footer .social-links a,
footer .copyrights .text1,
footer .copyrights .text2,
.page-about .content .social-profiles a,
.page-contact .content form input[type=text],
.page-contact .content form input[type=email],
.page-contact .content form input[type=submit],
.page-contact .content form textarea {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.swiper-container .swiper-next .line,
.swiper-container .swiper-prev .line,
.swiper-container .swiper-next::before,
.swiper-container .swiper-prev::before,
.swiper-container .swiper-next::after,
.swiper-container .swiper-prev::after,
.swiper-container .swiper-slide .img,
.swiper-container .swiper-slide .img::before,
.swiper-container .swiper-slide h1,
.swiper-container .swiper-slide .discover p,
.swiper-container .swiper-slide .discover span,
.text-slider .content a,
.text-slider .content a::after,
.projects-grid article .img::after,
.projects-grid article .img h2,
.projects-grid article .discover .text1,
.projects-grid article .discover .text2 {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-project .images li {
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.slider .swiper-container .swiper-slide h1,
.slider .swiper-container .swiper-slide .discover {
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
    transition-delay: 0.5s;
}

.slider .swiper-container .swiper-slide .discover {
    transition-delay: 0.8s;
}


/*
================================================================
================================================================
    Media Quieries
================================================================
================================================================
*/


/* ----------------------- */
/* Medium Screens (Tablet) */
/* ----------------------- */
@media only screen and (max-width: 1520px) {


    /* ----------------------   */
    /* Portfolio                */
    /* ----------------------   */
    /* Global */
    .swiper-pagination,
    .swiper-next,
    .swiper-prev {
        display: none;
    }

    /* Layered */
    .layered .swiper-slide .content {
        height: calc(100% - 300px);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .layered .swiper-slide .img.center {
        width: 550px;
        height: auto;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .layered .swiper-slide .img.left,
    .layered .swiper-slide .img.right {
        width: 200px;
        height: auto;
        top: 50%;
        -webkit-transform: translate(-270%, -50%);
        -moz-transform: translate(-270%, -50%);
        transform: translate(-270%, -50%);
    }

    .layered .swiper-slide .img.right {
        -webkit-transform: translate(170%, -50%);
        -moz-transform: translate(170%, -50%);
        transform: translate(170%, -50%);
    }

    .layered .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(-190%, -50%);
        -moz-transform: translate(-190%, -50%);
        transform: translate(-190%, -50%);
    }

    .layered .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(90%, -50%);
        -moz-transform: translate(90%, -50%);
        transform: translate(90%, -50%);
    }

    .layered .swiper-slide .discover {
        top: calc(50% + 160px);
    }

    /* Adjusted */
    .adjusted .swiper-slide .content {
        height: calc(100% - 300px);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .adjusted .swiper-slide .img.extra-left,
    .adjusted .swiper-slide .img.extra-right,
    .adjusted .swiper-slide .img.center {
        width: 165px;
    }

    .adjusted .swiper-slide .img.left,
    .adjusted .swiper-slide .img.right {
        width: 241px;
        z-index: 2;
    }

    .adjusted .swiper-slide .img.extra-left,
    .adjusted .swiper-slide .content:hover .img.extra-left {
        -webkit-transform: translate(calc(-50% - 303px), -50%);
        -moz-transform: translate(calc(-50% - 303px), -50%);
        transform: translate(calc(-50% - 303px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.extra-right,
    .adjusted .swiper-slide .content:hover .img.extra-right {
        -webkit-transform: translate(calc(-50% + 303px), -50%);
        -moz-transform: translate(calc(-50% + 303px), -50%);
        transform: translate(calc(-50% + 303px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.left,
    .adjusted .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(calc(-50% - 150px), -50%);
        -moz-transform: translate(calc(-50% - 150px), -50%);
        transform: translate(calc(-50% - 150px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.right,
    .adjusted .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(calc(-50% + 150px), -50%);
        -moz-transform: translate(calc(-50% + 150px), -50%);
        transform: translate(calc(-50% + 150px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide-active .img.extra-left {
        -webkit-transform: translate(calc(-50% - 406px), -50%);
        -moz-transform: translate(calc(-50% - 406px), -50%);
        transform: translate(calc(-50% - 406px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.extra-right {
        -webkit-transform: translate(calc(-50% + 406px), -50%);
        -moz-transform: translate(calc(-50% + 406px), -50%);
        transform: translate(calc(-50% + 406px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.left {
        -webkit-transform: translate(calc(-50% - 203px), -50%);
        -moz-transform: translate(calc(-50% - 203px), -50%);
        transform: translate(calc(-50% - 203px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.right {
        -webkit-transform: translate(calc(-50% + 203px), -50%);
        -moz-transform: translate(calc(-50% + 203px), -50%);
        transform: translate(calc(-50% + 203px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide .discover {
        top: calc(50% + 160px);
    }

    /* Diagonal */
    .diagonal .swiper-slide .content {
        height: calc(100% - 300px);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .diagonal .swiper-slide .img {
        width: 240px;
    }

    .diagonal .swiper-slide .img.extra-left,
    .diagonal .swiper-slide .content:hover .img.extra-left {
        -webkit-transform: translate(calc(-50% - 400px), calc(-50% + 40px));
        -moz-transform: translate(calc(-50% - 400px), calc(-50% + 40px));
        transform: translate(calc(-50% - 400px), calc(-50% + 40px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.extra-right,
    .diagonal .swiper-slide .content:hover .img.extra-right {
        -webkit-transform: translate(calc(-50% + 400px), calc(-50% - 40px));
        -moz-transform: translate(calc(-50% + 400px), calc(-50% - 40px));
        transform: translate(calc(-50% + 400px), calc(-50% - 40px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.left,
    .diagonal .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(calc(-50% - 200px), calc(-50% + 20px));
        -moz-transform: translate(calc(-50% - 200px), calc(-50% + 20px));
        transform: translate(calc(-50% - 200px), calc(-50% + 20px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.right,
    .diagonal .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(calc(-50% + 200px), calc(-50% - 20px));
        -moz-transform: translate(calc(-50% + 200px), calc(-50% - 20px));
        transform: translate(calc(-50% + 200px), calc(-50% - 20px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide-active .img.extra-left {
        -webkit-transform: translate(calc(-50% - 480px), calc(-50% + 80px));
        -moz-transform: translate(calc(-50% - 480px), calc(-50% + 80px));
        transform: translate(calc(-50% - 480px), calc(-50% + 80px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.extra-right {
        -webkit-transform: translate(calc(-50% + 480px), calc(-50% - 80px));
        -moz-transform: translate(calc(-50% + 480px), calc(-50% - 80px));
        transform: translate(calc(-50% + 480px), calc(-50% - 80px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.left {
        -webkit-transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        -moz-transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.right {
        -webkit-transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        -moz-transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide .discover {
        top: calc(50% + 160px);
    }
}

@media only screen and (max-width: 1280px) {


    /* ----------------------   */
    /* Basics                   */
    /* ----------------------   */
    body.showNav,
    html.showNav {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }


    /* ----------------------   */
    /* Header                   */
    /* ----------------------   */
    /* Global */
    header {

    }

    header .menu-icon {
        display: block;
    }

    header > nav {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        z-index: -99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        pointer-events: none;
    }

    header > nav > ul,
    header > nav > ul > li ul,
    header > nav > ul > li ul ul,
    header > nav > ul > li ul ul ul {
        position: relative;
        display: block;
        width: 100%;
        top: 0;
        left: 0;
        visibility: visible;
        opacity: 1;
        padding: 0;
        margin: 0;
        z-index: auto;
    }

    header > nav > ul > li ul {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
    }

    /* Navigation (Main Links) */
    header > nav > ul {
        padding: 200px 0;
        transform: none;
    }

    header > nav > ul > li {
        padding: 5px 0;
        margin-top: 20px;
        line-height: 32px;
    }

    header > nav > ul > li:first-child {
        margin-top: 0;
        padding: 4px 0;
    }

    header > nav ul li {
        display: block;
        visibility: visible;
        opacity: 1;
        padding: 0;
        margin-left: 0;
    }

    header > nav > ul > li > a {
        font-size: 48px;
    }

    /* Navigation (Sub Links) */
    header > nav > ul li ul,
    header > nav > ul li ul ul,
    header > nav > ul li ul ul ul {
        display: none;
        padding: 10px 0;
    }

    header > nav > ul > li ul li,
    header > nav > ul > li ul ul li,
    header > nav > ul > li ul ul ul li {
        padding: 4px 0;
    }

    header > nav > ul > li ul a,
    header > nav > ul > li ul ul a,
    header > nav > ul > li ul ul ul a {
        font-size: 18px;
        padding: 0;
    }

    header > nav > ul > li li::before {
        display: none;
    }


    /* ----------------------   */
    /* Pages                    */
    /* ----------------------   */
    /* Global */
    .page {
        width: 100%;
        margin: 60px 0;
        padding: 0 80px;
    }

    /* Contact */
    .page-contact .cover {
        height: 350px;
    }

    .page-contact .content .info {
        margin: 90px 0;
        width: 100%;
    }

    .page-contact .content .info .details {
        width: 32.9%;
    }

    .page-contact .content form {
        width: 100%;
        margin: 0;
    }


    /* ----------------------   */
    /* Portfolio                */
    /* ----------------------   */
    /* Layered */
    .layered .swiper-slide .img.center {
        width: 350px;
    }

    .layered .swiper-slide .img.left,
    .layered .swiper-slide .img.right {
        width: 125px;
    }

    .layered .swiper-slide .discover {
        top: calc(50% + 85px);
    }

    .layered .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Adjusted */
    .adjusted .swiper-slide .img.extra-left,
    .adjusted .swiper-slide .img.extra-right,
    .adjusted .swiper-slide .img.center {
        width: 105px;
    }

    .adjusted .swiper-slide .img.left,
    .adjusted .swiper-slide .img.right {
        width: 181px;
        z-index: 2;
    }

    .adjusted .swiper-slide .img.extra-left,
    .adjusted .swiper-slide .content:hover .img.extra-left {
        -webkit-transform: translate(calc(-50% - 203px), -50%);
        -moz-transform: translate(calc(-50% - 203px), -50%);
        transform: translate(calc(-50% - 203px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.extra-right,
    .adjusted .swiper-slide .content:hover .img.extra-right {
        -webkit-transform: translate(calc(-50% + 203px), -50%);
        -moz-transform: translate(calc(-50% + 203px), -50%);
        transform: translate(calc(-50% + 203px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.left,
    .adjusted .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(calc(-50% - 113px), -50%);
        -moz-transform: translate(calc(-50% - 113px), -50%);
        transform: translate(calc(-50% - 113px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.right,
    .adjusted .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(calc(-50% + 113px), -50%);
        -moz-transform: translate(calc(-50% + 113px), -50%);
        transform: translate(calc(-50% + 113px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide-active .img.extra-left {
        -webkit-transform: translate(calc(-50% - 286px), -50%);
        -moz-transform: translate(calc(-50% - 286px), -50%);
        transform: translate(calc(-50% - 286px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.extra-right {
        -webkit-transform: translate(calc(-50% + 286px), -50%);
        -moz-transform: translate(calc(-50% + 286px), -50%);
        transform: translate(calc(-50% + 286px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.left {
        -webkit-transform: translate(calc(-50% - 143px), -50%);
        -moz-transform: translate(calc(-50% - 143px), -50%);
        transform: translate(calc(-50% - 143px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.right {
        -webkit-transform: translate(calc(-50% + 143px), -50%);
        -moz-transform: translate(calc(-50% + 143px), -50%);
        transform: translate(calc(-50% + 143px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide .discover {
        top: calc(50% + 85px);
    }

    .adjusted .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Diagonal */
    .diagonal .swiper-slide .img {
        width: 140px;
    }

    .diagonal .swiper-slide .img.extra-left,
    .diagonal .swiper-slide .content:hover .img.extra-left {
        -webkit-transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        -moz-transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.extra-right,
    .diagonal .swiper-slide .content:hover .img.extra-right {
        -webkit-transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        -moz-transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.left,
    .diagonal .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(calc(-50% - 120px), calc(-50% + 20px));
        -moz-transform: translate(calc(-50% - 120px), calc(-50% + 20px));
        transform: translate(calc(-50% - 120px), calc(-50% + 20px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.right,
    .diagonal .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(calc(-50% + 120px), calc(-50% - 20px));
        -moz-transform: translate(calc(-50% + 120px), calc(-50% - 20px));
        transform: translate(calc(-50% + 120px), calc(-50% - 20px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide-active .img.extra-left {
        -webkit-transform: translate(calc(-50% - 280px), calc(-50% + 80px));
        -moz-transform: translate(calc(-50% - 280px), calc(-50% + 80px));
        transform: translate(calc(-50% - 280px), calc(-50% + 80px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.extra-right {
        -webkit-transform: translate(calc(-50% + 280px), calc(-50% - 80px));
        -moz-transform: translate(calc(-50% + 280px), calc(-50% - 80px));
        transform: translate(calc(-50% + 280px), calc(-50% - 80px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.left {
        -webkit-transform: translate(calc(-50% - 140px), calc(-50% + 40px));
        -moz-transform: translate(calc(-50% - 140px), calc(-50% + 40px));
        transform: translate(calc(-50% - 140px), calc(-50% + 40px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.right {
        -webkit-transform: translate(calc(-50% + 140px), calc(-50% - 40px));
        -moz-transform: translate(calc(-50% + 140px), calc(-50% - 40px));
        transform: translate(calc(-50% + 140px), calc(-50% - 40px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide .discover {
        top: calc(50% + 85px);
    }

    .diagonal .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Featured */
    .featured .swiper-slide .img {
        width: 620px;
        height: auto;
    }

    .featured .swiper-slide .discover {
        top: calc(50% + 110px);
    }

    .featured .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Slider */
    .slider .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Text */
    .text-slider .content a,
    .text-slider .content a:nth-child(2n) {
        position: relative;
        display: block;
        font-size: 40px;
        padding-right: 0;
        padding-left: 0;
        line-height: 62px;
        margin-bottom: 50px;
        opacity: 1;
    }

    .text-slider .content a::after {
        display: none;
    }

    .text-slider .content:hover a {
        opacity: 1;
    }

    /* Grid */
    .projects-grid .container {
        width: 100%;
        margin: 60px 0;
        padding: 0 80px;
    }

    .projects-grid article {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 60px;
    }

    .projects-grid article:nth-child(2n) {
        margin-right: 0;
    }

    .projects-grid article .img h2 {
        font-size: 22px;
        line-height: 32px;
    }

    /* Single */
    .single-project .container {
        width: 100%;
        margin: 60px 0;
        padding: 0 80px;
    }
}

@media only screen and (max-height: 700px) {


    /* ----------------------   */
    /* Portfolio                */
    /* ----------------------   */
    /* Global */
    .swiper-pagination,
    .swiper-next,
    .swiper-prev {
        display: none;
    }

    /* Layered */
    .layered .swiper-slide .content {
        height: calc(100% - 300px);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .layered .swiper-slide .img.center {
        width: 350px;
        height: auto;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .layered .swiper-slide .img.left,
    .layered .swiper-slide .img.right {
        width: 120px;
        height: auto;
        top: 50%;
        -webkit-transform: translate(-270%, -50%);
        -moz-transform: translate(-270%, -50%);
        transform: translate(-270%, -50%);
    }

    .layered .swiper-slide .img.right {
        -webkit-transform: translate(170%, -50%);
        -moz-transform: translate(170%, -50%);
        transform: translate(170%, -50%);
    }

    .layered .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(-190%, -50%);
        -moz-transform: translate(-190%, -50%);
        transform: translate(-190%, -50%);
    }

    .layered .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(90%, -50%);
        -moz-transform: translate(90%, -50%);
        transform: translate(90%, -50%);
    }

    .layered .swiper-slide .discover {
        top: calc(50% + 85px);
    }

    /* Adjusted */
    .adjusted .swiper-slide .img.extra-left,
    .adjusted .swiper-slide .img.extra-right,
    .adjusted .swiper-slide .img.center {
        width: 105px;
    }

    .adjusted .swiper-slide .img.left,
    .adjusted .swiper-slide .img.right {
        width: 181px;
        z-index: 2;
    }

    .adjusted .swiper-slide .img.extra-left,
    .adjusted .swiper-slide .content:hover .img.extra-left {
        -webkit-transform: translate(calc(-50% - 203px), -50%);
        -moz-transform: translate(calc(-50% - 203px), -50%);
        transform: translate(calc(-50% - 203px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.extra-right,
    .adjusted .swiper-slide .content:hover .img.extra-right {
        -webkit-transform: translate(calc(-50% + 203px), -50%);
        -moz-transform: translate(calc(-50% + 203px), -50%);
        transform: translate(calc(-50% + 203px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.left,
    .adjusted .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(calc(-50% - 113px), -50%);
        -moz-transform: translate(calc(-50% - 113px), -50%);
        transform: translate(calc(-50% - 113px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .img.right,
    .adjusted .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(calc(-50% + 113px), -50%);
        -moz-transform: translate(calc(-50% + 113px), -50%);
        transform: translate(calc(-50% + 113px), -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide-active .img.extra-left {
        -webkit-transform: translate(calc(-50% - 286px), -50%);
        -moz-transform: translate(calc(-50% - 286px), -50%);
        transform: translate(calc(-50% - 286px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.extra-right {
        -webkit-transform: translate(calc(-50% + 286px), -50%);
        -moz-transform: translate(calc(-50% + 286px), -50%);
        transform: translate(calc(-50% + 286px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.left {
        -webkit-transform: translate(calc(-50% - 143px), -50%);
        -moz-transform: translate(calc(-50% - 143px), -50%);
        transform: translate(calc(-50% - 143px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide-active .img.right {
        -webkit-transform: translate(calc(-50% + 143px), -50%);
        -moz-transform: translate(calc(-50% + 143px), -50%);
        transform: translate(calc(-50% + 143px), -50%);
        transition-delay: 0.35s;
    }

    .adjusted .swiper-slide .discover {
        top: calc(50% + 85px);
    }

    .adjusted .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Diagonal */
    .diagonal .swiper-slide .img {
        width: 140px;
    }

    .diagonal .swiper-slide .img.extra-left,
    .diagonal .swiper-slide .content:hover .img.extra-left {
        -webkit-transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        -moz-transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        transform: translate(calc(-50% - 240px), calc(-50% + 40px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.extra-right,
    .diagonal .swiper-slide .content:hover .img.extra-right {
        -webkit-transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        -moz-transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        transform: translate(calc(-50% + 240px), calc(-50% - 40px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.left,
    .diagonal .swiper-slide .content:hover .img.left {
        -webkit-transform: translate(calc(-50% - 120px), calc(-50% + 20px));
        -moz-transform: translate(calc(-50% - 120px), calc(-50% + 20px));
        transform: translate(calc(-50% - 120px), calc(-50% + 20px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .img.right,
    .diagonal .swiper-slide .content:hover .img.right {
        -webkit-transform: translate(calc(-50% + 120px), calc(-50% - 20px));
        -moz-transform: translate(calc(-50% + 120px), calc(-50% - 20px));
        transform: translate(calc(-50% + 120px), calc(-50% - 20px));
        transition-delay: 0s;
    }

    .diagonal .swiper-slide-active .img.extra-left {
        -webkit-transform: translate(calc(-50% - 280px), calc(-50% + 80px));
        -moz-transform: translate(calc(-50% - 280px), calc(-50% + 80px));
        transform: translate(calc(-50% - 280px), calc(-50% + 80px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.extra-right {
        -webkit-transform: translate(calc(-50% + 280px), calc(-50% - 80px));
        -moz-transform: translate(calc(-50% + 280px), calc(-50% - 80px));
        transform: translate(calc(-50% + 280px), calc(-50% - 80px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.left {
        -webkit-transform: translate(calc(-50% - 140px), calc(-50% + 40px));
        -moz-transform: translate(calc(-50% - 140px), calc(-50% + 40px));
        transform: translate(calc(-50% - 140px), calc(-50% + 40px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide-active .img.right {
        -webkit-transform: translate(calc(-50% + 140px), calc(-50% - 40px));
        -moz-transform: translate(calc(-50% + 140px), calc(-50% - 40px));
        transform: translate(calc(-50% + 140px), calc(-50% - 40px));
        transition-delay: 0.35s;
    }

    .diagonal .swiper-slide .discover {
        top: calc(50% + 85px);
    }

    .diagonal .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Featured */
    .featured .swiper-slide .img {
        width: 620px;
        height: auto;
    }

    .featured .swiper-slide .discover {
        top: calc(50% + 110px);
    }

    .featured .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }

    /* Slider */
    .slider .swiper-slide h1 {
        font-size: 52px;
        line-height: 62px;
    }
}


/* ---------------------- */
/* Small Screens (Mobile) */
/* ---------------------- */
@media only screen and (max-width: 768px) {


    /* ----------------------   */
    /* Basics                   */
    /* ----------------------   */
    h1 {
        font-size: 28px;
        line-height: 34px;
    }

    h2 {
        font-size: 22px;
        line-height: 32px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }


    /* ----------------------   */
    /* Header                   */
    /* ----------------------   */
    header {
        padding: 0 40px;
    }

    header.showNav .logo {
        left: 40px;
    }

    header.showNav .menu-icon {
        right: 40px;
    }

    header > nav > ul > li {
        line-height: 16px;
    }

    header > nav > ul > li > a {
        font-size: 24px;
    }

    header > nav > ul > li ul a,
    header > nav > ul > li ul ul a,
    header > nav > ul > li ul ul ul a {
        font-size: 14px;
    }

    header > nav > ul > li > ul > li:last-child {
        padding-bottom: 0;
    }


    /* ----------------------   */
    /* Footer                   */
    /* ----------------------   */
    footer,
    footer.showNav,
    .footer-absolute footer {
        text-align: center;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 50px 30px;
        position: relative;
        height: auto;
    }

    .footer-absolute footer .copyrights,
    .footer-absolute footer .social-links {
        position: relative;
    }

    footer .social-links {
        right: auto;
        bottom: auto;
        width: 100%;
        position: relative;
        top: auto;
        float: none;
        transform: none;
        margin-bottom: 8px;
    }

    footer .copyrights {
        left: auto;
        bottom: auto;
        top: 0;
        position: relative;
        float: none;
        transform: none;
    }

    footer .copyrights .text2 {
        display: block;
    }


    /* ----------------------   */
    /* Pages                    */
    /* ----------------------   */
    /* Global */
    .page {
        width: 100%;
        margin: 50px 0;
        padding: 0 40px;
    }

    .page .call-to-action {
        padding-top: 70px;
    }

    .page .call-to-action span {
        font-size: 14px;
    }

    .page .call-to-action a {
        font-size: 26px;
        line-height: 36px;
    }

    /* About */
    .page-about .picture {
        margin-bottom: 38px;
    }

    .page-about .content .name {
        font-size: 26px;
        padding-bottom: 30px;
        margin-bottom: 30px;
        line-height: 26px;
    }

    .page-about .content .social-profiles li {
        margin: 0 10px 10px;
    }

    /* Contact */
    .page-contact .cover {
        height: 180px;
        margin-bottom: 50px;
    }

    .page-contact .cover h1 {
        font-size: 26px;
        line-height: 36px;
    }

    .page-contact .cover::after {
        display: none;
    }

    .page-contact .content .info {
        margin: 50px 0;
    }

    .page-contact .content .info .details {
        width: 100%;
        margin-bottom: 25px;
    }

    .page-contact .content form input[type="text"],
    .page-contact .content form input[type="email"] {
        width: 100%;
        margin: 0 0 50px;
    }


    /* ----------------------   */
    /* Portfolio                */
    /* ----------------------   */
    /* Layered */
    .layered .swiper-slide .img.center {
        width: 240px;
    }

    .layered .swiper-slide .img.left,
    .layered .swiper-slide .img.right {
        display: none;
    }

    .layered .swiper-slide h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .layered .swiper-slide .discover {
        top: calc(50% + 28px);
    }

    /* Adjusted */
    .adjusted .swiper-slide .img.extra-left,
    .adjusted .swiper-slide .img.extra-right,
    .adjusted .swiper-slide .img.center,
    .adjusted .swiper-slide .img.right {
        display: none;
    }

    .adjusted .swiper-slide .img.left,
    .adjusted .swiper-slide-active .img.left,
    .adjusted .swiper-slide .content:hover .img.left {
        width: 130px;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        transition-delay: 0s;
    }

    .adjusted .swiper-slide .discover {
        top: calc(50% + 40px);
    }

    .adjusted .swiper-slide h1 {
        font-size: 28px;
        line-height: 38px;
    }

    /* Adjusted */
    .diagonal .swiper-slide .img.extra-left,
    .diagonal .swiper-slide .img.extra-right,
    .diagonal .swiper-slide .img.left,
    .diagonal .swiper-slide .img.right {
        display: none;
    }

    .diagonal .swiper-slide .img.center,
    .diagonal .swiper-slide-active .img.center,
    .diagonal .swiper-slide .content:hover .img.center {
        width: 130px;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        transition-delay: 0s;
    }

    .diagonal .swiper-slide .discover {
        top: calc(50% + 40px);
    }

    .diagonal .swiper-slide h1 {
        font-size: 28px;
        line-height: 38px;
    }

    /* Featured */
    .featured .swiper-slide .img {
        width: 320px;
        height: auto;
    }

    .featured .swiper-slide .discover {
        top: calc(50% + 35px);
    }

    .featured .swiper-slide h1 {
        font-size: 28px;
        line-height: 38px;
    }

    /* Slider */
    .slider .swiper-slide .text {
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .slider .swiper-slide h1 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .slider .swiper-slide h1::after,
    .slider .swiper-slide .discover {
        display: none;
    }

    /* Text */
    .text-slider .content a,
    .text-slider .content a:nth-child(2n) {
        font-size: 26px;
        line-height: 36px;
    }

    .text-slider .content a .wrap {
        width: 350px;
        height: 200px;
    }

    /* Grid */
    .projects-grid .container {
        padding: 0 40px;
    }

    .projects-grid article {
        width: 100%;
        margin-right: 0;
        margin-bottom: 80px;
    }

    .projects-grid article:nth-child(2n) {
        margin-right: 0;
    }

    .projects-grid article .img h2 {
        font-size: 44px;
        line-height: 54px;
    }

    /* Single */
    .single-project .container {
        padding: 0 40px;
    }

    .single-project .description {
        font-size: 22px;
        line-height: 34px;
        padding-bottom: 100px;
    }

    .single-project .images li {
        width: 100%;
    }

    .single-project .images .left,
    .single-project .images .right,
    .single-project .images .center,
    .single-project .images .right:first-child,
    .single-project .images .right + .left,
    .single-project .images .center + .right,
    .single-project .images .center + .left,
    .single-project .images .left + .right {
        float: none;
        margin-right: 0%;
        width: 100%;
        margin-top: 80px;
    }

    .single-project .next-project {
        padding-top: 120px;
    }
}

.contact-error {
    border: 2px solid red;
    background-color: #b94a48;
    text-align: left;
    color: white;
    padding: 5px;
    margin-bottom: 20px;
    display: none;
}

.contact-error h1 {
    font-size: 18px;
    line-height: 20px;
}

.contact-error div {
    font-size: 14px;
}

.contact-success {
    border: 2px solid green;
    background-color: #1ca64c;
    text-align: left;
    color: white;
    padding: 5px;
    margin-bottom: 20px;
    display: none;
}

.contact-success h1 {
    font-size: 18px;
    line-height: 20px;
}

.contact-success div {
    font-size: 14px;
}