/* Extra small devices (phones, 360px and down) max-width: 360; */
.loading {
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 998;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.3);
  top: 0;
}
.loading .loading_wrapper {
  width: 75px;
  height: 75px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_wrapper .outer_svg {
  position: absolute;
  animation: icon_rotate1 linear 2.5s infinite;
}
.loading .loading_wrapper .inner_svg {
  position: absolute;
  animation: icon_rotate2 linear 1.5s infinite;
}

.loading_show {
  display: flex;
}

@keyframes icon_rotate1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes icon_rotate2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.alert {
  max-width: 360px;
  position: fixed;
  height: 100vh;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  z-index: 999;
  padding-top: 48px;
}
.alert .message_box {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 64px 0;
}
.alert .message_box .check {
  margin-bottom: 32px;
  height: 64px;
  width: 64px;
}
.alert .message_box .ms {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.alert .message_box .message {
  font-size: 1rem;
  text-align: center;
  width: 80%;
}
.alert .message_box .ok_btn {
  margin-top: 32px;
  width: 140px;
  height: 40px;
  background: #4F0C16;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: ease-in-out 0.2s;
  box-shadow: 4px 4px 0px #909090;
}
.alert .message_box .ok_btn span {
  font-size: 1rem;
  color: #FFFFFF;
}
.alert .message_box .ok_btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px #909090;
}

.alert_show {
  display: flex;
}

.contact {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}
.contact .contact_container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
}
.contact .contact_container .row1 {
  width: 100%;
  height: 100%;
}
.contact .contact_container .row1 form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.contact .contact_container .row1 form .tittle {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.contact .contact_container .row1 form .text_input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact .contact_container .row1 form .text_input span {
  font-size: 1rem;
  font-weight: 600;
}
.contact .contact_container .row1 form .text_input input {
  height: 40px;
  border: 2px solid #B3B3B3;
  border-radius: 8px;
  padding: 8px;
  font-size: 1rem;
  outline: none;
  font-family: "Poppins", sans-serif;
}
.contact .contact_container .row1 form .text_input textarea {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #B3B3B3;
  font-size: 1rem;
  min-height: 100px;
  height: 100%;
  overflow: hidden;
  outline: none;
  resize: none;
  padding: 10px;
  font-family: "Poppins", sans-serif;
}
.contact .contact_container .row1 form .send_btn {
  width: 200px;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #4F0C16;
  border-radius: 12px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: ease-in-out 0.3s;
  box-shadow: 4px 4px 0px #909090;
}
.contact .contact_container .row1 form .send_btn span {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
}
.contact .contact_container .row1 form .send_btn svg {
  height: 30px;
}
.contact .contact_container .row1 form .send_btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #909090;
}
.contact .contact_container .row1 form .disable {
  pointer-events: none;
}
.contact .contact_container .row2 {
  display: none;
  height: 100%;
  transform-style: preserve-3d;
  animation: flip 1s ease-in-out;
}
.contact .contact_container .row2 svg {
  height: 100%;
}

