/* Defining root variables */

:root{
  --primary-c: #871D27;
  --secondary-c: #CD642B;
  --hover-c-light: #ee8349;
  --hover-c-dark: #a5400a;
  --color1: #333333;
}

/* Universal reset styles */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
}

html, body{
  scroll-behavior: smooth;
  overflow-x: clip;
}

/* Mobile menu */

.mobile-menu{
  display: none;
}

/* Header starts here */

.header{
  position: relative;
  width: 100%;
  z-index: 6;
}

.nav__bar{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 3em;
  background: #f1f1f1;
}

/* Logo stack starts here */

.logo-menu-stack{
  display: flex;
  align-items: center;
  width: 500px;
}

.logo{
  width: 150px;
  margin-right: 15px;
}

.nav__links{
  display: inline-flex;
}

.nav__links li{
  list-style: none;
  margin-left: 15px;
}

.nav__links li a{
  position: relative;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #000;
  transition: all 0.3s;
  padding-bottom: 5px;
}

.nav__links li a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--secondary-c);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19,1,0.22,1);
  transform-origin: right center;
}

.nav__links li a:hover::after{
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.nav__links li a:hover,
#current{
  font-weight: 800;
}

.dd-arr{
  width: 8px;
  margin-left: 3px;
  margin-bottom: 2px;
  pointer-events: none;
  transition: 0.3s;
}

.nav__links li:hover .dd-arr{
  transform: rotate(180deg);
}

/* Extra links here */

.link_extra{
  display: flex;
  align-items: center;
  gap: 5px;
}

.link_extra a{
  display: inline-block;
  text-decoration: none;
  background: var(--secondary-c);
  color: #fff;
  padding: 0.6em 1em;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s;

  &:hover{
    transform: translateX(5px);
    background: var(--hover-c-dark);
  }
}

.link_extra a:last-child{
  margin-left: 7px;
}

/* search icon starts here */

.search-cc1{
  display: grid;
  place-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;

  &:hover{
  background: #3d3d3d;
  }

  &:active{
    transform: scale(0.9);
  }
}

.search-icon{
  width: 14px;
}

/* menu icon starts here */

.menu-icon-bx{
  display: none;
}

/* search box starts here */

.search-cc{
    position: fixed;
    left: 50%;
    top: 16%;
    transform: translateX(-50%);
    background: #fff;
    width: 50%;
    border: 1px solid grey;
    border-radius: 20px;
    z-index: 9999;
    overflow: hidden;
    transition: all 400ms ease;
}

.search-input{
    width: 100%;
    height: 60px;
    background: #2e2e2e;
}

.search-input .src-ic{
    position: absolute;
    top: 20px;
    left: 15px;
    width: 19px;
    opacity: 0.6;
    cursor: pointer;
    transition: .3s;

    &:hover{
        opacity: 1;
    }
}

.search-input form{
    height: 100%;
    width: 100%;
}

.search-input .srch--bx-in{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 45px;
    font-size: 1rem;
    font-weight: 400;
}

.search-input .srch--bx-in::placeholder{
  font-size: 1rem;
  color: #fff !important;
}

.search-input .cl-x{
    position: absolute;
    top: 20px;
    right: 18px;
    width: 14px;
    opacity: 0.6;
    cursor: pointer;
    transition: .2s;

    &:hover{
        opacity: 1;
    }
}

.search-bx-links{
    padding: 35px 45px;
}

.search-bx-links h2{
    font-size: .9rem;
    font-weight: 600;
    color: #0ab1ff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.search-bx-links a{
    display: block;
    text-decoration: none;
    padding: 5px 0.5em;
    color: #555555;
    font-size: .95rem;
    border-radius: .3em;

    &:hover{
        background: #b1b1b1;
        color: #000;
    }
}

.search-cc.hide-scr-bx{
    width: 0;
    opacity: 0;
    pointer-events: none;
}

/* Search box animations */

.search-cc form,
.search-cc .src-ic{
    opacity: 0.6;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 300ms;
}

.search-cc.hide-scr-bx form,
.search-cc.hide-scr-bx .src-ic{
    opacity: 0;
    transform: translateX(50px);
}

.search-cc.hide-scr-bx .search-bx-links h2{
    opacity: 0;
    transform: translateX(50px);
}

.search-cc .search-bx-links h2{
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 200ms;
}

.search-cc.hide-scr-bx .search-bx-links a{
    opacity: 0;
    transform: translateX(60px);
}

.search-cc .search-bx-links a{
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
}

.search-cc .search-bx-links a:nth-of-type(1){
    transition-delay: 120ms;
}

.search-cc .search-bx-links a:nth-of-type(2){
    transition-delay: 140ms;
}

.search-cc .search-bx-links a:nth-of-type(3){
    transition-delay: 160ms;
}

.search-cc .search-bx-links a:nth-of-type(4){
    transition-delay: 180ms;
}

.search-cc .search-bx-links a:nth-of-type(5){
    transition-delay: 200ms;
}

/* Search-bx overlay here */

.search-bx--overlay.show-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 5;
}

/* Desktop Dropdown code starts here */

.submenu--wrap{
  position: absolute;
  width: 100vw;
  height: 500px;
  transform: translateX(-10px);
  left: 0;
  top: 4.5em;
  background: #f7f7f7;
  border-bottom: 1px solid #a5a5a5;
  transition: all 0.2s ease-in;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.nav__links li:hover .submenu--wrap{
  clip-path: polygon(0 0, 100% 0, 100% 102%, 0 102%);
}

.submenu-main{
  display: flex;
  padding: 2em 5em;
  height: 100%;
}

/* submenu Intro text starts here */

.submenu-intro{
  padding-right: 3em;
  border-right: 1px solid #cacaca;
}

.submenu-intro h1{
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-c);
  margin-bottom: 1em;
}

.submenu-intro p{
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  max-width: 30ch;
  margin-bottom: 1em;
}

.submenu-intro .submenu-intro-link{
  display: inline-block;
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
  background: var(--secondary-c);
  color: #fff;
  margin-top: 1em;
  text-decoration: none;
  padding: 1.7em 2.5em;
  z-index: 1;
  transition: .2s;
}

