:root {
  --main-color: #ffab00;
  --dark-color: #ff8300;
  --gray-color: #5b6670;
  --green-color: #1b9a5a;
}

/* Global */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body,
html {
  width: 100%;
  margin: 0;
  padding: 0;
}
section[id] {
  scroll-margin-top: 94px;
}

/* Global */

.bg-main {
  margin: 0;
  padding: 0;
  background-image: url("../img/main-img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 700px;
  border-radius: 0 0 33px 33px;
  overflow: hidden;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.33);
}

.header {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  background-image: linear-gradient(
    45deg,
    var(--dark-color),
    var(--main-color)
  );
}
.navbar {
  backdrop-filter: blur(20px) brightness(0.85);
}
.custom-nav {
  background-color: var(--main-color);
  border-radius: 20px;
}
.custom-nav .nav-item a.nav-link {
  padding: 15px 30px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.custom-nav .nav-item a.nav-link:hover,
.custom-nav .nav-item a.nav-link.active {
  background-color: var(--dark-color);
  border-radius: 20px;
}
.navbar-brand {
  position: relative;
}
.navbar-brand img {
  position: relative;
  display: block;
  width: 150px;
}
.text-big {
  font-size: 45px;
  font-weight: 600;
}

.text-white {
  color: #ffffff;
}
.block-gradient {
  background-image: linear-gradient(
    to right,
    var(--dark-color),
    var(--main-color)
  );
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.33);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.text-medium {
  font-size: 30px;
  font-weight: 600;
}
.text-medium-2 {
  font-size: 64px;
  font-weight: 600;
}
.icon-wrapper {
  position: relative;
}
.icon-wrapper img {
  position: relative;
  display: block;
  width: 50%;
}
.custom-padding {
  padding: 0 0 120px 0;
}

.white-content {
  position: relative;
  margin-top: -80px;
  background-color: #ffffff;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.33);
}

.text-gray {
  color: var(--gray-color);
}

.text-orange {
  color: var(--dark-color);
}
.custom-upper {
  text-transform: uppercase;
  font-weight: 800;
}
.cta-button {
  color: #ffffff;
  background-color: var(--dark-color);
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 20px;
  display: inline-block;
}
.cta-button:hover {
  color: #ffffff;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom-offset {
  margin-top: -20px;
}
.text-huge {
  font-size: 80px;
  font-weight: 800;
}
.text-green {
  color: var(--green-color);
}
.custom-icon-wrapper {
  position: relative;
}
.green-line-wrapper {
  border-radius: 40px;
  border: 2px solid var(--green-color);
}
.custom-whatsapp {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
}
.text-general {
  font-size: 28px;
}

@media all and (max-width: 1199px) {
  .custom-whatsapp {
    position: relative;
    width: 140px;
  }
}

@media all and (max-width: 991px) {
  .text-big {
    font-size: 32px;
  }
  .text-general {
    font-size: 20px;
  }
  .text-huge {
    font-size: 50px;
  }
  .text-medium {
    font-size: 24px;
  }
  .text-medium-2 {
    font-size: 45px;
  }
}

.bg-gradient-orange {
  background-image: linear-gradient(
    to top,
    var(--dark-color),
    var(--main-color)
  );
}
.custom-radius {
  border-radius: 50px;
}
.custom-width {
  width: 30%;
}
.img-wrapper {
  position: relative;
  overflow: hidden;
}
.img-wrapper img {
  position: relative;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.img-wrapper-full {
  position: relative;
}
.img-wrapper-full img {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
}
.img-wrapper-footer {
  position: relative;
}
.img-wrapper-footer img {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 50%;
}
@media all and (max-width: 991px) {
  .img-wrapper img,
  .img-wrapper-full img {
    width: 80%;
  }
}

.qr-wrapper {
  flex-direction: row;
}
.custom-items-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}
.custom-item {
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.33);
}
@media all and (max-width: 991px) {
  .custom-items-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .qr-wrapper {
    flex-direction: column;
  }
}
.program-item {
  position: relative;
}
.program-item img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 33px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.33);
  border: 2px solid var(--main-color);
  margin: 10px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.program-item:hover img {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* modals */
.modal-header,
.modal-body,
.modal-footer {
  background-color: var(--dark-color);
  color: #ffffff;
}
.img-modal-wrapper {
  position: relative;
}
.img-modal-wrapper img {
  position: relative;
  display: inline-block;
  width: 40%;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 2px solid var(--main-color);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.33);
}
.img-modal-wrapper p {
  font-size: 1.2em;
}
.img-modal-wrapper a {
  color: #333333;
  font-weight: 800;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.img-modal-wrapper a:hover {
  color: var(--gray-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* modals */

/* footer */
.footer-bg {
  background-color: var(--dark-color);
  border-radius: 50px 50px 0 0;
}
/* footer */

.block-gradient.extra-btn:hover {
  background-image: linear-gradient(to right, #ffffff, #ffffff);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block-gradient a {
  text-decoration: none;
  color: #ffffff;
}
.block-gradient:hover a {
  text-decoration: none;
  color: var(--dark-color);
}
