* {
  margin: 0;
}

body {
  font-family: "Open Sans", sans-serif;
}

/* GENERAL */

a {
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: #135abd;
  text-decoration: none;
  font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}
.download_btn {
  border-radius: 10px;
  color: #fff;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download_btn > div {
  background-color: #000;
  width: 400px;
  height: 60px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.4s;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.462);
}
.download_btn > div:hover {
  transform: scale(1.5);
  box-shadow: 0px 0px 100px rgb(255, 255, 255);
}
.section-btn {
  background-color: #135bda;
  color: #fff;
  width: 120px;
  height: 40px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.icon {
  font-size: 68px;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  /* padding: 5px 0; */
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
}

.header.sticked {
  background: rgba(0, 0, 0, 0.441);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.header.sticked > .container-fluid {
  justify-content: space-around;
}
.header .navbar {
  display: none;
  transition: 0.5s;
}
.header.sticked .navbar {
  display: block;
}

.header .logo img {
  max-height: 120px;
  margin-left: 100px;
}
.header.sticked .logo img {
  max-width: 60px;
  margin-right: 6px;
  margin-left: 0px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.btn-getstarted,
.btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--color-white);
  background: var(--color-secondary);
}

@media (max-width: 1279px) {
  .btn-getstarted,
  .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.5s;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    animation: bardAnim 3s linear infinite;
    font-weight: 700;
    font-size: 18px;
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover > a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}

/* HERO HERO HERO HERO HERO HERO */

#hero {
  width: 100vw;
  height: 90vh;
  display: flex;
  position: relative;
  text-align: center;
}
.hero {
  background: url("../img/hero-closet.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroBg 3s linear infinite;
}
/* @keyframes heroBg {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 110%;
  }
  100% {
    background-size: 100%;
  }
} */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000cb;
}
.hero > .container {
  z-index: 12;
  overflow: hidden;
  width: 100vw;
  display: flex;
  justify-content: center;
}
.hero > .container::before {
  content: "";
  top: 82.1vh;
  left: 0;
  right: 0;
  position: absolute;
  border-top: 8vh solid transparent;
  border-left: 50vw solid #fff;
  border-right: 50vw solid #fff;
  animation: heroAnimation 3s infinite;
}

/* @keyframes heroAnimation {
  0% {
    top: 82.1vh;
    border-top: 8vh solid transparent;
  }
  50% {
    top: 68.1vh;
    border-top: 22vh solid transparent;
  }
  100% {
    top: 82.1vh;
    border-top: 8vh solid transparent;
  }
} */

.hero-bottom {
  display: flex;
  justify-content: space-around;
  width: 100vw;
  margin-top: -3vh;
  position: absolute;
  bottom: 0;
  transition: 0.4s;
  animation: heroBottom 3s infinite;
  z-index: 14;
}
/* @keyframes heroBottom {
  0% {
    font-size: 0em;
    z-index: 14;
  }
  50% {
    font-size: 1em;
    z-index: 14;
  }
  100% {
    font-size: 0em;
  }
} */
.hero-bottom .hero-bottom-text {
  color: #fff;
  font-weight: 700;
  font-size: 3em;
  text-shadow: 0px 0px 30px black;
}
.hero-bottom .hero-bottom-text:nth-child(1) {
  margin-right: 150px;
}

/* --------------- */
.hero > div .hero > div {
  width: 50%;
  height: initial;
}
.hero .hero-left {
  background-image: url("../img/phone-hero1.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  margin-bottom: 5vh;
  background-size: 60%;
}

.hero .hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding: 20px;
}
.hero .hero-right > p {
  font-size: 22px;
}
.hero .hero-right .download_btns {
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
}

.hero .hero-right .hero-title {
  font-size: 62px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero .hero-left {
    background-size: 45%;
  }
  .hero .hero-right {
    padding: 10px;
  }
  .hero .hero-left {
    z-index: -1;
    position: absolute;
    top: 0;
    left: -12vh;
    right: 0;
    bottom: -3vh;
  }
  .hero .hero-right .download_btns {
    justify-content: space-between;
  }
  .hero .hero-right > p {
    font-size: 18px;
  }
}
*/

/* DRIPUP DRIPUP DRIPUP DRIPUP DRIPUP DRIPUP */

#about-dripup {
  height: 70vh;
  position: relative;
}
#about-dripup .container {
  margin-top: 10vh;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
