*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
scroll-behavior: smooth;
color:white;

}



.navbar{
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px; /*1.2*16font*/
    position: sticky;
    top: 0;
    z-index: 999;
}


.navbar_container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}


#navbar_logo {
    background: #c21500;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}



.navbar_menu {
    display: flex;
    align-items: center;
    list-style: none;
}


.navbar_item {
height: 80px;

}


.navbar_links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}


.navbar_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}


.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    /*background: #883ab4; /*fallback color*/
    /* background: -webkit-linear-gradient(to right, #fcb045, #fd1d1d, #833ab4); /*uigradients.com#bloodymary*/  /*
    /* background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);*/
    /*color: #fff;*/
    background: #DC2424;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4A569D, #DC2424);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4A569D, #DC2424); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ 
    color: #fff;
    transition: all 0.3s ease;
}

.navbar_links:hover{
    color: #be4616;
    transition: all 0.3s ease;
}

.button:hover{
    background: #c21500;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    transition: all 0.3s ease;
}



@media screen and (max-width: 960px) {
    .navbar_container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    .navbar_menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
       /* top: -1000px; can see the mobile navbar with this commented*/
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
        
    }

    .navbar_menu.active{
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
    }

    #navbar_logo{
        padding-left: 25px;
    }

    .navbar_toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3 ease-in-out;
        background: #fff;
    }


    .navbar_item{
        width: 100%;

    }

    .navbar_links{
        text-align: center;
        padding:2rem;
        width: 100%;
        display: table;

    }

    .navbar_btn {
        padding-bottom: 2rem;
    }


    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    #mobile-menu{
        position: absolute;
        top:20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar_toggle .bar{
        display: block;
        cursor: pointer;
    }



    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform:  translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform:  translateY(-8px) rotate(-45deg);
    }



}


/*Hero Section*/


.hero{
   /* background: #131313;
    /*background: linear-gradient(to right, #161616, #000000);
    */ 
    background-image: url("/images/backgrounds/herobg.jpg");
  /*  padding: 200px;*/
}


.hero_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 120px;
    margin:0 auto;
    height: 90%;
    text-align: center;
    padding: 30px;
}


.hero_heading{
    font-size: 100px;
    margin-bottom: 24px;
    color:#fff;

}


.hero_heading span {
    background: #ee0979; /*for old browsers*/
    background: -webkit-linear-gradient(
        to right,
        #ffc500, #c21500
    );/*Chrome and Safari*/
    background: linear-gradient(
        to right,
        #ffc500, #c21500
    );/*W3C, Internet Explorer/Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+*/
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}


