html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.contact-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    min-height: 350px;
}

.contact-container div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 350px;
    text-align: center;
    padding-top: 100px;
}

.icon{
    background-color: #2ec396;
    border-radius: 50%;
    width: 2.3em;
    height: 2.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container div h1{
    font-weight: 600;
}

.contact-container div p{
    color: #2ec396;
}

.socials-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-height: 250px;
    margin-bottom: 50px;
}

.socials-container h1{
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons{
    display: flex;
    flex-direction: row;
    gap: 45px;
}

.map iframe{
    width: 100%;
    height: 500px
}

.contact-form{
    width:100%;
    border:none;
}

.contact-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.zoho-form{
    height: 1260px;
    width: 100%;
}

.contact-form h1{
    font-size: 40px;
    color: #2ec396;
    font-weight: 800;
    margin: 45px auto;
}

.social-icons a{
    color: white;
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 0px
    }
    .contact-container div{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}