:root{
    --color-myRed: #b50000;
    --color-myRedHover: #940d0d;
    --color-myGrey: #333;
    --color-myWhite: white;
    --color-myBlack: #222;
    --color-myBGwhite: whitesmoke;
    --font-myBody: 'century_gothicregular';
    --font-myHead: 'century_gothicbold';
}

@font-face {
    font-family: 'century_gothicregular';
    src: url('Fonts/gothic-webfont.woff2') format('woff2'),
         url('Fonts/gothic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'century_gothicbold';
    src: url('Fonts/gothicb-webfont.woff2') format('woff2'),
         url('Fonts/gothicb-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sarchia';
    src: url(Fonts/54_Sarchia_Kirkuk.ttf);
}


*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: var(--font-myBody);
    overflow-x: hidden;
    
}

h2{
    font-family: var(--font-myHead);
}

header{
    height: 70px;
    display: flex;
    align-items: center;
}

#navBG{
    background-color: var(--color-myWhite);
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 70px;
}

.navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
}

.nav-logo{
    display: flex;
    justify-content: left;
    position: relative;
    margin-left: 30%;
}

.nav-menu{
    list-style: none;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-right: 2%;
}

.nav-item{
    margin-left: 10px;
}

.nav-link{
    position: relative;
    text-decoration: none;
    color: var(--color-myBlack);
    display: inline-block;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    transform: scale(1);
	transition: transform ease-in-out 300ms;
}

.nav-link:hover{
    color: var(--color-myRed);
    transition: 0.5s;
    transform: scale(1.1);
    transition: transform ease-in-out 300ms;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-myRed);
}

.changeLang{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 150px;
    left: 0px;
    background-color: var(--color-myWhite);
    opacity: 50%;
    padding: 5px 30px 5px 0px;
    border-radius: 0px 50px 50px 0px;
}

.changeLang button{
    width: 100%;
    font-family: var(--font-myBody);
    font-weight: bolder;
    font-size: 16px;
    border: none;
    background-color: inherit;
    margin: 3px 10px;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    
}
.changeLang button:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    color: var(--color-myRed);
    cursor: pointer;
}

/*---------------All Sections Sizes---------------*/

.mainSection, .firstSection, .secondSection, .thirdSection,  .forthSection, .fifthSection, .sixthSection, .seventhSection{
    width: 100%;
    height: 695px;
}


/*---------------Main Section---------------*/

.mainSection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-myBlack);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.mainSection .homePics{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.mainSection .homePics .pics{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mainSection .homePics .pics img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainSection .homePics .pics:hover .picsDesc{
    opacity: 75%;
    cursor: pointer;
}

.mainSection .homePics .pics .picsDesc{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-myBlack);
    opacity: 0;
    transition: .5s ease;
}

.mainSection .homePics .pics .picsDesc .desc{
    color: var(--color-myWhite);
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.mainSection .info{
    position: absolute;
    bottom: 10%;
    width: 45%;
    max-height: 50%;
    padding: 20px 20px 80px 20px;
    color: var(--color-myWhite);
    text-align: center;
    font-size: 20px;
    z-index: 1;
    
}

.mainSection .info .mainHead{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.mainSection h2{
    margin: 20px 4px;
}

.mainSection .mainHead .Name1{
    color: var(--color-myRed);
    margin-right: 0px;
}

.mainSection .mainHead .Name2{
    margin-left: 0px;
    color: rgb(150, 150, 150);
}


/*---------------First Section---------------*/

.firstSection{
    display: flex;
    flex-direction: row;
    position: relative;
}

.firstSection .info{
    min-height: 250px;
    width: 40%;
    padding: 20px;
    border-radius: 10px;
    margin: auto 100px;
}

.firstSection .info h2{
    color: var(--color-myBlack); 
}

.firstSection .info p{
    color: var(--color-myBlack);
    font-size: 18px;
}

.firstSection .myAboutImg{
    width: 50%;
    margin: auto;
    position: relative;
    right: 50px;
}


/*----------------Second Section----------------*/

.secondSection{
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-myBlack);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondSection .workContent{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0px 100px;
    width: 100%;
}

.secondSection .allCards {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.secondSection .allCards .workCards{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--color-myWhite);
    flex-direction: column;
    cursor: pointer;
}

.secondSection .allCards .workCards .workImg{
    width: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}

.secondSection .allCards #One, #Two{
    border-right: 3px solid var(--color-myWhite);
    box-sizing: content-box;
}
.secondSection .allCards #Two, #Four{
    border-top: 1px solid var(--color-myWhite);
    box-sizing: content-box;
}

.secondSection .allCards .workCards:hover .workDesc{
    opacity: 70%;
    cursor: pointer;
    padding: 60px;
}

.secondSection .allCards .workCards .workDesc{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-myBlack);
    opacity: 0;
    transition: .5s ease;
    padding: 50px;
}

