*{
    margin: 0;
    padding: 0;
    font-family: 'Inter Tight', sans-serif;
font-family: 'Roboto', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/island.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
   
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 120px;
    height: auto
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 70px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 22px;
    color: #fff;
}











nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .text-box p{
        font-size: 14px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    z-index: -1:
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-style: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
     
}
.service-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
        transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.service-col p{
    color: #777;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
}
.service-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    
}

.footer{
    width:100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 1px 0;
}

p.credit{
    font-size: 12px;
}




#sub-header{
    height: 25vh;
    width: 100%;
    background-position: center;
    background-color: orange;
    background-size: cover;
    text-align: center;
    margin-top: 0px;
    top: -200px;
    transition: top 0.5s;
    position: fixed;
}
#sub-header h1{
    margin-bottom: 100px;
}








.sub-header{
    height: 25vh;
    width: 100%;
    background-position: center;
    background-color: orange;
    background-size: cover;
    text-align: center;
}
.sub-header h1{
    margin-bottom: 100px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
  flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 80%;
}

.about-col h1{
    padding-top: 0;
    font-size: 18px;
}

.about-col p{
    padding: 15px 0 25px;
    font-size: 14px;
}

.tour{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
}

.tour-col{
    flex-basis: 31%;
    border-radius: 10p;
    margin-bottom: 5%;
    text-align: left;
}

.tour-col img{
    width: 100%
}

.tour-col p{
    padding: 0;
    font-size: 12px;
}

.tour-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 16px;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: darkgrey;
    border: 1px solid #eee;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    color: #fff;
    font-weight: 600;
    transition: 1s;
}
.location{
    width: 80%;
    margin: auto;
    padding: 80px;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
    font-size: 14px;
}

.contact-col div h5{
font-size: 16px;
    margin-bottom: 5px;
    color: #555;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.pictour{
    flex-basis: 100%;
    padding: 30px 2px;
    margin-left: 18%;
    position: relative;
   margin-top: 10px;
    padding-bottom: 0;
}

.pictour img{
    width: 80%;
    height: auto;
    
}

.titletour {
    font-size: 18px;
    text-align: left;
    padding: 10px;
    margin-left: 20%;
    padding-bottom: 0;
  
}

.sub-titletour{
     font-size: 14px;
    text-align: left;
    padding: 10px;
    margin-left: 20%;
    margin-top: 0;
    padding-top: 0;
   
}

.desc-col{
  flex-basis: 48%;
    padding: 30px 2px;
    background: #fff;
    border-radius: 0px;
    margin-bottom: 5%;
    margin-left: 0px;
    padding: 20px 12px;
    box-sizing: border-box;
     border: 1px solid #ccc;
    height: 1%;
   overflow: hidden;
    position:sticky;
}

.desc-col p{
    font-size: 12px;
    line-height: 0.2em;
}
.desc-col-right{
  flex-basis: 48%;
    padding: 30px 2px;
    background: #fff;
    border-radius: 0px;
    margin-bottom: 5%;
    margin-left: 0px;
    padding: 20px 12px;
    box-sizing: border-box;
     border: 1px solid #ccc;
    height: 1%;
   overflow: hidden;
 
}

.desc-col h1{
    padding-top: 0;
    font-size: 14px;
    margin-left: 5px;
}

.desc-col li{
    padding: 15px 0 25px;
    font-size: 12px;
    margin-left: 20px;
    padding-bottom: 0;
    padding-top: 5px;
   
}
.desc-col ul{
     display: inline-block;
}

.mytabs{
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
   margin-left: 10%;
    padding: 10px;
}

.mytabs input[type="radio"]{
    display: none;
}

.mytabs label{
padding: 25px;
   font-size: 14px;
    font-weight: bold;
}

.mytabs .tab{
    width: 100%;
    padding: 20px;
    order: 1;
    display: none;
}

.mytabs input[type='radio']:checked + label + .tab{
    display: block;
}

.mytabs input[type='radio']:checked + label{
    color: coral;
}

.pippo img{
    max-width: 400px;
    padding-top: 10px;
    margin-left: 30px;
     display:inline-block;
} 

.pippo h2{
    padding-left: 10px;
}
    .tab p{
        font-size: 12px;
    
}

.tab{
    
    display: flex;
    flex-direction: column;
    background-color: #F9F8F7;
    overflow:auto;
}
.pippo{
     box-sizing: border-box;
     border: 1px solid #ccc;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-top: 5px;
    background-color: #fff;
}

