html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}
.mottoFont{
    font-family: 'GFS Didot';
    font-size: 6vw !important;
}

.redText{
    color:#ef3d3e;
}
.whiteText{
 color:#d2d3d2;
}
.blackText{
    color:#040404;
}

.redBack{
    background-color:#ef3d3e;
}
.whiteBack{
 background-color:#d2d3d2;
}
.blackBack{
    background-color:#040404;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(210, 211, 210, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler{
 border: 1px solid #d2d3d2;
 } 

.whiteText:hover{
 transition: 2ms;
 color:#ffffff;
}
#logoNav:hover{
    transition: 2ms;
    opacity: 0.5;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videoDiv {
    position: relative;
    overflow: hidden;
}

.positionVideo {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    color: #ef3d3e;
    text-align: center;
    width: 70%;
    font-weight: bold;
    z-index: 2;
    animation: fadeInOut 10s ease-in-out infinite;
    font-size: clamp(1.5rem, 4vw, 3rem);
}

.animatedText {
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 0.25s;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}
.animate-visible {
  opacity: 1;
  animation: fadeIn 2s ease-in forwards;
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.border-red {
    border-color: #ef3d3e !important;
}
.object-fit-cover {
    object-fit: cover;
}
.redText a:hover{
    transition: 0,25s;
    color: #c96060;
}
.iconHover:hover::before{
    transition: 0,25s;
    color: #c96060;
    cursor: pointer;
}
.video-wrapper {
    max-width: 320px;       
    aspect-ratio: 9 / 16;   
    margin: 0 auto;         
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.message-box {
  font-size: 1.25rem;
  max-width: 300px;
  width: 100%;
  max-width: 600px;
  background-color: white;
  color: black;
  position: relative;
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}
.textbox-container {
  position: relative;
}

.message-box-wrapper {
  display: flex;
  justify-content: center;
}

.message-box .btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.7rem;
}
