iframe {
    width: 100%;
    height: 600px;
}


#form_content {
    background-color: #ffffff;
    padding: 3rem 1.5rem;
    justify-content: space-between;
}

#info_div {
    background-color: #d8ddee80;
}

#company_info {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0 3rem;
}

#company_info svg {
    width: 35px;
    height: 35px;
    background-color: #435AA0;
    border-radius: 50%;
}

form textarea {
    width: 100%;
    height: 200px;
    resize: none;
    border-radius: 6px;
    line-height: 1.5;
    padding: 5px 10px;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
    border: 2px solid #dee1e2;
    color: rgb(14, 14, 16);
    background: #dee1e2;
}

form input {
    width: 100%;
    border-radius: 6px;
    line-height: 1.5;
    padding: 5px 10px;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
    border: 2px solid #dee1e2;
    color: rgb(14, 14, 16);
    background: #dee1e2;
}

form textarea:hover,
form input:hover {
    border-color: #ccc;
}

form textarea:focus,
form input:focus {
    outline: none;
    border-color: #9147ff;
    background: #fff;
}

.form_btn {
    width: 100%;
    text-align: center;
}

form button {
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color, border-color, color, box-shadow, filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    width: 60%;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 16px 14px 18px;
    color: #616467;
    box-shadow: inset 0 0 0 2px #616467;
    background-color: transparent;
    height: 48px;
}

form button:hover {
    color: #fff;
    background-color: #9147ff;
    box-shadow: none;
}

.contact_container {
    width: 100%;
    height: 100%;
    position: relative;
}

#wave-bg {
    width: 100%;
    height: 110%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.main_content{
    margin-top: 10rem;
    padding: 5rem 8rem;
    background-color: #f0f0f0e4;
}


.main_content h2 span {
    color: transparent;
    background: #666666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    text-shadow: 0px 3px 3px rgba(255, 255, 255, 0.5);
}

.info_content{
    width: 30%;
}

.info_content .col-md-2 svg{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info_content .card{
    width: 100%;
    padding: 2.5rem 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    color: #0000009c;
    border: 1px solid #616467;
}

.info_content .card-title{
    font-size: 24px;
    font-weight: 600;
}

.info_content .card-text{
    font-size: 16px;
    font-weight: 600;
    margin-top: 1rem;
}


@media (max-width: 992px) {
    .main_content{
        padding: 5rem 1rem;
    }
}

@media (max-width: 768px) {
    .info_content{
        width: 100%;
    }
    .info_content .card-title{
        font-size: 20px;
    }
}