@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap');
* {
    font-family: 'Poppins';
}
.titleSection {
    padding: 20px 20px;
}
.heading {
    font-family: 'Arapey';
    font-size: 120px;
}
.subHeading {
    font-family: 'Poppins';
    font-size: 30px;
}
.isVisible {
    animation: appear 1s;
    opacity: 1;
}
.animate {
    opacity: 0;
    animation-fill-mode: forwards;
}
.section {
    margin: 0 200px 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.section .heading {
    font-family: 'Arapey';
    font-size: 120px;
    margin: 0;
}
.section p {
    font-size: 20px;
    margin: 30px 0;
    text-align: center;
}
.section .img {
    overflow: hidden;
    height: 370px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px #00000020;
}
.section .img img {
    border-radius: 10px;
}
.contactsSection {
    height: 100%;
    width: 100%;
    margin: 20px;
}
.contactUsSection {
    height: min-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    background-color: #ffffff25;
    box-shadow: 5px 5px 50px #00000001;
}
.contactDetails {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact {
    padding: 50px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact .heading {
    font-size: 70px;
}
.contact .subHeading {
    font-size: 20px;
}
.contact a {
    color: #000000;
}
.contact {
    text-align: center;
}
.contactFormSection {
    background-color: #ffffff50;
}
.contactForm .heading {
    font-size: 50px;
    margin-bottom: 30px;
}
form {
    display: flex;
    flex-direction: column;
    align-items: end;
}
form input, form textarea {
    border-radius: 10px;
    border: 1px #00000050 solid;
    background-color: transparent;
    max-width: 500px;
    padding: 10px;
    margin: 10px;
    width: 100%;
    transition: 0.25s ease-in-out;
}
form input:hover, form textarea:hover {
    border: 1px #0000009a solid;
    scale: 1.01;
}
form input:focus, form textarea:focus {
    outline: none;
    border: 1px #0000009a solid;
    scale: 1.01;
}
form textarea {
    min-width: 500px;
    min-height: 200px;
    max-height: 200px;
}
form .name {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
form .submitBtn {
    background-color: #000000;
    border-radius: 10px;
    color: #ffffff;
    width: min-content;
    height: min-content;
    padding: 10px 30px;
    margin-top: 30px;
    cursor: pointer;
}
form .submitBtn:hover {
    scale: 1.01;
    box-shadow: 5px 5px 20px #00000020;
}
@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}