@import url('https://fonts.googleapis.com/css?family=Montserrat|Roboto');
header {
    background-color: black;
    color: white;
    padding: 10px
}

header>.row>div.col-md-6 {
    text-align: center
}

.navbar {
    background-color: white !important;
}

.navbar-brand>img {
    width: 170px;
}

.nav-item.active {
    border-bottom: 2px solid blue;
}

.navbar-light .navbar-nav .nav-link {
    color: black;
}

.navbar-expand-lg .navbar-nav {
    margin-right: 5%
}

.caption .btn {
    display: inline-block;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent;
    border: 1px solid #e1e1e1;
    font: 12px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
}

.caption .btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    z-index: 1;
    opacity: 0;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.caption .btn::after {
    transition: border 0.1s linear 0.05s;
}

.caption .btn .btn-inner {
    position: relative;
    z-index: 2;
}

.caption .btn:hover {
    color: #373737;
    transition: color 0.1s linear 0s;
}

.caption .btn:hover::before {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

.caption .btn:hover::after {
    border-color: #373737;
    transition: border 0.1s linear 0s;
}

.slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
    display: block;
}

.slideshow .slide.is-loaded {
    opacity: 1;
}

.slideshow .slide .caption {
    padding: 0 100px;
}

.slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font: 300 50px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

@media (max-width: 880px) {
    .slideshow .slide .title {
        font: 300 26px/1.2 "Oswald", sans-serif;
    }
}

.slideshow .slide .text {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 18px;
    line-height: 1.4;
}

.slideshow .slide .btn {
    margin: 15px 0 0;
    border-color: #fff;
}

.slideshow .slide .btn::before {
    background: #fff;
}

.slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
}

.slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
}

.slideshow .pagination .item+.page {
    margin-left: -2px;
}

.slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
    background-color: #fff;
}

.slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
}

.slideshow .arrows .prev {
    left: 30px;
}

.slideshow .arrows .prev:hover .svg {
    left: -10px;
}

.slideshow .arrows .next {
    right: 30px;
}

.slideshow .arrows .next:hover .svg {
    left: 10px;
}

.slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
}

.padding-50 {
    padding-top: 50px;
}

.padding-100 {
    padding-top: 100px
}

.about.description>h1 {
    text-align: center;
    color: #d70000;
    font-family: 'Roboto', sans-serif;
    font-weight: bold
}

.about.description>p,
.about.description>h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px;
    line-height: 2
}

.about.description>h2 {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
}


/*Footer*/


/* HTML Set up */

footer {
    background: #191919;
    color: #fff;
    margin: 0;
}

footer .centered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

footer .centered .footer-logo {
    width: 20%;
}

footer .centered .footer-logo img.logo {
    padding: 30px 20px 10px 20px;
    max-width: 100%;
}

footer .centered .footer-contact {
    width: 20%;
}

footer .centered .footer-navigation {
    width: 60%;
}

footer .centered .footer-navigation .footer-links-holder {
    width: 33.33333%;
    position: relative;
    float: left;
    margin: 0;
}

footer .centered .footer-navigation .footer-links-holder .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-transition: max-height .5s;
    transition: max-height .5s;
}

footer .bottom-bar {
    position: relative;
    text-align: center;
    font-size: .8em;
    text-transform: uppercase;
    background: #000;
    padding: 15px 0;
}


/* Responsive Tablet Sizes */

@media only screen and (max-width: 749px) {
    footer .centered {
        flex-wrap: wrap;
    }
    footer .centered .footer-logo {
        max-width: 250px;
        width: 50%;
    }
    footer .centered .footer-contact {
        width: 50%;
        padding: 0 20px;
    }
    footer .centered .footer-navigation {
        width: 100%;
    }
    footer .centered .footer-navigation .footer-links-holder {
        padding: 0 20px;
    }
}


/* Responsive Mobile Sizes */

@media only screen and (max-width: 500px) {
    footer .centered .footer-logo {
        width: 100%;
        margin: 0 auto;
    }
    footer .centered .footer-contact {
        width: 100%;
    }
    footer .centered .footer-navigation .footer-links-holder {
        width: 100%;
        padding: 0;
    }
    footer .centered .footer-navigation .footer-links-holder h3 {
        margin: 0;
        padding: 10px 20px;
        border-top: #000 1px solid;
        cursor: pointer;
        /* Down Arrows */
    }
    footer .centered .footer-navigation .footer-links-holder h3::after {
        float: right;
        margin-right: 10px;
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-top: 7px;
        width: 7px;
        height: 7px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-transition: transform .5s;
        transition: transform .5s;
    }
    footer .centered .footer-navigation .footer-links-holder .footer-links {
        overflow: hidden;
        padding: 0 20px;
    }
    footer .centered .footer-navigation .footer-links-holder.active h3::after {
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    footer .centered .footer-navigation .footer-links-holder.active .footer-links {
        max-height: 10000px;
    }
}


/* Typography */

footer h3 {
    font-weight: lighter;
    margin-bottom: 0;
}

footer p,
footer li {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 10px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: color .5s, background .5s;
    transition: color .5s, background .5s;
}


/* Misc CSS */

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
    clear: both;
}

