/* 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;
}

/* Ribbon 1 starts here */

.ribbon1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 5em;
  background: var(--color1);
}

.ribbon1 h3{
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

.ribbon1-links{
  display: flex;
}

.text-ct{
  display: flex;
  align-items: center;
}

.text-ct:last-child{
  margin-left: 20px;
}

.text-ct img{
  width: 15px;
  margin-right: 10px;
}

.text-ct h4{
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

/* Mobile menu */

.mobile-menu{
  display: none;
}

/* Header starts here */

.header{
  position: absolute;
  width: 100%;
  z-index: 6;
}

.nav__bar{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 5em;
}

.logo{
  width: 150px;
  transition: 0.2s ease-in-out;

  &:hover{
    opacity: 0.8;
  }
}

.nav--menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 600px;
}

.nav__links{
  display: inline-flex;
  background: var(--primary-c);
  padding: 0.7em 1.4em 0.7em 0;
  border-radius: 50px;
  transition: 0.3s;

  &:hover{
    transform: translateX(15px);
  }
}

.nav__links li{
  list-style: none;
  margin-left: 15px;
}

.nav__links li a{
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  transition: all 0.3s;
}

.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);
  }
}

.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: #fff;
  cursor: pointer;

  &:hover{
  background: #d1d1d1;
  }

  &: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(-690px);
  left: 0;
  top: 3em;
  background: #f7f7f7;
  border-bottom: 1px solid #b4b4b4;
  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::after{
  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::after{
  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;
}

/* 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(-775px);
}
}

@media(min-width: 1486px){
  .submenu--wrap{
  transform: translateX(-821px);
}
}

@media(min-width: 1536px){
  .submenu--wrap{
  transform: translateX(-870px);
}
}

@media(min-width: 1600px){
  .submenu--wrap{
  transform: translateX(-935px);
}
}

@media(min-width: 1680px){
  .submenu--wrap{
  transform: translateX(-1015px);
}
}

@media(min-width: 1920px){
  .submenu--wrap{
  transform: translateX(-1254px);
}
}

@media(min-width: 2560px){
  .submenu--wrap{
  transform: translateX(-1900px);
}
}

/* max-width starts here */

@media(max-width: 1348px){
  .submenu--wrap{
  transform: translateX(-684px);
}
}

@media(max-width: 1344px){
  .submenu--wrap{
  transform: translateX(-680px);
}
}

@media(max-width: 1340px){
  .submenu--wrap{
  transform: translateX(-675px);
}
}

@media(max-width: 1336px){
  .submenu--wrap{
  transform: translateX(-672px);
}
}

@media(max-width: 1330px){
  .submenu--wrap{
  transform: translateX(-666px);
}
}

@media(max-width: 1326px){
  .submenu--wrap{
  transform: translateX(-660px);
}
}

@media(max-width: 1323px){
  .submenu--wrap{
  transform: translateX(-657px);
}
}

@media(max-width: 1318px){
  .submenu--wrap{
  transform: translateX(-653px);
}
}

@media(max-width: 1315px){
  .submenu--wrap{
  transform: translateX(-650px);
}
}

@media(max-width: 1310px){
  .submenu--wrap{
  transform: translateX(-645px);
}
}

@media(max-width: 1305px){
  .submenu--wrap{
  transform: translateX(-640px);
}
}

@media(max-width: 1280px){
  .submenu--wrap{
  transform: translateX(-617px);
}

.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: 1200px){
  .submenu--wrap{
  transform: translateX(-575px);
}

.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(-505px);
}

.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(-474px);
}
}

/* slider banners starts here */

.slider-wrapper{
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.slider-wrapper img{
    width: 100%;
    display: none;
    pointer-events: none;
}

img.displaySlide{
    display: block;
    animation: sli--fade .5s;
}

.slider-wrapper button{
    position: absolute;
    top: 50%;
    background: none;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    font-size: 22px;
    font-weight: normal;
    cursor: pointer;
    transition: .2s;

    &:hover{
        color: rgb(207, 207, 207);
    }
}

.prev{
    left: 15px;
}

.next{
    right: 15px;
}

@keyframes sli--fade{
  from{opacity: .5;}
  to{opacity: 1;}
}

/* header content starts here */

.header-content-home{
  position: absolute;
  top: 30%;
  left: 6%;
  color: white;
}

.header-content-home h1{
    font-size: 5rem;
    font-weight: 800;
    line-height: 5rem;
    color: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: translateY(-100px);
    opacity: 0;
    max-width: 15ch;
}

/* Standard cards starts here */

.standard__card{
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 5em;
  margin-top: -8em;
  z-index: 3;
}

.stan-embedded-h1{
  display: none;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(100px);
  opacity: 0;
  max-width: 12ch;
}

.standard-cards{
  width: 350px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.standard-cards:hover{
  transform: scale(1.02);
}

.standard-cards:hover h1{
  color: var(--secondary-c);
}

.standard-cards a{
  display: inline-block;
  text-decoration: none;
}

.stan-txt{
  background: #fff;
  padding: 2em;
}

.stan-txt h1{
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.3em;
  transition: 0.3s;
}

.stan-txt p{
  font-size: 1rem;
  font-weight: 500;
  /* max-width: 30ch; */
  color: #000;
}

.stand--line{
  width: 100%;
  height: 3px;
  background: var(--secondary-c);
}

@media(min-width: 1485px){
  .standard__card{
  margin-top: -10em;
}
}

/* 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);
}

/* Main contents starts here */

.home-sec1{
  background: #e6e6e6;
  padding: 15em 5em;
}

.abt-sec1{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.abt-sec1-arr img{
  width: 20px;
  margin-bottom: 1em;
}

.abt-sec1-arr h3{
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-c);
}

.abt-sec1-arr h1{
  font-size: 4rem;
  font-weight: 900;
  line-height: 4rem;
  color: var(--primary-c);
  max-width: 20ch;
}

.abt-sec1 p{
  font-size: .97rem;
  font-weight: 500;
  max-width: 45ch;
  margin-top: 4em;
}

.abt-sec1 p span{
  font-size: 0.9rem;

  a{
    text-decoration: none;
    color: var(--secondary-c);

    &:hover{
      text-decoration: underline;
    }
  }
}

.abt-sec1 p img{
  width: 10px;
  margin-left: 7px;
}

/* Get highlight section starts here */

.highlight{
  width: 100%;
  background: #f5f5f5;
  padding: 3em 0 3em 5em;
}

.highlight h4{
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-c);
}

.highlight h1{
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-c);
}

