@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: kalameh;
}

body {
    background-color: #1A374D;
}

/* CONTACTUS START */

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin: 10px 0;
}

.home-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1200px;
    gap: 20px;
}

.home-rast,
.home-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 264px;
    top: 10px;
    position: sticky;
}

.home-vasat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 633px;
    padding: 10px;
    border-radius: 10px;
    background-color: #172f3f;
    border: 2px solid #172f3f;
}

.contact-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    gap: 10px;
    color: white;
    background-color: #1A374D;
    font-size: 18px;
}

.contact-title i {
    color: royalblue;
    font-size: 20px;
    padding: 12px;
    background-color: #172f3f;
    border-radius: 5px;
}

.home-vasat form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #1A374D;
}

.home-vasat form input,
.home-vasat form textarea {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #172f3f;
    border: 2px solid royalblue;
    resize: none;
    outline: none;
    color: white;
}

.home-vasat form input::placeholder,
.home-vasat form textarea::placeholder {
    color: rgb(200, 200, 200);
    text-align: right;
}

.home-vasat form textarea {
    height: 150px;
}

.home-vasat form input[type="submit"] {
    background-color: royalblue;
    cursor: pointer;
    transition: all .5s;
}

.home-vasat form input[type="submit"]:hover {
    background-color: rgb(30, 80, 220);
}

.contact-warn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: white;
    font-size: 14px;
}

.contact-warn p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.contact-warn p span {
    color: red;
}

/* CONTACTUS END */










/* RESPONSIVE START */

@media screen and (max-width:460px) {

    .home-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .home-vasat {
        width: 100%;
    }

    .home-rast,
    .home-chap {
        position: unset;
        width: 100%;
    }

    .home-rast {
        order: 2;
    }

    .home-chap {
        order: 1;
    }

    .contact-warn{
        font-size: 8px;
    }

}

@media screen and (min-width:461px) and (max-width:1220px) {

    .home-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .home-vasat {
        width: 100%;
    }

    .home-rast,
    .home-chap {
        position: unset;
        width: 100%;
    }

    .home-rast {
        order: 2;
    }

    .home-chap {
        order: 1;
    }

}

/* RESPONSIVE END */