*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --colormain:red;
}

/************ NAV ************/
.logo{
    position: relative;
    width: 40px;
    height: 40px;
    /* background-color: aqua; */
    
}
.logo img{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 5px;
}
.cv{
    color: white;
}
.navbar {
    background-color: rgb(0, 0, 0);
    padding: 40px;
     position: fixed;
  top: 0;
  left: 0;
  width: 100%;
    z-index: 9;
}

.navbar-brand:hover{
    color: white;
}
.navbar a{
    color: white;
    font-weight: bold;
    
}
.ms{
    color: var(--colormain);
}
.navbar-collapse{
    position: absolute;
    right: 10%;
}

.container{
    width: 80%;
    margin: auto;
}
.buttnm{
    width: 150px;
    background-color: var(--colormain);
    text-align: center;
    border-radius: 50px;

}
.buttnm:hover{
    transform: scale(1.05);
    transition: all 0.5s;
}
.buttnm a:hover{
    transform: scale(0);
}

.nav-item a{
    color: rgba(196, 196, 196, 0.914);
}
.nav-item a:hover{
    color: white;
    transform: scale(1.1);
    transition: all 0.5s;
}

/********** HOME  *************/
.home{
    background-image: url(images/Background.jpg);
    height: 140vh;                 /* full screen height */
    width: 100%;
  
    background-size: cover;        /* fill screen */
    background-position: center;   /* center image */
    background-repeat: no-repeat;

    display: flex;
    align-items: center;           /* vertical center */
    position: relative;
}
.layer{
    background-color: rgba(0, 0, 0, 0.753);
    width: 100%;
    height: 100%;
    padding-top: 100px;
}

.char{
    text-align: center;
    padding-bottom: 2%;
}
.char p{
    background-color: rgba(0, 0, 0, 0.47);
    width: 50%;
    margin: auto;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid white;
    color: white;
    font-weight: bold;
}
.hero{
    text-align: center;
    font-size: 5rem;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    padding-bottom: 2%;
}
.hero span{
    color: red;
}

