* {
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    
}
:root {
    --black: black;
    --white: white;
    --purple: #893063;
    --light-purple: #df79b3;
    --orange: #D1722A;
    --light-orange: #E2921B;
    --blue: #364F9A;

    --color-opacity: 0.5;
    --red-rgb: 255, 0, 0;

    --purple-rgb: 137, 48, 99;
    --light-purple-rgb: 223, 121, 179;
    --orange-rgb: 209, 114, 42;
    --light-orange-rgb: 226, 146, 27;
    --blue-rgb: 54, 79, 154;
}
section {
    padding: 0;
    margin: 0;
}
html {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
h1 {
    color: var(--purple);
    padding-top: 10px;
    font-size: 42px;
    font-weight: 600;
    padding-bottom: 5px;
}
/*------------ FORMATTING for h1's-----------------*/
.about-me, .my-project,
.certifications,  
.package-prices {
    width: 80%;
    margin: auto;
    text-align: center;
}
h2 {
    color: var(--light-purple);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: normal;
    text-transform:uppercase;
}
h3 {
    color: var(--light-purple);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: normal;
    text-transform:uppercase;
}
p {
    color: var(--purple);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 5px;
    text-align: left;
}
.row {
    margin-top: 0%;
    display: flex;
    justify-content: space-between;
}
.text-box-title {
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 2px var(--purple), 0 0 1em var(--light-purple), 0 0 0.2em var(--purple);
}
@media(max-width: 700px){
    .text-box-title {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        box-sizing: border-box;
        font-stretch: condensed;

        text-shadow: 1px 1px 2px var(--purple), 0 0 1em var(--light-purple), 0 0 0.2em var(--purple);
    }
    h1 {
        margin: 0;
        padding: 0;
        font-size: 4px;
    }
    
}
/*--- header top ---*/
.header {
    min-height: 85vh;
    width: 100%;
    background-image: 
         url("../images/splash_image6.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
}
/*--- nav ---*/
nav {
    background-color: var(--black);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);

    width: 100%;
    position:fixed;
    z-index: 1;
    padding: 0% 9%;
}
nav img {
    width: 50px;
    height: 60px;
    padding-top: 1px;

    background-color: black;
}
nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}
nav li {
    height: 65px;
}
nav a {
    height: 100%;
    padding: 0 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--light-orange);
}
nav a:hover {
    background-color: rgba(209, 114, 42, 0.65);
    border-radius: 0px 10px 0px 10px;
    color: var(--white);
    text-shadow: 1px 1px 2px var(--purple), 0 0 10em var(--light-purple), 0 0 0.20em var(--purple);

}
#navLinks ul #logo-hover a:hover {
    background-color: var(--black);
}
nav li:first-child {
    margin-right: auto;
}
svg {
    background-color: black;
    fill: white;
}

/*-------Side Nav hamburger START-----------*/
#navbar1 #navLinks #sidebar1 #link1 a:nth-child(1):hover {
    background-color: black;  
 }

 #navbar1 #navLinks #sidebar2 #link2 a:last-child:hover {
    background-color: black;  
 }
 .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 150px;
    z-index: 999;
    background-color: rgba(var(--black), 0.2);
    backdrop-filter: blur(5px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li {
    width: 100%;
}
.sidebar a {
    width: 100%;
}
.menu-button {
    display:none;
}
/*-------Side Nav hamburger END-----------*/


@media(max-width: 800px){
    .hideOnMobile {
        display: none;
    }
    .menu-button {
        display:block;
    }

    * {
        margin: 0;
        padding: 0;
    }
    html {
        height: 100%;
    }
    body {
        min-height: 100%;
    }
    
    nav {
        padding: 0% 1%;
        position: fixed;
    }

}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }

    * {
        margin: 0;
        padding: 0;
    }
    html {
        height: 100%;
    }
    body {
        min-height: 100%;
    }
    
    nav {
        padding: 0% 1%;
        position: fixed;
    }

}


/* -------- Text area ---------*/
.text-box {
    width: 90%;
    color: var(--white);
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1 {
    padding-top: 100px;
    font-size: 62px;
    color: var(--white);
}
.text-box p {
    font-size: 14px;
    color: var(--white);
    text-align: center;   
}

/*-------- Header CTA BTN START ---------*/
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    bottom: 0;
}
.hero-btn:hover {
    background: linear-gradient(to right, var(--light-orange), var(--purple), var(--blue));
    transition: 0.5s;
}
/*-------- Header BTN START END---------*/

