@font-face {
    font-family: "Blow Brush";
    src:
      url("fonts/blowbrush.woff2") format("woff2"),
      url("fonts/blowbrush.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham Black';
    src: url("./fonts/GOTHAM-BLACK.woff");
  
  }
  * {
      margin: 0;
      padding: 0;
  }
  /*
  great looking gradient
  background-color: #4158D0;
  
  */
  body{
  background-color: #4158D0;
  background-image: linear-gradient(0deg, #4158D0 0%, #8a50c8 30%, #ffdbba 66%, #5bd2e7 100%);
  /* background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #ce1aff 30%, #4158D0 60%, #6b019c 100%); */
  /* background-color: #9c18d1;
  background-image: linear-gradient(225deg, #9c18d1 0%, #4005b9 50%, #300ccf 100%); */
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  }
  .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545; /* Bootstrap red color for danger */
}

  .wrapper {
      width: 900px;
      margin: 0 auto;
  }
  
  p {
      font-size: 16px;
      font-family: Roboto;
      color: #000;
      line-height: 24px;
  }
  
  h4 {
      font-size: 22px;
      font-family: Roboto;
      color: #1E1E1E;
      line-height: 32px;
  }
  
  header {
      width: 100%;
      height: 80px;
      background-color:rgba(38, 48, 62, 0.0);
      position: absolute;
      z-index: 999;
  }
  
  header nav {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  header nav div {
      display: flex;
      justify-content: flex-start;
      align-items: center;
  }
  
  header nav div h3 {
      font-size: 34px;
      font-family: Roboto;
      color: #000;
      padding-left: 40px;
  }
  
  header nav div .menu-main {
      width: fit-content;
      height: fit-content;
      list-style: none;
      margin-left: 26px;
  }
  
  header nav div .menu-main li {
      display: inline-block;
  }
  
  header nav div .menu-main li a {
      font-size: 16px;
      font-family: Roboto;
      color: #000;
      text-decoration: none;
      padding: 10px 16px;
  }
  
  header nav .menu-member {
      width: fit-content;
      height: fit-content;
      list-style: none;
      margin-right: 40px;
  }
  
  header nav .menu-member li {
      display: inline-block;
  }
  
  header nav .menu-member li a {
      font-size: 16px;
      font-family: 'Gotham Black';
      color: #fff;
      text-decoration: none;
      padding: 10px 16px;
  }
  
  .hamburger{
    display: none;
    cursor: pointer;
  }
  .bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #000;
  }
  @media(max-width:768px){
    .hamburger{
      display: block;
    }
    .hamburger.active .bar:nth-child(2){
      opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
      transform: translateY(-8px) rotate(-45deg);
    }
    .menu-main{
      position: fixed;
      left: -100%;
      top: 70px;
    }
  }
  
  .header-login-a {
      font-family: 'Gotham Black';
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 20px;
      background-color: #000;
      color: #fff;
      text-decoration: none;
      border-radius: 20px;
      font-weight: bold;
      text-transform: uppercase;
     cursor: pointer;
  }
  
  header a:hover {
      opacity: 80%;
  }
  
  .header-login-a:hover {
      background-color: #fff;
      color: #000;
      opacity: 100%;
  }
  .logo{
    width: 40%;
  }
  
  .homepage{
  
   /* background-color: #4158D0;
  background-image: linear-gradient(0deg, #4158D0 0%, #C850C0 30%, #c2f9cd 66%, #5bd2e7 100%); */
  /* background-image: linear-gradient(0deg, #4158D0 0%, #C850C0 30%, #c2f9cd 66%, #5bd2e7 100%); */
  /* background-color: #f07b43;
  background-image: linear-gradient(0deg, #f07b43 0%, #ffbf99 50%, #ff92b3 100%); */
  background-color: #2BD2FF;
  background-image: linear-gradient(45deg, #2BD2FF 0%, #FA8BFF 52%, #2ddbee 90%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  }
  .homepage2{
    width: 100%;
    background-color: #0d2391;
   background-image: linear-gradient(0deg,#5bd2e7 0%, #24025e 20%, #C850C0 30%, #0d2391 66%, #5bd2e7 100%);
   /* background-image: linear-gradient(0deg, #4158D0 0%, #C850C0 30%, #c2f9cd 66%, #5bd2e7 100%); */
   /* background-color: #f07b43;
   background-image: linear-gradient(0deg, #f07b43 0%, #ffbf99 50%, #ff92b3 100%); */
   /* background-color: #2BD2FF;
   background-image: linear-gradient(45deg, #2BD2FF 0%, #FA8BFF 52%, #2ddbee 90%); */
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   overflow: hidden;
   }
  
  .contact-form-text{
    width: 200px;
    margin-left: 150px;
  }
  .index-intro {
      width: 100%;
      height: 580px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
  }
  .index-intro2 {
    width: 100%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    background-color: #fff;
    /* border-radius: 10px 10px 10px 10px;
    border-radius: 25px; */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    /* padding: 25px; */
  }
  .graphics{
    width: 80;
    position: absolute;
    z-index: 1;
  }
  .index-intro-bg {
      width: 100%;
      height: 100%;
  }
  
  .index-intro-bg .wrapper {
      height: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      position: relative;
  
  }
  
  .index-intro-c1, .index-intro-c2 {
      width: 50%;
      height: fit-content;
  }
  
  .index-intro-c1 .video {
      width: 454px;
      height: 255px;
      background-image: url("img/video-bg.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      margin-bottom: 20px;
  }
  .index-intro-c1 .video2 {
    width: 454px;
    height: 178px;
    background-image: url("img/video-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .contact-title{
    font-family: 'Gotham Black';
    color: #fff;
    font-size: 45px;
    line-height: 60px;
    margin-left: 20px;
    padding-bottom: 5px;
  }
  .hero-graphic0{
    width: 500px;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 350px;
  }
  .hero-graphic{
    width: 400px;
    height: auto;
  }
  .hero-graphic1{
    width: 100%;
    height: auto;
    position: absolute;
  }
  .hero-graphic5{
    width: 87%;
    height: auto;
    position: absolute;
    left: -250px;
    bottom: 18px;
  }
  .hero-graphic2{
    width: 500px;
    height: auto;
  }
  .hero-graphic3{
    width: 500px;
    height: auto;
    position: absolute;
    align-items: center;
    display: flex;
    left: 450px;
    bottom: -400px;
  }
  .hero-graphic4{
    width: 1400px;
    height: auto;
    position: relative;
    top: -180px;
    z-index: 0;
    left: -250px;
  overflow:hidden ;
  opacity: 0.80;
  }
  .p2{
    margin-top: 250px;
    margin-left: 50px;
  }
  .index-intro-c1 p {
      /* padding-left: 20px; */
      font-weight: 500;
      width: 80%;
  }
  .icon{
    color: #000;
    position: relative;
    text-decoration: none;
    font-size: 2rem;
    bottom: -302px;
    left: 200px;
  
  }
  
  .icon2{
    color: #000;
    position: relative;
    text-decoration: none;
    font-size: 2.5rem;
    bottom: 80px;
  }
  .index-intro-c2 h2 {
    font-family: 'Gotham Black';
    color: #000;
    font-size: 60px;
    line-height: 70px;
    margin-left: 60px;
    padding-bottom: 34px;
  }
  
  .index-intro-c2 a {
      font-family: 'Gotham Black';
      color: #fff;
      font-size: 16px;
      padding: 10px 16px;
      background-color: #000;
      margin-left: 60px;
      text-decoration: none;
      border-radius: 20px;
  }
  
  .index-intro-c2 a:hover {
      background-color: #fff;
      color: #000;
  }
  
  .index-login {
      width: 100%;
      padding-bottom: 100px;
      background-color: #fff;
  }
  
  .index-login .wrapper {
      display: flex;
      justify-content: flex-start;
  }
  
  .index-login input {
      width: 220px;
      height: 34px;
      border-radius: 6px;
      border: 1px solid #CCCCCC;
      background-color: #EEEEEE;
      font-family: Roboto;
      font-size: 16px;
      padding-left: 12px;
      margin-bottom: 8px;
  }
  
  .index-login button {
      width: fit-content;
      height: 34px;
      border-radius: 6px;
      border: none;
      background-color: #3F97EF;
      font-family: Roboto;
      font-size: 16px;
      color: #fff;
      line-height: 16px;
      padding: 10px 16px;
      cursor: pointer;
  }
  .index-login button:hover {
      background-color: #2073C7;
  }
  
  .index-login-signup {
      width: 50%;
      margin-top: 80px;
      padding-left: 20px;
      border-left: 4px solid #3F97EF;
  }
  
  .index-login-signup p {
      color: #1E1E1E;
      padding: 6px 0 10px;
  }
  
  .index-login-login {
      width: 50%;
      margin-top: 80px;
      background-color: #161616;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  
  .index-login-login h4 {
      color: #fff;
  }
  
  .index-login-login p {
      padding: 6px 0 10px;
  }
  
  .index-login-login form {
      width: 232px;
  }
  
  .index-login-login form button {
      display: block;
      margin: 0 auto;
  }
  img.logo-container{
    width:20px;
  }
  /*----PROFILE----*/
  .profile{
          width: 100%;
      }
  .profile-bg {
     background-image: url(graphics/Profile-bg.png);
     background-repeat: no-repeat;
     background-size: cover;
      width: 100%;
      height: calc(100% - 120px);
      padding: 7rem 0rem;
      
  }
  /*
  .map{
    background-image: url("img/map.jpg");
    background-repeat: no-repeat;
    background-size: cover;
     width: 100%;
     padding: 7rem 0rem;
     
  }
  */
  .profile-info-about .username-name{
    font-family: 'Blow Brush';
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .profile-bg .wrapper {
      height: 100%;
      display: flex;
      justify-content: flex-start;
  }
  
  .profile-info {
    width: 200px;
    background-color: #fff;
    border-radius: 10px 10px 10px 10px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    padding: 25px;
  }
  
  .profile-info-img {
    background-image: url('img/artworks/default.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100px;
    display: flex;
    align-content: centre;
    flex-wrap: wrap;
    width: 200px;
   height: 200px;
   -webkit-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
   -moz-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
   box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
  }
  
  .profile-info-img p {
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    font-family: Roboto;
    font-weight: 700;
    padding: 30px 20px;
    text-shadow: 0px 3px 2px #111;
  }
  
  .break {
    flex-basis: 100%;
    height: 0;
  }
  
  .follow-btn {
    display: block;
    padding: 6px 14px;
    background-color: #fff;
    width: fit-content;
    height: fit-content;
    border-radius: 100px;
    font-size: 12px;
    line-height: 20px;
    color: #000;
    font-family: 'Gotham Black';
    cursor: pointer;
    text-decoration: none;
   
  }
  
  .follow-btn:hover {
    background-color: #000;
    transition: all 200ms ease-in-out;
    color: #fff;
  }
  
  .profile-info-about {
    padding: 10px 20px;
    text-align: center;
  }
  
  .profile-info-about h3 {
    font-size: 12px;
    line-height: 20px;
    color: #000;
    font-family: 'Gotham Black';
    font-weight: 700;
    padding: 10px 0;
  }
  
  .profile-info-about p {
    font-family: "blowbrush";
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-family: Roboto;
    font-weight: 300;
  }
  
  .profile-content {
    width: calc(100% - 240px);
  }
  
  .profile-intro {
    width: calc(100% - 20px);
    margin-left: 20px;
    padding-bottom: 20px;
    border-radius: 10px 10px 10px 10px;
  }
  
  .profile-intro h3 {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    font-family: 'Gotham Black';
    padding: 30px 20px 10px;
  }
  
  .profile-intro p {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-family: Roboto;
    font-weight: 300;
    padding: 0px 20px;
  
  }
  .reviews-wrapper{
    width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      
  }
  .reviews-btn{
   
    display: flex;
    padding: 6px 14px;
    background-color: #fff;
    width: fit-content;
    height: fit-content;
    border-radius: 100px;
    font-size: 12px;
    line-height: 20px;
    color: #000;
    font-family: 'Gotham Black';
    cursor: pointer;
    text-decoration: none;
  }
  .profile-posts {
    width: calc(100% - 20px);
    margin-left: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
    background-color: #fff;
    border-radius: 10px 10px 10px 10px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    padding: 25px;
    z-index: 10;
  }
  .reviews-individual{
    margin: 3rem;
    padding: 3rem;
    background-color: #fff;
    border-radius: 10px 10px 10px 10px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
  
  }
  .reviews-title{
    font-family: 'Gotham Black';
      font-size: 18px;
      color: #000;
      text-decoration: none;
      text-transform: uppercase;
      margin-bottom: 1rem;
      align-items: center;
      text-align: left;
      margin-left: 3rem;
  }
  
  .profile-posts h3 {
    font-size: 18px;
    line-height: 20px;
    color: #111;
    font-family: 'Gotham Black';
    font-weight: 900;
    padding: 30px 20px 10px;
  }
  
  .profile-posts p {
    font-size: 12px;
    line-height: 20px;
    color: #000;
    font-family: Roboto;
    font-weight: 500;
    padding: 10px 20px 0;
  }
  
  .profile-post {
    margin: 10px 0 20px 20px;
    border-left: 4px solid #111;
  }
  .cardss{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 25px;
    position: relative;
    bottom: 158px;
    -webkit-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    -moz-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
   
  }
  .cardss2{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 25px;
    bottom: 31px;
    -webkit-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    -moz-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    position: absolute;
    z-index: 998;
  }
  .profile-posts h2 {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    font-family: 'Gotham Black';
    font-weight: 700;
    padding: 0px 20px 0px;
  }
  img.highlight{
    width: 50px;
    height: 50px;
    margin-left: 20px;
    border-radius: 50px;
    background: rgba(20,23,45,0.25);
    border: solid 2px rgba(7, 255, 119, 0.25);
    -webkit-box-shadow: -8px -8px 20px 0px rgba(255,255,255,0.8);
    -moz-box-shadow: -8px -8px 20px 0px rgba(255,255,255,0.8);
    box-shadow: -8px -8px 20px 0px rgba(255,255,255,0.8);
  
  }
  .highlights{
    padding-top: 20px;
  }
  /*---profile settings---*/
  .browse{
    width: 250px;
  }
  .profile-settings {
    width: calc(100% - 20px);
    height: fit-content;
    margin-top: 10px;
    padding: 20px;
    background-color: #161616;
    border-radius: 10px 10px 10px 10px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    overflow: hidden; 
  }
  
  .profile-settings h3 {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    font-family: 'Gotham Black';
    font-weight: 900;
  }
  
  .profile-settings p {
    font-size: 12px;
    line-height: 20px;
    color: #000;
    font-family: Roboto;
    font-weight: 500;
    padding: 10px 0;
  }
  
  .separator{
    border: 2px solid #111;
    margin-bottom: 20px;
    width: 100px;
    text-align: center;
  }
  .profile-settings input {
    width: calc(100% - 20px);
    border: none;
    border-radius: 10px 10px 10px 10px;
    font-size: 12px;
    line-height: 20px;
    color: #111;
    font-family: Roboto;
    font-weight: 500;
  }
  
  .profile-settings textarea {
    width: calc(100% - 20px);
    margin-top: 20px;
    padding: 20px 10px;
    border: none;
    border-radius: 10px 10px 10px 10px;
    font-size: 12px;
    line-height: 20px;
    color: #111;
    font-family: Roboto;
    font-weight: 500;
  }
  
  .profile-settings button {
    display: block;
    padding: 6px 14px;
    background-color: #000;
    width: fit-content;
    height: fit-content;
    border-radius: 100px;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-family: 'Gotham black';
    cursor: pointer;
    margin: 20px 0px;
    text-decoration: none;
    border: none;
  }
  div.user-container{
    width: 50px;
    height: 50px;
  
  }
  .profile-settings button:hover {
    transition: all 200ms ease-in-out;
    color: #fff;
  }
  
  /* Gallery */
  .cases-links{
     
      padding: 3rem;
      
  }
  
  /* file -selector - button */
  input::file-selector-button {
    margin: 20px 20px;
    background-image: linear-gradient(
      to right,
      #effd70,
      rgb(254, 57, 175),
      #443197 100%,
      #315897 200%
    );
    font-family: 'Gotham Black';
    text-transform: uppercase;
    background-position-x: 0%;
    background-size: 200%;
    border: 0;
    border-radius: 8px;
    color: #fff;
    padding: 0.50rem 0.50rem;
    text-shadow: 0 1px 1px #000;
    transition: all 0.25s;
  }
  input::file-selector-button:hover {
    background-position-x: 100%;
    transform: scale(1.1);
  }
  /*
  .add-artwork {
      border: 1px solid #ccc;
      display: inline-block;
      padding: 6px 12px;
      cursor: pointer;
  
  }
  */
  .cases-links h2 {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cases-links h2 {
    font-family:'Gotham Black';
    font-size: 18px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
   .gallery-container {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
    text-align: center;
    align-items: center;
  }
  .gallery-upload{
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
  }
  
  .gallery-container a {
    width: 300px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: center;
    padding: 5px;
    margin: 5px;
    display: flex;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .image{
    display: flex;
    width: 300px;
    height: 300px;
    background-color: red;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
   .gallery-container a h3 {
    font-family: 'Gotham Black';
    font-size: 14px;
    color: #000;
    padding: 6px 0;
  }
  
  .gallery-container a p {
    font-family: 'Roboto';
    font-size: 12px;
    font-weight: 300;
    color: #000;
    padding-bottom: 10px;
  }
  /* Profile pic on profilesettings.php page */
  .user-container img{
    background-color: hotpink ;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100px;
    display: flex;
    align-content: centre;
    flex-wrap: wrap;
    width: 0 auto;
   height: 50px;
  }
  
  .profile-change-wrapper{
  display: flex;
  flex-direction: row;
  }
  /*gallery form upload img */
  .signup-form{
    display:flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .about-form{
    display:flex;
    flex-direction: column;
    justify-content: center;
  
  }
  
  .form-wrapper{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    
  }
  .contact-form-wrapper{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    
  }
  .contact-img{
    width: 350px;
    height: auto;
    position: absolute;
    z-index: 1;
  }
  .contact-section-text{
    position:relative;
  /* margin-left: 20px;
  margin-right: 20px; */
    z-index: 998;
    top: -150px;
  }
  .contact-btn{
    width: 150px;
    width: 150px;
    text-align: center;
    position: relative;
    left: 340px;
  }
  .input-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 1.7rem 0rem;
  }
  

  .input-wrapper select {
    /* Your select styles here */
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    outline: none;
    margin-top: 0.5rem; /* Adjust as needed */
}
  .input-wrapper .input-label, .input-wrapper .input-text{
  position: absolute;
  width: 80%;
  }
  
  .input-wrapper2 .input-label, .input-wrapper2 .input-text2{
    width: 80%;
    }
  
  
  .input-wrapper .input-text{
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #EEE;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    transition: all 0.2s ease;
    background: #E5F3FE;
  }
  
  .input-wrapper2 .input-text2{
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #EEE;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    transition: all 0.2s ease;
    background: #E5F3FE;
  }
  
  .input-wrapper .input-text:focus{
    box-shadow: inset 2px 2px 1px #BABECC, inset -2px -2px 5px #EEE;
  }
  .input-wrapper2 .input-text2:focus{
    box-shadow: inset 2px 2px 1px #BABECC, inset -2px -2px 5px #EEE;
  }
  .input-wrapper .input-label{
    left: 1rem;
    text-shadow: 1px 1px 1px #FFF;
    pointer-events:none;
    transition: all 0.6s ease;
  }
  .input-wrapper2 .input-label{
    left: 1rem;
    text-shadow: 1px 1px 1px #FFF;
    pointer-events:none;
    transition: all 0.6s ease;
  }
  .input-text:valid ~ .input-label, .input-text:focus ~ .input-label{
    font-size: 0.8rem;
    transform: translate(-0.2rem, -1.96rem);
    color: #AAA;
  }
  
  .Artworks-title{
    font-family: 'Gotham Black';
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    margin-right: 35px;
  }
  
  .newsletter-p{
    align-items: center;
    text-align: center;
  }
  .message-container {
  font-family: 'Roboto';
  font-size: 20px;
  color: #3c763d;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  }
  /* .together{
    display: flex;
    flex-direction: row;
  } */
  .posts{
    display: flex;
    justify-content: flex-end;
    text-align: right;
    left: 517px;
    position: relative;
  }
  a.follow{
    margin-left: 10px;
      background-color: black;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      left: 27px;
      margin-bottom: 10px;
  }
  .newsletter{
    width: 100%;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* border-radius: 10px 10px 10px 10px;
    border-radius: 25px; */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    /* padding: 25px; */
  }
  /*about page*/
  .about-p-text-absolute{
    font-size: 16px;
    font-weight: 500;
    font-family: Roboto;
    color: #000;
    line-height: 24px;
    position: absolute;
    bottom: 193px;
  }
  .about-h2{
    font-family: 'Gotham Black';
    color: #000;
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 24px;
  }
  .about-h2-about{
    font-family: 'Gotham Black';
    color: #000;
    line-height: 50px;
    position: relative;
    padding-bottom: 24px;
    bottom: -42px;
    z-index: 999;
    left: 22px;
    font-size: 3rem;
  }
  .part1{
    width: 400px;
    margin: 8px;
    padding: 8px;
  }
  
  section .about-cards{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    min-height: 100vh;
    background: #350048;
  }
  
  section .about-cards::before{
    content: '';
    position: absolute;
    top: 45%;
    left: 0; 
    width: 100%;
    height: 50px;
    background: #bd00ff;
  }
  
  .container{
    width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 4rem;
  }
  
  .container .card {
    position: relative;
    width: 250px;
    height: 300px;
    text-align: center;
    z-index: 10;
    margin: 20px 20px 60px;
  }
  
  .container .card .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;  
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    -webkit-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    -moz-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
  }
  
  .percent {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 100;
  }
  
  .percent .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .percent .number h2 {
    color: #000;
    font-family: 'Gotham Black';
    font-weight: 700;
    font-size: 30px;
    position:absolute;
  }
  .hero-graphic-about-card{
    width: 200px;
    height: auto;
    position: relative;
  }
  
  
  .text {
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 30px 20px 10px;
    background: #f00;    
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 1;
    pointer-events: none;
    transition: bottom 0.5s, z-index 0s, transform 0.5s, padding 0.5s;
    transition-delay: 0.5s, 0.5s, 0s, 0.5s;
    color: #fff;
  }
  
  .card:hover .text{
    transition-delay: 0s, 0.5s, 0.5s, 0s;
    bottom: -70px;
    z-index: 11;
    transform: translateX(-50%) translateY(-50px);
    padding: 10px 20px 10px;
  }
  /* blog slider */
  
  .blog{
    margin-top: 5rem;
    
  }
  .blog-slider {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 25px;
    -webkit-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    -moz-box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    box-shadow: -10px -10px 28px 0px rgba(255,255,255,0.8);
    height: 400px;
    transition: all 0.3s;
    margin-bottom: 4rem;
  }
  @media screen and (max-width: 992px) {
    .blog-slider {
      max-width: 680px;
      height: 400px;
    }
  }
  @media screen and (max-width: 768px) {
    .blog-slider {
      min-height: 500px;
      height: auto;
      margin: 180px auto;
    }
  }
  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
      height: 350px;
    }
  }
  .blog-slider__item {
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__item {
      flex-direction: column;
    }
  }
  .blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
    transition-delay: 0.3s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
    transition-delay: 0.4s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
    transition-delay: 0.5s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
    transition-delay: 0.6s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
    transition-delay: 0.7s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
    transition-delay: 0.8s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
    transition-delay: 0.9s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
    transition-delay: 1s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
    transition-delay: 1.1s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
    transition-delay: 1.2s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
    transition-delay: 1.3s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
    transition-delay: 1.4s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
    transition-delay: 1.5s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
    transition-delay: 1.6s;
  }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
    transition-delay: 1.7s;
  }
  .blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    /* background-color: #2BD2FF;
    background-image: linear-gradient(45deg, #9007f9 0%, #FA8BFF 52%, #402dee 90%);   */
    background: #000;
    background-size: contain;
    /*  background: linear-gradient(147deg, rgb(41, 77, 76) 0%, rgb(90, 185, 179) 74%); */
    /* box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);*/
    box-shadow: -9px 2px 7px 2px #057c7917;
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
    z-index: 999;
  }
  .blog-slider__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #2BD2FF;
    background-image: linear-gradient(45deg, #2BD2FF 0%, #FA8BFF 52%, #2ddbee 90%);  */
    border-radius: 20px;
    opacity: 0.8;
  }
  .blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__img {
      transform: translateY(-50%);
      width: 90%;
    }
  }
  @media screen and (max-width: 576px) {
    .blog-slider__img {
      width: 95%;
    }
  }
  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
      height: 270px;
    }
  }
  .blog-slider__content {
    padding-right: 25px;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__content {
      margin-top: -80px;
      text-align: center;
      padding: 0 30px;
    }
  }
  @media screen and (max-width: 576px) {
    .blog-slider__content {
      padding: 0;
    }
  }
  .blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
  }
  .blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
  }
  .blog-slider__title {
    font-family: 'Gotham Black';
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
    position:absolute;
    line-height: 1.5em;
    left: 270px;
    top: 40px;
  }
  .blog-slider__text {
    display: none;
    color: #000;
    font-family: 'Roboto';
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5em;
  }
  .blog-slider__text2 {
    font-family: 'Roboto';
    font-weight: 500;
    color: #000;
    /* margin-bottom: 30px; */
    position:absolute;
    line-height: 1.5em;
    left: 270px;
    top: 90px;
  }
  .blog-slider__button {
    display: inline-flex;
    /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);*/
    background: #000;
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 14px 80px #1c004940;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Gotham Black';
  }
  @media screen and (max-width: 576px) {
    .blog-slider__button {
      width: 100%;
    }
  }
  .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  .blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination {
      transform: translateX(-50%);
      left: 50% !important;
      top: 205px;
      width: 100% !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
    top:40px;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 0 5px;
    }
  }
  .blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
  }
  .blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    /*background: #fd3838;*/
    background: #74c4c6;
    height: 30px;
    /*box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);*/
    box-shadow: 0px 14px 80px #74c4c640;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
      height: 11px;
      width: 30px;
    }
  }
  
  /*contact form*/
  .onboarding-page, .onboarding-page2, .onboarding-page3 {
    width: 500px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    z-index: 10;
    position: relative;
    bottom: -100px;
    align-items: center;
    left: 450px;
  }
  .roboto-uppercase-heading{
    font-family: 'Gotham Black';
  
  }