.secondSection .allCards .workCards .workDesc h2{
    font-size: 18px;
    position: relative;
}

.secondSection .allCards .workCards .workDesc p{
    font-size: 18px;
    text-align: justify;
}

.secondSection .info{
    min-height: 250px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
}

.secondSection .info p{
    color: var(--color-myWhite);
    font-size: 18px;
}

/*----------------Third Section----------------*/


.thirdSection{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thirdSection .MVinfo{
    width: 45%;
    text-align: justify;
    z-index: 1;
}

.thirdSection .MVinfo h2{
    margin: 0px 5%;
    color: var(--color-myRedHover);
}

.thirdSection .MVinfo p{
    color: var(--color-myBlack);
    margin: 20px 5%;
    font-size: 18px;
}

/*----------------Forth Section----------------*/

.forthSection{
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-myBlack);
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.forthSection .servInfo{
    color: var(--color-myWhite);
    width: 60%;
    margin-top: 150px;
}

.forthSection .line{
    width: 1px;
    height: 500px;
    background-color: var(--color-myWhite);
}

.forthSection .allCards {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 99%;
}

.forthSection .allCards .servCard{
    width: 20%;
    height: 50%;
    padding: 20px;
    color: var(--color-myWhite);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.forthSection .allCards .servCard img{
    width: 100%;
    height: 70%;
    margin-bottom: 30px;
    transition: ease-in-out 300ms;
    transform: scale(1);
}

.forthSection .allCards .servCard img:hover{
    transition: ease-in-out 300ms;
    transform: scale(1.1);
}

.forthSection .allCards .servCard h2{
    font-size: 20px;
    position: relative;
}

.forthSection .allCards .servCard p{
    margin-top: 20px;
    text-align: justify;
}


/*----------------Fifth Section----------------*/

.fifthSection{
    position: relative;
    display: flex;
}

.fifthSection .reachUsObj{
    width: 50%;
    text-align: justify;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fifthSection .reachUsObj .ReachImg{
    width: 50%;
    height: 50%;
}

.fifthSection .reachUsObj a{
    position: relative;
    text-decoration: none;
    color: var(--color-myRed);
    display: inline-block;
    margin: 20px;
    font-size: 20px;
    font-weight: 600;
    transform: scale(1);
	transition: transform ease-in-out 300ms;
}

.fifthSection .reachUsObj a:hover{
    color: var(--color-myRedHover);
    transition: 0.5s;
    transform: scale(1.1);
    transition: transform ease-in-out 300ms;
}

.fifthSection .reachUsObj p{
    color: var(--color-myBlack);
    margin: 20px 5%;
    font-size: 18px;
}


/*----------------Sixth Section----------------*/

.sixthSection{
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-myBlack);
    border-radius: 10px;
    position: relative;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-myWhite);
}

.sixthSection img{
    margin-right: 4%;
}

.sixthSection form{
    width: 300px;
}

.sixthSection form input{
    width: 300px;
    margin: 10px auto;
    padding: 10px 15px;
    border-radius: 50px;
    border: 0px solid;
    background-color: var(--color-myBGwhite);
    box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: var(--color-myBlack);
}

.sixthSection form input:focus{
    box-shadow: inset 0px 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.sixthSection form textarea{
    width: 300px;
    height: 200px;
    margin: 10px auto;
    padding: 10px 15px;
    border-radius: 10px;
    border: 0px solid;
    background-color: var(--color-myBGwhite);
    box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: var(--color-myBlack);
}

.sixthSection form button{
    width: 200px;
    height: 50px;
    margin: 30px auto;
    padding: 10px;
    border-radius: 50px;
    border: 0px solid;
    background-color: var(--color-myRed);
    box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-myWhite);
}

.sixthSection form button:hover{
    background-color: var(--color-myRedHover);
    border-left:10px double #111 ; 
    border-right:10px double #111 ;
    border-radius: 50px;
    color: var(--color-myBGwhite);
    transition: 0.3s;
}

/*----------------Sixth Section----------------*/

.seventhSection {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.seventhSection img{
    width: 20%;
    margin-bottom: 40px;
}

.seventhSection .FAQinfo{
    color: var(--color-myBlack);
    width: 60%;
    font-size: 16px;
}

/*----------------Register Section----------------*/

.sixthSection .regImg{
    width: 35%;
    background-color: var(--color-myWhite);
    padding: 10px;
    border-top-left-radius: 345px;
}

.sixthSection label{
    color: var(--color-myWhite);
    display: flex;
    justify-self: left;
    margin-top: 15px;
}

.sixthSection label::after{
    content: "*";
    color: red;
}

.sixthSection select{
    width: 300px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 50px;
    border: 0px solid;
    background-color: var(--color-myBGwhite);
    box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: var(--color-myBlack);
}

.sixthSection select option{
    width: 300px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 50px;
    border: 0px solid;
    background-color: var(--color-myBGwhite);
    box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: var(--color-myBlack);
}

/*----------------Footer----------------*/

footer{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

footer p{
    background-color: white;
    color: var(--color-myRed);
    font-size: 18px;
    margin: 20px;
}

footer .socialImg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

footer .socialImg a img{
    width: 30px;
    margin: 10px 20px;
    transform: scale(1);
    display: flex;
    transition: 0.3s ease-in-out;
}

footer .socialImg a img:hover{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

/* ------------------Small Screen Navbar------------------- */

@media only screen and (max-width: 1200px){

    .navbar{
        padding: 10px 0px;
    }
    
    .nav-logo{
        width: 70%;
    }
    
    .nav-item{
        margin-left: 5px;
    }

    .nav-link::after{
        padding: 20px 5px;
        font-size: 16px;
    }

    .mainSection h2{
        font-size: 18px;
    }

}


/* ------------------Mobile responsive------------------- */

@media only screen and (max-width: 850px) {

    /* ------------All Sections height----------- */

    .secondSection, .forthSection, .fifthSection, .seventhSection{
        height: 100%;
    }
    
    /*---------------Burger navbar---------------*/

    html{
        overflow-x: hidden;
    }
    
    header{
        height: 50px;
    }

    #navBG{
        background-color: rgba(0, 0, 0, 0);
    }

    .navbar{
        width: 100%;
        padding: 5px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        z-index: 100;
    }

    .nav-logo{
        margin:10px 0px;
        width: 50%;
    }

    .nav-menu {
        position: fixed;
        display: flex;
        left: 110%;
        top: 50px;
        flex-direction: column;
        background-color: var(--color-myBGwhite);
        width: 100%;
        border-radius: 8px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 5px 0px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* ------------Main----------- */

    .mainSection{
        justify-content: center; 
    }
    
    .mainSection .homePics{
        height: 50%;
        width: 100%;
        text-align: center;
        margin: 0px;
        margin-top: -525px;
    }

    .mainSection .homePics .pics{
        width: 50%;
        height: 50%;
    }

    .mainSection .homePics .pics .picsDesc .desc{
        font-size: 12px;
        padding: 0px;
    }

    .mainSection .info{
        text-align: center;
        bottom: 150px;
        min-width: 310px;
        border:none;
        border-radius: 0px;
        opacity: 90%;
        font-size: 16px;
        font-weight: 500;
        overflow: hidden;
    }

    
    .mainSection .info .mainHead{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    .mainSection h2{
        margin: 20px 4px;
        font-size: 16px;
    }
    
    .mainSection .mainHead .Name1{
        color: var(--color-myRed);
        margin-right: 0px;
    }
    
    .mainSection .mainHead .Name2{
        margin-left: 0px;
        color: rgb(150, 150, 150);
    }


    /* ------------First----------- */

    .firstSection{
        flex-direction: column-reverse;
    }

    .firstSection .info{
        width: 90%;
        margin: auto;
    }
    
    .firstSection .info h2{ 
        font-size: 18px;
        margin: 0px 0px 10px 0px;
    }
    
    .firstSection .info p{
        font-size: 16px;
        overflow: hidden;
        text-align: justify;
    }
    
    .firstSection .myAboutImg{
        width: 70%;
        right: 0px;
        top: 20px;
    }

    /* ------------Second----------- */

    .secondSection{
        flex-direction: column;
        padding: 20px 10px;
    }

    .secondSection .workContent{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        padding: 0px;
        width: 100%;
    }
    
    .secondSection .allCards #One, #Two{
        border-right: none ;
        box-sizing: border-box;
    }
    .secondSection .allCards #Two, #Four{
        border-top: none;
        box-sizing: content-box;
    }
    
    .secondSection .allCards {
        padding: 0px;
    }
    
    .secondSection .allCards .workCards .workImg{
        width: 100%;
        object-fit: cover;
    }
    
    .secondSection .allCards .workCards:hover .workDesc{
        padding: 15px;
    }
    .secondSection .allCards .workCards .workDesc{
        padding: 10px;
    }
    
    .secondSection .allCards .workCards .workDesc h2{
        font-size: 12px;
    }
    
    .secondSection .allCards .workCards .workDesc p{
        font-size: 12px;
    }

    .secondSection .info{
        min-height: 50px;
        width: 100%;
        padding: 20px;
    }
    
    .secondSection .info p{
        font-size: 14px;
    }


    /* ------------Third----------- */

    .thirdSection{
        flex-direction: column;
        margin: 10px 0px;
    }

    .thirdSection .MVinfo{
        width: 90%;
        margin: 10px 0px;
    }
    
    .thirdSection .MVinfo h2{ 
        font-size: 16px;
    }
    
    .thirdSection .MVinfo p{
        font-size: 14px;
        overflow: hidden;
        text-align: justify;
    }
    

    /* ------------Forth----------- */

    .forthSection .servInfo{
        color: var(--color-myWhite);
        width: 80%;
        margin-top: 50px;
    }

    .forthSection .line{
        width: 60%;
        height: 1px;
    }
    
    .forthSection .allCards {
        flex-direction: column;
        margin: 20px 0px;
    }
    
    .forthSection .allCards .servCard{
        width: 90%;
        padding: 30px 10px;
        font-weight: 500;
        flex-direction: column;
        cursor: pointer;
    }
    
    .forthSection .allCards .servCard img{
        width: 50%;
        margin-bottom: 30px;
    }
    
    .forthSection .allCards .servCard h2{
        font-size: 16px;
    }
    
    .forthSection .allCards .servCard p{
        font-size: 14px;
        margin-top: 10px;
    }

    /* -------------Fifth------------ */
    
    .fifthSection{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10px 0px;
    }

    .fifthSection .reachUsObj{
        width: 90%;
        margin: 50px 0px;
    }
    
    .fifthSection .reachUsObj .ReachImg{
        margin: 10px;
    }
    
    .fifthSection .reachUsObj a{
        margin: 10px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .fifthSection .reachUsObj a:hover{
        color: var(--color-myRedHover);
        transition: 0.5s;
        transform: scale(1.1);
        transition: transform ease-in-out 300ms;
    }
    
    .fifthSection .reachUsObj p{
        margin: 10px 5%;
        font-size: 14px;
        font-weight: 600;
    }

    /* -------------Sixth------------ */

    .sixthSection{
        display: flex;
        flex-direction: column-reverse;    
    }

    .sixthSection img{
        width: 100px;
        margin: auto;
        position: absolute;
        bottom: 250px;
        opacity: 50%;
    }
    
    .sixthSection form{
        width: 300px;
    }
    
    .sixthSection form input, .sixthSection form select {
        width: 250px;
        font-size: 14px;
    }
    
    .sixthSection form textarea{
        width: 250px;
        height: 200px;
        font-size: 14px;
    }
    
    .sixthSection form button{
        width: 150px;
        height: 50px;
        font-size: 16px;
    }

    .sixthSection .regImg{
        display: none;
    }

    /* -------------Sevens------------ */

    .seventhSection{
        margin: 50px 0px;
    }

    .seventhSection .FAQinfo{
        width: 80%;
        font-size: 14px;
    }

    /* -------------Footer------------ */

    footer{
        margin-top: 50px;
    }

    footer p{
        font-size: 14px;
        margin: 10px 0px;
    }
    footer .socialImg a img {
        margin: 10px 20px;
        width: 25px;
    }

}

@media only screen and (min-width: 1025px){

    .mainSection, .firstSection, .secondSection, .thirdSection, .forthSection, .fifthSection, .sixthSection, .seventhSection{
        min-height: 970px;
    }
    body {
        overflow-x: hidden;
    }
} 