@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.655);
    font-family:Exo;
    font-weight:400 !important;
}
body
{background-color: black;}
a{
    text-decoration: none;transition: .3s;
}
ul{
    list-style: none;
}
nav {
position: fixed;
width: 100%;
font-weight: bold;
font-size: small;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0% 30px;
z-index: 2;
top: 0;
}
.box{
margin-top:5rem;
margin-bottom:5rem;
padding-left:10rem;
padding-right:10rem
}
.flex{
    display: flex;
    margin-top: 3.5rem;
    justify-content: center;
    margin: auto 7rem;
    
}
input{
    width:100%;
    height:2rem;
    color: #000;
    padding:0.5rem;
   
}
textarea{
    width:100%;
    color: #000;
     padding:0.5rem;
}
.gfield_required{
    color:gray;
}
.gfield_label{
    color:#FFF;
}
input[type="submit"]{
    background:gray;
    cursor: pointer;
}
.gfield{
    margin:1rem 0rem;
}
.gfield_description{
    font-size:0.7rem;
}
.flex .image-about{
    flex:2;
}
.flex .content-about{
    flex:3;
    padding:3rem;
}
.flex .content-about h1{
    font-size: 2.5rem;
}

.flex .image-about img {
  max-width: 100%;
  max-height:100%;
}
.navbar{
    margin-top:30px;
    display: flex;
font-size: 16px;
}
.navbar li{
    transition: .5s;
    padding: 8px 20px;

    cursor: pointer;
}
.navbar ul li:hover{
background-color: rgba(255, 255, 255, 0.568) !important;
}
.navbar li a{
    color: white;
}
.navbar li a:hover{
    color: red;
    transform: scale(1.2);
}
.navbar .active{
    color: red;
}
.sidenav .active{
    color: red;
}
.sidenav .active svg{
    fill: red;
}
.navbar .active:hover{
    color: red;
}
.menu-item-has-children{
    position: relative;

}
.menu-item-has-children:hover .sub-menu{
    display: block;
}
.sub-menu{
    position: absolute;
    display: none;
    padding-top: 10px;
    background-color: rgba(0, 0, 0, 0.923);
border-radius: 5px;
width: max-content;
animation-name: popup;
animation-duration: .5s;
animation-fill-mode: forwards;

}
.sub-menu li{
    border-radius: 10px;
    color: white;
}
@keyframes popup {
    from{opacity: 0;
    transform: scale(.8);
}
    to{opacity: 1;
    transform: scale(1);}
}
.navlogo{
    width: 160px;
    height: 40px;
    margin-top: 25px;
}

.sochiyal{
    display: flex;
    padding-top: 25px;
    align-items: center;
}
.sochiyal li {
    padding: 5px 3px;
    cursor: pointer;
    transition: .4s;
    transition: .1s;   
}
.sochiyal li:hover{
    transform: scale(1.15);
    
}

.footer{
    margin-top: 10vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bolder;
    margin-bottom: 10vh;
}
.footer h4{
    padding: 5px 0;
    font-size: 14px;
    text-transform: uppercase;
}
.footer h4:nth-child(2):hover{
    width: fit-content;
    cursor: pointer;
    border-bottom: 1px solid #7d7d7d8e;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    text-align:center;
    z-index: 10;
  }
  
  .sidenav  li {
    padding: 8px 8px 30px 0px;
    text-decoration: none;
    font-size: 25px;
    color:white;
    display: block;
    transition: 0.3s;
  cursor: pointer
  ;
  }
   
  .sidenav  li a {
  
color: white;}

  
  .sidenav li:hover{
    background-color: #f1f1f122;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  .mobile_navbar{
    display: none;
  }

  .mobile_popup{
    display: none;
  }
  .mobile_popup li {
    padding: 10px 0     ;
  }
  .mobile_active{
    display: block;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-name: popup;
    overflow: hidden;
  }
@media (max-width:1024px) {
.box{
margin-top:4rem;
margin-bottom:2rem;
padding-left:1rem;
padding-right:1rem
}
@media (max-width:860px) {
.box{
margin-top:4rem;
margin-bottom:2rem;
padding-left:1rem;
padding-right:1rem
}
.flex{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    justify-content: center;
    margin: auto 1rem;
    
}
    .navbar{
        display: none;
    }
    .mobile_navbar{
        display: block;
    }
}
.arrow{
    transition: .4s;
}
@media (max-width:480px) {
    .box{
margin-top:6rem !important;
margin-bottom:2rem;
padding-left:1rem;
padding-right:1rem
}
.flex{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    justify-content: center;
    margin: auto 1rem;
    
}
input{
    width:100%;
    height:2rem;
}

.flex .image-about{
    flex:2;
}
.flex .content-about{
    flex:3;
    padding:1rem;
}
.flex .content-about h1{
    font-size: 1.5rem;
}

.flex .image-about img {
  max-width: 100%;
  max-height:100%;
}

    .navlogo{
        width: 110px;
        height: 30px;
    
    }
nav{
    padding: 0% 5px;
}
}
@media (max-width:360px) {
    .navlogo{
        display: none;
    }
     .box{
margin-top:4rem !important;
margin-bottom:2rem;
padding-left:1rem;
padding-right:1rem
}
.flex{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    justify-content: center;
    margin: auto 1rem;
    
}
}



