*{
    padding: 0;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}
:root{
    --maincolor:#212121;
    --main2color: #dddddd;
    --subcolor: #2b2b2b;
    --sub2color: #DD6060;
    --sub3color: #adadad;
    --sub4color: #717171;
    --sub5color:#3d3d3d;
}
body{
    box-sizing: border-box;
    background-color: #eee9;
    /* background-color: #212121; */
}
.banner{
    background-image: url(../imgs/body/A0.png);
    background-size: contain;
    background-position-y: -70px;
}
header{
    padding: 2% 10%;
    background-color: transparent;
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.logo{
    width: 60px;
    cursor: pointer;
}
nav > ul li{
    display: inline-block;
    margin-left: 60px;
}
a{
    text-decoration: none;
    color: var(--maincolor);
    text-transform: capitalize;
    transition: 0.3s;
}
nav ul li a:hover{
    color: var(--sub4color);
}
.bigmenu ul li a:hover{
    color: var(--sub3color);
}
.bigmenu{
    position: relative;
    transition: 0.3s;
}
.menu{
    width: 20px;
    height: 20px;
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
    transition: 0.3s;
}
.menu span{
    background-color:var(--maincolor);
    height: 2px;
    width: 100%;
    margin-bottom: 4px;
}
.menu span:nth-child(2){
    width: 60%;
    transition: 0.3s;
}
.menu:hover span:nth-child(2){
    width: 100%;
}
.bigmenu ul{
    width: 300px;
    list-style: none;
    background: #2d2d2d9e;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: absolute;
    top: 30px;
    left: -100px;
    min-width: 200px;
    min-height: 500px;
    transition: 0.3s;
    z-index: 2;
    display: none;
}
.bigmenu ul::before{
    content: "";
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent var(--sub3color) transparent;
    position: absolute;
    top: -20px;
    left: 103px;
}
.bigmenu ul li a{
    display: block;
    padding: 15px;
    transition:0.3s;
    color: var(--main2color);
}
.bigmenu ul li a:hover{
    margin-left: 10px;
}
.bigmenu:hover ul{
    display: block;
}
.bigmenu:hover .menu{
    transform: rotate(90deg);
}
.bigmenu:hover .menu span{
    background-color: var(--sub3color);
}
.minpp{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main2color);
    margin: 15px 0 15px 15px;
    cursor: pointer;
    transition: 0.3s;
}
.minpp:hover{
    box-shadow: 0px 0px 15px 0px #00000038;
}
.line{
    height: 1px;
    background-image: linear-gradient( 
    90deg,rgba(0, 0, 0, 0) 0%,#ffffff 50%,rgba(0,0,0,0.00) 100%);
    opacity: 0.5;
    width: 100%;
    margin: 15px 0;
}

.content section:first-child{
    height: calc(100vh - 133.1588px);
    padding: 2% 10%;
    display: flex;
    flex-direction: column;
    gap: 190px;
    z-index: -2;
    margin-top: 20px;
}
.content section:first-child article{
    width: 100%;
}
.content section:first-child article h1{
    padding: 0;
    margin: 0 0 15px;
    color: var(--sub5color);
    text-transform: capitalize;
    font-size: 105px;
    font-weight: 700;
    line-height: 1;
}
.content section:first-child article h4{
    padding: 0;
    margin: 0;
    color: var(--subcolor);
    font-weight: 300;
    line-height: 1.3;
    display: none;
}
.butcon{
    display: flex;
    justify-content: center;
}
.btn {
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: var(--main2color);
    color: var( --subcolor);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-name: updown;
    animation-duration: 0.75s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
    /* font-size: 14px; */
    /* text-align: center; */
    /* display: inline-block; */
}
.btn:hover{
    transform: scale(1.2);
    background-color: white;

}
.btn div{
    transform: rotate(90deg);
    transition: 0.6s;
}
.btn:hover div{
    transform: rotate(450deg);
}
@keyframes updown{
    0%{
        top: -6px;
    }
    100%{
        top: 6px;
    }
}
/* .content section:first-child aside{
    width: 29%;
    height: 400px;
    overflow: hidden;
    background-image: url(../imgs/body/Remini20211205203521492-02.jpg);
    background-size: 600px;
    background-position-y: -155px;
    background-position-x: -120px;
} */
.cir{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    animation: cir;
    animation-duration: 15s;
    animation-delay: 0.5s;
    z-index: -1;
}
@keyframes cir{
    0%{
        top: 0;
        left: 0;
    }
    15%{
        transform: translate(-50%,-50%);
        top: 70%;
        left: 50%;
        width: 200px;
        height: 200px;
        background-color:transparent;
    }
    45%{
        transform: translate(-50%,-50%);
        top: 35%;
        left: 50%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color:#ff000045;
    }
    50%{
        transform: translate(-50%,-50%);
        top: 35%;
        left: 50%;
        width: 300px;
        height: 300px;
        background-color:#ff000045;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
    }
    60%{
        transform: translate(-50%,-50%);
        top: 35%;
        left: 50%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color:#ff000045;
    }
    65%{
        background-color:#ff000045;
    }
    100%{
        top: -40%;
        left: -20%;
        width: 900px;
        height: 900px;
        background-color: #ff000030;
    }
    100%{
        top: -40%;
        left: -20%;
        width: 900px;
        height: 900px;
        background-color: transparent;
    }
}
.content section:nth-child(2){
    height: 40vh;
    padding: 2% 10%;
    background-color: var(--maincolor);
    /* background-image: linear-gradient(0deg, #212121, #212121, transparent); */
}
.featcon{
    height: 100%;
    display: flex;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    gap: 20px;
    flex-direction: row;
    align-items: center;
}
.iccon{
    padding: 20px;
    text-align: center;
}
.iccon i{
    color: var(--sub2color);
    font-size: 52px;
    padding-bottom: 10px;
    transition: 0.3s;
}
.iccon h3{
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
    color: var(--main2color);
    text-transform: capitalize;
}
.iccon p{
    font-weight: 300;
    font-size: 14px;
    color:var(--sub3color) ;
}
.content section:nth-child(3){
    display: flex;
    align-items: center;
    background-color: var(--subcolor);
    padding: 2% 20%;
}
.srvcon{
    position: relative;
    padding: 8% 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px,1fr));
    /* grid-template-rows: repeat(2, auto); */
    /* justify-items: center; */
    /* text-align: center; */
}
.svsv::before {
    content: "";
    position: absolute;
    top: 65px;
    left: -70px;
    width: 80px;
    height: 115px;
    background-color: var(--sub2color);
}
.svsv::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 25px;
    top: 40px;
    left: -70px;
    background-color: var(--sub2color);
}
.svsv2::before {
    content: "";
    position: absolute;
    bottom: 65px;
    right: -70px;
    width: 80px;
    height: 115px;
    background-color: var(--sub2color);
}
.svsv2::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 25px;
    bottom: 40px;
    right: -70px;
    background-color: var(--sub2color);
}
.srvbox{
    padding: 30px;
    display: flex;
    gap: 10px;
}
.srvbox :first-child{
    width: 35px;
}
.srvbox i{
    color:var(--sub2color) ;
    font-size: 30px;
}
.srvbox h3{
    color: var(--main2color);
    width: auto !important;
}
.srvbox p{
    color: var(--sub3color);
}
.content section:nth-child(4){
    padding: 2% 10%;
    background-color: var(--maincolor);
    /* height: 80vh; */
}
.prcon{
    padding: 4% 0;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px, 1fr));
    align-items: center;
    justify-items: center;
}
.prcon > div{
    height: 350px;
    width: 300px;
}
.info{
    padding: 4%;
    max-width: 100%;
    min-height: 30%;
    background-color: var(--subcolor);
}
/* لما بعطي الانفو ويدث اكبر من 30% بيخرج برا الكونتينر << وده بيسبب ان الجاب متكونش مضبوطة */
.info h3{
    cursor: pointer;
    color: var(--main2color);
    text-transform: capitalize;
}
.info p{
    margin-top: 5px;
    color: var(--sub3color);
}
.img1,
.img2,
.img3{
    cursor: pointer;
    width: 100%;
    height: 70%;
}
.img1{
    background-image: url(../imgs/body/350cDHu.jfif);
    background-size: cover;
    background-position-x: -280px;
}
.img2{
    background-image: url(../imgs/body/6ffwGbI.jfif);
    background-size: 405px;
    background-position-x: -105px;
    background-position-y: -45px;
}
.img3{
    background-image: url(../imgs/body/JfzSSBBlgzL8Tuf_kHGv2op5ZYJIVekuhPOFNMJXJUr.jfif);
    background-size: 590px;
    background-position-x: -290px;
}