@font-face {
  font-family: Rajdhani;
  src: url("card1fonts/Rajdhani-Light.ttf");
  font-weight: 100;
}
@font-face {
  font-family: Rajdhani;
  src: url("card1fonts/Rajdhani-Medium.ttf");
  font-weight: 200;
}
@font-face {
  font-family: Rajdhani;
  src: url("card1fonts/Rajdhani-Regular.ttf");
  font-weight: 300;
}
@font-face {
  font-family: Rajdhani;
  src: url("card1fonts/Rajdhani-SemiBold.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Rajdhani;
  src: url("card1fonts/Rajdhani-Bold.ttf");
  font-weight: 500;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: var(--material-color-amber-100);
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Rajdhani";
  font-weight: 700;
}
.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 28px;
  background-color: #fff;
}
.visiteCounter {
    position: absolute;
    z-index: 1000;
    top:0;
    left:50%;
    background: #ffffffaa;
    padding: 0 15px 10px 15px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transform: translateX(-50%);
}
.vCard {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.vCard .vCard-header {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.vCard .vCard-header IMG{
  width: 100%;
  height: auto;
}
.brand {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.brand .logo {
  width: 30%;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 20px;
}
.brand .logo img {
  width: 250px;
  height: auto;
  align-items: center;
}

.brand .title {
  display: flex;
  flex-direction: column;
  width: 40%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.brand .title h2 {
  margin: 0;
  color: #09505d;
  font-size: 2.5em;
}

.description {
  position: relative;
  margin: 0;
  margin-top: 10px;
  color: var(--material-color-red-600);
  font-size: 1.4em;
}
.description::after {
  content: "";
  height: 3px;
  width: 50px;
  background: var(--material-color-green);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.other {
  margin: 0;
  text-align: center;
  padding: 10px;
}
.slider {
  display: flex;
  width: 80%;
  margin-top: 20px;
  margin-left: 10%;
  padding: 0 10px 20px 30px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS devices */
}
.slider::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 12px;
}
.slider::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background-color: #d8d8d8;
}
.slider::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.slider .slide {
  flex: 0 0 auto;
  width: 500px; /* Adjust this value as per your requirements */
  height: auto;
  margin-right: 30px; /* Add some spacing between images */
  scroll-snap-align: start;
}
.slider .slide IMG {
  border-radius: 20px;
  width: 100%;
  border: 1px solid lightgray;
}
.slider .slide p {
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
  margin: 5px;
  padding: 5px;
  font-weight: 600;
}
.contacts {
  width: 80%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  color: #09505d;
}
.contacts .contact {
  display: flex;
  float: left;
  width: 20%;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  font-size: 1.4em;
}
.contacts .contact A {
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: flex;
  color: #09505d;
}
.contacts .contact I {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 50%;
  position: relative;
  font-family: none;
  font-size: 2em;
}
.contacts .contact I::after {
  content: "";
  top: 50%;
  left: -10px;
  height: 50%;
  width: 100%;
  position: absolute;
  border: 10px solid #d2aa56;
  border-top: none;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.about-section {
  margin: 50px;
  width: 80%;
  margin-left: 10%;
  text-align: justify;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  font-size: 1.5em;
  color: #09505d;
}
.about-section::before {
  content: "About US";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: #d2aa56;
  text-transform: uppercase;
  padding: 10px 30px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  color: #fff;
}

.icon I {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 50%;
  position: relative;
  text-decoration: none;
  color: gray;
  font-family: none;
  color: #09505d;
  font-size: 25px;
}
.icon I::after {
  content: "";
  top: 50%;
  left: -10px;
  height: 50%;
  width: 45px;
  position: absolute;
  border: 10px solid #d2aa56;
  border-top: none;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
}
.contact-details {
  width: 80%;
  margin-left: 10%;
}
.contact-details ul,
.contact-details .qrcode {
  width: 50%;
  float: left;
}
.contact-details .qrcode {
  justify-content: center;
  text-align: center;
}
.contact-details ul li {
  list-style-type: none;
  box-sizing: border-box;
  padding: 10px;
  margin: 5px 0;
}
.contact-details .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact-details ul li .icon {
  margin-right: 20px;
}
#header-video {
  height: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#vCard-header {
  position: relative;
}
#banner-video {
  height: auto;
  position: absolute;
  width: 200%;
  top: -25%;
  left: -25%;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer {
  width: 100%;
}
footer > .subscription {
  justify-content: center;
  margin: 48px auto;
  display: flex;
  align-items: center;
  /* margin: 10px; */
  position: relative;
  height: 45px;
  width: 400px;
  border: 1px solid #d2aa56;
  border-radius: 25px;
}

footer > .subscription .add-email{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 20px;
  border-radius: 100%;
}

footer > .subscription .submit-email {
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 2px);
  width: 100px;
  border: none;
  border-radius: 60px;
  outline: none;
  margin: 1px;
  padding: 0 20px;
  cursor: pointer;
  background: #d2aa56;
  color: #FFFFFF;
}

footer > .subscription.done .submit-email {
  width: calc(100% - 2px);
  background: #d2aa56;
}

footer > .subscription .submit-email .before-submit,
footer > .subscription .submit-email .after-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 38px;
  transition: visibility .35s ease-in-out,
    opacity .35s ease-in-out;
}

footer > .subscription.done .submit-email .before-submit,
footer > .subscription:not(.done) .submit-email .after-submit {
  visibility: hidden;
  opacity: 0;
}

footer > .subscription .submit-email .after-submit {
  transition-delay: .35s;
}

footer > .subscription:not(.done) .submit-email .before-submit,
footer > .subscription.done .submit-email .after-submit {
  visibility: visible;
  opacity: 1;
}
footer > A {
  justify-content: center;
  margin: auto;
  max-width: 200px;
  cursor: pointer;
  background-color: #d2aa56;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  display: block;
  align-items: center;
  border: none;
  text-decoration: none;
}

.contact p {
    max-width:200px;
}
@media (max-width: 991px) {
  #banner-video {
    width: 212%;
  }
  .brand .logo {
    width: 50%;
  }
  .brand .logo img {
    width: 100px;
    height: auto;
  }
  .brand .title {
    width: 50%;
    text-align: center;
  }
  .brand .title h2 {
    font-size: 1em;
    padding: 0 10px;
  }
  .brand .title p {
    font-size: 0.8em;
    padding: 0;
  }
  .brand .title .description {
    font-size: 0.8em;
    margin: 0;
  }
  .slider {
    margin-left: 2px;
    width: 100%;
  }
  .slider .slide {
    width: 230px;
  }
  .contacts {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .contacts .contact {
    padding: 0;
    font-size: 0.6em;
  }
  .contacts P {
    max-width: 100px;
  }
  .contacts .contact I {
    padding: 10px;
  }
  .contacts .contact I::after {
    left: -5px;
    border-width: 5px;
  }
  .about-section {
    font-size: 1em;
    width: 90%;
    margin-left: 5%;
  }
  .about-section::before {
    font-size: 0.8em;
  }
  .contact-details {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .contact-details ul, .contact-details .qrcode {
    width: 100%;
  }
  .contact-details ul li {
    width: auto;
  }
  .icon I::after {
    border-width: 5px;
    left: -5px;
  }
  footer > .subscription {
    width: 96%;
  }
  
.contact p {
    max-width:150px;
}

}

@media (max-width: 768px) { 
  .brand .logo img {
    width: 200px;
    height: auto;
  }
  .brand .title {
    width: 50%;
    text-align: center;
  }
  .brand .title h2 {
    font-size: 2em;
    padding: 0 10px;
  }
  .brand .title p {
    font-size: 0.8em;
    padding: 0;
  }
  .brand .title .description {
    font-size: 0.8em;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .brand .logo {
    width: 50%;
  }
  .brand .logo img {
    width: 100px;
    height: auto;
  }
  .brand .title {
    width: 50%;
    text-align: center;
  }
  .brand .title h2 {
    font-size: 1em;
    padding: 0 10px;
  }
  .brand .title p {
    font-size: 0.8em;
    padding: 0;
  }
}
