@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* { outline: none !important; }
*:focus { box-shadow: none !important; }
main{ overflow: hidden; }

body {
    font-family: "Calibri", "Segoe UI", Arial, sans-serif;
    color: #333;
    font-size: 18px;
    line-height: 28px;
    overflow-x: hidden;
 background: rgb(235, 243, 250);}

h1, h2, h3, h4, h5, h6 {
    font-family: "Calibri", "Segoe UI", Arial, sans-serif;
    color: #111;
    font-weight: 700;
    margin: 0 0 10px;
}

h1 { font-size: 42px; line-height: 52px; }
h2 { font-size: 32px; line-height: 44px; }
h3 { font-size: 24px; line-height: 36px; }
h4 { font-size: 20px; line-height: 32px; }
h5 { font-size: 18px; line-height: 28px; }
h6 { font-size: 16px; line-height: 24px; }

.heading {
    font-size: 34px;
    line-height: 45px;
    font-weight: 700;
}
p {
    margin: 0 0 20px;
    font-size: 16px;
}

.btn {
    font-family: "Calibri", "Segoe UI", Arial, sans-serif;
    background: #144b8e;
    color:white ;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
   
}
.btn a{
   text-decoration: none;
    list-style-type: none;
    color:inherit;
}
.btn:hover{
background-color: #144b8e;
color:white;
}



.header {
    position: absolute;
    display:flex;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 60px;
    background: transparent;
}
.video-section {
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-box video {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    font-family: Calibri, sans-serif;
}

.video-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    color:white;
}

.video-content p {
    font-size: 10px;
    line-height: 1.5;
}

.hamburger i {
    color: #fff;
}
.logo img {
    height: 100px;
    background-color: #f8f9fa;
    border-radius: 50px;
}

.nav{
    display: flex;
    align-items: center;
    gap: 30px;
}

.hamburger {
    width: 45px;
    height: 45px;
    background-color: #144b8e; 
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.hamburger i {
    font-size: 18px;
    color: #feffff; 
}

.hamburger:hover i {
    color:#f2f3f5;
}

.overlay-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100vh;
    background: #030303;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 999;
}

@media (max-width: 768px) {
   .overlay-menu{
   width:80%;
}

    .header {
        padding: 15px 20px;
    }

    .logo img {
        height: 75px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .hamburger i {
        font-size: 16px;
    }

  .nav{
    display: flex;
    align-items: center;
    gap: 10px;
  }

    .overlay-menu a {
        font-size: 20px;
    }
}

.overlay-menu.active {
    display: flex;
}
.overlay-menu a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: 600;
}

.overlay-menu a:hover {
    color: #fdf8f9;
}
.clsbtn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.clsbtn:hover {
    color: #f5f0f0;
}
@media (max-width: 768px) {
  .video-box video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
}

.footer {
    background: #020b14;
    color: #fff;
    padding: 40px 20px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1 1 300px;
}

.footer-left .logo img {
    height: 90px;
    max-width: 100%;
}

.footer-left p {
    margin: 15px 0;
    line-height: 26px;
}

.footer-right {
    flex: 1 1 400px;
}

.footer-right h2 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-right form {
    margin-top: 10px;
}


.footer-right .row {
    display: flex;
    gap: 15px;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.footer-right .row input {
    flex: 1;
    min-width: 0;
    width: auto;
    margin: 0;
    box-sizing: border-box;
}

.footer-right input,
.footer-right textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #555;
    background: transparent;
    color: #fff;
    outline: none;
    box-sizing: border-box;

}

.footer-right input:focus,
.footer-right textarea:focus {
    border-color: #144b8e;

}

.email {
    color: #f5f5f5;
}

.email i {
    color: #fff;
}

.copyright {
    text-align: center;
    padding: 15px 10px;
    border-top: 1px solid #555;
    margin-top: 30px;
}

.copyright a {
    color: #ddd;
    text-decoration: none;
}