#about-dripup .container .about-dripup-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 10%;
}
#about-dripup .container .about-dripup-left .sub-title {
  font-size: 18px;
  margin-bottom: 30px;
}
#about-dripup .container .about-dripup-left .section-title > h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
#about-dripup .container .about-dripup-right {
  position: relative;
}

#about-dripup .container .about-dripup-right .img-div {
  width: 100%;
  position: relative;
}
#about-dripup .container .about-dripup-right .img-div video {
  width: 30vw;
  height: 60vh;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 992px) {
  #about-dripup {
    padding: 10px;
    height: 100vh;
  }
  #about-dripup .container .about-dripup-right {
    text-align: center;
  }
  #about-dripup .container .about-dripup-left {
    justify-content: space-around;
  }
  #about-dripup .container .about-dripup-right .img-div > img {
    width: 30%;
    margin-top: 16vh;
  }
}
@media (max-width: 758px) {
  #about-dripup {
    height: 160vh;
  }
  #about-dripup .container .about-dripup-right .img-div {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: -50px;
    z-index: 199;
  }
  #about-dripup .container .about-dripup-right .img-div > img {
    width: 50%;
    margin-top: 8vh;
  }
}
@media (max-width: 388px) {
  #about-dripup {
    height: 200vh;
  }
}

/* FASHION FASHION FASHION FASHION */

#fashion {
  height: 90vh;
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
}

#fashion .fashion-right {
  display: flex;
  flex-direction: column;
  padding: 0;
}

#fashion .fashion-right .fashion-right-top {
  height: 52%;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#fashion .fashion-right .fashion-right-bottom {
  background-color: black;
  height: 48%;
}
#fashion .fashion-right .fashion-right-bottom > div {
  width: inherit;
  height: 80%;
  display: flex;
  justify-content: space-around;
}

#fashion .fashion-right .fashion-right-bottom > div > .fashion-right-image {
  background-image: url("../img/fashion-pic.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#fashion
  .fashion-right
  .fashion-right-bottom
  > div
  > .fashion-right-description {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#fashion .fashion-right .fashion-right-bottom .fashion-right-button {
  background-color: #135bda;
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
#fashion .fashion-right .fashion-right-bottom .fashion-right-button p {
  color: #fff;
}

#fashion .fashion-left {
  background-image: url("../img/african.jpg");
  background-position: center top;
  background-size: cover;
  position: relative;
}
#fashion .fashion-left .circular-hover {
  display: none;
}
#fashion .fashion-left .circular-hover.active {
  display: inline;
  width: 160px;
  height: 160px;
  border: solid 2px #fff;
  border-radius: 50%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to left,
    rgba(255, 0, 0, 0.646),
    rgba(47, 255, 0, 0.828)
  );
  overflow: hidden;
}
#fashion .fashion-left .circular-hover.active > div {
  width: inherit;
  display: flex;
  margin: 10px;
  justify-content: center;
}
#fashion .fashion-left .circular-hover.active > div:nth-child(1) {
  animation: imgDiv 6s linear infinite;
  position: absolute;
  top: 10%;
  left: -100px;
}
#fashion .fashion-left .circular-hover.active > div:nth-child(2) {
  animation: imgDiv 10s linear infinite;
  position: absolute;
  top: 35%;
  left: -100px;
}
#fashion .fashion-left .circular-hover.active > div:nth-child(3) {
  animation: imgDiv 8s linear infinite;
  position: absolute;
  top: 60%;
  left: -100px;
}

@keyframes imgDiv {
  0% {
    left: -10px;
  }
  50% {
    left: 20%; /* Moving the div all the way to the right of the container */
  }
  100% {
    left: -10px;
  }
}

#fashion .fashion-left .circular-hover.active img {
  width: 50px;
}
@media (max-width: 992px) {
  #fashion {
    margin-top: 200px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #fashion .fashion-left {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  #fashion .fashion-right .fashion-right-top {
    background-color: #000000cc;
    color: #fff;
    height: auto;
  }
}

@media (max-width: 758px) {
  #fashion {
    margin-top: 200px;
    height: 200vh;
  }
}
@media (max-width: 576px) {
  .fashion-right-description {
    padding: 20px;
  }
  #fashion .fashion-right .fashion-right-top {
    height: 60%;
  }
  #fashion .fashion-right .fashion-right-bottom {
    background-color: rgba(0, 0, 0, 0.596);
    height: 40%;
  }
  #fashion {
    margin-top: 200px;
  }
}
@media (max-width: 576px) {
}

