/* Contact Complete Page Specific Styles */

/* Completion Section */
.completion-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.completion-container {
     width: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url(../images/intro_bg.jpg);
    mix-blend-mode: multiply;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    background-size: 100% auto;
	margin: 0 0 100px 0;
    text-align: center;
}

.completion-container h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
    width: 100%;
    max-width: 1170px;
}

.completion-message {
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    width: 100%;
    max-width: 1170px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.completion-message p {
    margin: 0 0 1em 0;
}



/* Final Message Section */
.final-message-section {
    padding: 100px 0 200px 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url(../images/contact_bg.jpg);
    mix-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-message-container {
    max-width: 1170px;
    display: flex;
    justify-content: flex-end;
    padding: 0 30px;
    width: 100%;
}

.final-message-container p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.8;
    text-align: right;
}
.contact-section{
	display: none;
}

/* Contact Complete Page Responsive Design */
@media (max-width: 1200px) {
    .final-message-section {
        padding: 0 30px;
    }
    
  
}

@media (max-width: 768px) {
    .completion-container h2 {
        font-size: 28px;
    }
    
    .completion-message {
        font-size: 16px;
    }
    
    .final-message-container p {
        font-size: 20px;
    }
	.final-message-container {
  max-width: 1170px;
  display: flex;
  justify-content: flex-end;
  padding: 60px 30px 24vw;
  width: 100%;
}
    .final-message-container p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .completion-container h2 {
        font-size: 24px;
    }
    
    .completion-message {
        font-size: 16px;
    }
    .final-message-container p {
        font-size: 1rem;
		 text-align: center;
		 width: 100%;
    }
	  .final-message-container {
    padding: 60px 0px 45vw;
    width: 100%;
		 
  }
}
@media (min-width: 769px) {
	.lg-br{
		display: none;
	}
	}
@media (min-width: 481px) {
	.md-br{
		display: none;
	}
	}
@media (max-width: 480px) {
	.sm-br{
		display: none;
	}
	}