.highlight--cards{
  display: flex;
  gap: 1em;
  width: 100%;
  height: 770px;
  overflow-x: hidden;
  margin-bottom: 2em;
  padding-right: 3em;
  scroll-snap-type: unset;
}

.high__cards{
  flex: 0 0 400px;
  height: 700px;
  border-radius: 15px;
  margin-top: 3em;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  scroll-snap-align: unset;

  &:hover{
    transform: scale(1.005);
  }
}

.high-img{
  width: 100%;
  height: 500px;
  margin-bottom: 1.5em;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    transition: 0.3s;

    &:hover{
      transform: scale(1.05);
    }
  }
}

.high__cards h1{
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1em;
  padding-left: 0.8em;
}

.high__cards p{
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 50ch;
  padding-left: 1.3em;
}

.high-arr-bx{
    display: flex;
    gap: 9px;
}

.high--span1{
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  background: rgb(211, 211, 211);
  border-radius: 50%;
  cursor: pointer;
  transition: .2s;
  
  &:hover{
    background: rgb(230, 230, 230);
    scale: 1.1;
  }

  &:hover img{
    transform: translateX(-5px);
    transition: .7s;
  }

  img{
    width: 10px;
  }
}

.high--span2{
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  background: rgb(211, 211, 211);
  border-radius: 50%;
  cursor: pointer;
  transition: .2s;
  
  &:hover{
    background: rgb(230, 230, 230);
    scale: 1.1;
  }

  &:hover img{
    transform: translateX(5px);
    transition: .7s;
  }

  img{
    width: 10px;
  }
}

/* Mission section starts here */

.mission__sec{
  width: 100%;
  height: 500px;
  background: var(--primary-c);
  text-align: center;
  padding: 3em 20em;
}

.mission__sec h1{
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4em;
}

.mission__sec p{
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  max-width: 45ch;
  margin: 0 auto;
}

/* Missions icons */

.mission-icons{
  display: flex;
  justify-content: space-around;
  margin-top: 4em;
}

.miss--icons-cc{
  transition: all 0.2s;

  &:hover{
    transform: translateY(-10px);
  }
}

.miss--icon{
  display: grid;
  place-content: center;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 1em;

  &:hover{
    background-color: #581118;
  }

  img{
    width: 40px;
  }
}

.miss--icons-cc h4{
  color: #fff;
}

/* darker ribbon */

.darker-ribbon{
  width: 100%;
  height: 90px;
  background: #3f0c11;
}

/* At a glance section  */

.glance__sec{
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 7em 5em;
}

.glance__sec h1{
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  line-height: 3rem;
  color: var(--primary-c);
  max-width: 20ch;
  margin: 0 auto 2em;
}

/* At a glance stats starts here */

.stats-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1000px;
}

.stat{
  border-right: 1px solid var(--secondary-c);
}

.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;
}

/* Explore section starts here */

.explore{
  width: 100%;
  padding: 3em 5em;
  background: #f0f0f0;
}

.explore h3{
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
}

.explore h1{
  font-size: 4rem;
  font-weight: 800;
  line-height: 4rem;
  color: #000;
  max-width: 15ch;
  margin-bottom: .6em;
}

.exp__line{
  width: 70px;
  height: 3px;
  background: var(--secondary-c);
  margin-bottom: 2em;
}

.explore p{
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  max-width: 65ch;
  margin-bottom: 4em;
}

/* Explore cards starts here */

.exp__card-cc{
  width: 100%;
  display: flex;
  gap: 20px;
}

