*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
body, html
{
    background: #100028;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    scroll-behavior: smooth;
}
.container{
    height: 100vh;
    width: 100%;
    padding: 0;
}
.container .home
{
    padding: 10px 20px;
    height: 100%;
    margin: 0;
    background: url(resources/main-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.container .home .header
{
    padding: 20px 40px;
    background: transparent ;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.home .header .btn{
  width: auto;
  .open{
    display: none;
               
  }
}

.home .header .nav ul
{
    display: flex;
    .close{
        display: none;
    }
}
 .logo
{
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
 .logo h1{
    font-size: 2rem;
    margin: 0 10px;
}
 .logo img{
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.home .header ul li
{
    margin-left: 20px;
    list-style: none;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px; 
    transition: 0.5s;
}
.home .header ul li a
{
    position: relative;
    color: #fff;
    font-size: 16px;
    padding: 7px 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: transparent;
    padding-inline-start: 5px 10px;
}
.home .header ul li:hover
{
    background: rgba(83, 20, 179, 0.938);
    color: #fff;
}
.content
{
    margin-top: 15%;
    margin-left: 10%;
}
.home  .content h3
{
    color: #fff;
    font-weight: 200;
    letter-spacing: 5px;
}
.home  .content h2
{
    margin-top: 15px;
    color: #fff;
    font-size: 60px;
    margin-bottom: 15px;
}
.home  .content a
{
    padding: 10px 30px;
    color: #00bfe7;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: all 0.5s ease-in;
}
.home  .content a:hover
{
    background: #00bfe7;
    color: #111;
}
.home  .content a::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 70%;
    width: 70%;
    border-top: 3px solid #00bfe7;
    border-left: 3px solid #00bfe7;
}
.home  .content a::after
{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 70%;
    width: 70%;
    border-bottom: 3px solid #00bfe7;
    border-right: 3px solid #00bfe7;
    transition: 0.5s;
    transition-delay: 0s;
}


/* ----------------/services/----------- */
.services,.delivered{
    min-height: 100vh;
    padding: 30px 90px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.services,.delivered .box{
    margin: 0 20px;

}
 .info{
    color: #fff;
    margin: 0;
}
 .info h3{
    font-size: 20px;
    color: grey;
}
 .info h2{
    width: fit-content;
    font-size: 2rem;
    position: relative;
    text-transform: uppercase;
}
.info h2 span::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 50%;
    background: #00bfe7;
    border-radius: 10px;
    
}
.info p{
    margin-top: 30px;
    color: grey;
}
.box:nth-child(1){
    width: 30%;
}
.box:nth-child(2){
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 1rem;
}
.box .child{
    width: auto;
   padding: 10px;   
   transition: all .4s ease-in;

    .text-contents{
        width: auto;

     h2{
            font-size: 20px;
            font-weight: 500;
            margin: 5px 0;
        }
        h4{
            width: 90%;
            font-weight: 300;
            color: #757575;
        }
    }
}
.child:hover{
    background: #2901645e;
}
.child .img-content{
    width: fit-content;
    padding: 10px;
    border: 2px solid #00bfe7;
    border-radius: 50px;
    margin: 10px 0;
}
.child .img-content img{
    height: 50px;
    width: 50px;
    border-radius: 50px;
}

/* ---------------/get started/----------- */
.get-started{
    height: auto;
    width: 100%;
    padding: 0;
    overflow: hidden;

}
.get-started .content{
    padding: 0 90px;
    margin: 0;
    background-image: url(resources/ideas.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: flex-start;
    h1{
        font-size: 3.4rem;
        color: #100028;
        margin: 15px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: 600;

    }
    a{
        text-decoration: none;
        color: #fff;      
        background: #100028;
        margin: 15px;
        padding: 10px 60px;
        font-size: 16px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 500;
        border-radius: 3px;
        transition: all .4s ease-in;
    }
    a:hover{
        background: #fff;
        color: #100028;
       
    }
}

/* ---------/team-members/-------------- */
.team{
    min-height: 100vh;
    padding: 30px 90px;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.team .team-content{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr) );
    gap: 1.3rem;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
 .team-content .card{
    height: auto;
    margin: 10px;
    padding: 10px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .img{
        transform: translateY(30px);
        z-index: 1;
        img{
            height: 120px;
            border-radius: 10px;
        }
    }
    .txt{
        background: rgba(30, 5, 72, 0.8);
        
        border-radius: 10px;
        width: 270px;
        height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-30px);
        border: 2px solid transparent;
        transition: all .4s ease-out;
        &:hover{
            border: 2px solid #8b8b8b6e;
        }
        h1{
            font-size: 20px;
            text-transform: uppercase;
            color: #757575;
            margin: 0px auto;
            margin-bottom: 20px;
            position: relative;
        
         &::after{
            content: '';
            display: table;
            height: 3px;
            width: 100%;
            border-radius: 20px;
            background: #00bfe7;
            position: absolute;
            bottom: 0;
            left: 0;
             }
         }
         h3{
            font-size: 16px;
            text-transform: uppercase;
            color: #8b8b8b;
            margin: 20px 0;
           
         }
         a{
            text-decoration: none;
            color: #00bfe7;
            background: transparent;
            padding: 10px 30px;
            border-radius: 3px;
            margin-top: 20px;
            font-size: 16px;
            font-weight: 400;
            border: 1px solid #00bfe7 ;
            transition:  all .4s ease-in;

            &:hover{
                background-color: #00bfe7;
                color: #0a001a;
            }
         }
    }
 }







 /* -------------/contact-section styling/----------- */
 .contact{
    min-height: 100vh;
    background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url('resources/contact-bg.jpg');   
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
 }

 .contact .curved{
   
    text-align: center;
    color: aliceblue;
    padding: 0;
  }
 .contact .curved svg{
    display: block;
    
  }

@media (max-width:1111px) {

  .ht-determiner{
    height: 100vh;
   
  }
  .contents{
    padding: 0 70px;
    margin-top: 100px;
  }
  
}

.contents{
  padding: 10px;
}
.curved{
    padding: 0;
    width: 100%;
}
  .top-row{
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr) );
    gap:1rem;
    justify-content: center;
    align-items: center;
   }
  
   .top-row .box{
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 200px;
    background-color: #100028;
    padding: 40px 10px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all .4s ease-in;
    &:hover{
        border: 2px solid #8b8b8b6e;
    }

    h3{
        font-size: 20px;
        font-weight: 600;
        color: #757575;
        margin:10px 0;
    }
    p{
        color: #b3b1b1;
        font-size: 16px;
        /* margin: 0; */
    }
    i{
        background: transparent;
        font-size: 2rem;
        border-radius: 10px;
        padding: 10px;
    }
   }


    .bottom-row{
     display: flex;
     justify-content: space-between;
     align-items: center;
    }
    .bottom-row .box{ 
      padding: 20px 5px; 
      display: flex;
      flex-direction: column;
    }
    .bottom-row .box:nth-child(1){
        width: 90%;
    }
    .bottom-row .box h1{
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-weight: bold;
      width: 100%;
      text-align: left;
    }
    .bottom-row .box p{
      text-align: left;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-size: 18px;
      margin: 15px 0;
      width: 80%;
    }
    
    .social-media{
      display: flex;
      font-size: 24px;
      font-weight: 600;
      margin-top: 40px;
      color: white;
      width: 300px;
    }

    .social-media i{
    margin-right: 20px;
    }

/* -------------------contact-form------------ */

.contactForm{
  padding: 20px;
  background: #100028;
  border-radius: 20px;
  color: #fff;
}
.contactForm h2 {
  font-size: 30px;
  font-weight: 500;

}
.contactForm .inputBox{
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.contactForm .inputBox input, .contactForm .inputBox textarea{
  width: 100%;
  padding: 5px 0;
  font-size: 26px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
  background-color: transparent;
  color: #fff;

}
.contactForm .inputBox span{
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;


}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
  color: #00bfe7;
  font-size: 12px;
  transform: translateY(-25px);
}

.contactForm .inputBox .submit{
width: 100%;
background:transparent;
color: #00bfe7;
border: none;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
cursor: pointer;
padding: 10px;
font-size: 18px;
border: 2px solid #00bfe7;
border-radius: 10px;
transition: background .5s;
}
.contactForm .inputBox .submit:hover{
   background: #00bfe7;
   color: #0a001a;
}




/* --------------footer-design/------------- */
.footer{
    background-color: transparent;
    /* background: rgba(255, 255, 255, 0.1); */

}
.footer .items{
    height: auto;
    padding: 10px 0;
    margin:  0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.footer  .icon
{
    max-width: 100%;
    text-align: center;
    align-items: center;
    margin: 0;
    margin-top: 50px;
}
.footer  .icon i
{
    width: 40px;
    height: 40px;
    margin-left: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    margin-right: 6px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.footer  .icon i:hover
{
    background: #fff;
    color: #100028;
}
.items div p{
    font-size: 1.5rem;
    font-weight: 500;
    margin: 20px 0;
    text-align: center;

}
.footer .items .copyright
{
    max-width: 100%;
    text-align: center;
    margin-left: -20px;
    margin-top: 30px;
}
.footer .items .copyright p
{
    color: #adadad;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
}
.footer .items .copyright p span
{
    color: #00bfe7;
    text-transform: uppercase;
    cursor: pointer;
}
