
/*****************************************/
/*         INDEX PAGE STYLING            */
/*****************************************/


/* INTRO PARAM & STYLING */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* CONTAINER STYLING */
.container{

    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-top: auto;
    
}


/*SOCIALS STYLING*/

/*END SOCIALS STYLING*/


/* NAV STYLING 
   ******************************
*/
#navbar{

    
    background-color: #541dd6;
    z-index: 1;
    height: 3.85rem;
    line-height: 1.0rem;
    padding-top: 2.20rem;
    text-align: center;
   
    
}

.sticky{

    position:sticky;
    top:0;
    width:100%;
    

}



nav a{
   
    color: white;
    padding: 1.50rem 1.0rem;
    text-decoration: none;
    display:inline;

}


.nav-contactbtn{

    cursor: pointer;
    background-image: linear-gradient(to right, rgb(162, 10, 209), rgb(82, 1, 244));
    font-size: 1.20rem;
    font-weight: bold;
    padding: 0.875rem 2.5rem;
    border-radius: 0.25rem;

    transition-duration: 0.4s;


    position: absolute;
    right: 5rem;
    top:1.2rem;

}

.nav-contactbtn:hover{

    background-image: none;
    background-color: #f4f4f4;
    color: rgb(175, 4, 255);

}

/* DROPDOWN MENU STYLING*/

.dropdown{

    position:relative;
    display:inline;
    z-index: 1;
    
}

.dropdown-menu{

    position:absolute;
    left:0;
    top: 2.0rem;
    background-color: rgb(255, 255, 255);
    padding: 0.75rem;
    border-radius: .25rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
 
 }

 .dropdown-styling-grid{

    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap:2rem;
    

}


.dropdown.active > .dropdown-link, .dropdown-link:hover{

    color:black;

}


.dropdown.active > .nav-header + .dropdown-menu{

    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;

}

.dropdown-heading{

    text-decoration: underline;
    font-weight:bold;

}

.dropdown-links-group{

    color:#000000;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    
}

.dropdown-link{

    background: none;
    border: none;
    text-decoration: none;
    color: #393838;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    
    

}

/* END DROPDOWN MENU STYLING*/


/* END NAV BAR STYLING */

/* HEADER STYLING */ 
.header-index{

    background-image:url('Bellatrix\ Reference\ Repository/background_header.jpeg');
    background-attachment: fixed;
    background-size: 100% 100%;
    background-color: #101728;
    color: white;
    padding-left: 3.125rem;
    padding-right: 0.625rem;
    height: 53.75rem;
    align-content: center;
    text-align: center;
    flex-direction: column;
    justify-content: start;
    display: flex;
    
}

#intro{

    font-size: 2.188rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;

}


/* CONTACT BUTTON STYLING */
#button-appointment-style{

    background-color: #6c00f8;
    display: inline-block;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    border:#333;
    cursor:pointer;
    top:4em;

    

}

.button-appointment span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.button-appointment span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -1.25rem;
    transition: 0.5s;
  }

.button-appointment:hover span {
    padding-right: 1.563rem;
  }
  
.button-appointment:hover span:after {
    opacity: 1;
    right: 0;
}

/* END CONTACT US STYLING */

/* END HEADER STYLING */ 

/* ABOUT US STYLING */

.about-us{

    height:218.75rem;
    padding-left: 15rem;
    padding-top: 21.875rem;

}

