@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Poppins:wght@400;600;700;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #630094;
  --white: #ffffff;
}
html {
  font-family: 'Poppins', sans-serif !important;
}
a {
  text-decoration: none;
}
body {
  background: url('../Images/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  width: 100%;
  min-height: 100vh;
}
.background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.background img {
  width: 100%;
  height: 100%;
  filter: blur(20px);
  pointer-events: none;
}
.navbar {
  background: rgba(255, 255, 255, 0) !important;
  padding-top: 30px;
}
.navbar-collapse
{
  justify-content: flex-end;
}
.navbar-nav{
  margin: 0 !important;
  margin-right: 20px !important;
}
.logo {
  height: 60px;
}
.logo img {
  height: 100%;
}
.logo p {
  color: white;
  font-size: 24px;
  font-weight: 700;
}
.navigation_list {
  width: 40%;
  position: relative;
}
.navbar-toggler-icon {
  background: white;
  height: 4px;
  position: relative;
  border-radius: 5px;
}
.navbar-toggler-icon::before {
  content: '';
  position: absolute;
  background: #fff;
  width: 50%;
  height: 100%;
  top: -10px;
  left: 0;
  border-radius: 5px;
}
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  background: #fff;
  width: 70%;
  height: 100%;
  top: 10px;
  right: 0;
  border-radius: 5px;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}
.nav-item {
  margin: 0 auto;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-size: 18px;
  display: block;
  margin: 0 5px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary) !important;
}
.explore,
.navigation_cta button {
  background: var(--primary) !important;
  outline: none;
  border: none;
  color: white;
  height: 45px;
  width: 150px;
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 1px 1px 50px var(--primary);
}
.navigation_cta a {
  color: #fff;
}
.dropdown-menu {
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(20px);
  border: 1px solid var(--primary);
}
.dropdown-item {
  color: white;
}
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--primary);
  background: none;
}
@media (max-width: 430px) {
  .logo p {
    font-size: 15px !important;
  }
}

/* main part */
.home_left {
  width: 50%;
}
.main_heading h1 {
  color: white !important;
  margin-top: 150px;
  font-family: 'Oxygen', sans-serif;
  font-size: 60px;
}
.secondary_heading {
  width: 70%;
}
.secondary_heading h2 {
  font-size: 25px;
  color: #909090;
  margin-top: 40px;
  font-family: 'Oxygen', sans-serif;
  font-weight: 300;
}
.home_buttons button {
  background: #0e0e0e;
  outline: none;
  border: none;

  height: 55px;
  width: 150px;
  font-size: 18px;
  border-radius: 10px;
  margin-top: 40px;
  transition: 0.3s;
  border: 1px solid var(--primary);
}
.home_buttons button:hover {
  box-shadow: 1px 1px 50px var(--primary);
}
.home_buttons button a {
  color: #fff;
  text-decoration: none;
}
.explore {
  margin-right: 10px;
}
.explore:hover {
  background: white !important;
}
.social_icons {
  margin: 40px 0;
}
.social_icons button {
  height: 50px;
  width: 50px;
  margin-right: 5px;
  outline: none;
  border: none;
  background: rgba(255, 255, 255, 0.157);
  color: white;
  border-radius: 10px;
  transition: 0.3s;
}
.home_buttons button:hover,
.home_buttons button:visited,
.home_buttons button:active {
  background: rgb(0, 0, 0) !important;
  color: #fff !important;
}
.home_buttons button:hover .home_buttons button a {
  color: #222;
}
.social_icons button a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  display: grid;
  place-items: center;
}
.social_icons button a:hover {
  background: rgb(255, 255, 255);
  color: var(--primary);
  border-radius: 10px;
  box-shadow: 1px 1px 50px var(--primary)c9;
}

.home {
  display: flex;
  height: calc(100vh - 100px);
}
.home_right {
  width: 50%;
}
.home_right img {
  height: 100%;
}

@media (max-width: 1280px) {
  .home_left {
    width: 70%;
  }
  .home_right {
    width: 30%;
  }
  .home_right img {
    width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 650px) {
  body {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .home {
    flex-direction: column-reverse;
    height: max-content;
  }
  .home_left {
    width: 100%;
  }
  .home_right {
    width: 100%;
  }
  .home_right img {
    width: 100%;
    object-fit: contain;
  }
  .main_heading h1 {
    margin-top: 20px;
    font-size: 40px;
  }
  .secondary_heading {
    width: 100%;
  }
  .secondary_heading h2 {
    font-size: 18px;
  }
  .social_icons {
    width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
  }
  .home_buttons {
    display: flex;
    justify-content: center;
  }
  .navbar-nav {
    background: rgba(255, 255, 255, 0.103);
    border-radius: 10px;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.096);
  }
}

.footer {
  height: 50px;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_icon {
  height: 80%;
}
.footer_icon img {
  height: 100%;
  opacity: 0.4;
}
.footer p {
  margin-bottom: 0px !important;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.555);
  font-weight: 300;
}
.carousel-control-next{
  background: linear-gradient(to right , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.801));
  border-radius: 10px;
}
.carousel-control-prev{
  background: linear-gradient(to right , rgba(0, 0, 0, 0.801) , rgba(0, 0, 0, 0));
  border-radius: 10px;
}