/* small devices (phones,  360px and up) max-width: 600;  */
@media only screen and (min-width: 360px) {
  .alert {
    max-width: 600px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 48px;
  }
  .alert .message_box {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .contact {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 48px;
  }
  .contact .contact_container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 64px 0;
  }
  .contact .contact_container .row1 {
    width: 100%;
    height: 100%;
  }
  .contact .contact_container .row1 form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .contact .contact_container .row1 form .tittle {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .contact .contact_container .row1 form .text_input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact .contact_container .row1 form .text_input span {
    font-size: 1rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .text_input input {
    height: 40px;
    border: 2px solid #B3B3B3;
    border-radius: 8px;
    padding: 8px;
    font-size: 1rem;
    outline: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .text_input textarea {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #B3B3B3;
    font-size: 1rem;
    min-height: 100px;
    height: 100%;
    overflow: hidden;
    outline: none;
    resize: none;
    padding: 10px;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .send_btn {
    width: 200px;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4F0C16;
    border-radius: 12px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    box-shadow: 4px 4px 0px #909090;
  }
  .contact .contact_container .row1 form .send_btn span {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .send_btn svg {
    height: 30px;
  }
  .contact .contact_container .row1 form .send_btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #909090;
  }
  .contact .contact_container .row2 {
    display: none;
    height: 100%;
    transform-style: preserve-3d;
    animation: flip 1s ease-in-out;
  }
  .contact .contact_container .row2 svg {
    height: 100%;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) max-width: 768px;  */
@media only screen and (min-width: 600px) {
  .alert {
    max-width: 768px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 48px;
  }
  .alert .message_box {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .contact {
    max-width: 768px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 48px;
  }
  .contact .contact_container {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 64px 0;
  }
  .contact .contact_container .row1 {
    width: 100%;
    height: 100%;
  }
  .contact .contact_container .row1 form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .contact .contact_container .row1 form .tittle {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .contact .contact_container .row1 form .text_input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact .contact_container .row1 form .text_input span {
    font-size: 1rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .text_input input {
    height: 40px;
    border: 2px solid #B3B3B3;
    border-radius: 8px;
    padding: 8px;
    font-size: 1rem;
    outline: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .text_input textarea {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #B3B3B3;
    font-size: 1rem;
    min-height: 100px;
    height: 100%;
    overflow: hidden;
    outline: none;
    resize: none;
    padding: 10px;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .send_btn {
    width: 200px;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4F0C16;
    border-radius: 12px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    box-shadow: 4px 4px 0px #909090;
  }
  .contact .contact_container .row1 form .send_btn span {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .send_btn svg {
    height: 30px;
  }
  .contact .contact_container .row1 form .send_btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #909090;
  }
  .contact .contact_container .row2 {
    display: none;
    height: 100%;
    transform-style: preserve-3d;
    animation: flip 1s ease-in-out;
  }
  .contact .contact_container .row2 svg {
    height: 100%;
  }
}
/* Medium devices (landscape tablets, 768px and up) max-width: 992px;  */
@media only screen and (min-width: 768px) {
  .alert {
    max-width: 992px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 64px;
  }
  .alert .message_box {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .contact {
    max-width: 992px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 48px;
  }
  .contact .contact_container {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 82px 0;
  }
  .contact .contact_container .row1 {
    width: 300px;
    height: auto;
  }
  .contact .contact_container .row1 form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
  .contact .contact_container .row1 form .tittle {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 2.5rem;
  }
  .contact .contact_container .row1 form .text_input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact .contact_container .row1 form .text_input span {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .text_input input {
    height: 40px;
    border: 2px solid #B3B3B3;
    border-radius: 8px;
    padding: 8px;
    font-size: 1rem;
    outline: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .text_input textarea {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #B3B3B3;
    font-size: 1rem;
    min-height: 64px;
    height: 64px;
    overflow: hidden;
    outline: none;
    resize: none;
    padding: 10px;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .send_btn {
    width: 220px;
    height: 54px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4F0C16;
    border-radius: 16px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    box-shadow: 4px 4px 0px #909090;
  }
  .contact .contact_container .row1 form .send_btn span {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .send_btn svg {
    height: 30px;
  }
  .contact .contact_container .row1 form .send_btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #909090;
  }
  .contact .contact_container .row2 {
    display: flex;
    height: 500px;
    transform-style: preserve-3d;
    animation: flip 1s ease-in-out;
  }
  .contact .contact_container .row2 svg {
    height: 100%;
  }
}
/* Large devices (laptops/desktops, 992px and up) max-width: 1200px;  */
@media only screen and (min-width: 992px) {
  .alert {
    max-width: 1200px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 80px;
  }
  .alert .message_box {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .contact {
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
  }
  .contact .contact_container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 82px 0;
  }
  .contact .contact_container .row1 {
    width: 420px;
    height: 700px;
  }
  .contact .contact_container .row1 form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
  .contact .contact_container .row1 form .tittle {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 3rem;
  }
  .contact .contact_container .row1 form .text_input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact .contact_container .row1 form .text_input span {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .text_input input {
    height: 40px;
    border: 2px solid #B3B3B3;
    border-radius: 8px;
    padding: 8px;
    font-size: 1.2rem;
    outline: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .text_input textarea {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #B3B3B3;
    font-size: 1.2rem;
    min-height: 120px;
    height: 120px;
    overflow: hidden;
    outline: none;
    resize: none;
    padding: 10px;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .send_btn {
    width: 280px;
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4F0C16;
    border-radius: 16px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    box-shadow: 4px 4px 0px #909090;
  }
  .contact .contact_container .row1 form .send_btn span {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .send_btn svg {
    height: 30px;
  }
  .contact .contact_container .row1 form .send_btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #909090;
  }
  .contact .contact_container .row2 {
    display: flex;
    height: 700px;
    transform-style: preserve-3d;
    animation: flip 1s ease-in-out;
  }
  .contact .contact_container .row2 svg {
    height: 100%;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) max-width: 100%;  */
@media only screen and (min-width: 1200px) {
  .alert {
    max-width: 100%;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 80px;
  }
  .alert .message_box {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .contact {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
  }
  .contact .contact_container {
    width: 1180px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 82px 0;
  }
  .contact .contact_container .row1 {
    width: 480px;
    height: 800px;
  }
  .contact .contact_container .row1 form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
  }
  .contact .contact_container .row1 form .tittle {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 3rem;
  }
  .contact .contact_container .row1 form .text_input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact .contact_container .row1 form .text_input span {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .text_input input {
    height: 40px;
    border: 2px solid #B3B3B3;
    border-radius: 8px;
    padding: 8px;
    font-size: 1.2rem;
    outline: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .text_input textarea {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #B3B3B3;
    font-size: 1.2rem;
    min-height: 100px;
    height: 240px;
    overflow: hidden;
    outline: none;
    resize: none;
    padding: 10px;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact_container .row1 form .send_btn {
    width: 280px;
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4F0C16;
    border-radius: 16px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    box-shadow: 4px 4px 0px #909090;
  }
  .contact .contact_container .row1 form .send_btn span {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .contact .contact_container .row1 form .send_btn svg {
    height: 30px;
  }
  .contact .contact_container .row1 form .send_btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #909090;
  }
  .contact .contact_container .row2 {
    display: flex;
    height: 800px;
    transform-style: preserve-3d;
    animation: flip 1s ease-in-out;
  }
  .contact .contact_container .row2 svg {
    height: 100%;
  }
}
@keyframes flip {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0);
  }
}/*# sourceMappingURL=contact.css.map */