@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-decoration: none;
    box-sizing: border-box;
}
.all-heddin{
    display: none;
}
header {
    background-color: #f0f0f0;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
    overflow: hidden;
}
.logo {
    text-decoration: none;
    color: silver;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.6em;
    padding: 0 15px;
    border-radius: 5px;
    transition: .7s;
}
.logo:hover{
    color: blue;
    font-size: 1.7em;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
}

.navigation a{
    color: #6b6b6b;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    padding-left: 30px;
    transition: .3s;
}
.navigation a:hover{
    color: blue;
    font-size: 1.4em;
}
.navigation a:active{
    color: brown;
}
section {
    padding: 100px 200px;
}
.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(images/background1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.main h2{
    color: #fff;
    font-size: 1.8em;
    font-weight: 800;
}
.prem{
    color: #fff;
    font-size: .9em;
    font-weight: 300;
}
.main .prem strong{
    color: brown;
    text-decoration: underline solid brown;
    transition: .5s;
}
.main .prem strong:hover{
    font-size: 1.1em;
    cursor: pointer;
    color: red;
}
.prem a{
    color: #00c4ff;
    transition: .5s;
}
.prem a:hover{
    color: #fff;
    text-decoration: underline  1px solid white;
    font-size: 1.1em;
}
.main h2 span{
    display: inline-block;
    margin-top: 10px;
    color: rgb(255, 255, 255);
    font-size: 3em;
    font-weight: 600;
}
.main h3{
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 30px;
}



.main-btn {
    margin-bottom: 3em;
    margin-top: 1em;
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    color: #fff;
    width: 9em;
    height: 3em;
    line-height: 2em;
    text-align: center;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 300%;
    border-radius: 30px;
    z-index: 1;
  }
  
.main-btn:hover {
    animation: ani 8s linear infinite;
    border: none;
}
  
  @keyframes ani {
    0% {
      background-position: 0%;
    }
  
    100% {
      background-position: 400%;
    }
  }
  
.main-btn:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 400%;
    border-radius: 35px;
    transition: 1s;
}
  
.main-btn:hover::before {
    filter: blur(20px);
}
  
