*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
::-webkit-scrollbar {
    width: 0;
}
body
{
    height: 100vh;
}
footer
{
    position: fixed;
    bottom: 8px;
    text-align: center;
    width: 100%;
}
footer img
{
    height: 25px;
}
footer a
{
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 250px;
    margin: auto;
}
footer a::after
{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: -7px;
    width: 0;
    height: 4px;
    border-radius: 20px;
    background-color: white;
    transition: 0.35s;
    margin: auto;
    opacity: 0;
}
footer a:hover::after
{
    width: 100%;
    bottom: -2px;
    opacity: 1;
}
footer a:active::after
{
    bottom: 100%;
}
@media (max-width:800px)
{
    footer a:active::after
    {
        bottom: -2px;
    }
}
.contactform
{
    padding-top: 40px;
    display: flex;
    justify-content: center;
}
form
{
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
form h1
{
    text-align: center;
    padding-bottom: 10px;
}
.inputBx
{
   position: relative;
   width: 100%;
   overflow: hidden;
}
.txtBox
{
    height: 120px;
}
textarea
{
    width: 100%;
    outline: 2px solid transparent;
    border: 2px solid rgb(255,255,255,0.2);
    border-radius: 10px;
    background-color: rgb(255,255,255,0.25);
    color: white;
    font-weight: 500;
    font-size: 1em;
    transition: 0.4s;
    height: 120px;
    max-height: 195px;
    resize: none;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 21px 10px 5px;
    backdrop-filter: blur(10px);
}
textarea:focus
{
   border-color: rgba(255,255,255,0.45);
}
textarea::placeholder
{
   font-style: normal;
   color: rgb(161, 161, 161);
}
textarea::-webkit-scrollbar
{
   width: 9px;
   background-color: transparent;
}
textarea::-webkit-scrollbar-thumb
{
   background-color: rgba(0, 0, 0, 0.35);
   border-radius: 10px;
}
.inputBx input
{
   position: relative;
   width: 100%;
   background-color: rgba(255,255,255,0.25);
   border-radius: 10px;
   border: none;
   outline: none;
   padding: 26px 10px 5px;
   color: white;
   font-weight: 500;
   font-size: 1em;
   border: 2px solid rgb(255,255,255,0.2);
   transition: 0.4s;
   backdrop-filter: blur(10px);
}
.inputBx input:focus
{
    border-color: rgba(255,255,255,0.45);
}
.inputBx input[type="date"],
.inputBx input[type="time"]
{
    color: transparent;
    transition: 0.3s;
}
.inputBx input:focus,
.inputBx input:valid
{
    color: white;
}
.inputBx input[name="phone"]
{
    padding-left: 32px;
}
.inputBx g
{
   position: absolute;
   left: 0;
   padding: 19px 12px;
   font-style: normal;
   color: white;
   transition: 0.15s;
   pointer-events: none;
   font-size: 22px;
   opacity: 0;
   transition: 0.3s;
   transform: translate(-20px,3px);
}
.inputBx i
{
   position: absolute;
   left: 0;
   padding: 15px 10px;
   font-style: normal;
   color: rgb(220,220,220);
   transition: 0.15s;
   pointer-events: none;
   font-size: 24px;
   transform: translateY(-3px);
   font-weight:bold;
}
.inputBx input:focus ~ i,
.inputBx input:valid ~ i,
.inputBx textarea:focus ~ i,
.inputBx textarea:valid ~ i
{
   font-weight:bold;
   transform: translateY(-10px);
   font-size: 0.88em;
   transition: 0.3s;
}
.inputBx input:focus ~ g,
.inputBx input:valid ~ g,
.inputBx textarea:focus ~ g,
.inputBx textarea:valid ~ g
{
    transform: translate(1px,3px);
    opacity: 1;
}
.inputBx select
{
    position: relative;
    width: 100%;
    background-color: rgba(255,255,255,0.25);
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 9px 10px;
    color: white;
    font-weight: 500;
    font-size: 1.4em;
    font-weight: bold;
    border: 2px solid rgb(255,255,255,0.2);
    transition: 0.4s;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}
.inputBx select option
{
    background-color: rgba(0,0,0,0.4);
}
.inputBx input:focus,
.inputBx select:focus
{
    border-color: rgba(255,255,255,0.45);
}
.links
{
   position: relative;
   width: 100%;
   display: flex;
   justify-content: space-between;
   transition: 0.5s;
}
.links a
{
   color: white;
   text-decoration: none;
}
.links a::after
{
   content: '';
   display: block;
   margin: auto;
   margin-top: 1px;
   width: 0;
   height: 3px;
   background-color: white;
   border-radius: 50px;
   transition: 0.35s;
}
.links a:hover::after
{
   content: '';
   margin: auto;
   margin-top: 1px;
   width: 98%;
   height: 3px;
   background-color: white;
   border-radius: 50px;
   transition: 0.35s;
}
.links a:nth-child(2)
{
   color: #007aff;
   font-weight: 600;
}
.links a:nth-child(2):after
{
   content: '';
   display: block;
   margin: auto;
   margin-top: 1px;
   width: 0;
   height: 3px;
   background-color: #007aff;
   border-radius: 50px;
   transition: 0.35s;
}
.links a:nth-child(2)::after
{
   content: '';
   display: block;
   margin: auto;
   margin-top: 1px;
   width: 0;
   height: 3px;
   background-color: #007aff;
   border-radius: 50px;
   transition: 0.35s;
}
.links a:nth-child(2):hover::after
{
   content: '';
   display: block;
   margin: auto;
   margin-top: 1px;
   width: 98%;
   height: 3px;
   background-color: #007aff;
   border-radius: 50px;
   transition: 0.35s;
}
.inputBx .submit
{
   padding: 10px;
   background-color: rgb(255, 255, 255,0.4);
   border: 2px solid rgba(255,255,255,0.2);
   color: white;
   font-weight: 600;
   font-size: 1.3em;
   cursor: pointer;
   transition: 0.3s;
   margin-bottom: 16px;
   display: block;
   text-decoration: none;
   width: 100%;
   border-radius: 10px;
   transition: 0.3s;
   font-size: 25px;
   text-align: center;
   backdrop-filter: blur(10px);
}
.inputBx .submit i
{
    transform: translateY(-8px);
}
.inputBx .submit:hover
{
   border-color: rgba(255,255,255,0.45);
   background-color: rgb(255, 255, 255,0.5);
}
.inputBx .submit:active
{
    background-color: rgb(255, 255, 255,0.6);
}
.content
{
    height: 100svh;
}
.back-video
{
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -2;
    width: 100%;
    height: 100svh;
    object-fit: cover;
}
.back-video-mask {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    width: 100%;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0.7);
}
@media (max-aspect-ratio: 16/9)
{
    .back-video
    {
        width: auto;
        height: 100%;
    }
  .inputBx textarea
  {
    backdrop-filter:blur(2px);
    background: rgba(255,255,255,0.2);
  }
  .inputBx input
  {
    backdrop-filter:blur(2px);
    background: rgba(255,255,255,0.2);
    
  }
  .inputBx .submit
  {
    backdrop-filter:blur(2px);
    background: rgba(255,255,255,0.2);
    
  }
}
@media (max-width:800px)
{
    form
    {
        width: 92%;
    }
}
@media (max-width:389px) {
    form h1
    {
        font-size: 24px;
    }
    .inputBx i
    {
        font-size: 19px;
        transform: translateY(0px);
    }
    .inputBx .submit
    {
        font-size: 22px;
    }
}