* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: cairo;
    src: url("fonts/Cairo-Medium.ttf");
}

body {
  font-family: cairo;
}

#Header .containr{
    padding: 40px;
    display: flex;
    justify-content: space-evenly;
}

.logo .row {
    top: 110px;
    right: 18%;
    padding: 20px;
}

.row a {
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    text-decoration: none;
}

.row .arow{
    font-weight: bolder;
}

.elips {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


  .tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin: 20px;
  }
  
  .tabs button {
    flex: 1;
    padding: 12px;
    border: none;
    background: #e9f8fa;
    cursor: pointer;
    font-size: 16px;
  }

  .tabs button a {
    text-decoration: none;
    color: black;
  }
  
  .tabs button.active {
    background: #2bb4c0;
    color: #fff;
    font-weight: bold;
  }
  
  /* Form */
  .form-section {
    background: #e9f8fa;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
  }
  
  .form-section h2 {
    margin-bottom: 15px;
    color: #333;
  }
  
  form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
  }
  
  form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .save-btn {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 12px;
    background: #7d3c98;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .save-btn:hover {
    background: #692d82;
  }
  
.containr {
    padding: 0 100px;
}

#foot {
    background-color: #001a41;
    margin-top: 40px;
    height: 200px;
    border-radius: 5px 5px 0 0;
}

.top-foot {
    display: flex;
   position: relative;
    height: 100px;
    flex-direction: row;
     justify-content: space-between;
     padding: 0 100px;
}

.top-foot .logo {
    position: absolute;
    top: 20px;
}

.top-foot .logo img {
    width: 100px;
    height: 100px;
}

.top-foot .contact {
    position: absolute;
left: 100px;
}

.contact p {
    color: #eee;
    text-align: center;
}
#foot hr {
margin: 0 100px;
}

#foot .bottom-foot {
    color: #eee;
    padding: 53px 100px 0;
    display: flex;
    justify-content: space-between;
}