@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300&display=swap');

body {
    background-color: #101010;
    font-family: 'Mulish', sans-serif;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    user-select: none;
}

.center {
    text-align: center;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.center h1 {
    font-weight: 200;
    margin: 0;
    padding: 0;
    font-size: 5rem;
}

.center p {
    font-weight: 200;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
}

.btn {
    user-select: none;
    margin-top: 4rem;
}

.btns {
    user-select: none;
    cursor: pointer;
    display:inline-block;
    width: auto;
    padding: .2rem 1rem !important;
    margin: 0 .6rem .6rem 0 !important;
    border-radius: 3rem;
    border: 1px solid #00000000;
    color: rgb(250, 0, 0);
    text-decoration: none;
    font-size: 1.3rem !important;
    transition: all .3s cubic-bezier(0.42, 0, 0.37, 1.87);
}

.btns:hover {
    transform: scale(1.1);
    background-color: #000000c4;
    color: #ff0000;
}

#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
    filter: blur(4px);
    opacity: .8;
}

.image{
   position: fixed;
   shape-image-threshold: initial;
   max-width: 40%;
   top:10%;
   left:33%;
   width: 200%;
   height: 100%;
   justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    
    
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  background: linear-gradient(
    109.6deg,
    rgb(0, 0, 0) 11.2%,
    rgb(2, 2, 2) 51.2%,
    rgb(15, 15, 15) 98.6%
  );
}

.card {
  position: relative;
  width: 350px;
  height: 190px;
  background: rgba(231, 11, 11, 0);
  border-radius: 20px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0);
  transition: 0.5s;
}

.card:hover {
  height: 350px;
  margin-top: 4rem;
}

.imgBx {
  position: absolute;
  left: 50%;
  top: -24%;
  transform: translateX(-50%);
  width: 136px;
  height: 136px;
  background: #000000;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: 0.5s;
}

.card:hover .imgBx {
  width: 180px;
  height: 180px;
}

.imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====================Content CSS============================== */

.card .content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.card .content .details {
  padding: 40px;
  text-align: center;
  width: 100%;
  transition: 1s;
  transform: translateY(150px);
}

.card:hover .content .details {
  transform: translateY(0px);
}

.card .content .details h2 {
  font-size: 1.25em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.944);
  line-height: 1.2em;
}

.card .content .details h2 span {
  font-size: 0.75em;
  font-weight: 500;
  opacity: 0.5;
}

.card .content .details .data {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.card .content .details .data h3 {
  font-size: 1em;
  color: rgb(255, 255, 255);
  line-height: 1.2em;
  font-weight: 600;
}

.card .content .details .data h3 span {
  font-size: 0.85em;
  font-weight: 400;
  opacity: 0.5;
}

.card .content .details .actionBtn {
  display: flex;
  justify-content: space-between;
}

.card .content .details .actionBtn a{
  padding: 10px 30px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1em;
  font-weight: 500;
  background: #00000000;
  color: #fffffffd;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.card .content .details .actionBtn a:hover {
  background: #fa00007c;
  color: rgba(255, 255, 255, 0)000;
}

.card .content .details .actionBtn a:nth-child(2) {
  border: 1px solid #00000000;
  color: #ffffff;
  background: #00000000;
  transition: 0.3s;
}

.card .content .details .actionBtn a:hover:nth-child(2) {
  color: rgb(255, 255, 255);
  background: #dd0505c4;
}

.modal{
    z-index: 1000;
    max-width: 100%;
    width: 100%;
    position: fixed;
    top:50%;
    background-color: rgba(0,0,0,0.3);
    left:50%;
    transform: translate(-50%,-50%);
    border-radius: 5px;
    background:#000000e3;
    display: none;
    height: 100%;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal.show{display:flex}
#close {cursor:pointer;color:rgb(255, 251, 251);position:absolute;top:0;font-size:15px;right:0;padding:1rem;margin-right: 10px;}
.modal__title{font-size: 2.5rem;color: #ffffff;}
.modal__title span{display: block;font-weight: 400;}
.modal__paragraph{font-size: 16px;font-weight: 400;}
.modal__button:hover{background-color:#ffffff;}
main{text-align: center;}
.modal__container{
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.outuby {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 400;
}
.outuby a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: all .2s ease-in-out;
}
.outuby a:hover{
    color: #fffefe;
    text-shadow: black 0px 0px 10px;
}


.center .skush {
    font-size: .9rem;
    font-weight: 400;
}
