#fp-nav {}
#fp-nav ul {}
#fp-nav ul li {}
#fp-nav ul li a {}
#fp-nav ul li a span {
    background: white;
}
#fp-nav ul li a.active span {}


.sidebar-wrapper {
    position: fixed;
    width: 360px;
    height: 100vh;
    overflow: hidden;
    right: -360px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 99999;
    background: rgba(0,0,0,0.90);
    border-left: 1px solid white;
}



.sidebar-open .sidebar-wrapper {
    right: 0;
    padding: 90px 42px 0;
}
.sidebar-wrapper .sidebar {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.sidebar-wrapper .sidebar .nav {
    display: block;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    position: relative;
}



.sidebar-wrapper .sidebar .nav .nav-item {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: dashed 1px rgba(255, 255, 255, 0.9);
}

.sidebar-wrapper .sidebar .nav .nav-item:first-child { }

.sidebar-wrapper .sidebar .nav .nav-item a {color: white;padding: 15px 0px;cursor: pointer;}

.sidebar-wrapper .sidebar .nav .nav-item:hover a,
.sidebar-wrapper .sidebar .nav .nav-item a:focus,
.sidebar-wrapper .sidebar .nav .nav-item.active a
{
    background-color: transparent;
    font-weight: bold;
    /* text-align: center; */
}

.sidebar-wrapper .sidebar .nav .nav-item a span.hover {display: none;}

.sidebar-wrapper .sidebar .nav .nav-item:hover a span,
.sidebar-wrapper .sidebar .nav .nav-item.active a span
{display: none;}

.sidebar-wrapper .sidebar .nav .nav-item:hover a span.hover,
.sidebar-wrapper .sidebar .nav .nav-item.active a span.hover
{
    font-family: "toyota","helvetica","arial";
    /* font-weight: bold; */
    display: inline-block;
    color: white;
    width: 100%;
    font-size: 26px;
    vertical-align: middle;
    /* margin: 18px 0 0 0; */
}

.sidebar-wrapper .sidebar .nav li.socialLinksCont {
    
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    
}

.sidebar-wrapper .sidebar .nav li.socialLinksCont a { 

    padding: 0;
    
}

.sidebar-wrapper .sidebar .nav li.socialLinksCont a img {
    
    width: 50px;
    
}


.sidebar-wrapper .sidebar .nav .nav-item .nav-link {
    display: table-cell;
    width: 100%;
    height: 100%;
    position: relative;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-wrapper .sidebar .nav .nav-item .nav-link .logo-img {
width: 178px;display: inline-block;float: right;margin: 12px 0 0 0;}

.sidebar-wrapper .sidebar .nav .nav-item .nav-link.active,
.sidebar-wrapper .sidebar .nav .nav-item .nav-link:hover {
    background-color:#f2f2f2;
}

.sidebar-wrapper .sidebar .nav .nav-item .nav-link:after {
    /* content:''; */
    background-image: url('../img/icons/arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 15px;
    height: 20px;
    position: absolute;
    left: 17px;
    top: 47px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-wrapper .sidebar .nav .nav-item .nav-link.active:after,
.sidebar-wrapper .sidebar .nav .nav-item .nav-link:hover:after {
    background-image: url('../img/icons/arrow_red.svg');
}

.sidebar-wrapper .sidebar .nav .nav-item .nav-link img {
}

.sidebar-wrapper .sidebar .nav .nav-item .nav-link .circle_arrow {
    width: 28px;
    float: left;
    margin: 39px 0 0 0;
}

.sidebar-wrapper .sidebar .nav .nav-item .nav-link small {
    color: #808080;
    font-size: 17px;
}

.sidebar-wrapper .sidebar .bottom_menu {
    position: fixed;
    width: 360px;
    background-color: #DD0F24;
    bottom: 0;
    height: 80px;
    padding: 0 20px;
    text-align: right;
    display: table;
}

.bottom_menu {}
.sidebar-wrapper .sidebar .bottom_menu:hover {
    background-color: black;
    text-align: center;
}
.sidebar-wrapper .sidebar .bottom_menu a {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.sidebar-wrapper .sidebar .bottom_menu a img {
    float: left;
    width: 35px;
    margin: 5px 0 0 0;
}
.sidebar-wrapper .sidebar .bottom_menu a span {
font-size: 29px;color: white;}


.toggle-menu {
    position: fixed;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.87);
    border: none;
    padding: 0px;
    top: 20px;
    right: 40px;
    color: black;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    width: 42px;
    height: 42px;
}


.toggle-menu.open {
    right: 400px;
}

.toggle-menu:focus {
    outline: 0;
}


.toggle-menu:focus, .toggle-menu:hover {
    background: rgba(255, 255, 255, 0.47);
}

.toggle-menu.open {
    color: white;
    z-index: 99999;
    background: transparent;
}



.toggle-menu .bars {
    width: 42px;
    height: 42px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.toggle-menu .bars span  {
    display: block;
    position: absolute;
    height: 2px;
    width: 60%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    right: 8px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.welcome-index .toggle-menu .bars span, .toggle-menu.open .bars span {
    background: #fff;
}

.toggle-menu .bars span:nth-child(1) {
    top: 13px;
}

.toggle-menu .bars span:nth-child(2) {
    top: 20px;
    width: 60%;
}

.toggle-menu .bars span:nth-child(3) {
    top: 27px;
    width: 60%;  
}

.toggle-menu.open .bars {
    right: -370px;
}

.toggle-menu.open .bars span:nth-child(1) {
    top: 19px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.toggle-menu.open .bars span:nth-child(2) {
    opacity: 0;
    right: -60px;
}

.toggle-menu.open .bars span:nth-child(3) {
    top: 19px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.content-wrapper {
    margin-right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.content-wrapper::before, .content-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}
.sidebar-open .content-wrapper::before, .sidebar-open .content-wrapper::after {
    opacity: 1;
    visibility: visible;
}
.sidebar-open .content-wrapper {
    /* margin-right: 360px; */
}






/*END SITE BAR*/





.wrapperAbsolute {
    position: absolute;
    top: 0;
    right: 50%;
    margin: 0 -600px 0 0;
}



.navOmbri {
    
    position: fixed;
    left: 0px;
    margin: 0;
    width: 17%;
    min-width: 200px;
    height: calc(100vh);
    top: 0;
    z-index: 10;
    padding: 100px 50px 0 60px;
    direction: ltr;
    background-color: white;
    
}

.navOmbri .brandLogo {
    margin: 0 0 35px 0;
}

.navOmbri li {
    margin: 0 0 10px 0;
}

.navOmbri li a {
    color: black;
    font-size: 32px;
}

.navOmbri li a:hover, .navOmbri li.active a {
    color: grey;
}


.navOmbri .brandLogo img {
    
    width: 148px;
    
}

#fp-nav {
    top : 17%;
}


/********************************** SECTION1 *******************************************/


.home .section.section1 {

    min-height: 800px;
    background-color: black;
    
}

.home .section.section1 .myContent {
    
    display: flex;
    flex-direction:row;
    background-color: black;
    min-height: 800px;
    
}


.home .section.section1 .wrapper .picture {
    
    background: url('../img/bgs/section1.jpg?v=1') center center black no-repeat;
    width: 50%;
    min-height: 800px;
    position: relative;
    
    
}

.home .section.section1 .wrapper .picture .logo-white {
    
    position: absolute;
    top: 20px;
    right: -200px;
    
    
}

.home .section.section1 .text {
    
    width: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.home .section.section1 .text h1 {
    
    width: 450px;
    font-size: 70px;
    
    line-height: .9;
    letter-spacing: -1px;
    margin: 0 0 10px 0;
}

.home .section.section1 .text p {
    
    width: 500px;
    margin: 10px 0 20px 0;
/*    text-align: justify;*/
    
}

.toContact {
    
    width: 200px;
    background-color: #ae2789;
    padding: 10px 0;
    border: none;
    color: white;
    
    
}

.toContact.white {
    
    background-color: white;
    color: black;
    
}

.toContact:hover {
    
    background-color: white;
    color:  #ae2789;
    
}

.toContact.white:hover {
    
    background-color: black;
    color: white;
    
}

.h2Style {
    
    font-family: "fb_bold","helvetica","arial";
    font-size: 50px;
    letter-spacing: -2px;
    text-align: center;
    
}



/********************************** SECTION2 *******************************************/
.home .section.section2 {

    padding: 150px 0;
    
}


.home .section.section2 .items {
    
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    
}

.home .section.section2 .items .item {
    
    width: 350px;
    text-align: center;
    background-color: #f8f8fb;
    padding: 20px 30px;
    
    -webkit-box-shadow: -2px 1px 7px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: -2px 1px 7px 0px rgba(0,0,0,0.3);
    box-shadow: -2px 1px 7px 0px rgba(0,0,0,0.3);
    
    min-height: 270px;
    
}

.home .section.section2 .items .item .number {
        
    font-family: "fb_bold","helvetica","arial";
    color: #ae2789;
    font-size: 30px;
    
}

.home .section.section2 .items .item h3 {
    
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    
}

.home .section.section2 .items .item p {
    
/*    text-align: justify;*/
    font-size: 18px;
    line-height: 1;
    
}

    
/********************************** SECTION3 *******************************************/

.home .section.section3 .myContent {
    
    display: flex;
    
}

.home .section.section3 .myContent img {
    z-index: 10;
    position: relative;
}
.home .section.section3 .myContent .text {
    
    background-color: #ae2789;
    border-radius: 30px;
    margin: 10px -10px 10px 0;
    color: white;
    padding: 50px;
    width: 100%;
    
}

.home .section.section3 .myContent .text h3 {
    
    font-size: 40px;
    
}

.home .section.section3 .myContent p {
    
    margin: 20px 0 0 0;
/*    text-align: justify;*/
}



/********************************** SECTION4 *******************************************/


.home .section.section4 {
    
    margin: 100px 0;
    padding: 150px 0 150px 0;
    background-color: #fbf6f3;
}

.home .section.section4 .items {
    
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.home .section.section4 .items .item {
    
    width: 280px;
    
}

.home .section.section4 .items .item .picture {
    
    width: 100%;
    height: 252px;
    border-radius: 20px;
    position: relative;
    
}

.home .section.section4 .items .item .text {
    width: 280px;
    margin: -10px auto;
    background-color: white;
    border-radius: 0 0 20px 20px;
    padding: 30px 20px;
    min-height: 300px;
    
}

.home .section.section4 .items .item .text h3 {
    
/*    font-family: "fb_bold","helvetica","arial";*/
    text-align: center;
    font-size: 30px;
    margin: 0 0 10px 0;
        
}

.home .section.section4 .items .item .text p {
    
    font-size: 16px;
/*    text-align: justify;*/
    padding: 0 10px;
    
}

.home .section.section4 .section4b {
    
    margin: 150px 0 0px 0;
    height: 690px;
    border-radius: 20px;
    padding: 190px 40px;
    
}

.home .section.section4 .section4b .text {
    
    
    
}

.home .section.section4 .section4b .text h3 {
    font-size: 55px;
    line-height: .9;
    margin: 0 0 40px 0;
}

.home .section.section4 .section4b .text p {
    
    width: 500px;
    text-align: justify;
    margin: 0 0 20px 0;
    
}



/********************************** SECTION5 *******************************************/



.home .section.section5 {

    
    padding: 50px 0;
    
    
}

.home .section.section5 .myContent {
    
    background-position: top left;
    background-repeat: no-repeat;    
    min-height: 800px;
    
    padding: 220px 0 150px;
    
    
}

.home .section.section5 .items {
    
    margin: 50px 0;
    display: flex;
    justify-content: center;
    gap : 50px;
    align-items: flex-start;
    
}

.home .section.section5 .items .item {
    
    border-radius: 20px;
    
    width: 300px;
    text-align: center;
    background-color: #f9f5f9;
    padding: 20px 30px 20px;
    
    -webkit-box-shadow: -2px 1px 7px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: -2px 1px 7px 0px rgba(0,0,0,0.3);
    box-shadow: -2px 1px 7px 0px rgba(0,0,0,0.3);
    
    min-height: 270px;
    
    text-align: right;
    
}

.home .section.section5 .items .item .text {
    
    text-align: right;
    
}

.home .section.section5 .items .item p {
    
/*    text-align: justify;*/
    min-height: 200px;
    
}

.home .section.section5 .items .item .quot {
    width: 50px;
    margin: 0 0 20px 0;
}


/********************************** SECTION CONTACT *******************************************/

.home .section.contact {
    
    background-color: #bfc1be;
    
}

.home .section.contact .myContent {
    
    min-height: 765px;
    background-position: center top;
    background-repeat: no-repeat;
    
    padding: 50px 0 0 0;
    
}

.home .section.contact .h2Style {
    
    color: white;
    font-size: 60px;
    text-shadow: 2px 2px 3px black;
    
    
    
}

.home .section.contact .form-wrapper {
    
    width: 400px;
    margin: 50px auto 0;
    
}


/********************************** END SECTION CONTACT *******************************************/


.site-footer .footerWrapper {
    
    background-color: black;
    
}

.site-footer .myFooter {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: white;
    padding: 40px 0;
    
    background: url('../img/bgs/blackFooter.png?v=1') no-repeat left 120px bottom;
    
}

.site-footer .myFooter .linksCont {}

.site-footer .myFooter .linksCont .one {
    
    margin: 0 0 20px 0;
    
}

.site-footer .myFooter .linksCont .link { 

        font-size: 16px;
        cursor: pointer;
    
}

.site-footer .myFooter .linksCont .link:hover {
    
    text-decoration: underline;
    
}


.site-footer .myFooter .r {
    
}

.site-footer .myFooter .c {
    
    
    text-align: center;
    
    
}

.site-footer .myFooter .c .socialLinksCont {
    
    padding: 0 60px;
    margin: 0 0 20px 0;
    
}

.site-footer .myFooter .c .socialLinksCont .socialLink {
    
    margin: 0 5px;
    text-decoration: none;
    background-color: transparent;
    
}

.site-footer .myFooter .l {
    
    direction: ltr;
    
    
}

.site-footer .myFooter .l .one {
    
    margin: 0 0 20px 0;
    
}

.site-footer .myFooter .l .item.name {
    font-size: 20px;
}

.site-footer .myFooter .l .item {
    
    font-size: 16px;
    
}










.modal-default .modal-header header{
    display: table;
    width: 100%;
}

.modal-default .modal-header header .col {
    vertical-align: middle;
}

.modal-default .modal-header header h2 {
    color: white;
    font-size: 57px;
}

.modal-default .modal-header header nav {}
.modal-default .modal-header header nav a {
    color: #A0A0A0;
    border-left: 1px solid white;
    padding: 0 7px;
}

.modal-default .modal-header header nav a:last-child {
    border-left: none;
}

.modal-default .modal-header header nav a:hover,
.modal-default .modal-header header nav a:focus,
.modal-default .modal-header header nav a.active {
    color: white;
    font-family: "fb_bold","helvetica","arial";
}


.modal-default .modal-body ul {
    display: table;
    width: 100%;
}

.modal-default .modal-body ul li {
    display: table-row;
    width: 100%;
}
.modal-default .modal-body ul li .col {
    display: table-cell;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 15px 0;
}

.modal-default .modal-body ul li .col.tit {
    font-family: "fb_bold","helvetica","arial";
}

.modal-default .modal-body ul li .col span:before {
    content: "";
    width: 15px;
    height: 15px;
    background: #369D37;
    display: inline-block;
    margin: 0 0 0 10px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
}

.modal-default .modal-body ul li .col span.not:before {
    background: red;
}

.modal-default .modal-body p {
    text-align: center;
    margin: 20px 0 0 0;
}
.modal-default .modal-body p small {
    color: grey;
}



.sidebar li.social {}
.sidebar li.social span {
    color: white;
}
.sidebar li.social .icons {
    float: left;
}
.sidebar li.social .icons a {
    margin: 0 10px 0 0;
}
.sidebar li.social .icons a img {
    width: 25px;
}
/*.sidebar-wrapper .sidebar li.nav-item:last-child {
    padding: 15px 0;
    border-bottom: none;
    background: none;
}
.sidebar-wrapper .sidebar li.nav-item:last-child span {}*/


a.goDown {
    color: #E0B382;
    background: transparent;
    border: none;
    border-bottom: 1px solid #E0B382;
    display: inline-block;
    margin: 10px 0 0 0;
    font-family: "fb_regular","helvetica","arial";
}

a.goDown:hover {
    /* background: #E0B382; */
    color: white;
    border-color: white;
}



.section5 {
}

.section5 .text {
    text-align: center;
    padding: 0px 0 0 0;
}



.home .section6 .wrapper {
    min-height: 850px;
}


.section6 img.devide {
    
}

.home .section.section6 .titleForm {
    font-family: "fb_regular","helvetica","arial";
    color: white;
}

.home .section.section6 .titleForm h3 {
    color: white;
    font-size: 29px;
    letter-spacing: 10px;
    margin: 14px 0 0 0;
}

.home .section.section6 .titleForm h2 {
    color: #E0B382;
    letter-spacing: 1px;
    font-size: 41px;
    font-family: "fb","helvetica","arial";
}

.home .section.section6 .credit {
    position: absolute;
    bottom: 0;
    text-align: left;
    width: 100%;
    padding: 30px 0 30px 40px;
    margin: 0;
}
.home .section.section6 .credit a {}