.hero_description{
    font-size: 60px;
    background: #da22ff; /*for old browsers*/
    background: -webkit-linear-gradient(
        to right,
        #9114ff,
        #da22ff
    );/*Chrome and Safari*/
    background: linear-gradient(
        to right,
        #8f0eff,
        #da22ff
    );/*W3C, Internet Explorer/Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+*/
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.highlight {

    border-bottom:  4px solid rgb(132, 0, 255);
}


@media screen and (max-width: 768px) {
    .hero_heading{
        font-size: 60px;
    }

    .hero_description{
        font-size: 40px;
    }
}


/*About Section*/

.main{
        background-color: #131313;
        padding: 10rem 0; /*was 10 rem 0 */
        max-width: auto;
        max-height: auto;
}

.main_container{
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
justify-content: center;
margin: 0 auto;
height: 90%;
z-index: 1;
width: 100%;
max-width: 1300px;
padding: 0 50px;


}

.main_content{
    color: #fff;
    width: 100%;
}


.main_content h1{
    font-size: 2rem;
    background: #fe3b6f;  
    background-image: linear-gradient(to top, #ff087b 0%, #ed1a52 100%); 
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 32px;
}


.main_content h2{
    font-size: 4rem;
    background: #ff8177; /*for old browsers*/
    background: -webkit-linear-gradient(
        to right,
        #ffc500, #c21500
    );/*Chrome and Safari*/
    background: linear-gradient(
        to right,
        #ffc500, #c21500
    );/*W3C, Internet Explorer/Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+*/
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

}

.main_content p{
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.main_btn{
    font-size: 1.8rem;
    background: #DC2424;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right,#ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,#ffc500, #c21500);
    padding: 20px 60px;
    border-radius: 12px;
    border: none;
    color: #fff;
    margin-top: 2rem;
    cursor:  pointer;
    position: relative;
    transition: all 0.65s;
    outline: none;
}

.main_btn a{
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main_btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 12px;
    background: #ff1ead; /*Color for transition*/
    transition: all 0.8s;
    
}

.main_btn:hover {
    color: #fff;
}

.main_btn:hover:after{
    width: 100%;
}

.button {
    font: bold 11px Arial;
    text-decoration: none;
    background-color: #EEEEEE;
    color: #333333;
    padding: 2px 6px 2px 6px;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #CCCCCC;
  }






/*Main Hero Image Cards 1+2*/

.main_img-card{
    margin: 10px;
    height: 400px;
    width: 500px;
    border-radius: 12px;;
    display: flex;
    /*border: 2px solid #00dbde;*/
    flex-direction: column;
    justify-content: center;
    color:#fff;
    background-image: url("/images/backgrounds/websource.gif");
    background-size: cover;
    background-repeat: no-repeat;
    /*   background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);*/
}

.main_img-card:hover{
    overflow: hidden;
    transform: scale(1.075);
    transition:0.9s ease-in;
    cursor: pointer;
}

.main_img-card2{
    margin: 10px;
    height: 400px;
    width: 700px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    color:#fff;
    background-image: url("/images/backgrounds/source.gif");
    background-size: cover;
  /*  border: 2px solid #00dbde;*/
    /*   background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);*/
}

.main_img-card2:hover{
    margin: 10px;
    overflow: hidden;
    transform: scale(1.025);
    transition:0.9s ease-in;
    cursor: pointer;
}

.fa-layer-group,
.fa-users{
    font-size: 14rem;
}

#card-2{
background: #DC2424;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right,#dd2476, #ff512f);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right,#dd2476, #ff512f);
}

/*Mobile Responsiveness */

@media screen and (max-width:1100px) {
    .main_container{
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin:0 auto ;
        height: 90%;
    }

    .main_img-container{
        display: flex;
        justify-content: center;
    }

    .main_img-card{
        height: 80px;
        width: 120px;
    }
    .main_img-card2{
        height: 80px;
        width: 120px;
    }
    .main_content{
        text-align: center;
        margin-bottom: 4rem;


    }

    .main_content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main_content h2{
        font-size: 3rem;
    }


    .main_content p{
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    @media screen and(max-width:480px) {
        .main_img-card{
            width: 250px;
            height: 250px;
           
        }

        .fa-car, .fa-layer-group{ /*need to fix icons*/
            font-size: 40rem;
        }

        .main_content h1{
            margin-top: 3rem;
            font-size: 2rem;
        }
        .main_content h2{
           
            font-size: 2rem;
        }
        .main_content p{
            margin-top: 2rem;
            
        }

        .main_btn{
            padding: 12px 36px;
            margin: 2.5rem 0;
        }
    }

}

/*Services/About Web-up*/

.services{
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10rem 0;
}

.services h1{
    background-color: #ff8177;  /* fallback for old browsers */
    background-image: linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
   /*margin-bottom: 5rem;*/
    font-size: 2.5rem;
}

.services_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr ;
    grid-template-rows: 1fr;
}


.services_card{
    margin: 10px;
    height: 425px;
    width: 300px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*center text inside the gradient box*/
    color:#fff;
    background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
    transition:0.3s ease-in;
}


.services_card:nth-child(1){
   /* background: #dd3e54;  /* fallback for old browsers */
   /* background: -webkit-linear-gradient(to right, #6be585, #dd3e54);  /* Chrome 10-25, Safari 5.1-6 */
   /* background: linear-gradient(to right, #6be585, #dd3e54); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
   background-image: url("/images/backgrounds/code.jpg");
   width: 300px;
   height: 425px;
   overflow: hidden;
   background-size: cover;
   background-position: center;
}    


.services_card:nth-child(2){
   /* background: #FF0099;  /* fallback for old browsers */
  /*  background: -webkit-linear-gradient(to right, #493240, #FF0099);  /* Chrome 10-25, Safari 5.1-6 */
   /* background: linear-gradient(to right, #493240, #FF0099); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
   background-image: url("/images/backgrounds/social.jpg");
   width: 300px;
   height: 425px;
   overflow: hidden;
   background-size: cover;
   background-position: center;
  
}



.services_card:nth-child(3){
    /*background: #24C6DC;  /* fallback for old browsers */
    /*background: -webkit-linear-gradient(to right, #514A9D, #24C6DC);  /* Chrome 10-25, Safari 5.1-6 */
    /*background: linear-gradient(to right, #514A9D, #24C6DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-image: url("/images/backgrounds/mobile.jpg");
    width: 300px;
    height: 425px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    
}



.services_card:nth-child(4){
   /* background: #c21500;  /* fallback for old browsers */
    /*
    background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    /*background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-image: url("/images/backgrounds/infinite.jpg");
    width: 300px;
    height: 425px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}


.services_card h2{
    text-align: center;   
}

.services_card p{
    text-align: center;
    margin-top: 24px;
    font-size: 20px;
}

.services_btn{
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.services_card button{
    color: #fff;
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #131313;
    font-size: 1rem;
}


 .services_card button:hover {
     cursor: pointer;
 }

 .services_card:hover{
     transform: scale(1.075);
     transition: 0.3 ease-in;
     cursor: pointer;
 }


/*Pricing Cards*/



.pricing{
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
    padding: 1rem 0;
}


.pricing h1{
    background-color: #ff8177;  /* fallback for old browsers */
    background-image: linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background-size: 80%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    /*margin-bottom: 5rem;*/
    font-size: 2rem;
}





.pricing_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr  ;
    grid-template-rows: 1fr;
}


.pricing_card{
    margin: 10px;
    height: 325px;
    width: 225px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*center text inside the gradient box*/
    color:#fff;
    background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
    transition:0.3s ease-in;
}

/*Alternate cards*/

.alternate_card{
    margin: 10px;
    height: 325px;
    width: 225px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*center text inside the gradient box*/
    color:#fff;
    background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
    transition:0.3s ease-in;
}

.alternate_card:nth-child(1){
    background: #159957;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #155799, #159957);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #155799, #159957); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }



 .alternate_card:nth-child(2){

    background: #D66D75;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #E29587, #D66D75);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #E29587, #D66D75); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }


 .alternate_card:nth-child(3){

    background: #20002c;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #cbb4d4, #20002c);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #cbb4d4, #20002c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    
     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }


 .alternate_card:nth-child(4){

    background: #200122;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #6f0000, #200122);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #6f0000, #200122); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    width: 225px;
    height: 325px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
 }

/*eof alternate cards*/

.pricing_card:nth-child(1){
    background: #0575E6;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #021B79, #0575E6);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #021B79, #0575E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
   width: 225px;
   height: 325px;
   overflow: hidden;
   background-size: cover;
   background-position: center;
}    


.pricing_card:nth-child(2){
    background: #FF0099;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #493240, #FF0099);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #493240, #FF0099); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    width: 225px;
    height: 325px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  
}



.pricing_card:nth-child(3){
    background: #24C6DC;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #514A9D, #24C6DC);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #514A9D, #24C6DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    width: 225px;
    height: 325px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    
}



.pricing_card:nth-child(4){
   background: #c21500;  /* fallback for old browsers 
    
    background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    width: 225px;
    height: 325px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}


.pricing_card:nth-child(5){
    background: #159957;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #155799, #159957);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #155799, #159957); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }



 .pricing_card:nth-child(6){

    background: #D66D75;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #E29587, #D66D75);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #E29587, #D66D75); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }


 .pricing_card:nth-child(7){

    background: #20002c;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #cbb4d4, #20002c);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #cbb4d4, #20002c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    
     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }


 .pricing_card:nth-child(8){

    background: #200122;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #6f0000, #200122);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #6f0000, #200122); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    width: 225px;
    height: 325px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
 }
 


 .pricing_card:nth-child(9){
    background: #159957;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #155799, #159957);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #155799, #159957); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }



 .pricing_card:nth-child(10){

    background: #D66D75;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #E29587, #D66D75);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #E29587, #D66D75); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }


 .pricing_card:nth-child(11){

    background: #20002c;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #cbb4d4, #20002c);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #cbb4d4, #20002c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    
     width: 225px;
     height: 325px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }


 .pricing_card:nth-child(12){

    background: #200122;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #6f0000, #200122);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #6f0000, #200122); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    width: 225px;
    height: 325px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
 }
 




.pricing_card h2{
    text-align: center;   
    font-size: 22px;
    
}
.alternate_card h2{
    text-align: center;   
    font-size: 22px;
    
}

.pricing_card p{
    text-align: center;
    margin-top: 24px;
    font-size: 16px ;
}

.alternate_card p{
    text-align: center;
    margin-top: 24px;
    font-size: 16px ;
}
p.price{
    font-size: 36px;
}




.price_btn{
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.pricing_card button{
    color: #fff;
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #131313;
    font-size: 10px;
}


.alternate_card button{
    color: #fff;
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #131313;
    font-size: 10px;
}


 .pricing_card button:hover {
     cursor: pointer;
 }
 .alternate_card button:hover {
    cursor: pointer;
}


 .pricing_card:hover{
     transform: scale(1.075);
     transition: 0.3 ease-in;
     cursor: pointer;
 }

 .alternate_card:hover{
    transform: scale(1.075);
    transition: 0.3 ease-in;
    cursor: pointer;
}








/*Pricing Cards end*/





 /*Cards Technologies Section*/
.technologies{
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 10rem 0;
    
}
.imagegrid_h2{
        background-color: #ff8177;  /* fallback for old browsers */
    background-image: linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 5rem;
    font-size: 2rem;
    text-align: center; 
}


.tech_h2 {
    background-color: #ff8177;  /* fallback for old browsers */
    background-image: linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 2rem;
    text-align: center; 
    
}

.pricing_h2{
        background-color: #ff8177;  /* fallback for old browsers */
    background-image: linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 2rem;
    text-align: center; 
}

.card h4{

    background-color: #131313
}

.tech_wrapper {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr 4fr 4fr 4fr;
    grid-template-rows: 4fr;
   
}
 
.card{
    margin: 10px; /*space between cards*/
    height: 80px;
    width: 80px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.card h4{
    font-size: 20px;
    text-align: center;
    
}



h4 {
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }



.card:nth-child(1){
  background-color: #131313;
}    


.card:nth-child(2){
    background-color: #131313;
}



.card:nth-child(3){
    background-color: #131313;
    
}



.card:nth-child(4){
    background-color: #131313;
    
}

.card:nth-child(5){
    background-color: #131313;
}


.card:nth-child(6){
    background-color: #131313;
}



.card button:hover {
    cursor: pointer;
}

.card:hover{
    transform: scale(1.25);
    transition: 0.3s ease-in;
    cursor: pointer;
   
}
/*End of Technologies Section*/




/*Media Queries for Mobile View of Technology cards*/
@media screen and (max-width:1300px){ 
    
    
    /*Never forget space after 'and'*/
    .tech_wrapper{
        grid-template-columns: 1fr 1fr;
        overflow-wrap: inherit;
    }
}

@media screen and (max-width:768px){
    .tech_wrapper{
        grid-template-columns: 1fr;
    }

    
    .tech_h2{
        grid-template-columns: 1fr;
       
    }
}
@media (hover: hover) and (max-width:768px){
    .card:hover {  
        transform:none;
        
        cursor: crosshair; }
  }








 /*Media Queries for Mobile view of Cards*/
@media screen and (max-width:1300px){ /*Never forget space after 'and'*/
    .services_wrapper{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:768px){
    .services_wrapper{
        grid-template-columns: 1fr;
    }
}


/*Media Queries for the pricing cards*/

@media screen and (max-width:1300px){ /*Never forget space after 'and'*/
    .pricing_wrapper{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:768px){
    .pricing_wrapper{
        grid-template-columns: 1fr;
    }
}
/*end of Media Queries for the pricing cards*/






/*Footer Styling*/

.footer_container{
    background-color: #131313;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer_logo {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer_links{
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer_link_wrapper{
    display: flex;
}

.footer_link_items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}



.footer_link_items h2{
margin-bottom: 16px; 
color: #fff;
font-size: 18px;
}


.footer_link_items a{
color: #fff;
text-decoration: none;
margin-bottom: 0.5rem;
transition: 0.3 ease-out;
}


.footer_link_items a:hover{
    color: #e9e9e9;
    font-size: 17px;
    text-overflow: none;
    transition: 0.3 ease-out ;
}


.social_icon_link{
color: #fff;
font-size: 24px;
}

.social_media{
    max-width: 1000px;
    width: 100%;
}


.social_media_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin:40px auto 0 auto;
}


.website_rights{
    color: #fff;
}


/*Contact Page*/


.contact-section{
    background-image: linear-gradient(to right, #ffc500, #c21500);
    
    padding: 40px 0;
  }
  .contact-section h1{
    text-align: center;
    color:#34495e;
    padding-top: 5%;
  }
  .contact-section h2{
      padding-top: 5%;
      font-weight: bolder;
  }


  .border{
    width: 100px;
    height: 10px;
    background: #34495e;
    margin: 40px auto;
  }
  
  .contact-form{
    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
  }
  
  .contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    border: 0;
    background: #111;
    padding: 20px 40px;
    outline: none;
    color: #ddd;
    transition: 0.5s;
  }
  .contact-form-text:focus{
    box-shadow: 0 0 10px 4px #34495e;
  }
  textarea.contact-form-text{
    resize: none;
    height: 120px;
  }
  .contact-form-btn{
    float: right;
    border: 0;
    background: #34495e;
    color: #fff;
    padding: 12px 50px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
  }
  .contact-form-btn:hover{
    background: #2980b9;
  }

  input[type=radio] {
    
    width: 5%;
    height: 2rem;
    
    margin-bottom: 1%;
    justify-content: flex-start;
}
  
label[for="plan1"] {
    /* woohoo! */
    font-size: x-large;
 }

 label[for="plan2"] {
    /* woohoo! */
    font-size: x-large;
 }

 label[for="plan3"] {
    /* woohoo! */
    font-size: x-large;
 }

 label[for="plan4"] {
    /* woohoo! */
    font-size: x-large;
    
 }
 
 .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
  height:50%;
  justify-content: center;
  text-align: center;
}

span{
    text-align:center;
}




@media screen and (max-width: 600px){
.footer_links{
    padding-top: 2rem;
}
#footer_logo{
    margin-bottom: 2rem;
}


.website_rights{
    margin-bottom: 2rem;
}

.footer_link_wrapper{
    flex-direction: column;
}

.social_media_wrap{
    flex-direction: column;
    }

}


@media screen and (max-width: 480px){
.footer_link_items{
    margin: 0;
    padding: 10px;
    width: 100%;
}

}