body {
    margin: 0;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/*Portfolio*/

@import url("https://fonts.googleapis.com/css?family=Montserrat:700");
*,
*:before,
*:after {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
}

body .flex-grid,
html .flex-grid {
    display: flex;
    flex-flow: row wrap;
}

body .flex-grid .item,
html .flex-grid .item {
    background-color: #000;
    height: calc(100vh / 5);
    width: calc(100% / 6);
    overflow: hidden;
    position: relative;
    top: 0;
    text-decoration: none;
    transition: all ease 0.4s;
}

@media all and (max-height: 1080px) {
    body .flex-grid .item,
    html .flex-grid .item {
        height: calc(100vh / 3);
    }
}

@media all and (max-height: 720px) {
    body .flex-grid .item,
    html .flex-grid .item {
        height: calc(100vh / 2);
    }
}

@media all and (max-height: 480px) {
    body .flex-grid .item,
    html .flex-grid .item {
        height: 100vh;
    }
}

@media all and (max-width: 1920px) {
    body .flex-grid .item,
    html .flex-grid .item {
        width: calc(100% / 4);
    }
}

@media all and (max-width: 1400px) {
    body .flex-grid .item,
    html .flex-grid .item {
        width: calc(100% / 3);
    }
}

@media all and (max-width: 960px) {
    body .flex-grid .item,
    html .flex-grid .item {
        width: calc(100% / 2);
    }
}

@media all and (max-width: 600px) {
    body .flex-grid .item,
    html .flex-grid .item {
        width: 100%;
    }
}

body .flex-grid .item:hover,
html .flex-grid .item:hover {
    box-shadow: 0 5px 10px #000;
    z-index: 1;
    top: -5px;
}

body .flex-grid .item:hover .bg,
html .flex-grid .item:hover .bg {
    opacity: 0.6;
    transform: scale(1.1);
}

body .flex-grid .item:hover .title,
html .flex-grid .item:hover .title {
    opacity: 1;
}

body .flex-grid .item:hover .plus,
html .flex-grid .item:hover .plus {
    opacity: 1;
    transform: rotate(180deg);
}

body .flex-grid .item .bg,
html .flex-grid .item .bg {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    opacity: 1;
    position: absolute;
    transition: all ease 0.4s;
}

body .flex-grid .item .title,
html .flex-grid .item .title {
    opacity: 0.25;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    position: absolute;
    transition: all ease 0.4s;
    bottom: 25px;
    left: 30px;
}

body .flex-grid .item .plus,
html .flex-grid .item .plus {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    transition: all ease 0.4s;
}

body .flex-grid .item .plus:before,
html .flex-grid .item .plus:before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 28px;
    background: #fff;
    width: 4px;
}

body .flex-grid .item .plus:after,
html .flex-grid .item .plus:after {
    content: "";
    position: absolute;
    top: 28px;
    right: 20px;
    left: 20px;
    background: #fff;
    height: 4px;
}

.btn {
    border-radius: 0;
    font-size: 18px;
    text-transform: uppercase
}

.skills {
    background: black
}

.skills>.row>.col-md-4 {
    padding: 5%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: white;
    text-transform: uppercase
}


/*Servizi*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:600|Open+Sans');
section.servizi>a {
    text-decoration: none;
    margin: 1rem 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

p {
    font-size: 0.9rem;
    margin: 1rem 0;
    line-height: 1.5;
}

section.servizi {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 1.825rem;
    margin: 1.3rem 0;
}

.section-lead {
    max-width: 600px;
    margin: 1rem auto 1.5rem;
}

.service a {
    color: #5b7abb;
    display: block;
}

.service h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #56ceba;
    font-size: 1.3rem;
    margin: 1rem 0 0.6rem;
}

.services-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.service {
    background: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    -webkit-box-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #e7e7e7;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service:hover {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.service i {
    font-size: 3.45rem;
    margin: 1rem 0;
}

.service1 i,
.service1 h4,
.service1 .cta {
    color: #42b7ca;
}

.service1:hover {
    border: 2px solid #42b7ca;
}

.service2 i,
.service2 h4,
.service2 .cta {
    color: #425fca;
}

.service2:hover {
    border: 2px solid #425fca;
}

.service3 i,
.service3 h4,
.service3 .cta {
    color: #9c42ca;
}

.service3:hover {
    border: 2px solid #9c42ca;
}

.service4 i,
.service4 h4,
.service4 .cta {
    color: #939393;
}

.service4:hover {
    border: 2px solid #939393;
}

.service5 i,
.service5 h4,
.service5 .cta {
    color: #202020;
}

.service5:hover {
    border: 2px solid #202020;
}

.service .cta span {
    font-size: 0.6rem;
}

.service>* {
    flex: 1 1 100%;
}

.service .cta {
    align-self: flex-end;
}

@media all and (max-width:900px) {
    .services-grid {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

.service {
    display: none
}