@import url('./reset.css');
@import url('./main.css');

body {
  background-color: #f3f4f9;
}

main {
  position: relative;
}

.sw_bg {
  position: absolute;
  top: 0;
  right: 0;
}

/* Over Ride Header Styling For SW  */
.header__nav.active a:not(.header__btn__mobile) {
  color: var(--sec-text-color) !important;
}
.header__nav ul a:not(.header__nav__menu a) {
  text-decoration: none;
  color: var(--sec-text-color);
}
header.scrolled .header__nav ul a:not(.header__nav__menu a) {
  text-decoration: none;
  color: var(--text-color);
}
/* End Over Ride Header Styling For SW  */

/* Start Welcome */

.welcome img {
  position: absolute;
  top: 20%;
  z-index: -1;
  margin-bottom: 0;
}

@media (min-width: 470px) {
  .welcome img {
    top: 15%;
  }
}
@media (min-width: 1199px) {
  .welcome img {
    position: relative;
    top: 0;
    margin-bottom: calc(-150rem / 16);
  }
}
@media (max-width: 1199px) {
  .welcome {
    position: relative;
  }
  .welcome .welcome__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 57px 0px #00000026;
    backdrop-filter: blur(20px);
    padding: calc(40rem / 16);
    border-radius: 0 calc(40rem / 16) 0 calc(40rem / 16);
  }
  .welcome .welcome__info p:last-of-type {
    text-align: center;
  }
}
.welcome p:first-of-type {
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--font-medium);
}
.welcome p:nth-of-type(2),
.welcome p:nth-of-type(2) span {
  font-weight: 700;
  font-size: var(--font-h1);
}
.welcome p:nth-of-type(2) span {
  color: var(--sec-color);
}
.welcome p:last-of-type {
  font-weight: 500;
  font-size: var(--font-h4);
}
.welcome p:last-of-type span {
  color: var(--primary-color);
  font-weight: 500;
  font-size: var(--font-h4);
}
/* End Welcome */