/*--------Bottom CTA BTN START--------------*/
a.btn { 
    width: 250px; 
    padding: 10px 25px 10px 25px; 
    font-family: Arial; 
    font-size: 16px; 
    text-decoration: none; 
    color: var(--white); 
    background-color: var(--light-purple); 
    text-shadow: -1px -1px 2px var(--purple);
    border: 1px solid var(--purple);
    border-radius: 3px; 
    -moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
    background: -moz-linear-gradient(var(--light-purple), var(--purple) 35%, var(--purple)); 
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0, var(--light-purple)),color-stop(.35, var(--purple)),color-stop(1, var(--purple)));
    transition-duration: 1s;
}
a.btn:hover { 
    background-color: var(--purple);
    text-shadow: -1px -1px 2px var(--purple);
    border: 1px solid var(--light-purple); 
    border-radius: 3px; 
    -moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
    background: -moz-linear-gradient(var(--purple), var(--purple) 75%, var(--light-purple)); 
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0, var(--purple)),color-stop(.75, var(--purple)),color-stop(1, var(--light-purple)));
    transition-duration: 1s;
 }
/*--------Bottom CTA BTN END--------------*/



 /*------CHECK IF NEEDED ROMOVE THIS START--------------*/
 .hero-btn .sample-work-btn {
    position: absolute;
    bottom:   0;
    align-items: center;
}
 /*------CHECK IF NEEDED ROMOVE THIS END --------------*/
 
 
 @media(max-width: 700px){
    .text-box h1 {
        padding-top: 60px;
        font-size: 42px;
        color: var(--white);
    }
}

/*----------- Slider Area -------------*/
.slider-content {
    padding-bottom: 20px;
    height: 50px;
    }
    .slider-content .shadow img {
        height: 60px;
        width: 60px;
    }
    @media(max-width: 700px){
        
    }

/*---- FIX NAV SMALL DEVICES ----*/
@media(max-width: 700px){
    .text-box {
        font-size: 20px;
    }

    .nav-links ul li{
        display: block;
    }

    .nav-links{
        position: absolute;
        background: linear-gradient(to right, var(--light-orange), var(--purple));
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: var(--white);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
    
}

/*--------------- About me ---------------*/
.about-me {
    padding-top: 50px;
}
.profile-pix {
    border-radius: 50%;
    display: block;
    float: left; 
    margin: 15px;
    shape-outside: circle();
    height: 400px;
    box-shadow: 1px 5px 20px 2px var(--purple);
}
.about-me-p {
    text-align: justify; 
      font-size: 15px;
    padding-left: 200px;
}
@media(max-width: 700px){
    
}

/*----------------- PROJECT WORK Start ------------------------*/
.my-projects {
    padding: 25px;
}
.container-partner-element {
    background: white;
    height: 480px;
 
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
    
    margin: 0;
 
    flex-wrap: wrap;
    align-content: center;
    gap: 1em;
    row-gap: 2em;
    position: relative;
 
    /* flex-grow: 1; */
 }
 .container-box-title {
    color: rgb(62, 0, 95);
    text-align: center;
    font-size: 4rem;
    margin: 0;

 }
 .box-bg {
    height: 210px;
    width: 300px;
    box-shadow: 3px 3px 3px #610561;
    padding: 10px 30px;
    border-radius: 5px;
 
    background-color: rgb(255, 123, 196);

 }
 .box-bg:hover {
    background-color: rgb(194, 2, 107);
 }
 .img-container img {
    height: 160px;
    width: 240px;
    border-radius: 5px;
    border: .5px rgb(194, 2, 107) solid;
 }
 .img-container img:hover  {
    border: .5px rgb(255, 123, 196) solid;
 }
 .p-title {
    color: whitesmoke;
    color: var(--white);
    font-size: 14px;
    font-weight: 0;
    line-height: 0;
    padding: 10px 5px;
    text-align: left;

 }
 .p-title:hover {
    color: rgb(194, 2, 107);  
 
 }
 a {
    text-decoration: none;
 }
.project-btn {
    padding: 3px 5px;
    background-color: rgb(194, 2, 107);

    box-shadow: 3px 3px 3px var(--white);
    border: 0.5px white solid;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 1px;
    transition: 0.2s;  
    border-radius: 15px;
 }
.project-btn:hover {
    background-color: rgb(255, 123, 196);
    box-shadow: 3px 3px 3px var(--light-purple);
    border: 0.5px white solid;
 }
 .row-cards {
    display: flex;
    
    flex-direction: row;
    flex-wrap: wrap;
    width: 80%;
  }
  .col-card {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
  }

@media(max-width: 1230px){
        .container-partner-element {
           display:flex;
           align-items: center;
           justify-content: center;
           margin-right: 0;
           height: 100%;
           flex-direction: column;
           row-gap: 0px;
        }
        .box-bg {
            padding: 10px 30px;
            margin-bottom: 10px;
         }
         .container-box-title {
            font-size: 2rem;
            margin: 1.5rem;
         }

 }
 
 @media(max-width: 700px){
    .container-partner-element {
        display:flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        height: 100%;
        flex-direction: column;
        row-gap: 0px;
     }
     .box-bg {
         padding: 10px 30px;
         margin-bottom: 10px;
      }
      .container-box-title {
         font-size: 2rem;
         margin: 1.5rem;
      }
 }
  /*-------------- End Project --------------*/
/*---- certifications ---*/

.certifications {
    padding-top: 35px;
}
.certifications-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 0%;
    text-align: left;
    border: rgba(var(--light-purple-rgb),var(--color-opacity)) dotted 1px;
    padding-top: 5px;
    margin-top: 10px;
}
.certifications-col img {
    width: 100%;
    border-radius: 10px;
}
.certifications-col p {
    padding: 0;   
}
.certifications-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}