.exp--card{
  position: relative;
  width: 370px;
  height: 520px;
  background-image: url(images/agric.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}

.ex-h5{
  position: absolute;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3rem;
  color: #fff;
  padding: 1em;
  margin: 1em;
  background: #333333;
  border-radius: 10px;
  transition: 0.2s;

  &:hover{
    transform: translateX(10px);
  }
}

.exp_btn-o{
  display: grid;
  place-content: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.5s;

  &:hover{
    background: #333333;
    color: #fff;
  }

  span{
    /* background: #0ab1ff; */
    padding-top: 3px;
  }
}

.reveal--card{
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 2.5em;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-in-out;
}

.reveal--card p{
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  max-width: 45ch;
  margin-bottom: 4em;
}

.reveal--card a{
  font-size: 1.1rem;
  font-weight: 500;
  color: #0644a0;
}

.reveal--card img{
  width: 10px;
  margin-left: 10px;
}

.exp_cx-btn{
  display: grid;
  place-content: center;
  position: absolute;
  /* padding-bottom: 6px; */
  bottom: 20px;
  right: 20px;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  font-weight: 500;
  background: #242424;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;

  &:hover{
        background: #3b3b3b;
      }

  span{
    padding-top: 1px;
  }    
}

/* Adding background image */

.exlore-card-2-bg{
  background-image: url(images/real-estate1.jpeg);
  background-position: center;
  background-size: cover;
}

.exlore-card-3-bg{
  background-image: url(images/healthcare.png);
  background-position: center;
  background-size: cover;
}

/* Typewritter effect section starts here */

.type__effect-sec{
  width: 100%;
  background: #fff;
  padding: 6.5em 3.5em;

  h4{
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--secondary-c);
    }
  
  h1{
    font-size: 6rem;
    font-weight: 800;
    line-height: 6rem;
    max-width: 20ch;

    span{
      color: var(--secondary-c);
    }
  }

  .type-link{
    display: inline-block;
    background: #000;
    padding: 1em 1.2em;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
    margin-top: 1em;
    font-size: 1rem;
    font-weight: 600;
    transition: .2s;

    &:hover{
    background: #505050;
   }
  }
}

.type_effect-cards{
  display: flex;
  gap: 10px;
  margin-top: 3em;
}

.type_effect-card{
  width: 300px;
  height: 200px;
  background-image: url(images/transport.jpg);
  background-position: center;
  background-size: cover;
  transition: .2s;

  &:hover{
    transform: translateY(-10px);
  }
}

.type_effect-card1{
  width: 300px;
  height: 200px;
  background-image: url(images/welder.jpg);
  background-position: center;
  background-size: cover;
  transition: .2s;

  &:hover{
    transform: translateY(-10px);
  }
}

.type_effect-card2{
  width: 300px;
  height: 200px;
  background-image: url(images/professionals.jpeg);
  background-position: center;
  background-size: cover;
  transition: .2s;

  &:hover{
    transform: translateY(-10px);
  }
}

.type_effect-card3{
  width: 300px;
  height: 200px;
  background-image: url(images/tunnel.png);
  background-position: center;
  background-size: cover;
  transition: .2s;

  &:hover{
    transform: translateY(-10px);
  }
}

.type--line{
  width: 50px;
  height: 2px;
  background: var(--secondary-c);
  margin: 2em 0;
}

.type-para{
  margin: 2em 0;
  font-size: 1.1rem;
  max-width: 60ch;
}

/* Careers section starts here */

.career{
  width: 100%;
  background: #f8f8f8;
  padding: 2em 5em 11em;
}

.career-row{
  display: flex;
  align-items: center;
  gap: 3em;
  width: 100%;
}

.career-img{
  order: unset;
  width: 500px;
  height: 600px;
  background-image: url(images/career-woman-standing.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}

.career--txt{
  width: 550px;
}

.career--txt h1{
  font-size: 4rem;
  font-weight: 800;
  line-height: 4rem;
  color: black;
  max-width: 14ch;
  margin-bottom: .7em;
}

.career-line{
  width: 50px;
  height: 2px;
  background: var(--secondary-c);
  margin-bottom: 3em;
}

.career--txt p{
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 4em;
}

.career--txt .career-link{
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--secondary-c);
  color: #fff;
  text-decoration: none;
  padding: 1.7em 2.5em;
  z-index: 1;
  transition: .2s;
}

.career-link::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--hover-c-dark);
  z-index: -1;
  transition: all 0.3s;
}

.career-link:hover::after{
  height: 100%;
}

/* Client and partners section starts here */

.partners{
  text-align: center;
  width: 100%;
  height: 500px;
  padding: 5em 0;

  h1{
    font-size: 2rem;
    font-weight: 700;
    color: #868686;
    margin-bottom: 2em;
  }
}

.logo__anim{
  position: relative;
  background: white;
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
}

.logo__anim::before,
.logo__anim::after{
  position: absolute;
  content: '';
  width: 100px;
  height: 100%;
  top: 0;
  z-index: 2;
}