/* REVOLUTIONIZE REVOLUTIONIZE REVOLUTIONIZE REVOLUTIONIZE */

#revolutionize {
  position: relative;
  border-radius: 2px;
  height: 90vh;
  /* margin-bottom: 100px; */
}
#revolutionize .container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  width: 60vw;
}
#revolutionize .container h2 {
  font-size: 36px;
  font-weight: 700;
  animation: bardAnim 3s linear infinite;
}
#revolutionize .container h3 {
  font-size: 30px;
  font-weight: 600;
  color: #7c7c7c;
}
#revolutionize .container .vertical-border {
  border-width: 6px;
  border-style: solid;
  border-color: #000000;
  height: 150px;
  animation: bardAnim 3s linear infinite;
}
@keyframes bardAnim {
  0% {
    border-color: #000000;
    color: #000000;
  }
  25% {
    border-color: red;
    color: red;
  }
  50% {
    border-color: blue;
    color: blue;
  }
  75% {
    border-color: green;
    color: green;
  }
  100% {
    border-color: #000000;
    color: #000000;
  }
}
#revolutionize .revolutionize-right {
  background-image: url("../img/iphone.jpeg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  #revolutionize .revolutionize-right {
    height: 60%;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  #revolutionize {
    margin-bottom: 200px;
    height: 170vh;
  }
}

/* TEAM TEAM TEAM TEAM TEAM */

.team {
  height: 60vh;
  margin-bottom: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
.team .container {
  height: 20vh;
  /* background-color: #f3f3f3; */
  border-radius: 20px;
  box-shadow: 0px 0px 30px rgba(118, 118, 118, 0.601);
}
.team > div > h2 {
  font-size: 36px;
  font-weight: 700;
  animation: bardAnim 3s linear infinite;
}
.team .team-members {
  display: flex;
  justify-content: space-evenly;
  margin-top: -15vh;
}
.team .team-members .team-member {
  height: 50vh;
  width: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  transition: 0.5s;
}
.team .team-members .team-member.active {
  transition: 0.5s;
  /* box-shadow: 0px 0px 20px blue; */
  border-radius: 0px;
}
.team .team-members .team-member.not-hovered:hover {
  transform: scale(0.8);
}
.team .team-members .team-member.active:hover {
  transform: scale(1.1);
  z-index: 12;
}
.team .team-members .team-member.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000ab;
}
.team .team-member.active > .team-member-detail::before {
  content: "";
  bottom: 39.3vh;
  left: 0;
  right: 0;
  position: absolute;
  border-bottom: 10.8vh solid transparent;
  border-left: 125px solid #fff;
  border-right: 125px solid #fff;
}

.team .team-members .team-member:nth-child(1) {
  background-image: url(../img/char.png);
  margin-bottom: 10vh;
}
.team .team-members .team-member:nth-child(2) {
  background-image: url(../img/lum.jpg);
  margin-top: 20vh;
}
.team .team-members .team-member:nth-child(3) {
  background-image: url(../img/oburaofficial_dripup.png);
  margin-bottom: 10vh;
}
.team .team-members .team-member:nth-child(4) {
  background-image: url(../img/adut.png);
  margin-top: 20vh;
}
.team .team-members .team-member .team-member-detail {
  display: none;
  transition: 0.5s;
}

.team .team-members .team-member.active .team-member-detail {
  display: inline;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  color: white;
  text-align: right;
}
.team .team-members .team-member.active .team-member-detail h5 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-style: italic;
  /* animation: bardAnim 3s linear infinite; */
}

/* FOOTER FOOTER FOOTER FOOTER FOOTER */

#footer {
  height: 50vh;
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
}
#footer .logo-div {
  position: relative;
  background-image: url("../img/white-dripup-logo.jpeg");
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25%;
  z-index: 123;
  border-bottom: solid #d3d3d3;
}
#footer .credits_socials {
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .socials {
  font-size: 14px;
}
#footer .socials p {
  cursor: pointer;
  transition: 0.5s;
}
#footer .socials p:hover {
  color: #135abd;
  scale: 1.4;
}

@media (max-width: 568px) {
  #footer {
    margin-top: 300px;
  }
}
@media (max-width: 992px) {
  #footer .logo-div {
    background-size: contain;
  }
}
