:root{

    --blue:rgba(1,72,134,255);
    --darkBlue:#001D38;
    --black:#1a1a1b;
    --darkGrey: #333333;
    --lightGrey:#ebebeb;
    --offWhite:#FFF;
    --lightBlue:#a9e5fa; 
    --yellow:#FFCD00;
    --red: #d9534f;
    --green: rgba(63, 130, 105, 1);
  }
  
  *{
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
  }
  
  body{
    background-color: var(--lightGrey);
  }
  
  ::selection{
    background-color: var(--lightBlue);
    color: var(--darkBlue);
  }
  
   .header .linkedin,.header .facebook{
  color: var(--darkBlue);
  transition: all 0.3s !important;

 }

  .linkedin:hover{
    color: #0e76a8;
    cursor: pointer;
  
  }
  /* header start */
  
  .top{
  position: fixed;
  left: 0;
  top: 0;
  right: 0; 
  z-index: 100; 
  }
  
  .header{
  background-color: var(--offWhite);
  color: var(--darkBlue);
  height: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 15px;
  }
  
  .header i:not(.header .left i),.header .left > p{
  color: var(--blue);
  }
  
  .header .left,.header .right{
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .header .right{
  width: 100%;
  }
  
  .header .left .media{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  }
  
  .header .left .media a{
  margin-left: 10px;
  }
  
  .header .left .media a:hover{
  color: var(--yellow);
  transition: all 0.5s ease-in-out;
  }
  
  .header .right p{
  margin-left: 20px;
  }
  
  .header .right .icon{
  margin-right: 5px;
  
  }
  
  /* header end */
  
  
  /* navbar start */
  
  .navbar{
  background-color: var(--blue);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 50px;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  transition: all 0.5s;
  padding: 40px 10px;
  }
  
  .navbar a{
  color: var(--offWhite);
  }
  
  
  
  .navbar #logo img{
  width: 100px;
  font-weight: 700;
  }
  
  .navbar .links{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.3s ease-in-out;
  width: 55%;
  font-size: 18px;
  font-weight: 500;
  }
  
  .navbar .links a:hover, .hamburger {
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  }
  
  .navbar a::after{
  content: "";
  display: block;
  background-color: var(--yellow);
  width: 0%;
  height: 2px;
  margin: auto;
  transition: all 0.4s ease-in-out;
  }
  
  
  .navbar a:hover::after,  .navbar a.active::after {
  width: 100%;
  }
  
  
  .hamburger .bar{
  width: 25px;
  height: 3px;
  background-color: var(--offWhite);
  border-radius: 30px;
  display: block;
  transition: all 0.5s ease-in-out;
  margin: 5px auto;
  }
  
  .hamburger{
  display: none;
  }
  
  @media (min-width:1200px) {
  .navbar .links{
      width: 40%;
  }
  }
  
  @media (max-width:768px) {
  
  .header{
      display: none;
  }
  
  .navbar{
      justify-content: space-between;
      top: 0;
      padding: 40px 30px;
  }
  
  .hamburger{
      display: block;
      transition: all 1s linear;
  }
  
  .hamburger.active .bar:nth-child(2){
      opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotateZ(45deg);
  }
  
  .hamburger.active .bar:nth-child(3){
      transform: translateY(-8px) rotateZ(-45deg) !important;
  }
  
  .navbar .links{
      position: fixed;
      flex-direction: column;
      background-color: var(--blue);
      width: 100%;
      transition: all 0.3s linear;
      top: 70px;
      left: -100%;       
  }
  
  .navbar .links a{
      margin-top: 2.5px;
  
      padding: 15px;
  }
  
  
  .navbar .links.active {
      left: 0;
    }
  }
  
  /* navbar end */
  /* banner start */
  .banner{
    min-height: 80vh;
    background-image: url(../images/Fac/After\ 2\ \(2\).jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position-y: center;
    position: relative;
    
  }
  
  .banner h3{
    font-size: 40px;
    transform: translateY(100%);
    color: var(--yellow);
  }
  
  .gradient-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--blue), rgba(0, 0, 0, 0.8)); 
  }
  
  /* banner end */
  
  .finishing #top h1{
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    margin-left: 25px;
    font-size: 30px;
  }
  
  .finishing #top h1::before{
    content: "";
    width: 20px;
    height: 3px;
    left: -25px;
    top: 50%;
  
    position: absolute;
    display: inline-block;
    background-color: var(--yellow);
  }
  
  /* services start */
  @media screen and (max-width: 1200px) 
  {  .banner h3{
      font-size: 40px;
  }
      
  }
  
  
  @media screen and (max-width: 992px) 
  {  .banner h3{
      font-size: 35px;
  }
      
  }
  
  @media screen and (max-width: 768px) 
  {  .banner h3{
      font-size: 32.5px;
  }
      
  }
  
  
  @media screen and (max-width: 600px) 
  {  .banner h3{
      font-size: 30px;
  }
      
  }
  
  @media screen and (max-width: 500px) 
  {  .banner h3{
      font-size: 27.5px;
  }
      
  }
  
  @media screen and (max-width: 300px) 
  {  .banner h3{
      font-size: 25px !important;
  }
      
  }
  
  .finishing{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    background-color: var(--darkBlue);
    color: var(--offWhite);
    padding-bottom: 35px;
  }
  
  .finishing #top #title{
    color: var(--white) !important  ;
    font-size: 2rem;
  
  }
  
  .finishing .description{
    padding: 35px 0;
    width: 75%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    line-height: 2.6em;
 
  
  }
  
  .finishing .description h3{
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 5px;
    color: var(--white);
  }
  .finishing .description h3::after, .more-images #top h1::after{
    content: "";
    display: block;
    width: 75%;
    height: 3px;
    background-color: var(--yellow);
    margin: auto;
  
  }
  .finishing .description p{
    width: 60%;
    margin-top: 10px;
    line-height: 1.8em;   
    text-align: justify;
  }
  @media (max-width:1200px) {
  
  .finishing .description p{
    width: 80% ;
  }
  
  .finishing .description h3{
    font-size: 30px;
  }
  
  }
  
  @media (max-width:500px) {
  
  .finishing .description p{
    font-size: 14px;
  }
  
  .finishing #top #title{
    
    font-size: 24px;
  
  }
  
  .finishing .description h3{
    font-size: 27.5px !important;
  }
  }
  
  @media (max-width:300px) {
  
  .finishing .description h3{
    font-size: 25px !important;
  }
  .finishing .description p{
    font-size: 12px;
    width: 100%;
  
  }
  
  .finishing #top #title{
    
    font-size: 20px;
  
  }
  }
  
  .finishing #top h1{
    color: var(--white) !important;
  }
  .finishing #top{
    width: 75%;
    padding: 50px 0;
  }
  
  .finishing .middle{
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center; 
    background-image: url(../images/Fac/After\ 2\ \(2\).jpg);
    height: 750px;
    background-position: center;
    background-size: cover;
  }
  
  
  .finishing .two-boxes{
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    flex-wrap: wrap;
  }
  
  .finishing .two-boxes .small-image{
    width: 49%;
    height: 450px;
    
  }
  .finishing .two-boxes .small-image .image{
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .finishing .two-boxes .small-image:nth-child(1) .image
  {
    background-image: url(../images/Fac/After\ 1.jpg);
  
  }
  
  .finishing .two-boxes .small-image:nth-child(2) .image
  {
    background-image: url(../images/Fac/WhatsApp\ Image\ 2023-07-16\ at\ 20.56.45.jpeg);
  
  
  }

  @media (max-width:992px) {
  .finishing .middle{
    height: 550px;
  }
  }
  
  @media (max-width:768px) {
    .finishing .two-boxes{
      flex-direction: column ;
      justify-content: center ;
      align-items: center ;
      width: 100% ;
      gap: 0 ;
      margin: auto ;
      gap: 30px;
  
    }
  
    .finishing .middle{
      height: 450px;
    }
   
    .finishing .two-boxes .small-image{
      width: 85% ;
      margin: 0 ;
      height: 300px;
    }
  
    .finishing .two-boxes .small-image .image{
    
      background-position: center;
    }
    .finishing .two-boxes .small-image .image{
      display: flex ;
      align-items: center ;
      justify-content: center ;
      margin: auto ;
    }
  }
  
  @media (max-width:600px) {
    .finishing .middle{
      height: 375px;
    }
  }
  @media (max-width:500px) {
    .finishing .two-boxes{
    
      gap: 20px;
  
    }
  
    .finishing .middle{
      height: 305px;
    }
  
    .finishing .two-boxes .small-image{
   
      height: 250px;
    }
  }
  
  @media (max-width:400px) {
  
    .finishing .middle{
  
      height: 255px;
    }
  }
  
  @media (max-width:300px) {
    .finishing .two-boxes{
    
      gap: 5px;
  
    }
    .finishing .middle{
      height: 195px;
    }
  
    .finishing .two-boxes .small-image{
   
      height: 200px;
    }
  }
  
  /* Footer Start */
  
/* Footer Start */

footer {
    position: relative;
    padding-top: 20px;
}
  
  footer #top {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: var(--darkBlue);
    padding: 20px;
  }
  
  footer #top,
  footer #top a {
    color: var(--offWhite);
  }
  
  footer #top .title {
    color: var(--darkGreen);
    pointer-events: none;
    font-weight: 700;
  }
  
  footer #top .logo-footer {
    align-self: center;
  }
  
  footer .bottom,
  footer #top .logo-footer img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  footer #top .contact-footer ul {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-direction: column;
    height: 100%;
  }
  
  footer #top .contact-footer ul li {
    padding: 5px 0;
  }
  
  footer #top .contact-footer ul li span:first-of-type {
    padding-right: 5px;
  }
  
  footer .bottom {
    
    background-color: var(--darkGreen);
    padding: 20px;
    color: var(--white);
  }
  
  footer #top .logo-footer img {
    width: 135px;
  }
  
  .about-footer {
    width: 30%;
  }
  
  footer #top .about-footer .social {
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: start;/*changed*/
    gap: 25px;
    padding: 20px 0px;
  }

    
  footer #top li a
  {
    transition: all 0.75s;
  }
  
  footer #top li a span {
    opacity: 0;
    transition: all 0.75s;
  }
  
  footer #top li a:hover,
  footer #top li:hover {
    transition: all 0.3s;
    color: var(--darkGreen);
    transform: translateX(-5px);
  }
  
  footer #top .contact-footer li:nth-child(1):hover span:first-child {
    color: var(--red);
  }
  
  footer #top .contact-footer li:nth-child(2):hover span:first-child {
    color: var(--green);
  }
  
  footer #top .contact-footer li:nth-child(3):hover span:first-child {
    color: var(--lightBlue);
  }
  
  footer #top .links li a:hover span {
    opacity: 1;
  }
  




  .social i:hover {
    transform: translateY(-3px);
    transition: all 0.6s;
    cursor: pointer;
  }


 .header .linkedin,.header .facebook{
  color: var(--darkBlue);
  transition: all 0.3s !important;

 }

  .linkedin:hover{
    color: #0e76a8;
    cursor: pointer;
  
  }
  /* dd */
  
  .facebook:hover {
    background: #3a5795;
    color: #1c3977;
    background: linear-gradient(to bottom, #3a5795 0%, #2b4886 100%);
    background: -webkit-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -moz-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -o-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -ms-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    -ms-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
  }
  
  .whatsapp:hover {
    color: #00cf4d;
  }
  
  .instagram:hover {
    background: #f09433;
    background: -moz-linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    background: -webkit-linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    background: linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    -ms-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }

  
  footer #top .title, footer #top .social{
    align-self: self-start;
  }

  footer #top > div{
    width: calc((100% - 20%)/3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: justify;
  }

  footer #top .contact-footer .location {
    width: 85%;
  }

  footer #top .links {
    width: fit-content;
  }

  footer #top .links .title{
    align-self: self-start;
  }

  footer #top .logo-footer
  {
    width: 15%;
  }
  footer #top .logo-footer img{
    width: 200px ;
  }

  @media only screen and (max-width: 1200px) {
    footer #top .logo-footer img{
      width: 150px ;
    }
  }

  @media only screen and (max-width: 992px) {

    footer #top .logo-footer img{
      width: 125px ;
    }

    footer #top .title {
      font-size: 18px;
      font-weight: 500;
    }
    footer #top .txt {
      font-size: 14px;
      font-weight: 500;
    }


  }
  @media only screen and (max-width: 768px) {
    footer #top .title {
      font-size: 16px;
      font-weight: 500;
    }
    footer #top .links {
      justify-content: start !important;
      align-items: self-start !important;
    }
  
    footer #top .txt {
        font-size: 14px;
        font-weight: 500;
      }
  
    footer #top {
      justify-content: center;
      align-items: start;
    }
  
    footer #top .about-footer {
      width: 100%;
      padding: 15px 0px;
    }
  
    footer #top .contact-footer,footer #top .links {
      width: 50%;
    }
  
    footer #top .logo-footer {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    footer #top div {
      width: 100%;
    }
  }

  @media only screen and (max-width: 400px) {
    footer #top .title {
      font-size: 16px;
      font-weight: 500;
    }
    footer #top .txt {
        font-size: 12px;
        font-weight: 500;
      }
  
    footer #top {
      justify-content: center;
      align-items: start;
    }
  
    footer #top .about-footer {
      width: 100%;
      padding: 15px 0px;
      text-align: center ;
      word-break:keep-all;
    }
    footer #top .links{
        display: none;
    }
    footer #top .contact-footer,footer #top .links {
      width: 100%;
      margin-top: 10px;
      display: none;
      font-size: 12px;
    }
  
    footer #top .logo-footer {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    footer #top .logo-footer  img{
        width: 120px;
    }
  
    footer #top div {
      width: 100%;
    }

    footer #top .about-footer .social{
        display: flex;
        align-items: center ;
        justify-content: center ;
    }

    footer .bottom{
        font-size: 12px;
    }
  }
  
  /* Footer End */
  .more-images
  {
    width: 100%;
    background-attachment: fixed;
    background-image: url(../images/3247046.jpg);
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
  }
  
  
  .more-images #top{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .more-images #top h1{
    font-weight: 500;
  
  }
  
  .more-images img{
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }
  
  
  
  
  
  
  
  @media (max-width:500px) {
  
    .more-images #top h1{
      font-size: 25px;
    }
    
    .more-images
    { height: 350px;
    }
  }
  
  
  @media (max-width:300px) {
  
    .more-images #top h1{
      font-size: 20px;
    }
    
    .more-images
    { height: 250px;
    }
  }