@media(max-width: 700px){
    
}
/*-------- packages  -------*/
.package-prices {
    padding-top: 35px;
}
.price-col {
    flex-basis: 31%;
    background: rgba(var(--light-purple-rgb),var(--color-opacity));
    border-radius: 10px;
    margin-bottom: 5%;
    margin: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    overflow: scroll;
    overflow-x: hidden;
    height: 450px;
    aspect-ratio: auto;
    object-fit: fill;
    width: 250px;
}
.price-col h3 {
    text-align: center;
    font-weight: 600;
    margin: 1px 0;
    color: var(--light-orange);
}
.price-col:hover {
    box-shadow: 0 0 20px 0px rgba(var(--light-purple-rgb),var(--color-opacity));
}
.price-col p {
    color: var(--purple);
    font-weight: 600;
}

.my-package-price {
    padding-left: 10px;
    font-size: larger;
}
@media(max-width: 700px){
    .row{
        flex-direction:column;
    }
}
/*-------------- CTA ----------------------*/
.cta {
    width: 80%;
    margin: 10px auto;
    text-align: center;

    background-image: linear-gradient(rgba(0,0,0,0.7), 
    rgba(0,0,0,0.7)), 
    url("../images/splash_image6.jpg");
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    
    padding: 100px 0;
    padding-top: 50px;

    
}
.cta h1 {
    color: var(--light-purple);
    margin-bottom: 40px;
    padding: 0;
}
.cta-form {
    background-color: rgba(var(--light-purple-rgb),0.2);
    
    padding: 5px;
    
}
.form-data-label{
    color: var(--light-purple-rgb);
    display: flex;
}
@media(max-width: 700px) {
    .cta h1{
        font-size: 24px;
    }
}
/*---------- form----------------*/
.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.7), #b535a4), url(splash_image6.jpg);
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
}
.form {
    width: 90%;
    max-width: 600px;

    align-items:center;
}
.inner-group {
    margin: 10px;
    position: relative;
}
input, textarea {
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    font-size: 15px;
}
label {
    height: 100%;
    position: relative;
    top: -35px;
    left: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: 0.2s;
}
button {
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width: 70%;
    cursor: pointer;
}
input:focus~label,
input:valid~label {
    top: 0;
    font-size: 14px;
}
textarea:focus~label,
textarea:valid~label {
    top: 0;
    font-size: 14px;
}
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row .inner-group {
    flex-basis: 48%;
}


/*---------footer---------------*/
.footer {
    width: 100%;
    text-align: center;
    padding: 0px 0;
}
.footer h4 {
    color: var(--purple);
    margin-bottom: 2px;
    margin-top: 50px;
    font-weight: 600;
}
.footer p {
    text-align: center;
    padding: 5px;
    margin: 0px;
}
.icons .fa {
    color: var(--orange);
    margin: 0px 0px;
    cursor: pointer;
    padding: 5px 10px;
}
.fa-heart-o {
    color: var(--orange);
    font-weight: 600;
    
}
.icons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
}















































































































