@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: kalameh;
    scroll-behavior: smooth;
}

/* Contactus START */

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin: 50px 0 100px 0;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 1200px;
}

.contact-container form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 550px;
}

.contact-container .form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-container .form-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.contact-container .form-name input {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 2px solid #2c3f5d;
    padding: 10px 15px;
    border-radius: 10px;
}

.contact-container .form-subject {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-container .form-subject input {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 2px solid #2c3f5d;
    padding: 10px 15px;
    border-radius: 10px;
}

.contact-container .form-description {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-container .form-description textarea {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: 2px solid #2c3f5d;
    border-radius: 10px;
    width: 100%;
    padding: 10px 15px;
    resize: none;
    height: 150px;
}

.contact-container .form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-container .form-btn input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 15px;
    outline: none;
    color: white;
    background-color: #2c3f5d;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .5s;
}

.contact-container .form-btn input:hover {
    background-color: black;
}

.contact-chap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    width: 550px;
    height: 370px;
}

.contact-chap-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
}

.contact-chap-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2c3f5d;
    color: white;
    font-size: 20px;
}

.contact-chap-card-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.contact-chap-card-text p {
    color: black;
    font-size: 22px;
}

.contact-chap-card-text span {
    color: gray;
    font-size: 14px;
}

.contact-chap-card-text-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-chap-card-text-social a {
    text-decoration: none;
    color: #2c3f5d;
    font-size: 20px;
}

/* Contactus END */







/* Responsive START */

@media screen and (max-width:1100px) {

    .contact-container {
        width: 100%;
        flex-direction: column;
    }

    .contact-container form {
        width: 100%;
        max-width: 550px;
    }

    .contact-chap {
        width: 100%;
        max-width: 550px;
    }

}

@media screen and (min-width:1101px) and (max-width:1200px) {

    .contact-container {
        width: 100%;
    }

}

/* Responsive END */