:root {
  --red: #c70b0b;
  --blue: #0f49ac;
  --green: #16552d;
  --red-primary: #c70b0b;
  --blue-primary: #0f49ac;
  --green: #16552d;
  --white: #ffffff;
  --black: #000000;

  --red-rgb: 199, 11, 11;
  --blue-rgb: 15, 73, 172;
  --green-rgb: 22, 85, 45;
}
body {
  background-color: #f1f1f1;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.5rem;
  text-align: justify;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
}
.container {
  padding: 0 7%;
}

/* HERO */
.jumbotron {
  z-index: 0;
  background: linear-gradient(to bottom right, var(--blue), var(--green));
  animation: fadeIn 2s;
  padding: 50px 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  position: relative;
  overflow: hidden;
}
.jumbotron video {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: top center;
}
.jumbotron::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.jumbotron .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.jumbotron h6 {
  animation: slideInRight 2s;
}
.jumbotron h1 {
  font-size: 3.3em;
  animation: slideInLeft 3s;
}
.jumbotron h1:hover {
  background: linear-gradient(to right, var(--blue), var(--red), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.5px var(--white);
}
.jumbotron p {
  animation: slideInRight 4s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* TEXT */
.blue-text {
  color: var(--blue);
}
.red-text {
  color: var(--red);
}
.green-text {
  color: var(--green);
}
/* BG */
.blue-bg {
  background-color: var(--blue);
}
.red-bg {
  background-color: var(--red);
}
.green-bg {
  background-color: var(--green);
}
.l-blue-bg {
  background-color: rgba(var(--blue-rgb), 0.3);
}
.l-red-bg {
  background-color: rgba(var(--red-rgb), 0.3);
}
.l-green-bg {
  background-color: rgba(var(--green-rgb), 0.3);
}
.mix-bg {
  background-image: linear-gradient(
    to right,
    var(--blue),
    var(--red),
    var(--green)
  );
}

/* CARD */
.l-blue-card {
  position: relative;
  background: rgba(var(--blue-rgb), 0.3);
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(38, 38, 38, 0.3);
}
.l-blue-card:hover {
  color: var(--white);
  background: var(--blue);
}
.l-red-card {
  position: relative;
  background: rgba(var(--red-rgb), 0.3);
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(38, 38, 38, 0.3);
}
.l-red-card:hover {
  color: var(--white);
  background: var(--red);
}
.l-green-card {
  position: relative;
  background: rgba(var(--green-rgb), 0.3);
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(38, 38, 38, 0.3);
}
.l-green-card:hover {
  color: var(--white);
  background: var(--green);
}
.circular-card {
  position: relative;
  box-shadow: 0 0 10px rgba(38, 38, 38, 0.3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
}
.circular-card:hover {
  background-image: linear-gradient(
    to bottom right,
    var(--blue),
    var(--red),
    var(--green)
  );
  color: var(--white);
}
.expertise-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 10px rgba(38, 38, 38, 0.3);
  border-radius: 10px;
  text-align: center;
  height: 100%;
}
.expertise-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.services-card {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: linear-gradient(to bottom right, var(--red), var(--red)); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  text-align: center;
  width: 100px;
  height: 100px;
  transition: font-size 1s;
}
.services-card:hover {
  font-size: larger;
}
.flag-card {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.contact-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(38, 38, 38, 0.5);
  border-radius: 10px;
  text-align: center;
  height: 100%;
}

/* SECTION */
.core-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section {
  background-image: linear-gradient(
    to bottom right,
    var(--blue),
    rgba(var(--blue-rgb), 0.5)
  );
}
.blue-section {
  background-image: linear-gradient(
    to bottom right,
    var(--blue),
    rgba(var(--blue-rgb), 0.5)
  );
}
.red-section {
  background-image: linear-gradient(
    to bottom right,
    var(--red),
    rgba(var(--red-rgb), 0.5)
  );
}
.green-section {
  background-image: linear-gradient(
    to bottom right,
    var(--green),
    rgba(var(--green-rgb), 0.5)
  );
}

/* ICONS */
.mv-icon {
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTON */
.plain-btn {
  background: transparent;
  border: 1px solid var(--white);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  color: var(--white);
  text-transform: uppercase;
  padding: 7px 14px;
  font-weight: bold;
}
.plain-btn:hover {
  background: var(--white);
  color: var(--blue);
}

/* GRADIENT */
.grad-text {
  background-image: linear-gradient(
    to right,
    var(--blue) 0%,
    var(--red) 20%,
    var(--green) 40%,
    var(--blue) 60%,
    var(--red) 80%,
    var(--green) 100%
  );
  background-size: 150%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3));
}
/*GOLD GRADIENT ANIMATION*/
.grad-anim {
  background-image: repeating-linear-gradient(
    to right,
    var(--blue) 0%,
    var(--red) 20%,
    var(--green) 40%,
    var(--blue) 60%,
    var(--red) 80%,
    var(--green) 100%
  );
  background-size: 150%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3));
  animation: MoveBackgroundPosition 4s ease-in-out infinite;
}
@keyframes MoveBackgroundPosition {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 150%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* IMAGE */
img {
  transition: transform 0.5s;
}

img:hover {
  transform: scale(1.05);
}

/* DIVIDER */
.divider {
  margin: 15px auto;
  width: 50%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    var(--blue),
    var(--red),
    var(--green)
  );
}
.semi-divider {
  margin: 15px auto;
  width: 25%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    var(--blue),
    var(--red),
    var(--green)
  );
}
.full-divider {
  margin: 15px auto;
  width: 100%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    var(--blue),
    var(--red),
    var(--green)
  );
}
.white-divider {
  margin: 15px auto;
  width: 50%;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.white-semi-divider {
  margin: 15px auto;
  width: 25%;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.white-full-divider {
  margin: 15px auto;
  width: 100%;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

/* SCREEN SIZE */
@media screen and (max-width: 780px) {
  body {
    text-align: center;
  }
}
