/* Import google fonts */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Playfair+Display&display=swap");

/* Project wide */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #333333;
  min-height: 100vh;
  position: relative;
  font-family: "Josefin Sans", sans-serif;
}

a {
  text-decoration: none;
}

a:visited {
  color: #ffffff;
}

.box-shadow {
  box-shadow: 13px 13px 22px 3px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 13px 13px 22px 3px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 13px 13px 22px 3px rgba(0, 0, 0, 0.65);
}

.container-row,
.btn,
.img-container,
.container-col,
.section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-col,
.section {
  flex-direction: column;
}

.section {
  width: 100%;
  background: #f5f5f5;
  padding: 100px 0;
}

.section-container {
  width: 1400px;
}

.img-container {
  overflow: hidden;
  position: relative;
}

.img-100a {
  width: 100%;
  height: auto;
}

.dark-text {
  color: #333333;
  font-size: 1.4rem;
}

.white-text,
.nav-link {
  color: #ffffff;
  font-size: 1.4rem;
}

.heading {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Playfair Display", sans-serif;
}

.subheading {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Playfair Display", sans-serif;
  position: relative;
  margin-bottom: 10px;
}

.subheading::after {
  position: absolute;
  content: "";
  bottom: -15px;
  width: calc(100% + 30px);
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #af8c53;
}

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

.btn {
  font-size: 1.4rem;
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  width: 240px;
  border: none;
  text-align: center;
  cursor: pointer;
  border: 3px solid #af8c53;
}

.btn-2 {
  background-color: #836b44;
  border: 3px solid #836b44;
}

.sr-only {
  display: none !important;
}

.space-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.header-container {
  width: calc(100% - 100px);
  height: 100%;
}

.logo-container {
  gap: 5px;
}

.logo-img-container {
  width: 100px;
  height: 100px;
}

.logo-text-container {
  gap: 5px;
}

h1.logo-text {
  font-size: 2rem;
  text-transform: uppercase;
}

h2.logo-text {
  font-size: 1.2rem;
  font-weight: 400;
}

.nav-btn {
  cursor: pointer;
  width: 50px;
  height: 36px;
  justify-content: space-between;
}

.nav-btn .nav-btn-bar {
  width: 100%;
  height: 5px;
  border-radius: 20px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.nav-btn.active .nav-btn-bar.b1 {
  transform: rotate(-45deg) translateY(21px);
}

.nav-btn.active .nav-btn-bar.b3 {
  transform: rotate(45deg) translateY(-21px);
}

.nav-btn.active .nav-btn-bar.b2 {
  display: none;
}

.nav-menu-container {
  position: absolute;
  right: 0;
  top: 100px;
  width: 250px;
  height: 260px;
  overflow: hidden;
}

.nav-menu {
  position: relative;
  width: 250px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.4392156863);
  border-radius: 5px 0 0 5px;
  gap: 15px;
  transition: all 0.3s ease;
  transform: translateX(100%);
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease;
  content: "";
}

.nav-link:hover::after {
  width: 100%;
}

/* Footer */

footer {
  width: 100%;
  padding: 40px 0;
  background-color: #000000;
  border-top: 2px solid #af8c53;
}

footer .footer-container {
  width: calc(100% - 100px);
  height: 100%;
}

footer .right-container {
  gap: 10px;
  width: 350px;
  justify-content: flex-end;
}

footer .footer-nav-container {
  gap: 10px;
}

footer .footer-nav-container .container-col {
  gap: 10px;
}

footer .center-container {
  gap: 30px;
  width: 350px;
  justify-content: flex-start;
}

footer .center-container .container-col {
  gap: 10px;
  height: 100%;
}

footer .social-container {
  gap: 10px;
}

footer .social-container .white-text {
  font-size: 1.8rem;
}

footer .left-container {
  width: 350px;
  align-items: flex-end;
}

footer .left-container .imgs-container {
  gap: 10px;
}

footer .left-container .img-container {
  width: 80px;
  height: 80px;
}

footer .left-container .img-container.logo-2 {
  background-color: #ffffff;
  border-radius: 10px;
}

footer .left-container {
  gap: 20px;
}

footer .footer-contact-info-container {
  gap: 20px;
}

footer .footer-contact-info-container .social-container {
  gap: 20px;
}

footer .footer-contact-info-container .social-container i {
  font-size: 2rem;
}

footer .center-container .container-col {
  gap: 20px;
}

