  /*
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;
}
body{
    background: #f2f2f2;
}
*/
.arrow{
width: 20px;
height: 9px;  
}
nav{
    width: 95%;
    max-width: 1500px;
    margin: auto;
    background: #fff;
    padding: 0px;
    margin: auto;
    margin-bottom: 50px;
    z-index: 2;
    padding-top: 20px;

}
nav::after{
    content: '';
    clear: both;
    display: table;
}
nav .logo{
    float: left;
    /*
    color: white;
    font-size: 27px;
    font-weight: 600;
    line-height: 70px;
    padding-left: 60px;
    */
}
nav .logo img{

}
nav ul{
   
    float: right;
    list-style: none;
    /*
    margin-right: 50px;
    */
    position: relative;
    margin-top: 10px;
}
nav ul li{
    float: left;
    display: inline-block;
    background: transparent;
    margin: 0 5px;
}
nav ul li a{
    
    color: #222B7A;
    text-decoration: none;
    line-height: 50px;
    font-size: 20px;
    padding: 10px 25px;
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
}
nav ul li a:hover{
  /*
    color: cyan;
    border-radius: 5px;
    box-shadow: 0 0 5px #33ffff,
                0 0 5px #66ffff;
                */
}
nav ul ul li:hover{
    width: 100%;
    height: 100%;
    background-color: #222B7A;
    color: #FFFFFF;
}
nav ul ul li a:hover{
  /*
    color: cyan;
    box-shadow: none;
    */
    color: #FFF;

}
nav ul ul{
    position: absolute;
    top: 90px;
    border-top: 3px solid #222B7A;
    opacity: 0;
    visibility: hidden;
    transition:top 0.3s;
    margin-top: -20px;
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
    
    

}
nav ul ul ul{
    border: none;
  
}
nav ul li:hover>ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
    z-index: 2;
    
}
nav ul ul li{
    position: relative;
    margin: 0px;
    /*
    width: 210px;
    */
    width: auto;
    float: none;
    display: list-item;
    border-bottom: 1px solid #222B7A;
    background-color: #F3F3FA;
    
    
    
}

nav ul ul li a{
    width: 100%;
    line-height: 50px;
    font-size: 18px;
}
nav ul ul ul li{
    position: relative;
    top: -70px;
    left: 150px;
    width: 250px;
    
}
.show,.icon,input{
    display: none;
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 20px;
}
#contact{
border-radius: 10px;
background-color: #5BB849;   
color: #fff;
}
#contact a{
color: #fff;    
}



@media all and (max-width: 1100px){
    #contact{
        width: 150px;
        height: auto;  
        display:inline-block;
        text-align: center;
        margin-bottom: 0px;
          }
          nav{
           margin-bottom: 0px; 
          }
    nav ul{
        width: 100%;
        margin-right: 0px;
        float: left;
        margin-top: 0px;;
        /*
        text-align: right;
        */
        margin: auto;
    }
    nav .logo{
        
        padding-left: 10px;
        width: 190px;
        height: auto;
        margin-top: 5px;
    }
    nav .logo img{
    width: 100%;
    height: auto;    
    }
    nav ul li, nav ul ul li{
        display: block;
        width: 100%;
    }
    nav ul ul{
        width: 95%;
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0px;
        margin: auto;
        margin: 0px;
     padding: 0px;
    }
    nav ul li a{
        width: 100%;
       
     font-size: 18px;
     line-height:40px;
     display: inline-block;
     margin: auto;
     /*
     text-align: right;
     */
     margin: 0px;
     padding: 0px;
     
     
    }
    nav ul ul ul li{
        position: static;
    }
    nav ul ul li{
        border-bottom: 0px;
    }
    nav ul ul a{
        padding-left:40px ;
    }
    nav ul ul ul a{
        padding-left:80px ;
    }
    .show{
        width: 95%;
        display: block;
        color: #222B7A;
        font-size: 18px;
        padding: 0 0px;
        line-height: 40px;
        cursor: pointer;
       padding-left: 0px;
       /*
       text-align: right;
       */
       
    }
    .show:hover{
      /*
        color: cyan;
        */
    }
    .icon{
        display: block;
        color: #222B7A;
        position: absolute;
        right: 40px;
        line-height: 70px;
        font-size: 25px;
        cursor: pointer;
    }
    nav ul li a:hover{
        box-shadow: none;
    }
    .show + a, ul{
        display: none;
    }
    [id^=btn]:checked + ul{
        display: block;
    }

}