@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap");

body {
  font-family: "Lato", sans-serif;
  background-color: gray;
  background-color: black;
  min-width: 640px;
}

h2 {
  font-size: 3em;
  font-weight: 600;
  margin-top: 2em;
  color: white;
  margin-bottom: -0.5em;
}

h5 {
  font-size: 2.8rem;
  font-weight: 600;
}

hr {
  margin: 4em 0;
  border-top: none;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 0, 0, 0) 0%,
    rgba(255, 0, 0, 1) 50%,
    rgba(255, 0, 0, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  opacity: 0.6;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: rgb(255 255 255 / 50%);
}

.container-lg {
  margin: 0 auto 8em;
}
.logo {
  display: inline-block;
  padding: 2em;
  font-size: 2em;
  color: white;
  font-weight: 600;
  background: #d60000;
  text-align: center;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #d60000 0%, #b60000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #d60000 0%, #b60000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #d60000 0%, #b60000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
  0 41.8px 33.4px rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12);
}

.logo .faded {
  opacity: 0.5;
}

.flex-column {
  position: absolute;
  bottom: 0;
}

.card {
  border-color: red;
  border: none;
  --bs-card-border-radius: 0px;
  --bs-card-inner-border-radius: 0px;
  --bs-card-spacer-x: 3rem;
  outline: 1px solid red;
  background: black;
  transition: 0.4s;
  cursor: pointer;
  margin-bottom: 3em;
}
.card::after {
  background-image: radial-gradient(50% 50%, #fff 0%, #0000 45%);
  background-size: 10px 10px;
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -6%;
  left: -6%;
  z-index: -1;
  transition: 0.8s;
}

.card.hover:after {
  bottom: -8%;
  left: -8%;
}

.card a {
  text-decoration: none;
  color: white;
}

.card img {
  transition: 0.4s;
  outline: 0px solid red;
}

.card.hover img {
  transform: scale(0.96);
  outline: 13px solid red;
  opacity: 0.7;
}

.btn-primary {
  border: none;
  border-radius: 1px;
  transition: 0.4s;
}

.campaigns .btn-primary {
  position: absolute;
  right: -5%;
  bottom: 2em;
  width: 96px;
  height: 96px;
  display: block;
  background: url("images/btn-bg.png");
  background-position: right;
  box-shadow: 0 0 30px #000000b8;
}

.row {
  --bs-gutter-x: 4.5rem;
}

p {
  font-size: 1.1em;
  margin-right: 2em;
}

.card.hover {
  outline: 5px solid red;
}

.card.hover .btn {
  background-position: left !important;
}

.links a {
  width: 420px;
  display: flex;
  background: white;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 1em;
  /* justify-content: flex-end; */
}

a .arrow {
  float: right;
  background: url(./images/btn-bg.png);
  width: 23%;
  /* height: 70px; */
  display: block;
  background-position: right center;
  transition: 0.2s;
}

a:hover .arrow {
  background-position: left;
}

a .text {
  flex: auto;
  padding: 0.8em;
  text-align: left;
}

.links-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

video {
  opacity: 0.6;
}
video,
.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  z-index: -1;
  background-image: url("./images/Dot-Pattern.png");
}

.lang-bar {
  z-index: 3;
  position: fixed;
  top: 1em;
  left: 1em;
}
.lang-bar .btn {
  background-color: #2f323f;
  font-size: 1.2em;
}
.lang-bar .btn:hover {
  background-color: red;
}
.en {
  display: none;
}


.digale .overlay{
    background: url('./images/page_bg.jpg');
    background-size: cover;
    background-position: bottom ;
    opacity: 0.8;
}

.digale .btn{
  background-color:#1D77C7;
}