* { 
    margin:  0 ;
    padding: 0;
    box-sizing: border-box;
    direction: ltr;
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-style: normal;
} 
a{
    text-decoration: none;
    color: #2a373e;
    font-size: 20px;
  
  }
  ul{
    list-style-type: none;
  }
  
  
  header .top{
    background-color: #F0F0F0;
    width: 100%;
  }
  
  header .head{
    padding: 5px 0px ;
    width: 90%;
    margin: auto;
    
   
    background-color: #f0f0f0;
  }
  
  header .head ul{
      display: flex;
      float: left;
  }
  
  header .head li{
    margin-right:10px ;
  
  }
  
  .butt-head{
    float: right;
  }
  
  .butt-head .lang{
    color: #000000;
    border: none;
    text-decoration: underline;
    background: transparent;
    padding: 0 15px;
    font-size: 16px;
    /* transition: all ease-in-out .5s; */
  }
  
  .butt-head .signin{
    color: #fff;
    border: none;
    text-decoration: underline;
    background: #018290;
    padding: 5px 15px;
    border-radius: 35px;
    font-size: 16px;
    /* transition: all ease-in-out .5s; */
  }
  
  
  .nav-bar{
   
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-around;
   
    
  }
  .nav-bar .logo-ufbc img{
    width: 100px;
  }
  
  .nav-bar .list{
    padding-top: 30px;
  
    margin-left: 80px;
    margin-right: 50px;
    display : flex
   
  }
  
  .nav-bar li{
  
    margin-right: 35px;
    font-size: 16px;
    
    display: flex;
    
  }
  .nav-bar a{
  
  
    font-size: 20px;
    font-weight: 500;
   
    
  }
  
  .nav-bar .logo-Arb img{
    width: 200px;
   
  }
  .clear-fix{

    clear: both;
  }
  
.contact-details {
    width: 90%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info {
    max-width: 50%;
}

.contact-info .contact-item p {
    font-weight: 700;
}

.contact-details h2 {
    font-size: 30px;
    color: #333;
    border-bottom: 2px solid #008060;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-details p {
    font-size: 20px;
    margin: 5px 0;
    font-weight: 700;
}

.contact-item {
    display: block;
    align-items: center;
    margin: 10px 0;
    font-size: 16px;
}

.contact-item .icon {
    font-size: 20px;
    margin-right: 10px;
    color: #008060;
}

.contact-item #whats-up {
    color: #008060;
}

.contact-item a {
    color: #008060;
    text-decoration: none;
}



.location-map {
    margin-right: 30px;
    margin-top: 30px;
    width: 45%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 20px;
}



footer {
  background-color:#018290; 
  padding: 40px 0;
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

.footer-container h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-icons, .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icons .line {
  height: 40px; 
  width: 1px;
  background: #ffffff;
  margin: 0 20px;
  opacity: 0.8;
}

.icon-link {
  color: #ffffff;
  font-size: 1.8rem; 
  /* padding: 8px; */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #018290;
  /* border: 2px solid transparent; */
}
.icon-link i{
  padding-top: 6px;
}

.icon-link:hover {
  color: #018290;
  background-color: #ffffff;
  /* border: 2px solid #ffffff; */
}

.social-icons a {
  font-size: 1.6rem; 
  margin: 0 10px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #018290;
}

footer p {
  font-size: 0.8rem; 
  opacity: 0.8;
  margin-top: 30px;
  letter-spacing: 0.5px;
}

.flex{
  display: flex;
  width: 60%;
  justify-content: space-between;
  /* background-color: #D12F31; */
}
.foot-con{
  /* background-color: #2a373e; */
  display: flex;
  justify-content: center;
}





@media screen and (max-width: 480px) {

  .navbar img{
    width: 200% !important;
  } 
  /* Navigation */
  .nav-bar {
    flex-direction: column;
    align-items: center;
  }

  .nav-bar .list {
    flex-direction: column;
    padding-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-bar li {
    margin: 10px 0;
  }

  /* Contact Details */
  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    max-width: 100%;
    text-align: center;
  }

  .contact-details h2 {
    font-size: 24px;
  }

  .contact-details p {
    font-size: 16px;
  }

  footer p {
    font-size: 0.7rem;
  }

  /* Footer */
  footer .contact-icons, footer .social-icons {
    flex-direction: column;
  }

  footer .contact-icons .line {
    display: none;
  }

  .flex {
    flex-direction: column;
    width: 100%;
  }

  /* Icons */
  .icon-link {
    font-size: 1.5rem;
  }

  .social-icons a {
    font-size: 1.4rem;
  }
}




@media screen and (max-width: 768px) {
  .navbar img{
    width: 170% !important;
  } 

  /* Navigation */
  .nav-bar {
    flex-direction: column;
    align-items: center;
  }

  .nav-bar .list {
    flex-direction: column;
    padding-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-bar li {
    margin: 10px 0;
  }

  /* Location Map */
  .location-map {
    width: 100%;
    margin-right: 0;
  }

  /* Contact Details */
  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    max-width: 100%;
    text-align: center;
  }

  /* Footer */
  footer .footer-container {
    flex-direction: column;
  }

  footer .contact-icons, footer .social-icons {
    flex-direction: column;
  }

  footer .contact-icons .line {
    display: none;
  }

  .flex {
    flex-direction: column;
    width: 100%;
  }
}


@media screen and (min-width: 1024px) {

  /* Navigation */
  .nav-bar {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-bar .list {
    flex-direction: row;
    margin-left: 50px;
    margin-right: 50px;
  }

  .nav-bar li {
    margin-right: 35px;
  }

  .location-map {
    width: 45%;
    margin-right: 30px;
  }

  /* Contact Details */
  .contact-details {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-info {
    max-width: 50%;
  }

  footer .footer-container {
    flex-direction: row;
  }

  footer .contact-icons, footer .social-icons {
    flex-direction: row;
  }

  .flex {
    flex-direction: row;
    width: 60%;
  }
}



@media screen and (min-width: 1440px) {


  /* Navigation */
  .nav-bar {
    width: 80%;
    margin: auto;
  }

  /* Contact Details */
  .contact-details {
    width: 80%;
    margin: auto;
  }

  /* Footer */
  footer .footer-container {
    width: 80%;
    margin: auto;
  }
}


.bg-main{
  background-color: #018290;
}
.w-10{
width: 10%;
}
.w-20{
width: 7%;
}
.w-90{
width:  90%;
}

.w-15{
width: 13%;
}
.navbar li a{
/* margin-right: 35px; */
font-size: 23px;

}