/*
Farben-mittani
bianco: #dedede - 222
blu1: #2d91a5 - 45 145 165
blu2: #417d91 - 65 165 145
blu3: #196982 - 25 105 130
nero: #373737 - 55


*/

@font-face {
    src: url(font/NeoSansArabic.ttf);
    font-family: NeoSansArabic;
}

* {
    font-family: NeoSansArabic;
    font-weight: 400;
    text-decoration: none;
    font-size: 100%;
    hyphens: none;
    line-height: 1.6;
  color: #373737;
  scroll-behavior: smooth;
  }

  a{
    color: #373737;
  }
  a:hover{
    color: #417d91;
  }


body{
    width: 100%;
    /*background: linear-gradient(to left,
        #dedede 0vw,
        #dedede 50vw,
        #ebebeb 50vw,
        #ebebeb 100vw);
    display: block;*/
    overflow-x: hidden;
    hyphens: none;
    padding: 0;
    margin: 0;
  }

header{
    position: fixed;
    background-color: rgba(243, 243, 243, 0.4);
    width: 100%;
    padding: 0.5% 0.5% 0.5% 8%;
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
  }

  header div{display: table-cell;}

  header table{
      border-collapse: collapse;
      width: 50%;
      float: right;

    }
  header td{
      vertical-align: middle;
      text-align: right;
      height: 4vh;
      font-weight: 800;
      font-size: 120%;
  }
  
  header a{
    
    font-weight: bolder;

  }


footer{
    background: rgba(25, 105, 130, 1);
    float: none;
    width: 35%;
    color: #dedede;
    padding: 1% 0% 1% 15%;
  }

footer div small{
  font-size: 80%;  
  color: #dedede;
}

footer a{color: #dedede;}
footer a:hover{color: #ffffff;}
  
img{box-shadow: 0px 13px 13px 0px rgba(0,0,0,0.3);}

.wrapper {
overflow: hidden;
display: table;
width: 40%;
/*border: solid 2px #FFF000;*/
}

.wrappersm {
  display: table;
  width: 100%;
  /*border: solid 2px #FFF000;*/
  }
    

div.left{
    background-color: #ebebeb;
    float: none;
    width: 50%;
    padding-top: 2%;
 
  }

div.right{
  position: fixed; 
  z-index: -1;
  }

div.in{
    padding: 8% 30% 5% 30%;
  }


  div.blu{
    padding: 5% 30% 5% 30%;
    background-color: #417d91;
    color: #ebebeb;
  }

  div.blu p, div.blu h1, div.blu h3, div.blu h4, div.blu a{ 
    color: #ebebeb;
  }

  div.blu a:hover{ 
    color: #dedede;
  }




h1{
    font-size: 600%;
    font-weight: 1000;
    color: #417d91;
    margin: 0;
}

h2{
    font-size: 400%;
    font-weight: 600;
    color: #373737;
    margin: 0;    
}

h3{
    font-size: 200%;
    font-weight: 900;
    color: #417d91;
    margin: 0;
}

h4{
    font-size: 100%;
    font-weight: 800;
    color: #373737;
    margin: 0;
}


@media screen and (max-width: 1300px) {
    div.right {
      display: none;
    }
    div.left{
        width: 100%;
    }

    footer{
        width: 100%;
    }

    .wrapper{
        width: 90%;
    }
}

ul{
  list-style-type: none;
  padding: 2% 0% 20% 0%;
}

li{
    
    cursor: pointer;
    float: left;
    padding: 0% 8% 0% 0%;
}

.dropbtn {
  color: #373737;
  padding: 13px 0px;
font-weight: 800;
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown {
  display: inline-block;
}

.dropdown:hover .dropbtn {color: #417d91; background-color: none;}

.dropdown-content {
  display: none;
  font-size: 80%;
  position: absolute;
  background-color: rgba(243, 243, 243, 0.8);
  width: fit-content;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a:hover {background-color: #f3f3f3; color: #417d91; transition-duration: 0.5s;}
.dropdown:hover .dropdown-content {display: block; }

.dropdown-content a {
  color: #373737;
  padding: 13px 20px;
  text-decoration: none;
  text-align: left;
  display: block;
}


.butt{
  
    float: right;
    background-color: #f3f3f3;
    border-radius: 4px;
    border: 2px solid #417d91;
    padding: 13px 20px;
    
    text-align: center;
    font-weight: 600;
    color: #417d91;
    display: inline-block;
    font-size: 16px;
    margin: 1%;
    cursor: pointer;
    transition-duration: 0.5s;
    letter-spacing: 0.3px;
}

.butt:hover {
  color: #dedede;
  background-color: #417d91;
  border: 2px solid #dedede;
}