.about-us-column-header{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3.125rem;
    background: -webkit-linear-gradient(#4000ff, #5100ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.about-us-column{

    padding-bottom: 550px;
    padding-right: 50rem;

}

.about-us-text{

    font-size: 25px;

}


/* END ABOUT US STYLING */


/* MAIN BODY STYLING */

/* Service Animation Styling */
.services-outline {
    display: flex;
    justify-content: space-around;
    margin-top: 1.25rem;
    height: 45vh;
    width: 160vh;
    padding-left: 17rem;
    opacity: 0;
    transition: all 1s ease-in-out;
    filter:blur(5px);
    transform: translateX(-100%);
    vertical-align: middle;
    
}



/* END Service Animation Styling */

/* Service Animation */
.service-style {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    border-color: #541dd6;
    border: 2px dashes;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.visible {
    opacity: 1;
    filter:blur(0);
    transform: translateX(0);
}

/* END Service Animation */

/* Footer Styling*/

.footer-seperator{

    border-top: 0.20rem solid #0d0535;
    
}

.footer-container {
  background-color: #ffffff; 
  display: grid;
  grid-gap: 1rem; 
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 1rem; 

}

.footer-column {
  padding: 1rem; 

}

.sub-footer{

    display:inline-flex;
    background-color: #333;
    height:3rem;
}

.sub-footer-begin{

    position:absolute;
    bottom: 0.5em;
    left:2%;
    display:inline-flex;


}

.sub-footer-end{
    
    position:absolute;
    bottom: 0.5em;
    right:2%;
    display:inline-flex;

}

/*END FOOTER STYLING*/



/*****************************************/
/*        CONTACT US PAGE STYLING        */
/*****************************************/

.header-contact{

    height: 55rem;
    background-color: #e9e8e8;

}

.contact-two-row{

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;

    height:40rem;
    width: 60rem;

    padding-left: 9rem;
    padding-top: 5rem;

    position:absolute;

}

.column-1{

    width: 40rem;
    background-color:#ffffff

}

.column-2{

    width: 40rem;
    background-color:  #e9e8e8;

}

.contact-column-1-header{

    color: #3c06dd;
    font-size: 1.6rem;
    padding-top: 2.0rem;
    padding-left: 2rem;


}

.contact-column-1-pheader{


    font-size: 2rem;
    font-style: bold;
    font-weight:bolder;
    padding-left: 2rem;

    padding-top: 1rem;

}

.contact-email-number{

    display: grid;
    grid-gap: 10rem; 
    grid-template-columns: 1fr 1fr 1fr 1fr;

    padding-top: 8rem;
    padding-left: 4rem; 

}

.contact-logo{

    padding-left: 10rem;
    padding-top: 10rem;

}


.contact-column-2-pheader{

    padding-top: 5rem;
    padding-left: 5rem;


}

.contact-form-redirect-button{

   cursor: pointer;
    background-image: linear-gradient(to right, rgb(162, 10, 209), rgb(82, 1, 244));
    font-size: 1.20rem;
    font-weight: bold;
    padding: 0.875rem 2.5rem;
    border-radius: 0.25rem;

    transition-duration: 0.4s;


    right: 5rem;
    top:1.2rem;

}

.contact-form-redirect-button-container{

    padding-top: 5rem;
    padding-left: 18rem;

}

/* END CONTACT US PAGE STYLING */



/*****************************************/
/*           TEAM PAGE STYLING           */
/*****************************************/



.header-team{

    height:30rem;
    display: flex;
    justify-content: center;

    background-color: white;

    backdrop-filter: blur;

}

.team-about-pheader{

    width: 20rem;
    height: 2rem;


    padding-top: 10rem;
    padding-left: 12rem;
    
}

.team-about-paragraph{

    width: 30rem;
    height: 5rem;

    padding-top: 2rem;
    padding-left: 5rem;

    

}







.four-section-team-layout{

    height: 58rem;
    display: grid;
    grid-template-columns: 1fr 1fr;

}

.four-section-team-layout-column{

    padding: 4.375rem;

}

.four-section-team-layout-grid-top{

    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, red, purple);
    padding: 3px;

}

.four-section-team-layout-grid-bottom{

    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, red, purple);
    padding: 3px;
    margin-top: 8rem;

}

.four-section-team-border-wrap{

    background: white;
    padding: 2rem;

}

.team-header{

    margin-left: 2rem;

}

.team-pheader{

    margin-top:0.8rem;
    margin-left: 2rem;
    font-size: 18;
}








.two-section-team-layout{

    height:30rem;
    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 5rem;
    margin-left: 5rem;

}

.world-class-p{



}

.service-p{


}







