@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*---===== IMPORTED FILES =====*/
@import url("bootstrap.min.css");
@import url("main.css");
@import url("bootstrap-icons.css");
@import url("aos.css");
@import url("boxicons.min.css");
@import url("owl.carousel.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.css");
:root {
  --primary-font: "Poppins", sans-serif;
  --white-color: #fff;
  --black-color: #000;
  --primary-color: #8e004f;
  --secondary-color: #d97a34;
  --grey-color: #474747;
}
/*---===== General =====---*/
body {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 22px;
}
a {
  color: var(--secondary-color);
  text-decoration: none;
}
a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}
/*---===== aos animation delay on mobile devices =====---*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*---===== Header =====---*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  position: relative;
  background: var(--white-color);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#header.header-scrolled {
  background: var(--white-color);
  position: fixed;
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-80px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 991px) {
  #header.header-scrolled {
    animation: auto;
  }
  #header.header-scrolled .navbar .active {
    color: var(--white-color) !important;
  }
}
#header .logo img {
  max-height: 70px;
}
#header.header-scrolled .logo img {
  max-height: 50px;
}
#header.header-scrolled .navbar a,
.navbar a:focus {
  font-size: 15px;
}
@media (min-width: 991.98px) {
  #header .logo img {
    max-height: 115px;
    position: absolute;
    top: 20%;
  }
  #header.header-scrolled .logo img {
    max-height: 45px;
  }
  #header {
    padding: 15px 0;
  }
  #header.header-scrolled {
    padding: 10px 0px;
  }
}
/*---===== Navigation Menu =====---*/
/*---===== Desktop Navigation =====---*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-color);
  white-space: nowrap;
  transition: 0.3s;
}
#header.header-scrolled .navbar a {
  color: var(--grey-color);
  font-weight: 500;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
#header.header-scrolled .navbar a:hover,
#header.header-scrolled .navbar .active,
#header.header-scrolled .navbar .active:focus,
#header.header-scrolled .navbar li:hover > a {
  color: var(--primary-color);
}
/*---===== Mobile Navigation =====---*/
.mobile-nav-toggle {
  color: var(--black-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.bi-x::before {
  color: var(--white-color);
}
/*---===== Sections General =====---*/
section {
  padding: 40px 0;
  overflow: hidden;
}
.section-img {
  background: url("../img/bg-img.jpg");
  background-size: cover;
}

/*---===== Footer =====---*/
#footer {
  background: var(--white-color);
  padding: 7px 0;
  color: #fff;
  font-size: 14px;
}
.footer-logo {
  display: block;
  margin: 0 auto;
}
.owl-carousel button.owl-dot {
  margin-right: 0 !important;
}
/*---===== Back to top button =====---*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: var(--white-color);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--primary-color);
}
.back-to-top:hover i {
  color: var(--secondary-color);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.tc-apply h6 {
  position: relative;
  text-align: right;
  top: 9%;
  font-weight: 600;
  right: -188px;
  transform: rotate(90deg);
  padding: 10px 35px;
  z-index: 9;
  border: none;
  border-radius: 5px;
}

/* =========================================================
   THANKYOU PAGE
========================================================= */
.cover-container {
  max-width: 100em;
}
.cover-container {
  min-height: 100vh;
  text-align: center;
  padding: 30px 20px !important;
}

.thankyou {
  width: 100%;
  max-width: 650px;
  margin: auto;
}

.project-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.thankyou h1 {
  margin-bottom: 15px;
  color: var(--white-color);
  font-size: 48px;
  font-weight: 700;
}

.thankyou p {
  margin: 0 auto 30px;
  max-width: 550px;
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.7;
}

/* Back to Home */
.back-home {
  display: block;
  margin: 0 auto;
  width: fit-content;
  padding: 10px 34px;
  border: 4px solid var(--white-color);
  border-radius: 30px;
  background: var(--secondary-color);

  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.back-home a {
  color: var(--black-color) !important;
  text-decoration: none;
  font-size: 0.9rem;
}
.back-home:hover {
  color: var(--black-color);
}

/* =========================
   Responsive
========================= */

@media (max-width: 767px) {
  .cover-container {
    padding: 20px 15px !important;
  }

  .project-logo {
    width: 150px;
    margin-bottom: 25px;
  }

  .thankyou h1 {
    font-size: 36px;
  }

  .thankyou p {
    font-size: 16px;
    line-height: 1.6;
  }

  .back-home {
    padding: 4px 25px 11px;
  }
}
