/*Style sheet*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap');

:root{
  --blueAccent: #000762;
  --darkgrey: #434343;
  --lightgrey: #9a9999;
  --maxw:1600px;
  --lightBlueAccent: #2c5cfb;
  --surface: #ffffff0f;
  --stroke: #ffffff1f;
}
*{
  box-sizing: border-box;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding: 2rem;
}
body{
  background: linear-gradient(to top, #fff37139, #d5c6a738),url(imagesNicons/nurse_N_Patient_2.png) no-repeat fixed center/cover;
  overflow-x: hidden; 
}
header{
  /*backdrop-filter: blur(.7rem);*/
  border: none; 
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 auto;
  position:fixed; 
  top:0;
  width: 100%;
  height: auto;
  z-index: 50;
}
#logo{
  cursor: pointer;
  display: flex;
  width: 6rem;
  height: auto;
}
header h2{
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  margin: 1rem 0 0 .5rem;
  padding-bottom: .2rem;
}
#trade-Mark-Span{
  font-size: 1.5rem;
}
/* ---------- Menu Button and Side Navigation ---------- */
.menu-BTN{
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  right: 1.5rem;
  top: .2rem;
  z-index: 75;
  cursor: pointer;
}
.menu-BTN img{
  background-color: var(--blueAccent);
  border-radius: .5rem;
  width: 2.5rem;
  margin: .5rem;
}
#side-NAV{
  background: #000762c7;
  font-size: 1.3rem;
  font-weight: 600;
  width: 15rem;
  height: 100%;  
  left: -400px;
  padding: 1.5rem 0 0 1.5rem;
  position: fixed;
  top: 0;
  transition: 0.5s ease;
  z-index: 60;
}
nav ul li{
  list-style: none;
  margin: 2.5rem 1rem;
}
nav ul li a{
  text-decoration: none;
  color: #fff;
  transition: 0.6s ease-in-out;
}
nav ul li a:hover{
  color: var(--blueAccent);
}
/* ---------- Opening Banner ---------- */
.opening-Banner{
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.opening-Banner h1{
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  margin-top: 2rem;
  transition: 0.5s ease;
}
.opening-Banner h1:hover{
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}
/* ---------- Banner Buttons ---------- */
.banner-BTN{
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.banner-BTN a{
  background: var(--blueAccent);
  border: .2rem solid #fff;
  border-radius: 1rem;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  display: inline-block;
  margin: 1rem 2rem;
  padding: .8rem 2rem; 
  position: relative;
  transition: color 0.6s;
  text-align: center;
  text-decoration: none;
  z-index: 10;
}
.banner-BTN a span{
  background: #fff;
  border-radius: .4rem;
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.6s ease;
}
.banner-BTN a:hover span{ 
  width: 100%;
}
.banner-BTN a:hover{
  color: var(--blueAccent);
  opacity: 0.8;
}
/* ---------- About Section ---------- */
.about-Section{
  background-color: #ffffffd5;
  border-radius: 4rem 0 4rem 0;
  margin-top: 4rem;
  padding: 2rem; 
}
.about-Section h1{
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.about-Row{
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}
.about-Row img{
  border-radius: .5rem;
  width: 100%;
  height: auto; 
}
.about-Column{
  background: #e2e9fb;
  border-radius: .8rem;
  box-sizing: border-box;
  flex-basis: 31%;
  margin-bottom: 5%;
  padding: 1rem .8rem;
  transition: .4s ease-in-out;
}
.about-Column:hover{
  box-shadow: 0 0 1.2rem 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
.about-Column h2{
  font-size: 2.1rem;
  font-weight: 600;
}
.about-Column p{
  font-size: 1.3rem;
  line-height: 2rem;
  margin-top: 1rem;
}
/* ---------- Contact Section ---------- */
.contact-Section{
  background-color: var(--lightBlueAccent);
  border-radius: 4rem 0 4rem 0;
  margin-top: 4rem;
  padding: 2rem;
}
.contact-Section h1{
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
} 
.contact-Row{
  display: flex;
  gap: 2rem;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 3rem;
}
.contact-Left-Title{
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
} 
.contact-Column-One label{
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
} 
.contact-Inputs{
  border: none;
  border-radius: .5rem;
  font-size: 1.2rem;
  margin-top: .5rem;
  padding: .5rem;
  width: 70%;
} 
.contact-Inputs:focus{
  outline: .2rem solid #fbc02c;
}
.submit-BTN, .reset-BTN{
  background: var(--blueAccent);
  border: none;
  border-radius: 2rem;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  padding: .3rem 1.5rem;
  transition: 0.5s ease-in-out;
}
.submit-BTN:hover, .reset-BTN:hover{
  background: #ffffffd5;
  border: none;
  border-radius: 2rem;
  color: var(--blueAccent);
  cursor: pointer;
  font-size: 1.2rem;
  padding: .3rem 1.5rem;
  opacity: 0.6;
}  
.contact-Column-Two img{
  border-radius: 2rem;
  width: 100%;
  height: auto;
}
.contact-Column-Two p{
  color: #fff;
  font-size: 1.5rem;
  margin-top: 1rem;
}
.contact-Column-One, .contact-Column-Two{
  flex-basis: 45%;
} 
/* ---------- Thank You Page ---------- */
.thankyou-Container{
  background: #ffffffc5;
  border-radius: 4rem 0 4rem 0;
  margin: 20rem auto;
  padding: 2rem;
  text-align: center;
  width: 90%;
}
.thankyou-Container h1{
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.thankyou-Container p{
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.thankyou-Container a{
    color: var(--lightBlueAccent);
    font-size: 1.2rem;
    padding: .5rem 2rem;
    text-decoration: none;
  }
/* ---------- Footer ---------- */
.footer, .footer-thankyou{
  background-color: var(--darkgrey);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}
.footer, .footer-thankyou a{
  color: var(--lightBlueAccent);
  cursor: pointer;
  text-decoration: none;
} 
.footer-thankyou{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
/* ---------- Media Queries ---------- */
@media(min-width: 2560px){
  .opening-Banner h1{
    font-size: 10rem;
  }
  #logo{
    width: 8rem;
    height: auto;
  }
  #trade-Mark-Span{
    font-size: 3rem;
  }
  header h2{
    font-size: 4rem;
    margin: 1rem 0 0 .5rem;
    padding-bottom: .2rem;
  }
  .menu-BTN{
    margin-right: 4rem;
  }
  .menu-BTN img{
    width: 80px;
  }
  #side-NAV{
    font-size: 2rem;
    width: 23rem;
  }
  /* ---------- Banner Buttons ---------- */
  .banner-BTN{
    position: absolute;
    top: 80%;
  }
  .banner-BTN a{
    font-size: 2.5rem;
    margin: 1rem 2.5rem;
    padding: 1rem 4rem; 
  }
  /* ---------- About Section ---------- */
  .about-Section{
    background-color: #ffffffd5;
    border-radius: 4rem 0 4rem 0;
    margin-top: 12rem;
    padding: 2rem; 
  }
  .about-Section h1{
    font-size: 5rem;
  }
  .about-Column p{
    font-size: 2rem;
    line-height: 2.5rem;
  }
  /* ---------- Contact Section ---------- */
  .contact-Section{
    padding: 4rem;
  }
  .contact-Section h1{
    font-size: 5rem;
    margin-bottom: 2rem;
  } 
  .contact-Left-Title{
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .contact-Column-One label{
    font-size: 2rem; 
  }
  .contact-Inputs{
    font-size: 1.7rem;
    padding: .8rem;
  } 
  .submit-BTN, .reset-BTN{
    font-size: 2rem;
    font-weight: 600;
    padding: .3rem 1.5rem;
  } 
  .contact-Column-Two p{
    color: #fff;
    font-size: 2rem;
    margin-top: 1.5rem;
  }
  /* ---------- Thank You Page ---------- */
  .thankyou-Container{
    margin: 30rem auto;
    padding: 1rem;
  }
  .thankyou-Container h1{
    font-size: 5rem;
  }
  .thankyou-Container p{
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
  }
  .thankyou-Container a{
    color: var(--lightBlueAccent);
    font-size: 2rem;
    padding: .5rem 2rem;
    text-decoration: none;
  }
  /* ---------- Footer ---------- */
.footer{
    font-size: 2rem;
    padding: 2rem;
  }   
}
@media(max-width: 1024px) {
  /* ---------- About Section ---------- */
  .about-Section h1{
    font-size: 2rem;
  }
  .about-Row{
    flex-direction: column;
    padding: 0 6rem;
  } 
  .about-Column{
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
  }
  .column-Image-Container h2{
    font-size: 1.8rem;
  } 
  .about-Column p{
    margin-bottom: 6rem;
  }
  /* ---------- Contact Section ---------- */
  .contact-Inputs{
    font-size: 1rem;
    padding: .7rem;
  } 
  /* ---------- Footer ---------- */
.footer{
    font-size: 1rem;
    padding: .7rem;
  }   
}
@media(max-width: 768px) {
  /* ---------- Header section ---------- */
  header h2{
    color: #fff;
    font-size: 1.5rem;
  }
  /* ---------- Opening Banner ---------- */
.opening-Banner h1{
  font-size: 3rem;
  font-weight: 600;
}
/* ---------- Banner Buttons ---------- */
.banner-BTN a{
  border: .15rem solid #fff;
  font-size: 1.2rem;
  padding: .5rem 1.7rem; 
}
  /* ---------- About Section ---------- */
  .about-Section h1{
    font-size: 2rem;
  }
  .about-Row{
    flex-direction: column;
    padding: 0 1rem;
  } 
  .about-Column{
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
  }
  .about-Column p{
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: .5rem;
  }
  .column-Image-Container h2{
    font-size: 1.7rem;
  }
  /* ---------- Contact Section ---------- */
  .contact-Section h1{
    font-size: 2.5rem;
  } 
  .contact-Column-One, .contact-Column-Two{
    flex-basis: 50%;
  } 
  .contact-Inputs{
    font-size: 1rem;
    padding: .7rem;
  } 
  .contact-Column-Two p{
    font-size: 1.2rem;
    margin-left: -1rem;
  } 
  /* ---------- Footer ---------- */
.footer{
    font-size: .8rem;
    padding: .5rem;
  }   
}
@media screen and (max-width: 630px) {
  /* ---------- Header section ---------- */
  header h2{
    font-size: 1.2rem;
  }
  /* ---------- Opening Banner ---------- */
  .opening-Banner h1{
    font-size: 2.2rem;
  }
  h2{
    font-size: 2rem;
  }
  /* ---------- Banner Buttons ---------- */
  .banner-BTN{
    display: inline-flex;
    justify-content: center;
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    text-align: center;
  }
  /* ---------- Contact Section ---------- */
  .contact-Row{
    flex-direction: column;
    padding: 0; 
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }
  .contact-Column-Two img{
    display: none;
  }
}
@media(max-width: 500px){
  /* ---------- Header section ---------- */
  header h2{
    display: none;
  }
  /* ---------- Opening Banner ---------- */
  .opening-Banner h1{
    font-size: 2rem;
  }
  /* ---------- Banner Buttons ---------- */
  .banner-BTN{
    top: 70%;
    
  }
  .banner-BTN a{
    font-size: .8rem;
  }
  /* ---------- About section ---------- */
  .about-Section h1{
    font-size: 1.5rem;
  } 
  .about-Column{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
  }
  /* ---------- contact Section ---------- */ 
  .contact-Section h1{
    font-size: 1.7rem;
  }
  .contact-Column-Two p{
    font-size: 1.3rem;
    margin-left: -2rem;
  } 
  /* ---------- Thank You Page ---------- */
  .thankyou-Container{
    margin: 10rem auto;
    padding: 1rem;
  }
  .thankyou-Container h1{
    font-size: 2rem;
  }
  .thankyou-Container p{
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 1rem;
  }
}
@media(max-width: 320px){
  /* ---------- Banner Buttons ---------- */
  .banner-BTN{
    top: 70%;
  }
  .banner-BTN a{
    padding: .2rem .5rem;
    font-size: .8rem;
  }
  /* ---------- About section ---------- */
  .about-Section h1{
    font-size: 1.3rem;
  } 
  .about-Column{
    padding: 1rem;
  }
  .about-Column p{
    font-size: 1rem;
    line-height: 1.2rem;
    margin-top: .2rem;
  }
  /* ---------- contact Section ---------- */ 
  .contact-Section h1{
    font-size: 1.7rem;
  } 
  .contact-Column-Two p{
    font-size: 1.1rem;
    margin-left: 0;
  }
  /* ---------- Thank You Page ---------- */
  .thankyou-Container a{
    font-size: 1rem;
  }
  /* ---------- Footer ---------- */
.footer{
    font-size: .7rem;
    padding: .5rem;
  }   
}  
 