* {
    font-family: 'Poppins', sans-serif !important;
    color: #232323 !important;
}

.cinzel {
    font-family: 'Cinzel', sans-serif !important;
}

.font-dark-gray {
    color: #232323 !important;
}

.font-light-gray {
    color: #6e6e6e !important;
}

.font-green {
    color: #9FE2BF !important;
}

.font-white {
    color: #fffff1 !important;
}

.background1 {
    background: linear-gradient(to right,#fff0c5, #fffff1) !important;
}

.bold1 {
    font-weight: 900 !important;
}

.size1 {
    font-size: 1rem !important;
}

.size2 {
    font-size: 0.8rem;
}

.size3 {
    font-size: 1.5rem !important;
}
@media (min-width: 768px) { 
    .size3 {
        font-size: 3.5rem !important;
    }
}


.talk-to-us {     
    border: 2px solid #232323 !important;
    color: #232323 !important;
    border-radius: 10px !important;
    background-color: transparent !important;
}

.blueprints-button {     
    border: 2px solid #232323 !important;
    color: #232323 !important;
    border-radius: 10px !important;
    background-color: #ffffffa2 !important;
    cursor: pointer !important;
}

.blueprints-button:hover {
    background-color: #fff0c5 !important;
    border: 2px solid #fff0c5 !important;
}

.videos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #fff0c5 !important;
    overflow: hidden;
    background: #fff0c5;
}

video {
    width: 100%;
    display: block;
}

.controls {
    position: absolute;
    bottom: 0px;
    left: 10%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #fffff18a;
    background: #000000a4; */
    /* border-radius: 5px;
    font-weight: bold; */
}

.controls button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    margin: 0 5px;
    cursor: pointer;
}

.controls button:hover {
    color: #ff0;
}

.profile-pic-div {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/profile-pic-min.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #fff0c5;
    border-radius: 40px;
    margin: auto;
    box-sizing: border-box;
    width: 80%;
    height: 50vh; 
}

.profile-pic {
    width: 100%;
}

.profile-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-text p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-name {
    font-size: 1rem;
}

.profile-quote {
    display: flex;
    flex-direction: row;
    margin: 2% 10%;
    text-align: center;
}

@media (min-width: 768px) { 
    .profile-area {
        margin: auto;
        width: 70%;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 50px;
    }

    .profile-pic-div {
        flex-basis: 50%;
        height: 450px; 
    }

    .profile-text {
        flex-basis: 50%;
        justify-content: start;
        align-items: start;    
    }

    .profile-text p {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        font-size: 1.2rem;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-quote {
        margin: 2% 0%;
        text-align: left;
    }
}

/* MODAL */

  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.705);
    padding-top: 40px;
  }
  
  .modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #fff0c5;
    width: 80%;
  }
  
  .close-button {
    color:rgb(252, 77, 77) !important;
    float: right;
    font-size: 38px;
  }
  
  .close-button:hover,
  .close-button:focus {
    color: #232323;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-image {
    max-width: 300px;
    max-height: 300px;
    margin: auto;
    text-align: center;
  }
  
  @media (min-width: 768px) { 
    .modal {
        padding-top: 0px;
        overflow: hidden;
    }

    .modal-content {
        margin: 2% auto;
        padding: 10px 20px;
        border: 1px solid #fff0c5;
        width: 40%;        
    }
}