@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

:root{
    --menu-color: #19c8fa;
    --trasparent-color: rgb(15 116 143 / 60%);
    --section-padding: 80px;
}

/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html,body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body.Arabic {
    font-family: "Cairo", sans-serif;
}

body.En{
    font-family: 'Poppins', sans-serif;
}

nav{
    position: absolute;
    z-index: 4;
}
nav .container{
    border-bottom: 1px solid white;
}

a{
    text-decoration: none;
}

@media (max-width: 991px) {
    nav{
        border-bottom: 0;
        background-color:  rgba(142, 115, 8, 0.502);
    }
    nav .container{
        border-bottom: 0;
    }
}

ul li:not(.Drop) a:hover{
    color: var(--menu-color) !important;
}

.Dropdown-Arabic{
    left: -100px !important;
}

.Dropdown-English{
    left: -68px !important;
}

/* Small */

/* End Global Rules */

/* start components  */
.main-heading {
    text-align: center;
}
.main-heading h2 {
    font-weight: normal;
    font-size: 50px;
    position: relative;
    margin-bottom: 60px;
}
.main-heading h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: #333;
    bottom: -30px;
    width: 120px;
}
.main-heading h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -38px;
    background-color: white;
}
.main-heading p {
    width: 550px;
    margin: 0 auto 100px;
    line-height: 1.8;
    max-width: 100%;
    color: #4f4e4e;
    text-align: center;
    font-size: 18px;
}

.About-English p {
    font-size: 16px !important;
}
.About-Arabic p{
    direction: rtl;
}

.Logo img{
    width: 100%;
    height: 60px;
}
@media (max-width: 991px) {
    .Logo img{
        width: 100%;
        height: 45px;
    }
}
/* end components  */

/* start landing  */
.landing {
    width: 100%;
    height: 95.5vh;
    background-color: rgb(253, 253, 253);
    position: relative;
}
.background-clip{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
/* @media (min-aspect-ratio: 16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    .background-clip{
        width: auto;
        height: 100%;
    }
} */
.landing .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.445);
    display: flex;
    align-items: center;
}
.landing .textAr {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    width: 50%;
    padding: 50px;
    background-color: var(--trasparent-color);
    color: white;
    display: flex;
    justify-content: flex-end;
}
.landing .text {
    z-index: 4;
    color: white;
}
@media (max-width: 767px) {
    .landing .text {
        left: 0;
        text-align: center;
    }
}
.text .content h2{
    font-size: 65px;
}
@media (max-width: 767px) {
    .text .content h2{
        font-size: 40px;
    }
    .text .content p{
        font-size: 14px;
    }
}

@media (max-width: 365px) {
    .text .content h2{
        font-size: 30px;
    }
}
.landing .textAr .contentAr {
    max-width: 450px;
}
.landing .textAr .contentAr h2 {
    font-size: 24px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;
}
.landing .textAr .contentAr p {
    font-size: 16px;
    line-height: 1.5;
}
.landing .textAr .contentAr span {
    color: rgb(254, 246, 0);
    font-weight: bold;
}
@media (max-width: 991px) {
    .landing .textAr {
        width: 100%;
    }
    .landing .textAr .contentAr {
        max-width: 100%;
    }
}
/* end landing  */

/* start about-us  */
.about-us {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}
.about-us .container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.about-us .container .image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.about-us .container .image img {
    max-width: 380px;
}
.about-us .container .image p {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: rgb(19, 52, 120);
}

.Name{
    font-size: 30px !important;
}
.about-us .container .main-heading span {
    color: rgb(19, 52, 120);
    font-weight: bold;
    font-size: 20px;
}
.About-English span {
    font-size: 17px !important;
}
@media (max-width: 767px) {
    .about-us .container {
        flex-direction: column-reverse;
        justify-content: center;
    }
    .about-us .container .image {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .about-us .container .image img {
        max-width: 300px;
    }
    .about-us .container .image p {
        font-size: 20px;
        margin-bottom: 30px;
    }
}
/* end about-us  */

/* start adv  */
.adv {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    height: 600px;
    position: relative;
    background-image: url("../images/wallpapers/3wallpaperflare.com_wallpaper.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.adv::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%);
}
.adv .image,
.adv .text {
    z-index: 3;
}
.adv .image {
    text-align: center;
}
@media (max-width: 767px) {
    .adv .image {
        display: none;
    }
}
.adv .image img {
    position: relative;
    bottom: -100px;
    border-radius: 10px;
    left: 40px;
}
.adv .text {
    color: white;
    padding: 50px;
    background-color: #414040aa;
    text-align: center;
    width: 100%;
    max-width: 850px;
}
.adv .text-Ar{
    direction: rtl;
}

@media (max-width: 767px) {
    .adv .text {
        padding: 15px 0;
    }
}

.adv .text-English{
    text-align: start !important;
    font-size: 17px;
}

.adv .text h2 {
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 40px;
    
}
@media (max-width: 500px){
    .adv .text h2 {
        font-size: 30px;
    }
}
.adv .text ul li {
    padding: 10px 0;
}
/* end adv  */

/* start portfolio  */
.portfolio {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    margin-top: 60px;
}
.portfolio section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 20px auto;
}
.portfolio section .item-img a img{
    width: 100%;
    height: 200px;
    border-radius: 10px;
}
/* end portfolio  */
.SeeMore{
    width: 100%;
    max-width: 200px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.SeeMore:hover{
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
}
.SeeMore a{
    color: white;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.line{
    border-bottom: 0.8px solid black;
}
/* start location  */
.loc{
    padding-top: 70px;
}
.loc .map {
    margin-top: -80px;
    margin-bottom: 30px;
}
/* end location  */

/* start contact  */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    margin-top: 50px;
}
.contact .all .button {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 30px;
    display: inline-block;
    overflow: hidden;
    transition: 0.5s ease;
    margin: 10px 10px;
    box-shadow: 2px 2px 10px -5px #000;
}
.contact .all .button:hover {
    width: 200px;
}
.contact .all .button .icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    transition: 0.4s ease;
}
.button{
    cursor: pointer;
}
.contact .all .button:nth-child(1):hover .icon {
    background-color: #1877f2;
}
.contact .all .button:nth-child(2):hover .icon {
    background-color: #ff0000;
}
.contact .all .button:nth-child(3):hover .icon {
    background-color: #c32aa3;
}
.contact .all .button:nth-child(4):hover .icon {
    background-color: #11c757;
}
.contact .all .button .icon i {
    font-size: 25px;
    color: #303030;
    line-height: 60px;   
}
.contact .all .button:hover .icon i {
    color: white;
}
.contact .all .button span {
    margin-left: 10px;
    font-size: 20px;
    line-height: 60px;
}
.contact .all .button:nth-child(1):hover span a{
    color: #1877f2;
}
.contact .all .button:nth-child(2):hover span a{
    color: #ff0000;
}
.contact .all .button:nth-child(3):hover span a{
    color: #c32aa3;
}
.contact .all .button:nth-child(4):hover span a{
    color: #11c757;
}
/* end contact  */

/* start footer  */
    .footer {
        background-color: #414141;
        color: white;
        padding: 13px;
        text-align: center;
        font-size: 18px;
        margin-top: 5px;
    }
    .footer span {
        font-weight: bold;
    }
/* end footer  */