.para{
    width: 90%;
    margin: auto;
    color: white;
    font-size: 2rem;
    padding-bottom: 3%;
    font-family: lora;
    text-align: center;
}
.buttons{
    padding-bottom: 2rem;
    flex-wrap: wrap;
    width: 40rem;
    margin: auto;
}
.b1{
    width: 70%;
    height: 240%;
    background-color: red;
    border-radius: 10px;

}
.b1 a{
      width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.b1 i{
    font-size: 1.4rem;
    font-weight: bold;
}

.b1:hover{
    transform: scale(1.1);
    transition: all 0.5s;
    background-color: rgba(255, 0, 0, 0.722);

}
.b2:hover{
    transform: scale(1.1);
    transition: all 0.5s;
    background-color: rgba(115, 115, 115, 0.671);;

}

.b2{
    width: 80%;
    height: 240%;
    background-color: rgba(115, 115, 115, 0.271);;
    border-radius: 10px;

}
.b2 a{
      width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.b2 i{
    font-size: 1.4rem;
    font-weight: bold;
}

.divs{
  
    text-align: center;
    width: 80%;
    margin: auto;
    padding: 4%;
}
.div1{
  background: rgba(255, 255, 255, 0.2); /* transparent background */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);    
    
    border-radius: 20px;
    color: white;
    
}
.active{
    color: white;
}
.div1 h2{
    color: red;
    font-weight: bold;
    font-family: lora;
    font-size: 3rem;
}

/************About******************/

.about{
    padding-top: 120px;
}
.v{
    width: 50%;
    margin: auto;
}
.v p{
    background-color: #fee2e2;
    color: red;
}

.letter{
    text-align: center;
    padding: 15px;
    width: 80%;
    margin: auto;
}
.letter h3{
    font-size: 3rem;
    font-weight: bold;
    font-family: lora;
}
.letter p{
    width: 70%;
    margin: auto;
    color: darkgrey;
    font-size: 1.2rem;
}
/****************************************/
/* .video-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.video-box {
  position: relative;
  width: 50%;
  max-width: 1100px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  margin: auto;
}

.video-box video {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.play-btn,
.video-text {
  position: absolute;
  z-index: 2;
}

.play-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 80px;
  height: 80px;
  background: #e11d1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(225, 29, 29, 0.6);
  z-index: 4;
}

.video-text {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.video-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
} */

.cards{
    width: 80%;
    margin: auto;
    padding-bottom: 4rem;
}
.cardd{
    margin-top: 20px;
    border: 1px solid darkgray;
    border-radius: 10px;
    

}
.cardd:hover{
    border: 1px solid red;
    transform: scale(1.1);
    transition: all 0.5s;
    box-shadow: 10px 10px 10px rgba(255, 0, 0, 0.164) ;
}
.cardd h4{
    font-size: 1.2rem;
    font-weight: bold;
}
.cardd p{
    color: darkgray;
}
.blackdiv{
    background-color: black;
    border-radius: 20px;
    width: 72%;
    color: white;
    text-align: center;
    padding: 20px;
    margin: auto;
}
.blackdiv h2{
    font-weight: bold;
    width: 89%;
    margin: auto;
    padding-bottom: 1rem;
}
.blackdiv p{
    width: 80%;
    margin: auto;
}
/********services*****************/

.services{
    background-color: #f5ecec;
    padding: 40px;
}
.title{
    text-align: center;

}
.title h2{
    color: black;
    font-size: 3rem;
    font-weight: bold;
    font-family: lora;

}
.sers{
    width: 70%;
    margin: auto;
}
.ser{
    border-radius: 20px;
    background-color: white;
    padding-bottom: 30px;
}
.icon{
    background-color: red;
    font-size: 2rem;
    padding: 1.5rem;
    color: white;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;    
    left: 10px;
}
.icon1{
      background-color: #1550ee;
    font-size: 2rem;
    padding: 1.5rem;
    color: white;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;    
    left: 10px;
}
.iocn1 i{
      border: 1px solid white;
    padding: 15px;
    background-color: #4479f9;
}
.icon2{
       background-color: #4731e0;
    font-size: 2rem;
    padding: 1.5rem;
    color: white;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;    
    left: 10px;
}
.iocn2 i{
      border: 1px solid white;
    padding: 15px;
    background-color: #715ff3;
}
.icon i{
    background-color: #e7333b;
   
}
.ser h4{
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1.5rem;
}
.ser p{
    text-align: center;
    color: darkgray;
    /* padding: 1.2rem; */
}
.bttn{
    border: 0;
    background-color: white;
    color: blue;
    margin-left: 1rem;
    text-decoration: underline;
}
/**********modal***********/
.modal-body p{
    text-align: left;
}
.modal-body i{
    color: red;
}
.modal-header{
    background-color: red;
    color: white;
}
.modal-footer h4{
    text-align: left;
    width: 100%;
    font-weight: bold;
    font-family: lora;

}

/**********start mohammed gamal**********/

.career-bg {
  min-height: auto;
  background:
    /* subtle wave pattern */
    repeating-radial-gradient(
      circle at 0% 50%,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 2px,
      transparent 40px,
      transparent 80px
    ),
    linear-gradient(
      135deg,
      #b31217,
      #e52d27
    );
    width: 100%;
    padding: 60px 0 100px;
}
.career-bg h1{
    font-size: 60px;
    text-align: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    padding-top: 50px;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* base button */
.career-bg .btn {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

/* outlined button */
.btn-outline {
  background-color: transparent;
  color: #fff;
}

/* filled button */
.btn-filled {
  background-color: #fff;
  color: #c4161c;
  border-color: #fff;
}

/* hover effect */
.career-bg {
    background: linear-gradient(135deg, #b31217, #e52d27);
    padding: 80px 0 120px;
    min-height: 80vh;
    position: relative;
}

.career-bg h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-align: center;
    color: white;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}
.pplan{
    height: 34rem;
    border: 2px solid white;
    position: relative;
}
.pplan button{
    position: absolute;
    bottom: 2rem;
    left: 10%;
    width: 7rem;
    margin: auto;
}
.pplan button:hover{
    background-color: rgba(255, 255, 255, 0.374);
    transform: scale(1.1);
}

/* .buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 2rem 0 4rem;
    flex-wrap: wrap;
} */

.btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.btn-outline {
    background: transparent;
}

.btn-filled {
    background: white;
    color: #c4161c;
}

.btn:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-outline.active {
    background: rgba(255,255,255,0.18);
}

.plans .plan {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
}

.plan:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.plan.dark {
    background: linear-gradient(180deg, #1c2633, #0e141c);
}

.plan.red {
    background: linear-gradient(180deg, #d32027, #a51217);
}


.subtitle {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0.8rem 0 1.5rem;
}

hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 1.5rem 0;
}

.plan ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.plan ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.plan ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.plan button {
    width: 80%;
    padding: 1rem;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    
}

.plan.dark button {
    background: white;
    color: black;
}

.plan.red button {
    background: white;
    color: #b31217;
}

/* Modal (still part of career section interaction) */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-box {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 420px;
    text-align: center;
    color: #111;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.countries button {
    display: block;
    width: 100%;
    margin: 0.8rem 0;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    font-weight: 600;
}

.icons a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.icons a:hover {
    transform: scale(1.1);
    color: #ffd;
}

/* <!-- End Og the career page styling --> */

/* start stories styling */
.stories{
    margin-top: 120px;
    width: 100%;

}
.quarter{
    width: 200px;
    background-color: #fee2e2;
    text-align: center;
     margin: auto;
    border-radius: 10px;
}
.stories span{
    text-align: center;
    color: #991b1b;
    margin-bottom: 40px;
}
.stories h1{
    margin-top: 30px;
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    
}
.stories p{
    color: oklch(44.6% 0.03 256.802);
}
.containerr{
    margin-top: 300pxpx;
    width: 80%;
    margin: auto;
}
/* Container Background (optional, adjust to your site) */
.testimonials {
    background-color: #fff;
}

/* The Card */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;

}

/* Middle Card Highlight */
/* .testimonial-card.featured {
    border: 1px solid #ffccd0;
    box-shadow: 0 10px 30px rgba(229, 45, 39, 0.1);
} */

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 1px 1px 1px   #d32027;
}

/* Quote and Stars */
.quote-icon {
    font-size: 40px;
    color: #ffccd0; /* Light red/pink */
    margin-bottom: 15px;
    display: block;
}

.stars {
    color: #d32027; /* Your brand red */
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100px;
}

/* Bottom Profile Section */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h6 {
    font-weight: 700;
    color: #1a1a1a;
}

.user-info small {
    color: #888;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 25px 0;
}
.stats-container {
    background-color: rgb(0 0 0 / 10%); /* Light grey background */
    padding: 30px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 120px;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
}

.stat-number {
    color: #d32027; /* Your brand red */
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1rem;
}

/* The Vertical Divider */
.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #e2e8f0;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        padding: 30px;
        width: 100%;
    }
    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 20px 0;
    }
}
/* End of stories styling */