.main-btn:active {
    background: linear-gradient(32deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
}




  
.social-icons a{
    color: #fff;
    font-size: 2.7em;
    padding-left: 40px;
    transition: .7s;
}
.social-icons a:hover{
    color: #6b6b6b;
    font-size: 3.7em;
    padding-left: 45px;
}
.title {
    display: flex;
    justify-content: center;
    background-color: #000000;
    color: #fff;
    border-radius: 13px;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
}
.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.card{
    background-color: #f0f0f0;
    width: 21.25em;
    box-shadow: 0 5px 25px #01010126;
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: .7s;
}
.card:hover{
    transform: scale(1.1);
}
.icon {
    color: #000000;
    font-size: 8em;
    text-align: center;
}
.info {
    text-align: center;
    position: relative;
}
.info h3{
    color: #9c9397;
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
}
.more-services{
    color: blue;
    font-weight: 700;
    font-size: 1.1em;
    transition: .7s;
}
.more-services:hover{
    font-size: 1.3em;
    color: #230151;
}
.Projects {
    background-color: #555354;
}
.Projects .content{
    margin-top: 30px;
}
.Project-card {
    background-color: #f0f0f0;
    border: 1.5px solid #9c9397;
    min-height: 14em;
    width: 23em;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    transition: .7s;
}
.Project-card:hover{
    transform: scale(1.1);
}
.Project-card:hover .Project-img {
    opacity: 0.9;
}
.Project-img img{
    width: 100%;
    height: 300px;
}
.Project-info {
    padding: 1em;
}
.Projects-category {
    font-size: 1em;
    font-weight: 500;
    color: black;
}
.Projects-taitle {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 10px;
}
.mor-details {
    text-decoration: none;
    color: blueviolet;
}
.mor-details:hover{
    color: blue;
}

.contact .icon{
    font-size: 4.5em;
}
.contact .info h3{
    color: #555354;
}
.contact .info p{
    font-size: 1.3em;
}
.footer {
    position: relative;
    background-color: #505050;
    color: #fff;
    padding: 4em;
    display: flex;
    justify-content: space-between;
}
.footer-title {
    font-size: 1.7em;
    font-weight: 600;
}
.footer-title span{
    color: #ffffff;
}

/*-----------------///////------offers-------/////////--------------*/

.offers-content{
    display: flex;
    justify-content: space-between;
}
.offers{
    overflow: hidden;
    position: relative;
    background-color: #b5b1b1;
}
.offers-title{
    background-color: red;
    color: #ffffff;
    border-radius: 13px;
}
.offers-info{
    background-color: rgba(255, 255, 255 , .3);
    padding: 1.5em;
    border-radius: 1em;
    overflow: hidden;
}



.offers-info h2{
    color: #000000;
    font-weight: 700;
}
.offers-info h2 ul{
    color: #680000;
    font-weight: 700;
    margin: .3em 4em;
}
.offers-info h2 ul li strong{
    text-decoration: underline 2px brown;
    transition: .7s;
}
.offers-info h2 ul li strong:hover{
    font-size: 1.3em;
    cursor: pointer;
}
.offers-info .pragra{
    color: black;
    font-size: 1em;
    margin: 1em;
}
.offers-info a{
    font-size: 1.3em;
    font-weight: 900;
    padding: .15em;
    margin-right: 15em;
    color: blue;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: .3em;
    transition: .7s;
}
.offers-info a:hover{
    color: white;
    background-color: #505050;
    border: solid 2px white;
}
.license {
    color: #680000;
    font-size: 1.5em;
}
.license b{
    font-weight: 900;
}


.offers-img iframe{
    width: 600px;
    height: 500px;
    border: 0;
    border-radius: 3em;
    padding: 1.3em;
}

.offers-contact{
    margin: 1.3em;
}
.offers-contact a{
    color: blue;
    border-bottom: 2px solid blue;
    transition: .5s;
}
.offers-contact a:hover{
    font-size: 1.3em;
    color: blue;
    border-bottom: 2px solid blue;
}


/*-----------------////////////////--------------*/
.icons{
    display: inline-flex;
  }
  .icons a{
    margin: 0 25px;
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
  }
  .icons a .layer{
    width: 55px;
    height: 55px;
    transition: transform 0.3s;
  }
  .icons a:hover .layer{
    transform: rotate(-35deg) skew(20deg);
  }
  .icons a .layer span{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s;
  }
  .icons a .layer span.fab{
    font-size: 30px;
    line-height: 55px;
    text-align: center;
  }
  .icons a:hover .layer span:nth-child(1){
    opacity: 0.2;
  }
  .icons a:hover .layer span:nth-child(2){
    opacity: 0.4;
    transform: translate(5px, -5px);
  }
  .icons a:hover .layer span:nth-child(3){
    opacity: 0.6;
    transform: translate(10px, -10px);
  }
  .icons a:hover .layer span:nth-child(4){
    opacity: 0.8;
    transform: translate(15px, -15px);
  }
  .icons a:hover .layer span:nth-child(5){
    opacity: 1;
    transform: translate(20px, -20px);
  }
  .icons a:nth-child(1) .layer span,
  .icons a:nth-child(1) .text{
    color: #fff;
    border-color: #fff;
  }
  .icons a:nth-child(1):hover .layer span,
  .icons a:nth-child(1):hover .text{
    color: #000;
    border-color: #000;
  }
  .icons a:nth-child(2) .layer span,
  .icons a:nth-child(2) .text{
    color: #ffffff;
    border-color: #ffffff;
  }
  .icons a:nth-child(3):hover .layer span,
  .icons a:nth-child(3):hover .text{
    color: #000f7d;
    border-color: #000f7d;
  }
  .icons a:nth-child(3) .layer span,
  .icons a:nth-child(3) .text{
    color: #ffffff;
    border-color: #ffffff;
  }
  .icons a:nth-child(2):hover .layer span,
  .icons a:nth-child(2):hover .text{
    color: #1df23d;
    border-color: #1df23d;
  }
  .icons a:nth-child(4) .layer span,
  .icons a:nth-child(4) .text{
    color: #ffffff;
    border-color: #ffffff;
  }
  .icons a:nth-child(4):hover .layer span,
  .icons a:nth-child(4):hover .text{
    color: #230151;
    border-color: #230151;
  }
  



  .icons a .text{
    position: absolute;
    left: 50%;
    bottom: -5px;
    opacity: 0;
    font-weight: 500;
    transform: translateX(-50%);
    transition: bottom 0.3s ease, opacity 0.3s ease;
  }
  .icons a:hover .text{
    bottom: -35px;
    opacity: 1;
  }
  @media (max-width:1170px){
    body{
        font-size: 11px;
    }
    header{
        padding: 12px 20px;
    }
    .navigation {
        display: none;
    }
    .navigation a{
        padding-left: 10px;
    }
    .title {
        font-size: 1.8em;
    }
    section{
        padding: 80px 20px;
    }
    .content{
        flex-direction: column;
        align-items: center;
    }
    .main-content h2{
        font-size: 0.8em;
    }
    .main-content h3{
        font-size: 1.4em;
    }
    .footer-title {
        position: absolute;
        right: 33%;
        bottom: 9%;
        font-size: 1.3em;
        font-weight: 600;
    }
  }
  @media (max-width:700px){
    body{
        font-size: 11px;
    }
    .main{
        background-image: url(images/background5.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
     
    
    header {
    justify-content: center;
    }
    
    .navigation {
        display: none;
    }
    .navigation a{
        padding-left: 7px;
    }
    .main-content h2{
        font-size: 0.8em;
    }
    .main-content h3{
        font-size: 1.4em;
    }
    .offers-info .pragra{
        font-size: .9em;
        margin: .9em;
    }
    .offers-img iframe{
        width: 500px;
        height: 300px;
    }
    .footer-title {
        position: absolute;
        right: 33%;
        bottom: 9%;
        font-size: 1.3em;
        font-weight: 600;
    }
  }
  @media (max-width:450px){
    body{
        font-size: 9px;
    }
    .main{
        background-image: url(images/background4.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    } 
    
    header {
    justify-content: center;
    }
    
    .navigation {
        display: none;
    }
    .logo {
    font-size: 2.5em;
    }
    .main-content h2{
        font-size: 0.5em;
    }
    .main-content h3{
        font-size: 1.3em;
    }
    .offers-info .pragra{
        font-size: .7em;
        margin: .7em;
    }
    .footer-title {
        position: absolute;
        right: 33%;
        bottom: 9%;
        font-size: 1.3em;
        font-weight: 300;
    }

    .offers-img iframe{
        width: 300px;
        height: 200px;
        border: 0;
        border-radius: 3em;
        padding: 1.3em;
    }

    .offers{
        overflow: hidden;
        font-size: .9em;}
  }

  @media (max-width:380px){
    body{
        font-size: 5px;
    }
    .main{
        background-image: url(images/background4.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    } 
    
    header {
    justify-content: center;
    }
    
    .navigation {
        display: none;
    }
    .logo {
    font-size: 2.5em;
    }
    .main-content h2{
        font-size: 0.5em;
    }
    .main-content h3{
        font-size: 1.3em;
    }
    .offers-info .pragra{
        font-size: .7em;
        margin: .7em;
    }
    .footer-title {
        position: absolute;
        right: 33%;
        bottom: 9%;
        font-size: 1.3em;
        font-weight: 300;
    }
  }