/* UTILITIES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  li {
    list-style: none;
    border-bottom: 1px solid transparent; /* Add transparent border */
  }
  
  
  /* NAVBAR STYLING STARTS */

  #active {
    font-weight: bold;
    color:#BD0000
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background-color: #F1F7ED;
    color: #000;
    border-bottom: 5px solid #BD0000;
  }
  
  .nav-links a {
    color: #000;
    font-size: 30px;
  }
  
  /* LOGO */
  
  .logo {
    font-size: 32px;
  }
  
  /* NAVBAR MENU */
  
  .menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
  }
  
  .menu li:hover {
    border-bottom: 2px solid #BD0000;
    position: relative;
    bottom: 3px;
  }
  
  .menu li {
    padding: 5px 14px;
  }
  
  .about {
    background-color: #262322;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr auto 1fr; /* add row to the grid */
  }
  
  .container1 {
    background-color: #F1F7ED;
    grid-column:2;
    grid-row: 2; /* center the element */
    margin: 5% 0;
    padding: 5%;
    height: 1200px;
  }

  .container1 h2 {
        font-size: 48px;
        font-weight: bold;
        text-stroke: 1px black;
        -webkit-text-fill-color: #BD0000; /* Safari/Chrome */
        -webkit-text-stroke: 1px black; /* Safari/Chrome */
  }

  .aboutPort {
    background-color: #262322;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 10fr 1fr;
    grid-template-rows: 1fr auto 1fr; /* add row to the grid */
  }

  .containerPort {
    grid-column:2;
    grid-row: 2; /* center the element */
    margin: 5% 0;
    padding: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

  }


  .containerPort div {
    height:400px;
    width: 300px;
    background-color: #F1F7ED;
    margin: 5px;
    margin-bottom: 50px;
    color:#262322;
    padding: 5px;
    position: relative;
    text-align: center;
  
  }

  .containerPort div p{
    padding:5px;
    border-radius: 50px;
    position: absolute;
    bottom: 50%;
   
    }
  
  .containerPort div a{
  background-color: #262322;
  color: #BD0000;
  padding:5px;
  border-radius: 50px;
  position: absolute;
    bottom: 5%;
  }

  form {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    padding: 50px;
    color: #BD0000;
  }
  
  label {
    font-weight: bold;
    margin-top: 10px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #F1F7ED;
  }
  
  textarea {
    height: 150px;
  }
  
  input[type="submit"] {
    background-color: #BD0000;
    color: #F1F7ED;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  input[type="submit"]:hover {
    background-color: #b84343;
  }
  

  footer {
    background-color: #262322;
    color: #fff;
    padding: 50px 0;
    grid-row: 3;
    border-top: 1px solid #BD0000;
  }
  
  .container2 {
    max-width: 1200px;
    margin: 0 auto; 

  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .col-md-4 {
    width: calc(33.333% - 30px);
  }
  
  h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  a {
    color: #fff;
    text-decoration: none;
  }
  
  a:hover {
    color: #BD0000;
  }
  
  p {
    margin-bottom: 10px;
  }
  