body {
  background-color: #2222224f;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

html {
  box-sizing: border-box;
    scroll-behavior: smooth;

}

*, *:before, *:after {
  box-sizing: inherit;

}

.column {
  border: #22222234 solid 1px;
  border-radius: 0 12px 12px 0;
  width: calc(25% - 16px); /* 4 cards */
  margin: 8px;
  padding: 0 8px;
}


.card {
    height: 90%;
     transition: transform .35s ease;
    border-radius: 22px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 6px;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}
.card img {
    border-radius: 22px;
    width: 100%;
    object-fit: cover;
}
.card-content {
    text-align: start;
    color: #222;
    height: 20%;
    padding: 16px;
    flex-direction: row;
    gap: 8px;
    flex-grow: 1;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
     border :#0b0b0b2a solid 3px;
}
.about-section{
       width: 90%;
    border-radius: 12px;
    background-color: #1412126f;
    color: #222;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(190, 26, 26, 0.2);
    margin: 2px auto 15px auto;
}

.about-section p {
     line-height: 2;
    font-size: 18px;
    text-align: left;
}
.about-section h2 {
    text-align: center;
    color: #222;
}

.container {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: 1;
}
.row {
    justify-content: center;
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.appbar {
    text-align: center;
  font-size: 14px;
    display: block;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(0, 0, 255, 0.555);
  overflow: hidden;
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.appbar a {
    float: center;
    justify-content: space-around;
  width: max-content;
  color: white;
  text-align: center;
  padding: 14px 8px;
  text-decoration: none;
  font-size: 14px;
}

.appbar a:hover {
    border-bottom: 2px solid black;
  background-color: transparent;
}
.brand {
    padding: 5px 4px;
    color: white;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}
.nav-links {
    text-decoration: none;
    justify-content: space-evenly;
    text-align: center;
  display: flex;
  gap: 5px;
}
.policy-section {
    width: 90%;
    border-radius: 12px;
    background-color: #1412126f;
    color: #222;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(190, 26, 26, 0.2);
    margin: 2px auto 15px auto;
}
.policy-section p{
    line-height: 2;
    font-size: 18px;
    text-align: left;
}

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: rgba(0, 0, 255, 0.555);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;

}

#scrollToTop:hover {
    background-color: rgba(0, 0, 255, 0.8);
}
.footer {
  /* position: fixed; */
  left: 0;
  width: 90%;
  background-color: white transparent;
  color: #222;
  text-align: center;
  border-top: 1px solid white;
  margin: auto;
  border-radius: 20px;
}
.footer h6 {
  color: #222;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer span {
  color: #222;
  text-decoration: none;
  font-style: italic;
  margin-bottom: 80px;
  font-size: 22px;
}

.footer a {
  text-decoration: none;
}
.fa {
  padding: 10px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  text-decoration: none;
  margin: 20px 10px 5px 10px;
  border-radius: 50%;
}
.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  background: #3b5998;
  color: white;
}

.fa-twitter {
  background: #55acee;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}
.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

/* Tablet */
@media screen and (max-width: 992px) {
  .column {
    width: calc(50% - 16px); /* 2 cards */
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .column {
    width: calc(100% - 16px); /* 1 card */
  }
}