/* --- FEEDBACK SECTION --- */
.feedback-section {
    background: #0e0e0e; /* Deep black background from the image */
    color: #fff;
    padding: 100px 0;
    position: relative;
}

/* Left Column Styling */
.feedback-title {
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.feedback-title span {
    color: #d32027; /* Brand Red */
}

/* Contact Info Blocks (Email/WhatsApp) */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    background: rgba(211, 32, 39, 0.15); /* Soft red tint */
    color: #d32027;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-text small {
    color: #888;
    text-transform: capitalize;
    font-size: 0.85rem;
}

.info-text span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Form Styling */
.feedback-form .form-label {
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-form .form-control {
    background: #1a1a1a; /* Dark input background */
    border: 1px solid #333;
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feedback-form .form-control:focus {
    background: #222;
    border-color: #d32027;
    box-shadow: 0 0 0 0.25rem rgba(211, 32, 39, 0.1);
    color: #fff;
}

.feedback-form .form-control::placeholder {
    color: #555;
}

/* Send Button */
.btn-send {
    background: #d32027;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, background 0.3s;
}

.btn-send:hover {
    background: #b31217;
    transform: translateY(-2px);
}

/* Floating Scroll Button */
.scroll-top {
    position: fixed; /* Keeps it in the same spot on the screen */
    bottom: 30px;
    right: 30px;
    background: #d32027;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex; 
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(211, 32, 39, 0.3);
    z-index: 9999; /* Ensures it stays above all other sections */
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

/* Class to show the button via JavaScript */
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #b31217;
    transform: scale(1.1);
}
.scroll-top:hover {
    background: #b31217;
    transform: scale(1.1);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .feedback-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .feedback-section p {
        text-align: center;
        margin-inline: auto;
    }
    .contact-info-item {
        justify-content: center;
    }
}
ul{
    text-decoration: none;
    list-style: none;
}
 li{
    padding: 5px 20px;
}
ul li {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

/************respopnsive*****************/
@media (max-width :768px) {
    .hero{
           text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    padding-bottom: 2%;
    }
    .para{
    width: 90%;
    margin: auto;
    color: white;
    font-size: 1rem;
    padding-bottom: 3%;
    font-family: lora;
    text-align: center;
    }
    .buttons{
    padding-bottom: 0.45rem;
    flex-wrap: wrap;
    width: 10rem;
    margin: auto;
    padding-bottom: 20px;
    }
    .b1{
    width: 120%;
    height: 140%;
    background-color: red;
    border-radius: 10px;
    padding-bottom: 10px;

}
.b1 a{
      width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.b1 i{
    font-size: 0.6rem;
    font-weight: bold;
}

.b1:hover{
    transform: scale(1.1);
    transition: all 0.5s;
    background-color: rgba(255, 0, 0, 0.722);

}
.b2:hover{
    transform: scale(1.1);
    transition: all 0.5s;
    background-color: rgba(115, 115, 115, 0.671);;

}

.b2{
    width: 120%;
    height: 120%;
    background-color: rgba(115, 115, 115, 0.271);;
    border-radius: 10px;
    margin-top: 20px;

}
.b2 a{
      width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.b2 i{
    font-size: 0.6rem;
    font-weight: bold;
}
.char p{
    background-color: rgba(0, 0, 0, 0.47);
    width: 50%;
    margin: auto;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid white;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}
.div1 h2{
    color: red;
    font-weight: bold;
    font-family: lora;
    font-size: 1.5rem;
}
}


.text{
    color: darkgray;
}

/* ========================= */
/* 🎬 VIDEO SECTION STYLE */
/* ========================= */

.video-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.video-box {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

/* VIDEO */
.video-box video {
  width: 90%;
  height: 100%;
  display: none;
  margin: auto;
  padding: 20px;
}

/* OVERLAY */
.play-btn,
.video-text {
  position: absolute;
  z-index: 2;
}

/* PLAY BUTTON */
.play-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 80px;
  height: 80px;
  background: #e11d1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(225, 29, 29, 0.6);
  z-index: 4;
  transition: 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -60%) scale(1.1);
}

/* TEXT */
.video-text {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.video-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* ===================== */
/* 📱 Tablet (max 992px) */
/* ===================== */
@media (max-width: 992px) {

  .video-box {
    width: 90%;
    height: 350px;
  }

  .video-text h2 {
    font-size: 24px;
  }

  .video-text {
    bottom: 40px;
  }

  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

/* ===================== */
/* 📱 Large Mobile (max 768px) */
/* ===================== */
@media (max-width: 768px) {

  .video-section {
    padding: 60px 15px;
  }

  .video-box {
    width: 95%;
    height: 280px;
    border-radius: 18px;
  }

  .video-text h2 {
    font-size: 20px;
  }

  .video-text {
    bottom: 30px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* ===================== */
/* 📱 Small Mobile (max 480px) */
/* ===================== */
@media (max-width: 480px) {

  .video-box {
    height: 220px;
    border-radius: 14px;
  }

  .video-text h2 {
    font-size: 16px;
  }

  .video-text {
    bottom: 20px;
    padding: 0 10px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.vvv{
    width: 80%;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}