/*============= RESET STYLE =============

/*-- iPhone X Remove Gutters
Ignore W3C Validation error for this style. --*/
html {
   padding: env(safe-area-inset);
}

/*-- Body Resets --*/
body {
   font-family: 'Noto Sans JP', sans-serif;
   color: #505962;
   overflow-x: hidden;
}

.jumbotron {
    background-color: #fff;
}

.modal-dialogue-centered {
    margin: 0%;

}

.row {
    margin: 0%;
}

/*============= NAVIGATION =============*/
.navbar-brand img{
    height: 4rem;
}
.navbar-light {
    padding: .6rem .1rem;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.navbar-nav li {
    padding-right: .8rem;
}
.navbar-nav .nav-link {
    padding-top: .8rem;
    color: #949598!important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active
 {
    color: #4A4A4B!important;
}

/*============= LANDING PAGE =============*/

/*-- Fixed Landing Page Section --*/
.landing {
    height: 100vh;
}
.home-inner {
    background-image: url('../img/landing.jpg');
    position: fixed;
}
/*-- Landing Page Content --*/
.caption {
    z-index: 1;
    position: absolute;
    text-align: center;
}

.line1  {
    top: 35%;
    text-shadow: 4px 4px #4A4A4B;
    font-weight: 500;
    font-size: 200%
}


.nothing {
    border: 0px;
    margin: 0px;
    padding: 0px;
}

.GES {
    font-weight: 700;
}

.GESlinks a {
    font-weight: 700;
    color: #8CC73F;
    text-decoration: none;
}


/*============= ABOUT SECTION =============*/

/*-- Scrollspy Offset --*/

.offset:before {
    content: "";
    height: 3.875rem;
    display: block;
    margin-top: -3.875rem;
}

.heading {
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 1rem;
}

.bio .svg-inline--fa {
    color: #8CC73F;
}

/*============= PORTFOLIO SECTION =============*/

.portfolio-item img:hover{
    transform: scale(1.1);
}

.portfolio-item img {
    transition: transform .4s ease;
}

/*============= TESTIMONIALS SECTION =============*/



/*============= CONTACT SECTION =============*/
.footer-copyright {
    background-color: #8CC73F;
    color: white;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
}

.footer-brand img {
    height: 4rem;
}

.contatti a{
    color: #575F68;
    text-decoration: none;
}

.map-responsive{
    overflow:hidden;
    padding-bottom:30%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/*============= MEDIA QUERIES =============*/

/* Medium (md) devices (tablets, 768px and under) */
@media (max-width: 767.98px) {

}

/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/

/*-- Fixed Landing Page Section --*/
.landing {
   position: relative;
   width: 100%;
   display: table;
   z-index: -1;
}
.home-wrap {
   clip: rect(0, auto, auto, 0);
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.home-inner {
   display: table;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center center;
   transform: translateZ(0);
   -webkit-transform: translateZ(0);
   will-change: transform;
}