@media (max-width: 768px) {

    .footer {
        padding: 20px 10px;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-right input,
    .footer-right textarea {
        width: 100%;
        padding: 10px 12px;  
        margin-bottom: 10px;
        text-align: left;    
        box-sizing: border-box;
    }

    .footer-right .row {
        flex-direction: column;
        gap: 10px;
    }

    .footer-right .row input {
        width: 100%;
        min-width: 0;
    }
}
@media(max-width: 1024px){


   .footer-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-right .row {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    

    .footer-right input,
    .footer-right textarea {
        width: 100%;
    }
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #144b8e;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 999;
}
.location-section h2{
    padding:20px;
}

.side-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.side-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin: 5px 0;
    transition: 0.3s;
}

.side-contact .whatsapp {
    background: #144b8e;
}
.side-contact .call {
    background: #144b8e;
}

.side-contact i {
    font-size: 18px;
}
.side-contact a {
    transform: translateX(70%);
}

.side-contact a:hover {
    transform: translateX(0);
}
@media (max-width: 768px) {
   

    .side-contact a {
        transform: translateX(75%);
    }

   
}

.features-section {
  position: relative;
  padding: 80px 0;
  z-index: 1;
}

.features-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/family.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.features-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  top: 0;
  left: 0;
  z-index: 0;
}

