﻿body {
}

* {
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
}
.img-size{
    width:200px;
}
.img-size2 {
    width: 120px;
}
.img-size2 img{
    width: 100%;
}
.img-size img{
    width: 100%;
}
.details-parent{
    display:flex;
    justify-content:space-around;

}
.container {
    max-width: 1440px;
    margin: 0px auto;
}
.header-logo{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.main-title {
    font-size:30px;
    color: #ad833b;
    width: fit-content;
    margin: 10px auto 20px auto;
    background-color: #f8f8f8;
    padding: 10px 20px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
    border-bottom: 2px solid #ad833b;
}

.content-box {
    padding: 0px 20px 10px 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
    width: 46%;
    text-align:center;
}
.subtitle-h3 {
    border-bottom: 2px solid #ad833b;
    font-weight: bold;
    color: #ad833b;
    background-color: white;
    margin-top: 30px;
    margin-bottom: 15px;
    width:fit-content;
   
}
.date-style {
    color: #1e8ddf;
    font-weight: 600;
}
.ar-dir{
    direction:rtl;
    text-align:right
}
    .ar-dir .subtitle-h3 {
        position: relative;
        right: -20px;
        padding-left: 20px;
    }
.en-dir{
    direction:ltr;
    text-align:left;
}
    .en-dir .subtitle-h3 {
        padding-right: 20px;
       
        position: relative;
        left: -20px;
    }
@media screen and (max-width: 900px) {
    .details-parent {
        display: flex;
        flex-wrap:wrap;
        flex-direction:column-reverse;
    }
    .content-box {
        width: fit-content;
        margin-bottom: 20px;
    }
    .main-title {
        font-size: 1.4rem;
    }
}


/*new file*/
.form-container{

    margin: 0px auto;
    width: 1200px;
    padding: 40px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    border: 2px solid #bf9e66;
    box-shadow: 8px 7px 13px 0px rgba(137,137,137,0.75);
    -webkit-box-shadow: 8px 7px 13px 0px rgba(137,137,137,0.75);
    -moz-box-shadow: 8px 7px 13px 0px rgba(137,137,137,0.75);
}
.new-form-style {
    background: #f0f0f0;
    border: 1px solid black;
    width: fit-content;
    margin: 0px auto;
    padding: 10px 30px;
    border-radius: 20px;
}

.new-form-style .part {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

    .new-form-style .part:last-of-type {
        align-items: flex-start;
    }

    .new-form-style .part label {
        background: #d3d3d3;
        border-radius: 4px 4px 0px 0px;
        font-weight: bold;
        padding: 5px 20px;
    }

    .new-form-style .part input {
        height: 40px;
        border: none;
        border-radius: 3px 3px 0px 0px;
        border-bottom: 3px solid #bf9e66;
        transition: 0.5s;
        font-size:1rem;
    }

        .new-form-style .part input:focus {
            outline: 1px solid #ffc861;
            padding-right: 5px;
            padding-left: 5px;
        }
    .new-form-style .part{
        border:none;
    }
        .new-form-style .part textarea {
            min-width: 400px;
            font-size: 1rem;
        }

    .new-form-style .submit-btn {
        min-width: 300px;
        height: 50px;
        display: block;
        font-size: 1.5rem;
        margin: 0px auto;
        background-color: #bf9e66;
        color: white;
        transition: 0.5s;
        border: none;
        border-radius: 5px;
        box-shadow: 3px 2px 13px 0px rgba(137,137,137,0.75);
        -webkit-box-shadow: 3px 2px 13px 0px rgba(137,137,137,0.75);
        -moz-box-shadow: 3px 2px 13px 0px rgba(137,137,137,0.75);
        cursor:pointer
    }

        .new-form-style .submit-btn:hover {
            background-color: #d3a657;
        }

@media screen and (max-width: 667px) {
    .new-form-style .part {
        flex-direction: column;
    }

        .new-form-style .part input, textarea {
            min-width: 100% !important;
        }

        .new-form-style .part label {
            margin: 5px 0px;
        }
   
}

@media screen and (max-width: 1200px) {
    .form-container {
        width: 100%;
        padding: 20px 5px;
    }

}

.text-center{
    text-align:center;
}