/* global */
:root {
  --main-color: #1f3a81;
  --gray-color: #acacac;
  --color-one: #4479ff;
  --color-two: #44daff;
  --color-three: #44ffe6;
}
body {
  font-family: "Montserrat", sans-serif;
}
section {
  padding: 60px 0;
}
.custom-padding {
  padding: 40px;
}
.card-padding {
  padding: 10px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: var(--main-color);
}
.badge-one {
  background-color: var(--color-one);
  color: "#ffffff";
}
.badge-two {
  background-color: var(--color-two);
  color: var(--main-color);
}
.badge-three {
  background-color: var(--color-three);
  color: var(--main-color);
}
/* global */

.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  color: var(--gray-color);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--color-one);
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--main-color);
  font-weight: 600;
}

.navbar-brand {
  position: relative;
}
.navbar-brand img {
  display: block;
  width: 180px;
}

.banner-uno {
  background-image: url("../img/banner-uno.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 720px;
}

.banner-uno .row {
  height: 720px;
}

.image-wrap {
  position: relative;
}
.image-wrap img {
  position: relative;
  display: block;
  width: 100%;
  border-bottom-left-radius: 200px;
  border-top-right-radius: 200px;
}

.custom-text-wrap {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px) brightness(1.25);
  -moz-backdrop-filter: blur(20px) brightness(1.25);
  -ms-backdrop-filter: blur(20px) brightness(1.25);
  backdrop-filter: blur(20px) brightness(1.25);
  border-radius: 24px;
}

.inner-wrap {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--gray-color);
  background-color: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.custom-cta {
  padding: 5px 15px;
  border: 1px solid var(--main-color);
  border-radius: 24px;
  color: var(--main-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.custom-cta:hover {
  border: 1px solid var(--gray-color);
  background-color: var(--gray-color);
  color: #ffffff;
}

@media all and (max-width: 1199px) {
  .custom-cta {
    font-size: 14px;
  }
}

@media all and (max-width: 991px) {
  .image-wrap img {
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}

@media all and (max-width: 768px) {
  .custom-cta {
    font-size: 12px;
  }
}

.custom-footer {
  padding: 80px 0;
  background-color: var(--gray-color);
  color: #ffffff;
}

.logo-footer {
  position: relative;
}
.logo-footer img {
  position: relative;
  display: block;
  width: 20%;
  margin: 0 auto;
}

.social-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.social-media li {
  list-style: none;
  margin: 0 20px;
}
.social-media li a {
  color: var(--main-color);
  font-size: 20px;
}

.custom-list {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.custom-list li {
  list-style: none;
}

.custom-list li a {
  color: var(--main-color);
  text-decoration: none;
}

.custom-list li a:hover {
  color: var(--color-one);
}