.feature{
    position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/*.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col {
  width: 25%;
  padding: 15px;
}*/

.feature-box {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  border-radius: 5px;
  transition: 0.3s;
}

.icon {
  margin-bottom: 15px;
}

.icon i {
  font-size: 40px;
  color: #144b8e;
}


.feature-box:hover {
  transform: translateY(-10px);
}

@media (max-width: 992px) {
  .col {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .col {
    width: 100%;
  }
}

.about-section {
  padding: 50px 0;
 background: rgb(235, 243, 250);}

.image-box {
  position: relative;
  height: 550px;
  overflow: hidden;
  border-radius: 20px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


.sub-title span {
  color: #144b8e;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}
@medi


.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}


.features li {
  margin-bottom: 10px;
  font-size: 16px;
  color:#333;
}
.features i{
    color:#144b8e;
}




@media (max-width: 768px) {

  .about-section {
    padding: 20px 10px;

  }

  .image-box {
    height: 400px; 
    border-radius: 15px;
  }


  .sub-title span {
    font-size: 14px;
  }

  .features li {
    font-size: 14px;
  }
}

.buttons {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  height: 45px;
  gap: 8px; 
  text-decoration: none;
  list-style-type: none;
}

@media (max-width: 768px) {

  .buttons {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    align-items: stretch; 
    margin-top: 10px;
  }

  .buttons a {
    width: 100%;  
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}
.call-btn {
    font-family: "Calibri", "Segoe UI", Arial, sans-serif;
    cursor: pointer;
    transition: 0.3s ease;
  padding: 10px 20px;
  background-color: #144b8e;
  color: white;
  text-decoration: none;
  border:1px solid #144b8e;
  border-radius: 50px;
  font-weight: 600;
}
.sub-btn {
  font-family: "Calibri", "Segoe UI", Arial, sans-serif;
  background-color: #144b8e;
  color: #fafafa;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px; 
  cursor: pointer;
  text-decoration: none;
  border: none;
  width: 100%; 
  height: 40px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-btn:hover {
  background-color: #0f3768;
}
.brochure-btn {

  padding: 10px 20px;
  background: transparent;
  color: #144b8e;
  text-decoration: none;
  border:1px solid #144b8e;
  border-radius: 50px;
  font-weight: 600;
}
.brochure-btn:hover {
    background-color: #144b8e;
    color: #fcfcfc;
}
@media (max-width: 480px) {
    .brochure-btn {
        padding: 8px 18px;
        font-size: 13px;
        width: 100%;    
        display: block; 
        border-radius: 30px;
    }
}
.landmark {
  padding: 60px 0px;
 background: rgb(235, 243, 250);}

.text-center {
    text-align: center;
}

.landmark .heading {
    margin-bottom: 30px;
}

.landmark-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
 
}

@media (max-width: 768px) {
    .landmark {
        padding: 40px 15px;
    }
    .landmark h2{
      text-align: center;
    }

    .landmark-img {
        max-width: 100%;
    }
}

.plan-section {
  background: #144b8e;
  padding: 60px 0;
  color: #fff;
}

.plan-section h2{
  color: white;
}

.plan-box {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.plan-overlay h3 {
  margin-bottom: 5px;
  color: #fff;
}
.plan-overlay span{
  font-size:16px;
}
.plan-overlay p{
font-size:15px;
}
.plan-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,1), transparent);
  color: #fff;
  text-align: left;
}

.plan-box {
    width: 100%;
}
.plan-overlay p {
  margin: 0;
}
.plan-box img {
    width: 100%;
    height: 280px;  
    object-fit: cover;  
    transition: transform 0.3s ease;
    
}

.plan-box:hover img {
    transform: scale(1.1);
}

.image-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color:black;
}

.image-popup img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .plan-section {
        padding: 20px 15px;
        gap:15px;
    }
     .plan-section h2{
      margin-top: 15px;
     }
    .plan-box img {
        height: 240px;
    }

    .plan-overlay {
        padding: 15px;
    }
}
.specs-section {
  background: rgb(235, 243, 250);
  padding: 60px;
}
.spec-box {
  background: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.spec-box i {
  color: #0b3c5d;
  font-size: 18px;
}

.spec-box span {
  font-size: 14px;
  color: #0b3c5d;
}
@media (max-width: 768px) {
.specs-section {
  background: rgb(235, 243, 250);
  padding: 40px 20px;
}
.specs-section h2{
  text-align: center;
}
.spec-box {
  padding: 15px;
}

}

@media (max-width: 768px) {

    .group-btn {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .phone-btn,
    .down-btn {
        flex: 1;
        max-width: 280px; 
        padding: 9px 14px;  
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
}
@media (max-width: 480px) {

    .group-btn {
        flex-direction: column; 
        align-items: stretch;
        align-items: center;
        gap: 20px;
    }

    .phone-btn,
    .down-btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 13px;
        height: 40px;
    }
}

.phone-btn {
    display: inline-flex;
    align-items: center;
     border: 1px solid #144b8e;
    color: #144b8e;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}


.phone-btn:hover {
    border:0;
    color: white;
    background: #144b8e;
}


.down-btn {
    display: inline-flex;
    align-items: center;
    border: 0;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #144b8e;
}
.down-btn:hover {
    border:1px solid #144b8e;
    color: #144b8e;
    background: transparent;
}




.popup-overlay{
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  justify-content: center;
  align-items: center;
  position:fixed;
  z-index:9999;
  background: rgba(0,0,0,0.6);
}
.popup-box{
  background-color: #144b8e;
  width:350px;
  padding:25px;
  border-radius: 0;
  position:relative;

}
.popup-box h3 {
    margin-bottom: 15px;
    color:white;
    text-align: center;
}

.close-btn{
top:10px;
right:12px;
position:absolute;
font-size: 18px;
font-weight: bold;
cursor: pointer;
color:white;
}
.popup-box input{
  width:100%;
  padding:10px;
  outline:none;
  border:1px solid #ccc;
  border-radius: 0;
  background: transparent; 
  color: white; 
  margin-bottom: 12px;      
}

.popup-box input::placeholder{
  color: rgba(255,255,255,0.7);
}

.popup-box input:focus{
  border-color: #ffffff;  
}
.popup-box button{
  width:100%;
  padding:12px;
  border-radius: 0;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  color:#144b8e;
  background-color: white;
  border:none;
}
.popup-box button:hover{
  color:#f9f9fa;
  border: 1px solid #fafafa;
  background-color: transparent;
}


.why-choose {
  background: #144b8e;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.why-choose h2 {
  margin-bottom: 10px;
  color:white;
}

.title {
  max-width: 750px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.sentence {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 250px;
}

.icon-item {
  text-align: center;
}
.icon-item i{
font-size: 40px;
}
.icon1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.icon-item h3{
  margin-bottom: 5px;
  color: #fff;
}
.icon-item p {
  font-size: 14px;
  color: #ddd;
}

.center-img img {
  width: 350px;
  height: 400px;  
  object-fit: cover;
  border-radius: 10px;
}

.why-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.number-btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border:1px solid white;
  
}
.number-btn:hover{
  border:0;
  background:white;
  color:#144b8e;
}


.choose-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #144b8e;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: 0;
}
.choose-btn:hover{
  border:1px solid white;
  background:transparent;
  color:#f7f8fa;
}
.phone-btn i{
   margin-right: 8px;
}
@media (max-width: 768px) {

.choose-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #144b8e;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: 0;
  width:100%;
}
.number-btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border:1px solid white;
  width:100%;
  
}
  .sentence {
    flex-direction: column;
    gap: 25px;
  }

  .side {
    flex-direction: column;
    max-width: 100%;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .center-img img {
    width: 90%;
    height: 300px;
    display:none;
  }

  .why-choose {
    padding: 40px 15px;
  }


  .title {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

  .icon-item {
    max-width: 300px;
  }
  
  .why-btn{
    margin-top: 20px;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.gallery{
  padding:60px;
  
}
.gallery .row{
  align-items: center;
  margin-bottom: 10px;
}
.heading{
  position:relative;
}
.heading::after{
  content:"";
  width:60px;
  height:4px;
  display:block;
}
.paragraph{
  max-width:600px;
}

.view-btn{
  padding:10px 20px;
  color:#144b8e;
  border:1px solid #144b8e;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  list-style-type:none;
  margin-top: 10px;
}
.view-btn:hover{
  background: #144b8e;
  color:white;
}

.gallery-img{
  overflow: hidden;
  height:280px;
  border-radius: 15px;

}
.gallery-img.big{
 height:300px;
}
.gallery-img img{
width:100%;
height:100%;
object-fit:cover;
transition:0.3s;
}
.gallery-img img:hover{
  transform:scale(1.05);
}
@media (max-width: 768px) {

  .gallery {
    padding: 15px; 
  }

  .gallery .row {
    margin-bottom: 15px;
  }

  .heading {
    text-align: left;
  }

  .heading::after {
    margin: 8px auto;  
  }

  .paragraph {
    max-width: 100%;
    text-align: left;
  }

  .view-btn {
    display: inline-block;
    margin: 10px auto;
    
  }

  .gallery-img,
  .gallery-img.big {
    height: 250px;  
  }

  .gallery-img img {
    width: 100%;
    height: 100%;
  }
}



.gallery-section {
    padding: 60px 20px;
    background: #ebf3fa;
    margin-top: 80px;
}
.gallery-section h2{
      text-align: center;
    margin-bottom: 40px;
  
}
.photos{
 display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery-card {
    width: calc(25% - 15px);
    display: none;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.caption {
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #144b8e;
}

.gallery-card:hover {
    transform: translateY(-5px);
}
.gallery-section h2{
  text-align: center;
  margin-top: 40px;
}
#loadMoreBtn {
    background: #144b8e;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
}
#loadMoreBtn:hover{
  border: 1px solid #144b8e;
  color:#144b8e;
  background: none;
}

@media (max-width: 992px) {
    .gallery-card {
        width: calc(50% - 10px);
    }
    .gallery-section h2{
      text-align: center;
  
}
.gallery-section {
    background: #ebf3fa;
    margin-top: 50px;
}
}

@media (max-width: 576px) {
    .gallery-card {
        width: 100%;
    }

    #loadMoreBtn {
        width: 100%;
    }
}

.health-policy{
    background-color: transparent;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top: 120px; 
    padding:60px ;

}
.health-box p{
  margin:20px;
}
.health-box{
    background:transparent;
    max-width:1000px;
    border: 2px solid #000;
    padding: 30px;
    position: relative;
}

.health-box::before{
    content: "";
    position: absolute;
    top: 10px; 
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #000;
    pointer-events: none;
}
.policy{
    border-bottom:2px solid #030303;
    display:inline-block;
    padding-bottom:8px;
   
}
.health-box .texts{
    text-align: center;
}

@media (max-width: 768px){

  .health-policy{
    margin-top: 100px;
    padding: 15px;
  }

  .health-box{
    padding: 20px 15px;
  }

  .health-box::before{
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
  }

  .health-box p{
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .policy{
    padding-bottom: 0px;
    font-size: 22px;
  }

  .health-box .texts{
    text-align: center;
  }

}
/*.interior-box{
    position:relative;
    cursor:pointer;
}


.interior-box video{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100px;
    height:100px;
    border-radius:50%;
    border:none;
    background:rgba(0,0,0,0.35);
    color:#fff;
    font-size:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition:0.3s ease;
    pointer-events:none;
}

.play-btn:hover{
    background:rgba(0,0,0,0.55);
}*/
.error{
    color:red;
    font-size:13px;
    display:block;
    margin-bottom:10px;
}

.error-border{
    border:1px solid red;
}