.submenu-intro-link::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--hover-c-dark);
  z-index: -1;
  transition: all 0.3s;
}

.submenu-intro-link:hover::before{
  width: 100%;
}

.submenu-intro-link:hover{
  font-weight: unset;
}

/* Submenu links starts here */

.sub-menu--links{
  padding: 0 0em 0 2em;
}

.sub-menu--links ul li{
  margin-left: 0;
}

.sub-menu--links ul li{
  padding: 1em;
  border-bottom: 1px solid #cacaca;
  
  &:hover{
    background: rgb(228, 228, 228);
    border-left: 3px solid var(--hover-c-light);
  }
}

.sub-menu--links ul li a{
  font-size: 1rem;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
  color: #000;
}

.sub-menu--links ul li a::after{
  content: none;
}

/* submenu images box starts here */

.submenu-images{
  flex: 1;
  padding-left: 3.5em;
}

.submenu-images h1{
  font-weight: 300;
}

.submenu-img-cc{
  display: flex;
  gap: 15px;
}

.submenu-img-bx{
  margin-top: 2em;
}

.smi-bx1{
  width: 260px;
  height: 150px;
  border-radius: 5px;
  margin-bottom: 1em;
  background-image: url(images/submenu-img1.png);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.smi-bx2{
  width: 260px;
  height: 150px;
  border-radius: 5px;
  margin-bottom: 1em;
  background-image: url(images/manufacuring.jpg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.smi-bx3{
  width: 260px;
  height: 150px;
  border-radius: 5px;
  margin-bottom: 1em;
  background-image: url(images/environment.png);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.smi-bx4{
  width: 260px;
  height: 150px;
  border-radius: 5px;
  margin-bottom: 1em;
  background-image: url(images/project-m.png);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.submenu-img-bx h5{
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5em;
  transition: 0.2s;

  &:hover{
    color: #9e9e9e; 
  }
}

.submenu-img-bx p{
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  max-width: 30ch;
}

/* Media query for dropdown submenu */
/* Media query for dropdown submenu */
/* Media query for dropdown submenu */

/* Min width starts here */

@media(min-width: 1440px){
  .submenu--wrap{
  transform: translateX(-0px);
}
}

@media(min-width: 1486px){
  .submenu--wrap{
  transform: translateX(0px);
}
}

@media(min-width: 1536px){
  .submenu--wrap{
  transform: translateX(0px);
}
}

@media(min-width: 1600px){
  .submenu--wrap{
  transform: translateX(0px);
}
}

@media(min-width: 1680px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(min-width: 1920px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(min-width: 2560px){
  .submenu--wrap{
  transform: translateX(0);
}
}

/* max-width starts here */

@media(max-width: 1348px){
  .submenu--wrap{
  transform: translateX(0);
}

.submenu-main{
  padding: 2em 1.5em 2em 2.5em;
}

/* Submenu intro */

.submenu-intro{
  padding-right: 1em;
}

/* Links */

.sub-menu--links{
  padding: 0 0em 0 1em;
}

/* submenu images box starts here */

.submenu-images{
  padding-left: 2.5em;
}
}

@media(max-width: 1344px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1340px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1336px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1330px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1326px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1323px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1318px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1315px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1310px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1305px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1280px){
  .submenu--wrap{
  transform: translateX(0);
}
}

@media(max-width: 1200px){
  .submenu--wrap{
  transform: translateX(0);
}

.submenu-main{
  padding: 2em 1.5em 2em 2.5em;
}

/* Submenu intro */

.submenu-intro{
  padding-right: 1em;
}

/* Links */

.sub-menu--links{
  padding: 0 0em 0 1em;
}

/* submenu images box starts here */

.submenu-images{
  padding-left: 2.5em;
}
}

@media(max-width: 1130px){
  .submenu--wrap{
  transform: translateX(0);
}

.submenu-main{
  padding: 2em 1.5em 2em 2.5em;
}

/* Submenu intro */

.submenu-intro{
  padding-right: 0.5em;
}

.submenu-intro h1{
  font-size: 1.5rem;
}

/* submenu images box starts here */

.submenu-images{
  padding-left: 2.5em;
}

.submenu-images h1{
  font-size: 1.5rem;
}

.submenu-images p{
  font-size: 0.9rem;
}

.smi-bx1{
  width: 200px;
  height: 110px;
}

.smi-bx2{
  width: 200px;
  height: 110px;
}

.smi-bx3{
  width: 200px;
  height: 110px;
}

.smi-bx4{
  width: 200px;
  height: 110px;
}

.submenu-img-bx h5{
  font-size: 1.1rem;
}

.submenu-img-bx p{
  font-size: 0.9rem;
}
}

@media(max-width: 1100px){
  .submenu--wrap{
  transform: translateX(0);
}
}

/* About ribbon 1 starts here */

.index__bar-cc{
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7em 3em;
  background: #000000c2;
  backdrop-filter: blur(20px);
  z-index: 5;
}

.h4_wrapper{
  display: flex;
  gap: .7em;
}

.h4_wrapper h4{
  font-size: .9rem;
  font-weight: 500;
  color: #fff;
}

.h4_wrapper h4 span{
  font-size: .6rem;
}


.bar__links a{
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  color: #000000;
  padding: .3em .9em;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}

.bar__links a:first-child{
    font-size: .85rem;
    color: #ffffff;
    background: black;
    margin-right: .4em;

    &:hover{
    background: #292929;
    }
   }

   .bar__links a:last-child{
      padding: 0.1em .9em;

      &:hover{
        background: #cecece;
      }
   }

/* About sub header starts here */

.abt--sub-head{
  display: flex;
  width: 100%;
  height: 400px;
}

.sub-hd-txt{
  display: grid;
  place-content: center;
  flex: 1;
  background: var(--secondary-c);
  height: 100%;
  background-image: url(images/abt-bg-img.png);
  background-position: right -400px bottom -100px;
  background-size: cover;
  background-repeat: no-repeat;

  h1{
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    animation: fadein 2s ease forwards;
  }
}

/* Animation for sub-header h1 */

@keyframes fadein {
  from{
    opacity: 0;
    transform: translateY(-80px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-hd-img{
  flex: 1;
  height: 100%;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
}

/* Generated class from JS below for intersection observer */
/* Generated class from JS below for intersection observer */
/* Generated class from JS below for intersection observer */

.hidden{
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.5s, transform 1s;
}

.show{
  opacity: 1;
  transform: translateY(0);
}

/* About Main content starts here */

.who-we-are{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  padding: 5em 7em;

  h1{
    font-size: 3rem;
    font-weight: 800;
    color: #000;
  }
}

.who-we-are-line{
  width: 70px;
  height: 2px;
  background: var(--secondary-c);
  margin: 2em 0;
}

.who-we-are p{
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  max-width: 45ch;
}
.who-we-are h3{
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-top: 1.5em;
}

.abt-img--1 img{
  width: 450px;
  pointer-events: none;
}

/* Our approach section starts here */

.our-approach{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f1f1f1;
  padding: 3em 7em;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;

  h1{
    font-size: 3rem;
    font-weight: 800;
    color: #000;
  }
}

.our-approach-line{
  width: 70px;
  height: 2px;
  background: var(--secondary-c);
  margin: 2em 0;
}

.our-approach-txt p{
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  max-width: 45ch;
}
.our-approach-txt h3{
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-top: 1.5em;
}

.abt-img--2 img{
  width: 400px;
  pointer-events: none;
}

/* At a glance section */

.at-a-glance{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  padding: 3em 7em;

  h1{
    font-size: 3rem;
    font-weight: 800;
    color: #000;
  }
}

.at-a-glance-line{
  width: 70px;
  height: 2px;
  background: var(--secondary-c);
  margin: 2em 0;
}

.at-a-glance p{
  font-size: 1.1rem;
  font-weight: 400;
  color: #797979;
  max-width: 40ch;
}

.stats-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  text-align: center;
}

.stat{
  border-right: 1px solid var(--secondary-c);
  padding-right: 1em;
}

.stat:last-child{
  border-right: none;
}

.stats-container .stat .odometer{
  display: inline-block;
  font-size: 6rem;
  font-weight: 700;
  color: var(--secondary-c);
}

.stats-container .stat .type{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-c);
}

.odometer.plus{
  position: relative;
}

.odometer.plus::after{
  content: '+';
  position: absolute;
  top: 0;
  right: -16px;
  font-size: 25px;
}

/* sectors section starts here */

.sectors{
  width: 100%;
  background: #f1f1f1;
  padding: 6em 7em;

  h1{
    font-size: 3rem;
    font-weight: 800;
    line-height: 3rem;
    color: #000;
    max-width: 20ch;
  }
}

.sectors-line{
  width: 70px;
  height: 2px;
  background: var(--secondary-c);
  margin: 2em 0;
}

.sectors p{
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  max-width: 60ch;
}

/* Sector links starts here */

.sector-cc{
  display: grid;
  place-content: center;
  width: 100%;
  height: 450px;
  background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(images/renewable_energy.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 5em;
}

.sector-link-bx{
  display: flex;
  gap: 20px;
  width: 100%;
}

.sector-link-bx:first-child{
  margin-bottom: 1.5em;
}

.sec-link1{
  position: relative;
  flex: 1;
  width: 290px;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.7em 1em;
  background: #00000062;
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  transition: all 0.6s ease-in-out;

  &:hover{
    background: #000000c2;
    border: 2px solid #adff2f;
  }

  &:hover img{
    transform: translateX(5px);
  }

  img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 18px;
    transition: 0.2s ease-in;
  }
}

/* Transform section starts here */

.transform{
  width: 100%;
  height: 600px;
  background: #fff;
  padding: 6em 7em;
  border-top: 1px solid #3f3f3f;
  border-bottom: 1px solid #3f3f3f;
}

.transform--cc{
  display: flex;
  align-items: center;
}

.transfor-img{
  order: unset;
  width: 500px;
  height: 100%;
  margin-right: 3em;

  img{
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
}

.transfor-txt h1{
  font-size: 3rem;
  font-weight: 800;
  color: #000000;
}

.transfor-txt .transform-line{
  width: 70px;
  height: 2px;
  background: var(--secondary-c);
  margin: 1em 0;
}

.transfor-txt p{
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  max-width: 45ch;
}

/* The future section starts here */

.future{
  width: 100%;
  height: 500px;
  background: #fff;
  padding: 3em 7em;
  border-bottom: 1px solid #3f3f3f;
}

.future-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.future-txt h1{
  font-size: 3rem;
  font-weight: 800;
  color: #000000;
}

.future-line{
  width: 70px;
  height: 2px;
  background: var(--secondary-c);
  margin: 2em 0;
}

.future-txt p{
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  max-width: 45ch;
}

.future-img{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-around;
  width: 550px;
  height: 350px;
}

.futr-1{
  width: 250px;
  height: 150px;
}

.box1{
  background-image: url(images/vr-user.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.box2{
  background-image: url(images/phone-user.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.box3{
  background-image: url(images/dubai-img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.box4{
  background-image: url(images/wind-turbines.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* footer starts here */
/* footer starts here */
/* footer starts here */

.footer{
  width: 100%;
  background: #f3f3f3;
  padding: 5em 5em 6em 5em;
}

.footer-img{
  width: 180px;
}

.footer--row{
  display: flex;
  justify-content: space-between;
}

.rem-cc{
  display: flex;
}

#addrr-div{
  margin-right: 5em;
}

.footer--col h3{
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2em;
}

.footer-prim-links a{
  display: block;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.3em;

  &:hover{
    color: #7e7e7e;
  }
}

.social-row{
  display: flex;
  gap: 7px;
  margin-top: 6em;  
}
.social-row div{
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
  padding-top: 4px;
  transition: 0.3s;

  &:hover{
    background: #6b6b6b;
  }
}

.social-row div img{
  width: 14px;
}

.footer-addr{
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3rem;
}

.copy-txt{
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-top: 5em;  
}

.newsletter{
  margin-top: 5.5em;
}

.newsletter h6{
  color: #000;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}

.newsletter form input{
  display: block;
  width: 260px;
  height: 40px;
  border-radius: 50px;
  border: 2px solid #000;
  outline: none;
  background: none;
  font-size: 1rem;
  color: #000; 
  padding: 0 1em;
  transition: 0.2s;
  
  &:hover{
    border: 2px solid #7c7c7c;
  }

  &:focus{
    border: 2px solid var(--secondary-c);
  }
}

.newsletter form input::placeholder{
  font-size: 0.8rem;
}

.newsletter form button{
  height: 40px;
  border-radius: 50px;
  border: none;
  outline: none;
  background:#cc5414;
  color: #fff; 
  padding: 0 2em;
  margin-top: 0.6em;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  
  &:hover{
    background: var(--secondary-c);
  }

  &:focus{
    background: var(--hover-c-dark);
  }
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(122, 122, 122);
  margin: 4em 0 2em;
}

#message{
  position: static;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* All media query for various devices */
/* All media query for various devices */
/* All media query for various devices */

/* Media for small laptops - 1348px */

@media(max-width: 1348px){
  /* About Main content starts here */

.who-we-are{
  align-items: center;
  padding: 5em 3em;

  h1{
    font-size: 3rem;
  }
}

.who-we-are-line{
  width: 50px;
}

.who-we-are p{
  font-size: 1.3rem;
  line-height: 1.7rem;
  max-width: 35ch;
}
.who-we-are h3{
  font-size: 1.5rem;
}

.abt-img--1 img{
  width: 450px;
  pointer-events: none;
  transform: unset;
}

/* Our approach section starts here */

.our-approach{
  align-items: center;
  padding: 3em 3em;

  h1{
    font-size: 3rem;
  }
}

.our-approach-line{
  width: 50px;
}

.our-approach-txt p{
  font-size: 1rem;
  max-width: 35ch;
}

.our-approach-txt h3{
  font-size: 1.2rem;
}

.abt-img--2 img{
  width: 400px;
}

/* At a glance section */

.at-a-glance{
  align-items: center;
  padding: 3em 3em;

  h1{
    font-size: 3rem;
  }
}

.at-a-glance-line{
  width: 50px;
}

.at-a-glance p{
  font-size: 1rem;
  max-width: 45ch;
}

.stats-container{
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
}

.stat{
  border-right: 1px solid var(--secondary-c);
  padding-right: 1em;
}

.stat:last-child{
  border-right: none;
}

.stats-container .stat .odometer{
  font-size: 4rem;
}

.stats-container .stat .type{
  font-size: 1rem;
}

/* sectors section starts here */

.sectors{
  padding: 3em 3em;

  h1{
    font-size: 3rem;
    line-height: 3rem;
  }
}

.sectors-line{
  width: 50px;
}

.sectors p{
  font-size: 1.2rem;
  max-width: 60ch;
}

/* Sector links starts here */

.sector-cc{
  height: 550px;
  border-radius: 15px;
}

/* Transform section starts here */

.transform{
  height: 550px;
  padding: 6em 3em;
}

.transform--cc{
  align-items: center;
}

.transfor-img{
  width: 500px;
  height: 100%;
  margin-right: 3em;

  img{
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
}

.transfor-txt h1{
  font-size: 3rem;
  line-height: 3rem;
  max-width: 10ch;
}

.transfor-txt .transform-line{
  width: 50px;
}

/* The future section starts here */

.future{
  padding: 3em 3em;
}

.future-txt h1{
  font-size: 3rem;
}

.future-line{
  width: 50px;
}

.future-txt p{
  font-size: 1rem;
}

.future-img{
  gap: 10px;
}

.futr-1{
  width: 250px;
  height: 150px;
}

/* footer starts here */

.footer{
  width: 100%;
  background: #f3f3f3;
  padding: 5em 5em 6em 3em;
}

.footer-img{
  width: 180px;
}

.footer--row{
  display: flex;
  justify-content: space-between;
}

.rem-cc{
  display: flex;
}

#addrr-div{
  margin-right: 5em;
}

.footer--col h3{
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2em;
}

.footer-prim-links a{
  display: block;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.3em;

  &:hover{
    color: #7e7e7e;
  }
}

.social-row{
  display: flex;
  gap: 7px;
  margin-top: 6em;  
}
.social-row div{
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
  padding-top: 4px;
  transition: 0.3s;

  &:hover{
    background: #6b6b6b;
  }
}

.social-row div img{
  width: 14px;
}

.footer-addr{
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3rem;
}

.copy-txt{
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-top: 5em;  
}

.newsletter{
  margin-top: 5.5em;
}

.newsletter h6{
  color: #000;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}

.newsletter form input{
  display: block;
  width: 260px;
  height: 40px;
  border-radius: 50px;
  border: 2px solid #000;
  outline: none;
  background: none;
  font-size: 1rem;
  color: #000; 
  padding: 0 1em;
  transition: 0.2s;
  
  &:hover{
    border: 2px solid #7c7c7c;
  }

  &:focus{
    border: 2px solid var(--secondary-c);
  }
}

.newsletter form input::placeholder{
  font-size: 0.8rem;
}

.newsletter form button{
  height: 40px;
  border-radius: 50px;
  border: none;
  outline: none;
  background:#cc5414;
  color: #fff; 
  padding: 0 2em;
  margin-top: 0.6em;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  
  &:hover{
    background: var(--secondary-c);
  }

  &:focus{
    background: var(--hover-c-dark);
  }
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(122, 122, 122);
  margin: 4em 0 2em;
}
}

/* Media for small devices(iPads) - 1030px */

@media(max-width: 1030px){
  
  body{
    padding-top: 6.9em;
  }
  
/* Mobile menu */

.mobile-menu{
  position: fixed;
  display: block;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 6em 0em 6em 3em;
  background: #242424;
  z-index: 15;
  overflow-y: scroll;
  transition: 0.2s;
}

.cx-bx{
  display: grid;
  place-content: center;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  
  &:active{
    background: #585858;
  }
  
  img{
    width: 14px;
    transition: 300ms;

    &:hover{
      opacity: 0.6;
    }
  }
}

.accordion-menu{
  width: 100%;
}

.accordion-menu li{
  list-style: none;
  margin-bottom: 5px;
}

.accordion-menu li label{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  background: #333333;
  padding: 0.5em;
  color: #fff;
  cursor: pointer;
}

#label-img{
  width: 10px;
  position: absolute;
  right: 22px;
  transition: all 0.7s;
}

#acc-abt-link{
  text-decoration: none;
  color: #fff;
}

.accordion-menu .acc-menu-content{
  background: #414141;
  padding: 0 0.5em;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s;
}

.acc-menu-content a{
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1em;
  transition: 0.3s;

  &:hover{
    font-weight: bold;
    transform: translateX(5px);
  }
}

input[type="checkbox"]{
  display: none;
}

.accordion-menu input[type="checkbox"]:checked + label + .acc-menu-content{
  max-height: 600px;
  padding: 20px 0.5em;
}

.accordion-menu input[type="checkbox"]:checked + label #label-img{
  transform: rotate(180deg);
}

/* Mobile menu accordion extra links */

.accordion-extra-links{
  margin-top: 9em;
}

.for-project{
  display: inline-block;
  padding: .5em 2em;
  border: 1px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.7em;

  &:hover{
    background: #1d1d1d;
  }
}

.for-contact{
  display: inline-block;
  padding: .5em 2em;
  border: 1px solid var(--secondary-c);
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-c);

  &:hover{
    background: #1d1d1d;
  }
}

/* Header starts here */

.header{
  position: fixed;
  top: 0;
  left: 0;
}

.nav__bar{
  padding: 0.5em 2em;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
}

.logo{
  width: 140px;
  margin-top: 10px;
}

.nav__links{
  display: none;
}

.link_extra{
  display: flex;
}

.link_extra a{
  display: none;
}

/* search icon starts here */

.search-cc1{
  width: 25px;
  height: 25px;
}

/* menu icon starts here */

.menu-icon-bx{
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  cursor: pointer;

  &:active{
    background: var(--hover-c-light);
  }

  img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
  }
}

/* search box starts here */

.search-cc{
    width: 90%;
}

/* About ribbon 1 starts here */

.index__bar-cc{
  position: fixed;
  transform: translateY(67px);
  padding: 0.7em 2em;
}

.h4_wrapper{
  gap: .5em;
}

.h4_wrapper h4{
  font-size: .9rem;
}

.h4_wrapper h4 span{
  font-size: .7rem;
}

.bar__links a{
  padding: .2em .9em;
}

.bar__links a:first-child{
    font-size: .85rem;
   }

   .bar__links a:last-child{
      padding: 0.1em .9em;

      &:hover{
        background: #cecece;
      }
   }

/* About sub header starts here */

.sub-hd-txt{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-position: right -300px bottom -100px;
  padding-left: 2em;

  h1{
    font-size: 5rem;
    line-height: 5rem;
    max-width: 8ch;
  }
}

/* About Main content starts here */

.who-we-are{
  align-items: center;
  padding: 5em 2em;

  h1{
    font-size: 3rem;
  }
}

.who-we-are-line{
  width: 50px;
}

.who-we-are p{
  font-size: 1.3rem;
  line-height: 1.7rem;
  max-width: 35ch;
}
.who-we-are h3{
  font-size: 1.5rem;
}

.abt-img--1 img{
  width: 450px;
  pointer-events: none;
  transform: unset;
}

/* Our approach section starts here */

.our-approach{
  align-items: center;
  padding: 3em 2em;

  h1{
    font-size: 3rem;
  }
}

.our-approach-line{
  width: 50px;
}

.our-approach-txt p{
  font-size: 1rem;
  max-width: 35ch;
}

.our-approach-txt h3{
  font-size: 1.2rem;
}

.abt-img--2 img{
  width: 400px;
}

/* At a glance section */

.at-a-glance{
  align-items: center;
  padding: 3em 2em;

  h1{
    font-size: 3rem;
  }
}

.at-a-glance-line{
  width: 50px;
}

.at-a-glance p{
  font-size: 1rem;
  max-width: 45ch;
}

.stats-container{
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
}

.stat{
  border-right: 1px solid var(--secondary-c);
  padding-right: 1em;
}

.stat:last-child{
  border-right: none;
}

.stats-container .stat .odometer{
  font-size: 4rem;
}

.stats-container .stat .type{
  font-size: 1rem;
}

/* sectors section starts here */

.sectors{
  padding: 3em 2em;

  h1{
    font-size: 3rem;
    line-height: 3rem;
  }
}

.sectors-line{
  width: 50px;
}

.sectors p{
  font-size: 1.2rem;
  max-width: 60ch;
}

/* Sector links starts here */

.sector-cc{
  height: 550px;
  border-radius: 15px;
}

/* Transform section starts here */

.transform{
  height: 550px;
  padding: 6em 2em;
}

.transform--cc{
  align-items: center;
}

.transfor-img{
  width: 500px;
  height: 100%;
  margin-right: 3em;

  img{
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
}

.transfor-txt h1{
  font-size: 3rem;
  line-height: 3rem;
  max-width: 10ch;
}

.transfor-txt .transform-line{
  width: 50px;
}

/* The future section starts here */

.future{
  padding: 3em 2em;
}

.future-txt h1{
  font-size: 3rem;
}

.future-line{
  width: 50px;
}

.future-txt p{
  font-size: 1rem;
}

.future-img{
  gap: 10px;
}

.futr-1{
  width: 250px;
  height: 150px;
}

/* footer starts here */

.footer{
  width: 100%;
  background: #f3f3f3;
  padding: 5em 5em 6em 2em;
}

.footer-img{
  width: 180px;
}

.footer--row{
  display: flex;
  justify-content: space-between;
}

.rem-cc{
  display: flex;
}

#addrr-div{
  margin-right: 5em;
}

.footer--col h3{
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2em;
}

.footer-prim-links a{
  display: block;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.3em;

  &:hover{
    color: #7e7e7e;
  }
}

.social-row{
  display: flex;
  gap: 7px;
  margin-top: 6em;  
}
.social-row div{
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
  padding-top: 4px;
  transition: 0.3s;

  &:hover{
    background: #6b6b6b;
  }
}

.social-row div img{
  width: 14px;
}

.footer-addr{
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3rem;
}

.copy-txt{
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-top: 5em;  
}

.newsletter{
  margin-top: 5.5em;
}

.newsletter h6{
  color: #000;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 1em;
}

.newsletter form input{
  display: block;
  width: 260px;
  height: 40px;
  border-radius: 50px;
  border: 2px solid #000;
  outline: none;
  background: none;
  font-size: 1rem;
  color: #000; 
  padding: 0 1em;
  transition: 0.2s;
  
  &:hover{
    border: 2px solid #7c7c7c;
  }

  &:focus{
    border: 2px solid var(--secondary-c);
  }
}

.newsletter form input::placeholder{
  font-size: 0.8rem;
}

.newsletter form button{
  height: 40px;
  border-radius: 50px;
  border: none;
  outline: none;
  background:#cc5414;
  color: #fff; 
  padding: 0 2em;
  margin-top: 0.6em;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  
  &:hover{
    background: var(--secondary-c);
  }

  &:focus{
    background: var(--hover-c-dark);
  }
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(122, 122, 122);
  margin: 4em 0 2em;
}
}

/* Media for small devices(iPad) - 970px */

@media(max-width: 970px){

  /* At a glance section */

.at-a-glance p{
  max-width: 28ch;
}

.stats-container .stat .odometer{
  font-size: 4.5rem;
}

.stats-container .stat .type{
  font-size: 1.1rem;
}

/* Sector links starts here */

.sector-cc{
  height: 650px;
  border-radius: 15px;
}

.sector-link-bx{
  flex-direction: column;
}

.sec-link1{
  color: #fff;
  font-size: 1.1rem;
  width: 700px;
}

/* The future section starts here */

.future-txt p{
  max-width: 35ch;
}

.future-img{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  height: 310px;
}

.futr-1{
  width: 230px;
  height: 150px;
}

/* footer starts here */

.footer{
  padding: 5em 2em 6em 2em;
}
}

/* Media for small devices(iPad) - 860px */

@media(max-width: 860px){
  body{
    padding-top: 7em;
  }
  
/* Mobile menu */

.mobile-menu{
  position: fixed;
  display: block;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 6em 0em 6em 3em;
  background: #242424;
  z-index: 15;
  overflow-y: scroll;
  transition: 0.2s;
}

.cx-bx{
  display: grid;
  place-content: center;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  
  &:active{
    background: #585858;
  }
  
  img{
    width: 16px;
    transition: 300ms;

    &:hover{
      opacity: 0.6;
    }
  }
}

.accordion-menu{
  width: 100%;
}

.accordion-menu li{
  list-style: none;
  margin-bottom: 5px;
}

.accordion-menu li label{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  background: #333333;
  padding: 0.5em;
  color: #fff;
  cursor: pointer;
}

#label-img{
  width: 11px;
  position: absolute;
  right: 22px;
  transition: all 0.7s;
}

#acc-abt-link{
  text-decoration: none;
  color: #fff;
}

.accordion-menu .acc-menu-content{
  background: #414141;
  padding: 0 0.5em;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s;
}

.acc-menu-content a{
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  margin-bottom: 0.5em;
  transition: 0.3s;

  &:hover{
    font-weight: bold;
    transform: translateX(5px);
  }
}

input[type="checkbox"]{
  display: none;
}

.accordion-menu input[type="checkbox"]:checked + label + .acc-menu-content{
  max-height: 600px;
  padding: 20px 0.5em;
}

.accordion-menu input[type="checkbox"]:checked + label #label-img{
  transform: rotate(180deg);
}

/* Mobile menu accordion extra links */

.accordion-extra-links{
  margin-top: 9em;
}

.for-project{
  display: inline-block;
  padding: .5em 2em;
  border: 1px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.7em;

  &:hover{
    background: #1d1d1d;
  }
}

.for-contact{
  display: inline-block;
  padding: .5em 2em;
  border: 1px solid var(--secondary-c);
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--secondary-c);

  &:hover{
    background: #1d1d1d;
  }
}

/* Header starts here */

.header{
  position: fixed;
  top: 0;
  left: 0;
}

.nav__bar{
  padding: 0.5em 2em;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
}

.logo{
  width: 145px;
  margin-top: 10px;
}

.nav__links{
  display: none;
}

.link_extra{
  display: flex;
}

.link_extra a{
  display: none;
}

/* search icon starts here */

.search-cc1{
  width: 25px;
  height: 25px;
}

/* menu icon starts here */

.menu-icon-bx{
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  cursor: pointer;

  &:active{
    background: var(--hover-c-light);
  }

  img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
  }
}

/* search box starts here */

.search-cc{
    width: 90%;
}

/* About ribbon 1 starts here */

.index__bar-cc{
  position: fixed;
  transform: translateY(75px);
  padding: 0.7em 2em;
}

.h4_wrapper{
  gap: .7em;
}

.h4_wrapper h4{
  font-size: .9rem;
}

.h4_wrapper h4 span{
  font-size: .7rem;
}

.bar__links a{
  font-size: .9rem;
}

/* About sub header starts here */

.abt--sub-head{
  position: relative;
  height: 500px;
}

.sub-hd-txt{
  position: absolute;
  bottom: 0;
  place-content: flex-start;
  background: var(--secondary-c);
  width: 100%;
  height: 90px;
  padding: 0 2em;

  h1{
    font-size: 3.5rem;
    max-width: 20ch;
  }
}

/* About Main content starts here */

.who-we-are{
  flex-direction: column;
  align-items: flex-start;
  padding: 5em 2em;

  h1{
    font-size: 3rem;
  }
}

.who-we-are-line{
  width: 50px;
}

.who-we-are p{
  font-size: 1.3rem;
  line-height: 1.7rem;
  max-width: 55ch;
}
.who-we-are h3{
  font-size: 1.8rem;
  margin-bottom: 2em;
}

.abt-img--1 img{
  width: 550px;
  transform: unset;
}

/* Our approach section starts here */

.our-approach{
  align-items: flex-start;
  flex-direction: column;
  padding: 3em 2em;

  h1{
    font-size: 3rem;
  }
}

.our-approach-line{
  width: 50px;
}

.our-approach-txt p{
  font-size: 1rem;
  max-width: 65ch;
}

.our-approach-txt h3{
  font-size: 1.8rem;
  margin-bottom: 2em;
}

.abt-img--2 img{
  width: 100%;
}

/* At a glance section */

.at-a-glance{
  flex-direction: column;
  align-items: flex-start;
  padding: 3em 2em;

  h1{
    font-size: 3rem;
  }
}

.at-a-glance-line{
  width: 50px;
}

.at-a-glance p{
  font-size: 1rem;
  max-width: 65ch;
  margin-bottom: 5em;
}

.stats-container{
  grid-template-columns: 1fr;
  margin: 0 auto;
}

.stat{
  border-top: 1px solid var(--secondary-c);
  border-right: none;
}

.stats-container .stat .odometer{
  font-size: 6rem;
}

.stats-container .stat .type{
  font-size: 1.5rem;
}

/* sectors section starts here */

.sectors{
  padding: 3em 2em;

  h1{
    font-size: 3rem;
    line-height: 3rem;
  }
}

.sectors-line{
  width: 50px;
}

.sectors p{
  font-size: 1.2rem;
  max-width: 60ch;
}

/* Sector links starts here */

.sector-cc{
  height: 650px;
  border-radius: 15px;
}

.sector-link-bx{
  flex-direction: column;
}

.sec-link1{
  color: #fff;
  font-size: 1.1rem;
  width: 600px;
}

/* Transform section starts here */

.transform{
  height: 1100px;
  padding: 4em 2em;
}

.transform--cc{
  flex-direction: column;
  align-items: flex-start;
}

.transfor-img{
  order: 2;
  width: 100%;
  height: unset;
  margin-right: unset;
}

.transfor-txt h1{
  font-size: 3rem;
  line-height: 3rem;
  max-width: 9ch;
}

.transfor-txt .transform-line{
  width: 50px;
}

.transfor-txt p{
  font-size: 1rem;
  max-width: 65ch;
  margin-bottom: 3em;
}

/* The future section starts here */

.future{
  height: 2200px;
  padding: 3em 2em;
}

.future-row{
  flex-direction: column;
  align-items: flex-start;
}

.future-txt h1{
  font-size: 3rem;
}

.future-line{
  width: 50px;
}

.future-txt p{
  font-size: 1rem;
  max-width: 65ch;
  margin-bottom: 3em;
}

.future-img{
  gap: 10px;
  grid-template-columns: 1fr;
  width: 100%;
  height: unset;
}

.futr-1{
  width: 100%;
  height: 430px;
}

/* footer starts here */

.footer{
  padding: 5em 2em 1em 2em;
}

.footer-img{
  width: 170px;
  margin-bottom: 3em;
}

.footer--row{
  flex-direction: column;
}

.rem-cc{
  flex-direction: column;
}

#addrr-div{
  margin-right: unset;
}

.footer--col h3{
  margin-bottom: 1em;
}

.footer-prim-links a{
  font-size: 0.9rem;
}

.social-row{
  margin-top: 3em;  
}

.footer-addr{
  font-size: 0.9rem;
}

.copy-txt{
  font-weight: 400;
  margin-top: 1em;
  margin-bottom: 4em;  
}

.newsletter{
  margin-top: 2.5em;
}

.newsletter h6{
  font-weight: 400;
  margin-bottom: 0.5em;
}

.newsletter form input{
  border: 1px solid #000;
  
  &:hover{
    border: 1px solid #7c7c7c;
  }

  &:focus{
    border: 1px solid var(--secondary-c);
  }
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(122, 122, 122);
  margin: 2em 0 2em;
}
}

/* Media for small devices(phones) - 500px */

@media(max-width: 500px){

  body{
    padding-top: 6.9em;
  }
  
/* Mobile menu */

.mobile-menu{
  position: fixed;
  display: block;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 6em 0em 6em 1em;
  background: #242424;
  z-index: 15;
  overflow-y: scroll;
  transition: 0.2s;
}

.cx-bx{
  display: grid;
  place-content: center;
  position: absolute;
  top: 1em;
  right: 0.7em;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  
  &:active{
    background: #585858;
  }
  
  img{
    width: 14px;
    transition: 300ms;

    &:hover{
      opacity: 0.6;
    }
  }
}

.accordion-menu{
  width: 100%;
}

.accordion-menu li{
  list-style: none;
  margin-bottom: 5px;
}

.accordion-menu li label{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  background: #333333;
  padding: 0.5em;
  color: #fff;
  cursor: pointer;
}

#label-img{
  width: 8px;
  position: absolute;
  right: 15px;
  transition: all 0.7s;
}

#acc-abt-link{
  text-decoration: none;
  color: #fff;
}

.accordion-menu .acc-menu-content{
  background: #414141;
  padding: 0 0.5em;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s;
}

.acc-menu-content a{
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1em;
  transition: 0.3s;

  &:hover{
    font-weight: bold;
    transform: translateX(5px);
  }
}

input[type="checkbox"]{
  display: none;
}

.accordion-menu input[type="checkbox"]:checked + label + .acc-menu-content{
  max-height: 600px;
  padding: 20px 0.5em;
}

.accordion-menu input[type="checkbox"]:checked + label #label-img{
  transform: rotate(180deg);
}

/* Mobile menu accordion extra links */

.accordion-extra-links{
  margin-top: 9em;
}

.for-project{
  display: inline-block;
  padding: .5em 2em;
  border: 1px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.7em;

  &:hover{
    background: #1d1d1d;
  }
}

.for-contact{
  display: inline-block;
  padding: .5em 2em;
  border: 1px solid var(--secondary-c);
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-c);

  &:hover{
    background: #1d1d1d;
  }
}

/* Header starts here */

.header{
  position: fixed;
  top: 0;
  left: 0;
}

.nav__bar{
  padding: 0.5em 1.2em;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
}

.logo{
  width: 120px;
  margin-top: 10px;
}

.nav__links{
  display: none;
}

.link_extra{
  display: flex;
}

.link_extra a{
  display: none;
}

/* search icon starts here */

.search-cc1{
  width: 25px;
  height: 25px;
}

/* menu icon starts here */

.menu-icon-bx{
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  cursor: pointer;

  &:active{
    background: var(--hover-c-light);
  }

  img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
  }
}

/* search box starts here */

.search-cc{
    width: 90%;
}

/* About ribbon 1 starts here */

.index__bar-cc{
  position: fixed;
  transform: translateY(67px);
  padding: 0.7em 1.2em;
}

.h4_wrapper{
  gap: .3em;
}

.h4_wrapper h4{
  font-size: .75rem;
}

.h4_wrapper h4 span{
  font-size: .5rem;
}

.bar__links a{
  padding: .2em .9em;
}

.bar__links a:first-child{
    font-size: .85rem;
   }

   .bar__links a:last-child{
      padding: 0.1em .9em;

      &:hover{
        background: #cecece;
      }
   }

/* About sub header starts here */

.abt--sub-head{
  position: relative;
  height: 300px;
}

.sub-hd-txt{
  position: absolute;
  bottom: 0;
  place-content: flex-start;
  background: var(--secondary-c);
  width: 100%;
  height: 70px;
  padding: 0 1.2em;

  h1{
    font-size: 2.2rem;
  }
}

/* About Main content starts here */

.who-we-are{
  flex-direction: column;
  align-items: flex-start;
  padding: 5em 1.2em;

  h1{
    font-size: 2rem;
  }
}

.who-we-are-line{
  width: 50px;
}

.who-we-are p{
  font-size: 1.3rem;
  line-height: 1.7rem;
  max-width: 25ch;
}
.who-we-are h3{
  font-size: 1.5rem;
  margin-bottom: 2em;
}

.abt-img--1 img{
  width: 450px;
  pointer-events: none;
  transform: translateX(-65px);
}

/* Our approach section starts here */

.our-approach{
  align-items: flex-start;
  flex-direction: column;
  padding: 3em 1.2em;

  h1{
    font-size: 2rem;
  }
}

.our-approach-line{
  width: 50px;
}

.our-approach-txt p{
  font-size: 0.9rem;
  max-width: 35ch;
}

.our-approach-txt h3{
  font-size: 1.2rem;
  margin-bottom: 2em;
}

.abt-img--2 img{
  width: 90%;
}

/* At a glance section */

.at-a-glance{
  flex-direction: column;
  align-items: flex-start;
  padding: 3em 1.2em;

  h1{
    font-size: 2rem;
  }
}

.at-a-glance-line{
  width: 50px;
}

.at-a-glance p{
  font-size: 0.9rem;
  max-width: 40ch;
  margin-bottom: 3em;
}

.stats-container{
  grid-template-columns: 1fr;
  margin: 0 auto;
}

.stat{
  border-top: 1px solid var(--secondary-c);
  border-right: none;
}

/* sectors section starts here */

.sectors{
  padding: 3em 1.2em;

  h1{
    font-size: 2rem;
    line-height: 2rem;
  }
}

.sectors-line{
  width: 50px;
}

.sectors p{
  font-size: 1.2rem;
  max-width: 60ch;
}

/* Sector links starts here */

.sector-cc{
  height: 650px;
  border-radius: 10px;
}

.sector-link-bx{
  flex-direction: column;
}

.sec-link1{
  color: #fff;
  font-size: 1.1rem;
  width: 250px;
}

/* Transform section starts here */

.transform{
  height: 730px;
  padding: 4em 1.2em;
}

.transform--cc{
  flex-direction: column;
  align-items: flex-start;
}

.transfor-img{
  order: 2;
  width: 100%;
  height: unset;
  margin-right: unset;
}

.transfor-txt h1{
  font-size: 2rem;
  line-height: 2rem;
  max-width: 9ch;
}

.transfor-txt .transform-line{
  width: 50px;
}

.transfor-txt p{
  font-size: 0.9rem;
  max-width: 40ch;
  margin-bottom: 3em;
}

/* The future section starts here */

.future{
  height: 1400px;
  padding: 3em 1.2em;
}

.future-row{
  flex-direction: column;
  align-items: flex-start;
}

.future-txt h1{
  font-size: 2rem;
}

.future-line{
  width: 50px;
}

.future-txt p{
  font-size: 0.9rem;
  max-width: 40ch;
  margin-bottom: 3em;
}

.future-img{
  gap: 10px;
  grid-template-columns: 1fr;
  width: 100%;
  height: unset;
}

.futr-1{
  width: 100%;
  height: 230px;
}

/* footer starts here */

.footer{
  padding: 5em 1.2em 1em 1.2em;
}

.footer-img{
  width: 150px;
  margin-bottom: 3em;
}

.footer--row{
  flex-direction: column;
}

.rem-cc{
  flex-direction: column;
}

#addrr-div{
  margin-right: unset;
}

.footer--col h3{
  margin-bottom: 1em;
}

.footer-prim-links a{
  font-size: 0.9rem;
}

.social-row{
  margin-top: 3em;  
}

.footer-addr{
  font-size: 0.9rem;
}

.copy-txt{
  font-weight: 400;
  margin-top: 1em;
  margin-bottom: 4em;  
}

.newsletter{
  margin-top: 2.5em;
}

.newsletter h6{
  font-weight: 400;
  margin-bottom: 0.5em;
}

.newsletter form input{
  border: 1px solid #000;
  
  &:hover{
    border: 1px solid #7c7c7c;
  }

  &:focus{
    border: 1px solid var(--secondary-c);
  }
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(122, 122, 122);
  margin: 2em 0 2em;
}
}