/* 
***************************************************************************
**                                GENERAL                                **
***************************************************************************
*/

* {
  margin: 0;
  padding: 0;
  --main-bg-color-white: white;
  --border-hover-grey: grey;
  --hover-black: black;
}

.text-lg {
  font-size: 40px;
}

.text-sm {
  font-size: 20px;
}

#element {
  color: #2dd3c0;
}

.typed-cursor {
  font-size: 40px;
}

/* 
***************************************************************************
**                          TOP NAVIGATION BAR                           **
***************************************************************************
*/

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
}

.left-nav {
  width: 50%;
  display: flex;
  align-items: center;
}

.logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 3px solid whitesmoke;
}

.left-nav li {
  list-style: none;
  padding: 20px;
}

.left-nav li a:hover {
  color: var(--border-hover-grey);
}

.left-nav li a {
  text-decoration: none;
  color: var(--main-bg-color-white);
}

.right-nav {
  width: 50%;
  padding: 0px 20px;
  text-align: right;
}

#top-search {
  padding: 5px;
  font-size: 17px;
  border: 2px solid var(--border-hover-grey);
  border-radius: 12px;
  vertical-align: middle;
}

.btn-search {
  font-size: 16px;
  padding: 6px;
  border: 2px solid var(--main-bg-color-white);
  border-radius: 8px;
  margin: 10px 15px 10px 0px;
  background: none;
  color: var(--main-bg-color-white);
  cursor: pointer;
  vertical-align: middle;
}

.btn-search:hover {
  background-color: var(--main-bg-color-white);
  color: var(--hover-black);
}

.login-nav-btn {
  background: none;
  color: var(--main-bg-color-white);
  font-size: 15px;
  padding: 8px 23px;
  border: 2px solid var(--main-bg-color-white);
  border-radius: 14%;
  vertical-align: middle;
  cursor: pointer;
}

.login-nav-btn:hover {
  background-color: var(--main-bg-color-white);
  color: var(--hover-black);
}

.background {
  background: rgba(0, 0, 0, 0.7) url("Images/img.png");
  background-size: cover;
  background-blend-mode: darken;
}

/* 
***************************************************************************
**                              LOGIN BUTTON                             **
***************************************************************************
*/

.icon-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: var(--main-bg-color-white);
  font-size: 2em;
  color: var(--hover-black);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  cursor: pointer;
  z-index: 1;
}

.wrapper {
  padding: 10px;
  position: absolute;
  width: 400px;
  height: 400px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin: auto;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scaleX(0);
  transition: transform 0.5s ease, height 0.2s ease;
  top: 25%;
  /* left: 12%; */
  right: 37%;
}

.wrapper.active-popup {
  transform: scaleX(1);
}

.wrapper.active {
  height: 520px;
}

.wrapper.active .form-box.login {
  transition: none;
  transform: translateX(-400px);
}

.wrapper .form-box.login {
  transition: transform 0.18s ease;
  transform: translateX(0);
}

.box-main .wrapper .form-box.register {
  position: absolute;
  transition: none;
  transform: translateX(400px);
}

.wrapper.active .form-box.register {
  transition: transform 0.18s ease;
  transform: translateX(0);
  transform: translateY(-435px);
}

.box-main .wrapper .form-box {
  width: 80%;
  padding: 40px;
}

.box-main .wrapper .form-box h2 {
  font-size: 2em;
  color: var(--main-bg-color-white);
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid var(--main-bg-color-white);
  margin: 30px 0;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: var(--main-bg-color-white);
  font-weight: 500;
  pointer-events: none;
  transition: 0.5s;
}

.wrapper .input-box input:focus ~ label,
.wrapper .input-box input:valid ~ label {
  top: -5px;
}

.wrapper .input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: var(--main-bg-color-white);
  font-weight: 600;
  padding: 0 35px 0 5px;
}

.input-box .icon {
  position: absolute;
  right: 8px;
  font-size: 1.2em;
  color: var(--main-bg-color-white);
  line-height: 57px;
}

.remember-forgot {
  font-size: 0.9rem;
  color: var(--border-hover-grey);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  margin: -15px 0 15px;
}

.remember-info label input {
  accent-color: var(--border-hover-grey);
  margin-right: 3px;
}

.remember-info a {
  color: var(--border-hover-grey);
}

.btn-login {
  width: 100%;
}

.login-register {
  font-size: 0.9rem;
  color: var(--border-hover-grey);
  text-align: center;
  font-weight: 500;
  margin: 25px 0 10px;
}

.login-register p a {
  color: var(--main-bg-color-white);
  text-decoration: none;
  font-weight: 600;
  margin: 5px;
}

.login-register p a:hover {
  text-decoration: underline;
}

/* 
***************************************************************************
**                             FIRST SECTION                             **
***************************************************************************
*/

.firstSection {
  height: 93vh;
}

.box-main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  max-width: 70%;
  margin: auto;
  height: 70%;
}

.first-half {
  width: 70%;
  flex-direction: column;
  display: flex;
  display: inline;
  justify-content: center;
}

.second-half {
  width: 30%;
}

.second-half img {
  width: 70%;
  border: 2px solid white;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.btn {
  font-size: 16px;
  padding: 8px;
  border: 2px solid white;
  border-radius: 8px;
  margin: 10px 15px 10px 0px;
  background: none;
  color: white;
  cursor: pointer;
}

/* 
***************************************************************************
**                             SECOND SECTION                            **
***************************************************************************
*/

.heading {
  font-size: 44px;
  font-weight: 900;
  margin: auto;
  padding: 80px 0px 0px 150px;
  height: 80px;
  text-decoration: underline;
}

.sectionRt {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1245px;
  margin: auto;
  min-height: 400px;
}

.sectionLeft {
  flex-direction: row-reverse;
}

.thumbnail img {
  height: 270px;
  width: auto;
  border: 2px solid black;
  border-radius: 30px;
}

.paras {
  padding: 0px 80px;
}

.explore-more {
  height: 50px;
  font-size: large;
  /* margin: 10px; */
  margin: 0 20px 0 80%;
}

.explore-more a {
  text-decoration: none;
  color: black;
}

/* 
***************************************************************************
**                             CONTACT                                   **
***************************************************************************
*/

.contact {
  background-color: whitesmoke;
  text-align: center;
  padding: 40px;
}

.form {
  max-width: 1200px;
  margin: 42px auto;
}

.form input,
textarea {
  margin: 30px 0;
  padding: 5px 3px;
  width: 100%;
  font-size: 16px;
  border: 2px solid grey;
  border-radius: 6px;
}
