@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,900&family=Varela+Round&display=swap');

.contactForm{
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}
.contactKarLo{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.contactForm .myContactForm{
    /* box-shadow: inset 0px 3px 3px 0px rgb(0 0 0 / 10%); */
    /* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.262); */
    box-shadow: 0 0 0 5px #77c5ec;
    outline: dashed 5px #e0727a;
    border-radius: 5px;
    margin: 30px 0;
    padding: 30px 30px 10px;
    width: fit-content;
    width: 50%;
    flex-basis: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    margin-right: 30px;
}
.contactForm .myContactForm h3{
    font-size: 40px;
    color: #2f2f2f;
    text-align: left;
    width: 100%;
    font-weight: lighter;
    font-family: 'Bubblegum Sans', cursive;
}
.myContactForm form{
    width: 100%;
    margin: 15px 0;
}
.formTitles{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
.formTitles .formGroup{
    flex-basis: 30%;
}
.formTitles input{
    padding: 10px 20px;
    width: 100%;
    margin: 20px 0;
    outline: none;
    font-size: 20px;
    font-family: 'Bubblegum Sans', cursive;
}
.myContactForm textarea{
    padding: 10px 20px;
    margin: 20px 0;
    outline: none;
    width: 100%;
    font-size: 20px;
    font-family: 'Bubblegum Sans', cursive;
    resize: none;
    
}
.myContactForm button{
    font-size: 15px;
    padding: 15px 25px;
    background: #008c99;
    border: none;
    cursor: pointer;
    color: #fff;
}
.myContactForm button:hover{
    background-color: #005961;
}
.contactDetails{
    margin-top: 50px;
    flex-basis: 40%;
    width: fit-content;
    height: 100%;
    background-color: grey;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.14);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}
.contactDetails h1{
    font-family: 'Bubblegum Sans', cursive;
    background-color: #008c99;
    padding: 15px 20px;
    color: #fff;
    font-size: 35px;
    font-weight: lighter;
    letter-spacing: 1px;
}
.contactDetails h1:hover{
    background-color: #005961;
}
.contactDet{
    background-color: #fff;
}
.contactSectionDet{
    display: flex;
    padding: 15px 20px;
    /* align-items: center; */
}
.contactSectionDet i{
    font-size: 20px;
    margin-top: 3px;
    color: #008c99;
    margin-right: 10px;
}
.contactSectionDet p{
    font-weight: lighter;
    font-size: 18px;
    /* font-family: 'Bubblegum Sans', cursive; */
    color: #2f2f2f;
}
.contactDet div{
    border-bottom: 1px solid rgba(0, 0, 0, 0.185);
}
.contactDet div:last-child{
    border-bottom: none;
}
.socialIcons {
    width: 100%;
}
.socialIcons h3{
    align-items: left;
    width: 100%;
}


@media only screen and (width <=1469px){
    .contactKarLo{
        width: 70%;
    }
}
@media only screen and (width <=1300px){
    .contactKarLo{
        width: 80%;
    }
}
@media only screen and (width <=1095px){
    .contactKarLo{
        width: 90%;
    }
}
@media only screen and (width <=1022px){
    .contactForm{
        margin: 20px 0;
    }
    .contactKarLo{
        width: 90%;
        flex-direction: column;
    }
    .contactForm .myContactForm{
        width: 100%;
    }
    .contactDetails{
        margin-top: 10px;
        width: 100%;
    }
}
@media only screen and (width <= 830px){
    .formTitles{
        flex-direction: column;
    }
    .contactForm .myContactForm h3{
        font-size: 30px;
    }
}
@media only screen and (width <= 450px){
    .contactForm .myContactForm h3{
        font-size: 25px;
    }
}
