@font-face {
  font-family: "Unageo Regular";
  src: url(./fonts/Unageo-Regular.ttf);
}

@font-face {
  font-family: "Unageo Medium";
  src: url(./fonts/Unageo-Medium.ttf);
}

@font-face {
  font-family: "Unageo SemiBold";
  src: url(./fonts/Unageo-Semibold.ttf);
}

@font-face {
  font-family: "UltimaPro";
  src: url(./fonts/UltimaPro.otf);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


body{
    font-family: "Unageo Regular";
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F4ED;
}

.logo{
    height: 120px;
}

.container{
    max-width: 640px;
    margin: 0 auto;
}

.logo-side{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form{
  width: 100%;
}

.about-text{
    font-size: 18px;
    line-height: 24px;
    color: #5c5c5c;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    border-top: 5px solid #341BC2;
}
.about-text *{
    font-size: 18px;
    line-height: 24px;
    color: #5c5c5c;
}
.input-field{
  border-top: 5px solid #341BC2;
    margin-top: 24px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.input-field-btn{
    margin-top: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-field-btn .contact_form_btn{
    border-radius: 12px;
    padding: 10px 20px;
    background-color: #341BC2;
    color: #fff;
    display: flex;    
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.input-field h3{
    font-size: 24px;
    line-height: 36px;
}

.input-field input[type="text"],
.input-field input[type="tel"],
.input-field input[type="date"],
.input-field input[type="email"]{
    width: 100% !important;
    height: 40px;
    border: none;
    /* padding: 0 0 0 12px; */
    border-radius: 12px;
    border: 1px solid #5339e4;
}

.error-span{
    color: #B00020;
    font-size: 12px;
    line-height: 16px;
}

.input-field-gender{
    display: flex;
    align-items: center;
    gap: 36px;
}

.input-field-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #00000039;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-box{
  background-color: #F9FAFB;
  border-radius: 16px;
  max-width: 517px;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-box .close-modal{
  cursor: pointer;
  align-self: flex-end;
}

.modal-box h2{
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
  font-family: "Unageo Medium";
}

.modal-box .modal-text{
  font-size: 16px;
  line-height: 24px;
}

.svg-box{
  height: 476.49px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-box img{
  /* height: 100%; */
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.svg-box-text{
  position: absolute;
  left: 58%;
  top: 47%;
  transform: translate(-50%, -50%);
  font-size: 31.955px;  
  font-family: 'UltimaPro';
  rotate: 2.227deg;
  color: #282828;
}

@media only screen and (max-width:768px) {
    body{
        padding: 20px 16px;
    }
    .svg-box-text{
      left: 41%;
      top: 45%;
      font-size: 22px;
      transform: rotate(2deg);
    }

    .input-field h3{
      font-size: 20px;
      line-height: 1;
    }
}