ul.no-bullets {
  list-style-type: none;
  margin: 0;
  padding: 5px;
    font-size: 12px;
    line-height: 2em;
}

ul.bullets {
  list-style-type: square;
  margin: 0;
  padding: 30px;
    font-size: 12px;
    line-height: 2em;
}

.slidecontainer{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
margin-top: 5px;
}

.swiper{
    width: 80%;
  max-height: 90%;
}
.swiper-slide img{
    width: 100%;
}

.swiper .swiper-button-next, .swiper .swiper-button-prev{
    color: #fff;
}


.team{
    
    width:95%;
    margin: auto;
    padding-top: 50px;
    text-align: center;
}

.team-col{
    flex-basis: 29%;
    margin-bottom: 10px;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.team-col img{
    height: 80px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.team-col p{
    padding: 0;
    font-size: 12px;
}

.team-col h4{
    margin-top: 15px;
    text-align: left;
    font-size: 14px;
    
}

.team-col h3{
    margin-top: 2px;
    text-align: left;
    font-size: 12px;
    
}



.myBtn_ESP {
  display: none;
  position: fixed;
  bottom: 260px;
  right: 550px;
  z-index: 99;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: #fff;
  color:#E67E22;
  cursor: pointer;
  padding: 15px;
  border-radius: 0;
font-family: 'Roboto', sans-serif;
}


.myBtn {
  display: none;
  position: fixed;
  bottom: 260px;
  right: 600px;
  z-index: 99;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: #fff;
  color:#E67E22;
  cursor: pointer;
  padding: 15px;
  border-radius: 0;
font-family: 'Roboto', sans-serif;
}

.topnav{
    width: 100%;
    float: right;
    height: 30px;
    background-color: #fff;
    margin-top: 20px;
    margin-right: 40px;
    margin-bottom: 20px;
    padding-top: 10px;
     position: -webkit-sticky;
    position: sticky;
        top: 0px;
    z-index: 100;
   
   
}

.button{
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #000000;
 float: right;
    
}

.button:hover{
    color: #E67E22;
}





.button_header{
      height: 5vh;
    width: 100%;
    background-position: center;
    background-color: orange;
    background-size: cover;
    text-align: center;
}


.lang_button{
    height: 25px;
    width: 25px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
 float: right;
    padding: 5px;
    margin-top:5px;
    margin-right: 10px;
    border: 0px;
}

.button1{
    background: url(images/iconflag_itaB.png);
    background-size: cover;
    cursor: pointer;
   
}

.button2{
    background: url(images/iconflag_esp.png);
    background-size: cover;
    cursor: pointer;
}



.provabody{
    
     background-image: url(images/island.jpg);
    background-repeat: no-repeat;
    
}




.sub-header_start{
    height: 18vh;
    width: 100%;
    background-position: center;
    background-color: #fff;
    background-size: cover;
    text-align: center;
    position: sticky;
    top: 0;
   
}



.start img{
    width: 90px;
    height: auto
}




.dropbtn {
  background-color: #fff;
  color: black;
  padding: 16px;
  font-size: 12px;
  border: none;
  cursor: pointer;
}


.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.show {display:block;}





.lang_select{
    
    margin: 0;
    padding: 0;
    list-style: none;
}

.lang_select li{
    float: right;
    width: 100px;
    height: 20px;
    background-color: #fff;
    opacity: .9;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
}

.lang_select li a{
    
    text-decoration: none;
    color: black;
    display: block;
}

.lang_select li .lang_select li{
    display: none;
}

.lang_select li:hover .lang_select li{
    display: block;
}

.pic_firstpage{
   
   width: 100%;
    display: table;
    margin: 0;
    max-width: none;
    height: 70vh;
    background-image: linear-gradient(rgba(209, 73, 10, 0.5),rgba(209, 73, 10, 0.5)) ,url(images/borneo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


.about-us{
    width: 80%;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 20px;
}

.about-col_first{
  flex-basis: 48%;
    padding: 30px 2px;
}

.about-col_first img{
    width: 100%;
}

.about-col_first h1{
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    font-size: 18px;
    background-color: rgba(238, 117, 73, 0.81);
     
}
.about-col_first h2{
 padding: 10px 0 2px;
    font-size: 16px;
}

.about-col_first p{
    padding: 15px 0 25px;
    font-size: 14px;
}

.services_first{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    z-index: -1:
}