.logo__anim::before{
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logo__anim::after{
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.logo--slider{
  display: inline-block;
  animation: slide 25s infinite linear;
}

.logo__anim:hover .logo--slider{
  animation-play-state: paused;
}

.logo--slider img{
  width: 120px;
  margin-right: 95px;
}

@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

/* footer starts here */

.footer{
  width: 100%;
  background: #000000;
  padding: 5em 13em 6em 5em;
}

.footer-img{
  width: 180px;
}

.footer--row{
  display: flex;
  justify-content: space-between;
}

.footer--col h3{
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 5em;
  color: #fff;
  margin-bottom: 2em;
}

.footer-prim-links a{
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.3em;

  &:hover{
    color: #aaaaaa;
  }
}

.social-row{
  display: flex;
  gap: 10px;
  margin-top: 6em;
}
.social-row div{
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  padding-top: 6px;
  transition: 0.3s;

  &:hover{
    background: #a1a1a1;
  }
}

.social-row div img{
  width: 22px;
}

.footer-addr{
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3rem;
}

.newsletter{
  margin-top: 3em;
}

.newsletter h6{
  color: #fff;
  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 #fff;
  outline: none;
  background: none;
  font-size: 1rem;
  color: #fff; 
  padding: 0 1em;
  transition: 0.2s;
  
  &:hover{
    border: 2px solid #999999;
  }

  &: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(54, 54, 54);
  margin: 4em 0 2em;
}

.copy-bx{
  display: flex;
  justify-content: space-between;
}

.copy-bx p{
  font-size: 0.9rem;
  font-weight: 500;
  color: grey;
}

.copyright-links a{
  font-size: 0.9rem;
  font-weight: 500;
  color: grey;
  margin-left: 13px;
  text-decoration: none;

  &:hover{
    text-decoration: underline;
  }
}

#message{
  position: absolute;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1em;
}

/* All media querry for different screens */
/* All media querry for different screens */
/* All media querry for different screens */

/* Media for small laptops - 1230 */

@media(max-width: 1230px){
  
  /* Ribbon 1 starts here */

  .ribbon1{
    padding: 0.7em 2.5em;
  }

  .nav__bar{
    padding: 1em 2.5em;
  }

  /* header content starts here */

.header-content-home{
  top: 35%;
}

.header-content-home h1{
    font-size: 3.2rem;
    line-height: 3.2rem;
}

  /* Standard cards starts here */

.standard__card{
  padding: 0 2.5em;
  margin-top: -4em;
}

.standard-cards{
  width: 300px;
}

.standard-cards a{
  position: relative;
}

.stan-txt{
  padding: 1em;
}

.stand--line{
  position: absolute;
  bottom: 0;
}

/* Explore cards */

.exp--card{
  position: relative;
  width: 370px;
  height: 420px;
  background-image: url(images/agric.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}

/* Adding background image */

.exlore-card-2-bg{
  background-image: url(images/real-estate1.jpeg);
  background-position: center;
  background-size: cover;
}

.exlore-card-3-bg{
  background-image: url(images/healthcare.png);
  background-position: center;
  background-size: cover;
}

/* Typewritter effect section starts here */

.type__effect-sec{
  padding: 6.5em 4.7em;
  
  h1{
    font-size: 4rem;
    line-height: 4rem;
  }
}

/* Career */

.career--txt h1{
  font-size: 3rem;
  line-height: 3rem;
}

/* footer starts here */

.footer{
  width: 100%;
  background: #000000;
  padding: 5em 5em 6em 5em;
}
}

/* Media for small devices(iPad) - 1030px */

@media(max-width: 1030px){
    body{
    padding-top: 4.9em;
  }

/* Ribbon 1 starts here */

.ribbon1{
  padding: 0.7em 5em;
}

/* 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.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: 1em 5em;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-c);
}

.nav--menu{
  width: unset;
}

.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%;
}

/* slider banners starts here */

.slider-wrapper{
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.slider-wrapper img{
    width: 100%;
    display: none;
    pointer-events: none;
}

img.displaySlide{
    display: block;
    animation: sli--fade .5s;
}

.slider-wrapper button{
    font-size: 19px;
}

.prev{
    left: 15px;
}

.next{
    right: 15px;
}

/* header content starts here */

.header-content-home h1{
    font-size: 3.2rem;
    line-height: 3.2rem;
}

/* Standard cards starts here */

.standard__card{
  position: relative;
  flex-direction: column;
  gap: 20px;
  padding: 3em 5em 3em;
  background: rgb(218, 218, 218);
  margin-top: unset;
  z-index: 3;
}

.stan-embedded-h1{
  display: none;
}

.standard-cards{
  width: 100%;
  border-radius: 7px;
}

.stan-txt{
  padding: 1.5em;
}

.stan-txt h1{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.stan-txt p{
  font-size: 0.9rem;
  font-weight: 400;
}

/* Main contents starts here */

.home-sec1{
  padding: 5em 5em;
}

.abt-sec1{
  flex-direction: column;
  align-items: unset;
}

.abt-sec1 p{
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 45ch;
  margin-top: 4em;
}

/* Mission section starts here */

.mission__sec{
  height: 480px;
  padding: 3em 11.5em;
}

.mission__sec h1{
  font-size: 2.5rem;
}

.mission__sec p{
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 45ch;
}

/* Missions icons */

.mission-icons{
  gap: 5px;
  flex-wrap: wrap;
}

.miss--icon{
  border: 2px solid #fff;
  margin-bottom: 1em;
}

.miss--icons-cc h4{
  font-weight: 400
}

/* Explore cards */

.exp--card{
  position: relative;
  width: 370px;
  height: 420px;
  background-image: url(images/agric.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}

/* Adding background image */

.exlore-card-2-bg{
  background-image: url(images/real-estate1.jpeg);
  background-position: center;
  background-size: cover;
}

.exlore-card-3-bg{
  background-image: url(images/healthcare.png);
  background-position: center;
  background-size: cover;
}

/* Typewriter effect */

.type__effect-sec{
  
  h1{
    font-size: 4rem;
    line-height: 4rem;
    max-width: 20ch;
  }
}

/* Career section here */

.career--txt h1{
  font-size: 3.5rem;
  line-height: 3.5rem;
  max-width: 30ch;
}

.career--txt .career-link{
  font-size: 0.9rem;
}

/* partners section here */

.partners{
  text-align: center;
  height: 500px;
  padding: 5em 0;

  h1{
    font-size: 3rem;
  }
}

/* footer starts here */

.footer{
  padding: 5em 5em 6em 5em;
}
}

/* Media for small devices(iPad) - 970px */

@media(max-width: 970px){
  .reveal--card{
  padding: 1.5em;
}

  .reveal--card p{
  font-size: 1rem;
}

/* Career section here */

.career--txt h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
  max-width: 14ch;
}
}

/* Media for small devices(iPad) - 860px */

@media(max-width: 860px){
  
  body{
    padding-top: 4.9em;
  }

/* Ribbon 1 starts here */

.ribbon1{
  padding: 0.7em 1.5em;
}

/* Mobile menu */

.mobile-menu{
  position: fixed;
  display: block;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 6em 0em 6em 2em;
  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: 9px;
  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: 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.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: 1em 1.5em;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-c);
}

.nav--menu{
  width: unset;
}

.logo{
  width: 135px;
  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%;
}

/* slider banners starts here */

.slider-wrapper{
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.slider-wrapper img{
    width: 100%;
    display: none;
    pointer-events: none;
}

img.displaySlide{
    display: block;
    animation: sli--fade .5s;
}

.slider-wrapper button{
    font-size: 19px;
}

.prev{
    left: 15px;
}

.next{
    right: 15px;
}

/* header content starts here */

.header-content-home h1{
    font-size: 3.2rem;
    line-height: 3.2rem;
}

/* Standard cards starts here */

.standard__card{
  position: relative;
  flex-direction: column;
  gap: 20px;
  padding: 3em 1.5em 3em;
  background: rgb(218, 218, 218);
  margin-top: unset;
  z-index: 3;
}

.stan-embedded-h1{
  display: none;
}

.standard-cards{
  width: 100%;
  border-radius: 7px;
}

.stan-txt{
  padding: 1.5em;
}

.stan-txt h1{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.stan-txt p{
  font-size: 0.9rem;
  font-weight: 400;
}

/* Main contents starts here */

.home-sec1{
  padding: 5em 1.5em;
}

.abt-sec1{
  flex-direction: column;
  align-items: unset;
}

.abt-sec1 p{
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 45ch;
  margin-top: 4em;
}

/* Get highlight section starts here */

.highlight{
  padding: 3em 0 3em 1.5em;
}

.highlight--cards{
  height: 520px;
  margin-bottom: 0.5em;
  scroll-snap-type: x mandatory;
}

.high__cards{
  flex: 0 0 300px;
  height: 440px;
  scroll-snap-align: center;
}

.high-img{
  height: 265px;
  margin-bottom: 1em;
}

.high__cards h1{
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1rem;
  margin-bottom: 1em;
  padding-left: 1.05em;
}

.high__cards p{
  font-size: 0.9rem;
  font-weight: 400;
  padding-right: 0.5em;
}

/* Mission section starts here */

.mission__sec{
  height: 480px;
  padding: 3em 6.5em;
}

.mission__sec h1{
  font-size: 2.5rem;
}

.mission__sec p{
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 45ch;
}

/* Missions icons */

.mission-icons{
  gap: 5px;
  flex-wrap: wrap;
}

.miss--icon{
  border: 2px solid #fff;
  margin-bottom: 1em;
}

.miss--icons-cc h4{
  font-weight: 400
}

/* At a glance section  */

.glance__sec{
  padding: 4em 1em;
}

.glance__sec h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
  max-width: 20ch;
}

/* At a glance stats starts here */

.stats-container{
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat{
  border-right: none;
}

.stat{
  border-top: 1px solid var(--secondary-c);
}

.stats-container .stat .odometer{
  font-size: 4.5rem;
}

.stats-container .stat .type{
  font-size: 1.2rem;
  font-weight: 500;
}

/* Explore section starts here */

.explore{
  padding: 3em 1.5em;
}

.explore h3{
  font-weight: 400;
}

.explore h1{
  font-size: 3rem;
  line-height: 2.8rem;
  margin-bottom: .6em;
}

.explore p{
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  max-width: 65ch;
  margin-bottom: 4em;
}

/* Explore cards starts here */

.exp__card-cc{
  flex-direction: column;
}

.exp--card{
  width: 100%;
  height: 460px;
}

.reveal--card p{
  font-size: 1.4rem;
  max-width: 45ch;
}

.reveal--card a{
  font-size: 1.3rem;
}

.reveal--card img{
  width: 13px;
}

/* Typewritter effect section starts here */

.type__effect-sec{
  padding: 6.5em 1.5em;
  
  h1{
    font-size: 3.5rem;
    line-height: 3.5rem;
    max-width: 20ch;
  }

  .type-link{
    padding: 0.8em 1em;
    font-size: 1rem;
  }
}

.type_effect-cards{
  flex-direction: column;
}

.type_effect-card{
  width: 100%;
}

.type_effect-card1{
  width: 100%;
}

.type_effect-card2{
  width: 100%;
}

.type_effect-card3{
  width: 100%;
}

.type-para{
  margin: 2em 0;
  font-size: 1.1rem;
  max-width: 60ch;
}

/* Careers section starts here */

.career{
  padding: 2em 1.5em 4em;
}

.career-row{
  flex-direction: column;
  gap: 3em;
}

.career-img{
  order: 2;
  width: 100%;
  height: 650px;
}

.career--txt{
  width: 100%;
}

.career--txt h1{
  font-size: 3.5rem;
  line-height: 3.5rem;
  max-width: 14ch; 
}

.career--txt p{
  font-size: 1.1rem;
  color: #3b3b3b;
  margin-bottom: 3em;
  max-width: 70ch;
}

.career--txt .career-link{
  display: block;
  font-size: 1rem;
  text-align: center;
  padding: 1.2em 2em;
}

/* Client and partners section starts here */

.partners{
  text-align: center;
  width: 100%;
  height: 500px;
  padding: 5em 0;

  h1{
    font-size: 2.5rem;
    line-height: 1em;
  }
}

.logo__anim::before,
.logo__anim::after{
  display: none;
}

/* footer starts here */

.footer{
  padding: 5em 1em 3em 1.5em;
}

.footer-img{
  width: 160px; 
}

.footer--row{
  flex-direction: column;
}

.footer--col h3{
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2em;
  color: #fff;
  margin-bottom: 1em;
}

.footer-prim-links a{
  font-size: 0.9rem;
}

.social-row{
  margin-top: 3em;
}

.footer-addr{
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2rem;
}

.newsletter h6{
  font-weight: 400;
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(54, 54, 54);
  margin: 4em 0 2em;
}

.copy-bx{
  flex-direction: column;
}

.copy-bx p{
  font-size: 0.85rem;
  font-weight: 500;
}

.copyright-links a{
  font-size: 0.9rem;
  font-weight: 500;
  color: grey;
  margin-left: 13px;
  text-decoration: none;

  &:hover{
    text-decoration: underline;
  }
}

.copyright-links a:first-child{
  margin-left: 0;
}
}

/* Media for small devices(custom) - 720px */

@media(max-width: 720px){
  
/* Mission section starts here */

.mission__sec{
  padding: 3em 3em;
}

.mission__sec h1{
  font-size: 2.5rem;
}

.mission__sec p{
  font-size: 0.9rem;
}

/* Missions icons */

.miss--icon{
  border: 2px solid #fff;
}
}

/* Media for small devices - 600px */

@media(max-width: 600px){

  /* ribbon */
  .ribbon1{
    display: none;
  }

  /* header content starts here */

.header-content-home{
  top: 34%;
}

.header-content-home h1{
    font-size: 2.2rem;
    line-height: 2.2rem;
}
  
/* Mission section starts here */

.mission__sec{
  padding: 3em 3em;
}

.mission__sec h1{
  font-size: 2.5rem;
}

.mission__sec p{
  font-size: 0.9rem;
}

/* Missions icons */

.miss--icon{
  width: 5em;
  height: 5em;
  border: 2px solid #fff;

  img{
    width: 30px;
  }
}

.miss--icons-cc h4{
  font-size: 0.9rem;
}

/* Typewritter effect section starts here */

.type__effect-sec{
  
  h1{
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .type-link{
    font-size: 0.9rem;
  }
}

/* About section 1 */

.abt-sec1-arr h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
  max-width: 20ch;
}

.abt-sec1 p{
  font-size: 0.9rem;
}

.abt-sec1 p span{
  font-size: 0.9rem;

  a{
    font-size: 0.8rem
  }
}

/* Explore */

.explore p{
  font-size: 0.9rem;
}

.type-para{
  font-size: 0.9rem;
}

/* Career */

.career--txt h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.career--txt p{
  font-size: 0.9rem;
  color: #3b3b3b;
  margin-bottom: 3em;
}

.career--txt .career-link{
  display: block;
  text-align: center;
  font-size: 0.85rem;
  padding: 1.2em 2em;
}

/* At a glance */

.glance__sec h1{
  font-size: 2rem;
  line-height: 2rem;
  max-width: 20ch;
}

/* Highlight */

.highlight h1{
  font-size: 2.5rem;
}

.high__cards h1{
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1rem;
  margin-bottom: 1em;
}
}

/* Media for small devices(phones) - 500px */

@media(max-width: 500px){
  
  body{
    padding-top: 4.9em;
  }

/* Ribbon 1 starts here */

.ribbon1{
  display: none;
}

/* 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: 1em 1em;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-c);
}

.nav--menu{
  width: unset;
}

.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%;
}

/* slider banners starts here */

.slider-wrapper{
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.slider-wrapper img{
    width: 100%;
    display: none;
    pointer-events: none;
}

img.displaySlide{
    display: block;
    animation: sli--fade .5s;
}

.slider-wrapper button{
    font-size: 13px;
}

.prev{
    left: 15px;
}

.next{
    right: 15px;
}

/* header content starts here */

.header-content-home{
  display: none;
}

/* Standard cards starts here */

.standard__card{
  position: relative;
  flex-direction: column;
  gap: 20px;
  padding: 3em 1em 3em;
  background: rgb(218, 218, 218);
  margin-top: unset;
  z-index: 3;
}

.stan-embedded-h1{
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 2.5rem;
  max-width: 15ch;
  color: var(--primary-c);
  margin-bottom: 1em;
}

.standard-cards{
  width: 100%;
  border-radius: 7px;
}

.stan-txt{
  padding: 1.5em;
}

.stan-txt h1{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.stan-txt p{
  font-size: 0.9rem;
  font-weight: 400;
}

/* Main contents starts here */

.home-sec1{
  padding: 5em 1em 5em;
}

.abt-sec1{
  flex-direction: column;
}

.abt-sec1-arr h1{
  font-size: 3rem;
  line-height: 3rem;
  max-width: 30ch;
}

.abt-sec1 p{
  font-size: 0.9rem;
  margin-top: 3em;
}

/* Get highlight section starts here */

.highlight{
  padding: 3em 0 3em 1em;
}

.highlight h1{
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 0;
}

.highlight--cards{
  width: 100%;
  height: 520px;
  margin-bottom: 0.5em;
  padding-right: 6em;
  scroll-snap-type: x mandatory;
}

.high__cards{
  flex: 0 0 80%;
  height: 440px;
  scroll-snap-align: center;
}

.high-img{
  height: 265px;
  margin-bottom: 1em;
}

.high__cards h1{
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1rem;
  margin-bottom: 1em;
}

.high__cards p{
  font-size: 0.8rem;
  font-weight: 400;
  padding-right: 0.5em;
}

/* Mission section starts here */

.mission__sec{
  height: 780px;
  padding: 3em 3em;
}

.mission__sec h1{
  font-size: 2rem;
}

.mission__sec p{
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 35ch;
}

/* Missions icons */

.mission-icons{
  gap: 10px;
  flex-wrap: wrap;
}

.miss--icons-cc{
  transition: all 0.2s;

  &:hover{
    transform: translateY(-10px);
  }
}

.miss--icon{
  border: 2px solid #fff;
  margin-bottom: 1em;
}

.miss--icons-cc h4{
  font-weight: 400
}

/* At a glance section  */

.glance__sec{
  padding: 4em 1em;
}

.glance__sec h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
  max-width: 12ch;
}

/* At a glance stats starts here */

.stats-container{
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat{
  border-right: none;
}

.stat{
  border-top: 1px solid var(--secondary-c);
}

.stats-container .stat .odometer{
  font-size: 4.5rem;
}

.stats-container .stat .type{
  font-size: 1.2rem;
  font-weight: 500;
}

/* Explore section starts here */

.explore{
  padding: 3em 1em;
}

.explore h3{
  font-weight: 400;
}

.explore h1{
  font-size: 3rem;
  line-height: 2.8rem;
  margin-bottom: .6em;
}

.explore p{
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
  max-width: 65ch;
  margin-bottom: 4em;
}

/* Explore cards starts here */

.exp__card-cc{
  flex-direction: column;
}

.exp--card{
  width: 100%;
  height: 460px;
}

.reveal--card p{
  font-size: 1.2rem;
}

.reveal--card a{
  font-size: 1rem;
}

.reveal--card img{
  width: 11px;
}

/* Typewritter effect section starts here */

.type__effect-sec{
  padding: 6.5em 1em;
  
  h1{
    font-size: 2.5rem;
    line-height: 2.5rem;
    max-width: 20ch;
  }

  .type-link{
    padding: 0.8em 1em;
    font-size: 0.8rem;
  }
}

.type_effect-cards{
  flex-direction: column;
}

.type_effect-card{
  width: 100%;
}

.type_effect-card1{
  width: 100%;
}

.type_effect-card2{
  width: 100%;
}

.type_effect-card3{
  width: 100%;
}

.type-para{
  margin: 2em 0;
  font-size: 0.9rem;
  max-width: 60ch;
}

/* Careers section starts here */

.career{
  padding: 2em 1em 4em;
}

.career-row{
  flex-direction: column;
  gap: 3em;
}

.career-img{
  order: 2;
  width: 100%;
  height: 400px;
}

.career--txt{
  width: 100%;
}

.career--txt h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.career--txt p{
  font-size: 0.9rem;
  color: #3b3b3b;
  margin-bottom: 3em;
}

.career--txt .career-link{
  display: block;
  text-align: center;
  font-size: 0.85rem;
  padding: 1.2em 2em;
}

/* Client and partners section starts here */

.partners{
  text-align: center;
  width: 100%;
  height: 500px;
  padding: 5em 0;

  h1{
    font-size: 1.4rem;
    line-height: 1rem;
  }
}

.logo__anim::before,
.logo__anim::after{
  display: none;
}

/* footer starts here */

.footer{
  padding: 5em 1em 3em 1em;
}

.footer-img{
  width: 160px; 
}

.footer--row{
  flex-direction: column;
}

.footer--col h3{
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2em;
  color: #fff;
  margin-bottom: 1em;
}

.footer-prim-links a{
  font-size: 0.9rem;
}

.social-row{
  margin-top: 3em;
}

.footer-addr{
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2rem;
}

.newsletter h6{
  font-weight: 400;
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(54, 54, 54);
  margin: 4em 0 2em;
}

.copy-bx{
  flex-direction: column;
}

.copy-bx p{
  font-size: 0.85rem;
  font-weight: 500;
}

.copyright-links a{
  font-size: 0.9rem;
  font-weight: 500;
  color: grey;
  margin-left: 13px;
  text-decoration: none;

  &:hover{
    text-decoration: underline;
  }
}

.copyright-links a:first-child{
  margin-left: 0;
}
}

@media(max-width: 431px){
.highlight--cards{
  padding-right: 6em;
}
}

/* Media for small screens(phones) - 360px */

@media(max-width: 362px){

  body{
    padding-top: 4.9em;
  }

/* Ribbon 1 starts here */

.ribbon1{
  display: none;
}

/* 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: 1em 1em;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-c);
}

.nav--menu{
  width: unset;
}

.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%;
}

/* slider banners starts here */

.slider-wrapper{
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.slider-wrapper img{
    width: 100%;
    display: none;
    pointer-events: none;
}

img.displaySlide{
    display: block;
    animation: sli--fade .5s;
}

.slider-wrapper button{
    font-size: 13px;
}

.prev{
    left: 15px;
}

.next{
    right: 15px;
}

/* header content starts here */

.header-content-home{
  display: none;
}

/* Standard cards starts here */

.standard__card{
  position: relative;
  flex-direction: column;
  gap: 20px;
  padding: 3em 1em 3em;
  background: rgb(218, 218, 218);
  margin-top: unset;
  z-index: 3;
}

.stan-embedded-h1{
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 2.5rem;
  max-width: 12ch;
  color: var(--primary-c);
  margin-bottom: 1em;
}

.standard-cards{
  width: 100%;
  border-radius: 7px;
}

.stan-txt{
  padding: 1.5em;
}

.stan-txt h1{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.stan-txt p{
  font-size: 0.9rem;
  font-weight: 400;
}

/* Main contents starts here */

.home-sec1{
  padding: 5em 1em 5em;
}

.abt-sec1{
  flex-direction: column;
}

.abt-sec1-arr h1{
  font-size: 3rem;
  line-height: 3rem;
  max-width: 30ch;
}

.abt-sec1 p{
  font-size: 0.9rem;
  margin-top: 3em;
}

/* Get highlight section starts here */

.highlight{
  padding: 3em 0 3em 1em;
}

.highlight h1{
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 0;
}

.highlight--cards{
  width: 100%;
  height: 520px;
  margin-bottom: 0.5em;
  padding-right: 3em;
  scroll-snap-type: x mandatory;
}

.high__cards{
  flex: 0 0 80%;
  height: 440px;
  scroll-snap-align: center;
}

.high-img{
  height: 265px;
  margin-bottom: 1em;
}

.high__cards h1{
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1rem;
  margin-bottom: 1em;
}

.high__cards p{
  font-size: 0.8rem;
  font-weight: 400;
  padding-right: 0.5em;
}

/* Mission section starts here */

.mission__sec{
  height: 780px;
  padding: 3em 4em;
}

.mission__sec h1{
  font-size: 2rem;
}

.mission__sec p{
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 35ch;
}

/* Missions icons */

.mission-icons{
  gap: 10px;
  flex-wrap: wrap;
}

.miss--icons-cc{
  transition: all 0.2s;

  &:hover{
    transform: translateY(-10px);
  }
}

.miss--icon{
  border: 2px solid #fff;
  margin-bottom: 1em;
}

.miss--icons-cc h4{
  font-weight: 400
}

/* At a glance section  */

.glance__sec{
  padding: 4em 1em;
}

.glance__sec h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
  max-width: 12ch;
}

/* At a glance stats starts here */

.stats-container{
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat{
  border-right: none;
}

.stat{
  border-top: 1px solid var(--secondary-c);
}

.stats-container .stat .odometer{
  font-size: 4.5rem;
}

.stats-container .stat .type{
  font-size: 1.2rem;
  font-weight: 500;
}

/* Explore section starts here */

.explore{
  padding: 3em 1em;
}

.explore h3{
  font-weight: 400;
}

.explore h1{
  font-size: 3rem;
  line-height: 2.8rem;
  margin-bottom: .6em;
}

.explore p{
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
  max-width: 65ch;
  margin-bottom: 4em;
}

/* Explore cards starts here */

.exp__card-cc{
  flex-direction: column;
}

.exp--card{
  width: 100%;
  height: 460px;
}

.reveal--card p{
  font-size: 1.2rem;
}

.reveal--card a{
  font-size: 1.1rem;
}

.reveal--card img{
  width: 11px;
}

/* Typewritter effect section starts here */

.type__effect-sec{
  padding: 6.5em 1em;
  
  h1{
    font-size: 2.5rem;
    line-height: 2.5rem;
    max-width: 20ch;
  }

  .type-link{
    padding: 0.8em 1em;
    font-size: 0.8rem;
  }
}

.type_effect-cards{
  flex-direction: column;
}

.type_effect-card{
  width: 100%;
}

.type_effect-card1{
  width: 100%;
}

.type_effect-card2{
  width: 100%;
}

.type_effect-card3{
  width: 100%;
}

.type-para{
  margin: 2em 0;
  font-size: 0.9rem;
  max-width: 60ch;
}

/* Careers section starts here */

.career{
  padding: 2em 1em 4em;
}

.career-row{
  flex-direction: column;
  gap: 3em;
}

.career-img{
  order: 2;
  width: 100%;
  height: 400px;
}

.career--txt{
  width: 100%;
}

.career--txt h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.career--txt p{
  font-size: 0.9rem;
  color: #3b3b3b;
  margin-bottom: 3em;
}

.career--txt .career-link{
  display: block;
  text-align: center;
  font-size: 0.85rem;
  padding: 1.2em 2em;
}

/* Client and partners section starts here */

.partners{
  text-align: center;
  width: 100%;
  height: 500px;
  padding: 5em 0;

  h1{
    font-size: 1.4rem;
    line-height: 1rem;
  }
}

.logo__anim::before,
.logo__anim::after{
  display: none;
}

/* footer starts here */

.footer{
  padding: 5em 1em 3em 1em;
}

.footer-img{
  width: 160px; 
}

.footer--row{
  flex-direction: column;
}

.footer--col h3{
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2em;
  color: #fff;
  margin-bottom: 1em;
}

.footer-prim-links a{
  font-size: 0.9rem;
}

.social-row{
  margin-top: 3em;
}

.footer-addr{
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2rem;
}

.newsletter h6{
  font-weight: 400;
}

.footer-hr1{
  border: 0;
  height: 1px;
  background: rgb(54, 54, 54);
  margin: 4em 0 2em;
}

.copy-bx{
  flex-direction: column;
}

.copy-bx p{
  font-size: 0.85rem;
  font-weight: 500;
}

.copyright-links a{
  font-size: 0.9rem;
  font-weight: 500;
  color: grey;
  margin-left: 13px;
  text-decoration: none;

  &:hover{
    text-decoration: underline;
  }
}

.copyright-links a:first-child{
  margin-left: 0;
}
}

/* Media for small devices(phones) - 320px */

@media(max-width: 322px){

  /* Highlight cards */
  .highlight--cards{
  padding-right: 1em;
}

/* At a glance section  */

.glance__sec h1{
  font-size: 2.5rem;
  line-height: 2.5rem;
  max-width: 13ch;
}

/* Explore cards starts here */

.exp--card{
  width: 100%;
  height: 420px;
}
}