@media (max-width: 1080px) {

  footer .left-container {
    order: 3;
    justify-content: flex-start;
  }

  footer .center-container {
    order: 2;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  footer .center-container .container-col {
    order: 2;
    align-items: center;
  }

  footer .right-container {
    order: 1;
    margin-bottom: 20px;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .section-container {
    width: 1000px;
  }

  .section {
    padding: 75px 0;
  }

  .white-text,
  .nav-link {
    font-size: 1.3rem;
  }

  .btn {
    font-size: 1.3rem;
  }

  .heading {
    font-size: 2.8rem;
  }

  .subheading {
    font-size: 1.8rem;
  }
}

@media (max-width: 1080px) {
  .section-container {
    width: 700px;
  }

  footer .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .white-text,
  .nav-link {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1.2rem;
  }

  .heading {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 1.7rem;
  }
}

@media (max-width: 1500px) {
  .section-container {
    width: 1000px;
  }

  .section {
    padding: 75px 0;
  }

  .white-text,
  .nav-link {
    font-size: 1.3rem;
  }

  .btn {
    font-size: 1.3rem;
  }

  .heading {
    font-size: 2.8rem;
  }

  .subheading {
    font-size: 1.8rem;
  }
}

@media (max-width: 1080px) {
  .section-container {
    width: 700px;
  }

  footer .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .white-text,
  .nav-link {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1.2rem;
  }

  .heading {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .section-container {
    width: 330px;
  }

  .section {
    padding: 50px 0;
  }

  .white-text,
  .nav-link {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 1.1rem;
  }

  .heading {
    font-size: 2.2rem;
  }

  .subheading {
    font-size: 1.5rem;
  }

  .logo-text-container {
    display: none;
  }

  .nav-menu-container {
    width: 100vw;
    height: calc(100vh - 100px);
  }

  .nav-menu {
    width: 100%;
    height: 100%;
    padding: 0;
    gap: 30px;
    border-radius: 0;
    background-color: rgba(38, 38, 38, 0.8901960784);
    align-items: center;
    justify-content: center;
  }

  .nav-link {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=base.css.map */

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Playfair+Display&display=swap");

.contact-section {
  background: rgb(83, 83, 83);
  background: linear-gradient(270deg, rgb(83, 83, 83) 20%, rgb(15, 15, 15) 73%);
  min-height: 100vh;
}

.contact-section .contact-info-container {
  width: 650px;
  gap: 50px;
}

.contact-section .main-info-container {
  position: relative;
}

.contact-section .line-container {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-section .line-container .dot {
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 50%;
}

.contact-section .line-container .line {
  width: 3px;
  height: 75px;
  background-color: #af8c53;
}

.contact-section .gold-text {
  color: #af8c53;
}

.contact-section .info-group {
  height: 100px;
  margin-left: 50px;
  gap: 5px;
}

.contact-section .social-container {
  gap: 10px;
  margin: 30px 0 0 50px;
}

.contact-section .social-container .white-text {
  font-size: 2.5rem;
}

.contact-section .contact-form-container {
  width: 650px;
  gap: 20px;
}

.contact-section form,
.contact-section fieldset {
  width: 500px;
  border: none;
}

.contact-section form {
  gap: 30px;
}

.contact-section fieldset {
  gap: 10px;
  position: relative;
}

.contact-section fieldset::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #af8c53;
  content: "";
}

.contact-section label {
  margin-left: 25px;
}

.contact-section .input {
  width: 100%;
  border-radius: 5px;
  padding: 15px 25px;
  color: #ffffff;
  border: none;
  background-color: transparent;
  font-size: 1.4rem;
}

.contact-section .input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section .input:focus {
  outline: none;
}

.contact-section .input-btn {
  width: 100%;
  border-radius: 5px;
  background-color: transparent;
}

.notification-container {
  display: none;
}

.notification-container .fa-icon {
  color: #af8c53;
  margin-right: 10px;
}

@media (max-width: 1500px) {

  .contact-section .contact-info-container,
  .contact-section .contact-form-container {
    width: 500px;
  }

  .contact-section form,
  .contact-section fieldset {
    width: 400px;
  }
}

@media (max-width: 1080px) {
  .contact-section {
    padding-top: 150px;
  }

  .contact-section .section-container {
    flex-direction: column-reverse;
    gap: 50px;
  }
}

@media (max-width: 768px) {

  .contact-section .contact-info-container,
  .contact-section .contact-form-container {
    width: 300px;
  }

  .contact-section form,
  .contact-section fieldset {
    width: 300px;
  }
}

/*# sourceMappingURL=contact.css.map */