/* global */
:root {
  --main-color: #ff8300;
  --active-color: #3e7eff;
  --back-color: #465055;
}
/* global */

.navbar-brand img,
.second-logo img {
  display: block;
  width: 200px;
}

body {
  font-family: "Montserrat", sans-serif;
}
.custom-full {
  height: 100%;
}
.custom-corner {
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: var(--main-color);
}

.wrap-img {
  position: relative;
}
.wrap-img img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.wrap-img img.custom-banner-img {
  width: 85%;
}

.custom-center .row {
  padding-top: 150px;
  height: 100%;
}

/* navbar */
.navbar {
  background-color: rgba(255, 132, 0, 0.9);
  backdrop-filter: blur(10px);
}
.navbar-nav li.nav-item a.nav-link {
  text-transform: uppercase;
  font-weight: bolder;
}

/* cards */
.card {
  border: none;
  overflow: visible;
}
.card img {
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
/* cards */

.bg-orange {
  background-color: var(--main-color);
}
.text-orange {
  color: var(--main-color);
}
.text-gray {
  color: var(--back-color);
}
.custom-title span {
  font-size: 2em;
}

.custom-white-bg {
  background-color: #ffffff;
  border-radius: 25px;
}

.custom-space {
  padding-top: 200px;
}

.custom-white-bg {
  position: relative;
}

.custom-white-bg::before {
  position: absolute;
  display: block;
  content: "";
  z-index: 1;
  top: -260px;
  left: 0;
  width: 100%;
  height: 280px;
  background-image: url("../img/top-absolute-img.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.wrap-img .img-desk {
  display: block;
}
.wrap-img .img-mobile {
  display: none;
}

@media all and (max-width: 991px) {
  .wrap-img .img-desk {
    display: none;
  }
  .wrap-img .img-mobile {
    display: block;
  }
}

/* footer */
.custom-footer {
  border-top: 1px solid #ffffff;
}
.custom-footer-logo {
  position: relative;
}
.custom-footer-logo img {
  display: block;
  position: relative;
  width: 66%;
  margin: 0 auto;
}
.social-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-wrap li {
  list-style: none;
  margin: 0 6px;
}
.social-icon {
  font-size: 2em;
  color: var(--main-color);
  background-color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: var(--main-color);
  color: #ffffff;
  box-shadow: 0 0 20px #fbff00;
}
