
:root {
  --hgc-clr-bright-orange: #FFAC1C;
  --hgc-clr-burnt-orange: #CC5500;
  --hgc-clr-charcoal: #36454F;
  --hgc-clr-matte-black: #28282B;
  --hgc-clr-black: #111111;
  --hgc-clr-white: #FFFFFF;
  --hgc-clr-smoke-white: #f5f5f5;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --box-shadow2: 0 .5rem 1rem rgba(0, 0, 0, 0.205);
  --box-shadowHover: 0 .6rem 1rem rgba(0, 0, 0, 0.466);
  --border-bottom: #474e523a;
  --overlay:rgba(255, 172, 28, 0.623) ;
  --transparentBlack: #28282b3d;
}

* {
  font-family: "Roboto", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--hgc-clr-bright-orange);
}

section{
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--hgc-clr-black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--hgc-clr-bright-orange);
}

.text-orange{
  color: var(--hgc-clr-burnt-orange);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td { 
  border: 1px solid var(--transparentBlack);
  padding: 8px;
  text-align: left;
  font-size: 20px;
  line-height: 24px;
}

th {
  background-color: var(--transparentBlack);
}

.para-desc{
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: var(--hgc-clr-matte-black);
}

.text-btn{
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.text-link{
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
  text-decoration: none;
  padding-right: 26px;
  margin-bottom: 0;
  outline: none;
  border: none;
  box-shadow: none;
  color: var(--hgc-clr-matte-black);
}

.text-link::after{
  content:'';
  background: url("../images/icons/right-arrow.png") no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.home-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 15px 30px;
    background: var(--hgc-clr-matte-black);
    color: var(--hgc-clr-white);
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.7rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.2s linear;
    text-decoration: none;
  }

  .btn-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 30px;
    color: var(--hgc-clr-matte-black);
    cursor: pointer;
    font-family: "Oxygen", serif;
    font-size: 16px;
    font-weight: 500px;
    text-transform: capitalize;
    transition: 0.2s linear;
  }

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 30px;
  background: var(--hgc-clr-bright-orange);
  color: var(--hgc-clr-matte-black);
  cursor: pointer;
  font-family: "Oxygen", serif;
  font-size: 20px;
  font-weight: 700px;
  text-transform: capitalize;
  transition: 0.2s linear;
}
.btn:hover {
  background: var(--hgc-clr-matte-black);
  color: var(--hgc-clr-bright-orange);
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.contact-box{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: none;
  border-radius: 20px;
  box-shadow: var(--box-shadow2);
  text-align: center;
  transition: 0.5s ease-in-out;
}
.contact-box:hover{
  box-shadow:var(--box-shadowHover);
}
.contact-box a {
  text-decoration:none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-box a .icon{
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-bottom: 20px;
}

.contact-box a .icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-box a .title{
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: var(--hgc-clr-burnt-orange);
  margin-bottom: 20px;
}
.contact-box a .para{
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--hgc-clr-charcoal);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--hgc-clr-white);
  border-bottom: 1px solid var(--border-bottom);
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
.header .logo {
  position: relative;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .navbar a {
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  color: var(--hgc-clr-matte-black);
  text-transform: capitalize;
  margin: 0 1rem;
  transition: 0.3s;
  text-decoration: none;
}

.header .navbar a.active{
    color: var(--hgc-clr-burnt-orange);
}
.header .navbar a:hover {
  color: var(--hgc-clr-burnt-orange);
}
.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--hgc-clr-bright-orange);
  color: var(--hgc-clr-matte-black);
  cursor: pointer;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  transition: 0.3s;
}
.header .icons div:last-child{
    margin-right: 0;
}
.header .icons div:hover {
  background: var(--hgc-clr-matte-black);
  color: var(--hgc-clr-bright-orange);
}
.header #menu-btn {
  display: none;
}
.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.2s linear;
}
.header .search-form.active {
  display: flex;
  background: var(--hgc-clr-smoke-white);
  box-shadow: var(--box-shadow);
  border-radius: 30px;
}
.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}
.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}
.header .search-form label:hover {
  color: var(--yellow);
}
.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  animation: fadeIn 0.2s linear;
  display: none;
}
.header .login-form.active {
  display: block;
}
.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}
.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: 0.7rem 0;
}
.header .login-form .flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}
.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}
.header .login-form .flex a:hover {
  color: var(--yellow);
  text-decoration: underline;
}
.header .login-form .btn {
  width: 100%;
}
.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}
.header .login-form p a {
  color: var(--yellow);
}
.header .login-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--hgc-clr-smoke-white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}
.contact-info.active {
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}
.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 2.5rem;
  color: var(--hgc-clr-matte-black);
}
.contact-info #close-contact-info:hover {
  transform: rotate(90deg);
}
.contact-info .info {
  padding: 2rem 0;
}
.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--hgc-clr-bright-orange);
  color: var(--hgc-clr-matte-black);
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0.5rem;
}
.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}
.contact-info .info h3 {
  font-family: "Oxygen", serif;
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}
.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}
.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 0.3rem;
}
.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
    position: relative;
    padding: 0;
    margin-top: 111px;
}
.home .slide {
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--overlay), transparent);
}
.home .slide .content {
  width: 60rem;
  position: relative;
}
.home .slide .content h3 {
  font-family: "Oxygen", serif;
  font-size: 7rem;
  font-weight: 700;
  color: var(--hgc-clr-matte-black);
  text-transform: capitalize;
  text-transform: uppercase;
}
.home .slide .content p {
  font-size: 22px;
  font-weight: 400;
  color: var(--hgc-clr-charcoal);
  line-height: 28px;
  padding: 15px 0;
}
.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  font-size: 3rem;
  background: var(--hgc-clr-smoke-white);
  border: 1px solid var(--border-bottom);
}
.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--hgc-clr-bright-orange);
}
.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--hgc-clr-matte-black);
}
.home .swiper-button-prev {
  right: 7rem;
}

.shortDetails{
    position: relative;
    margin-top: 30px;
}
.shortDetails .title{
    margin-bottom: 30px;
}
.shortDetails .about-bg{
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  margin-left: 30px;
}

.shortDetails .video{
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 40px;
}
.shortDetails .video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shortDetails .text-box{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 30px;
}

.shortDetails .text-box h3{
    font-family: "Oxygen", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
    color: var(--hgc-clr-matte-black);
}
.shortDetails .text-box p{
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: var(--hgc-clr-charcoal);
}

/* General Info Start */
.general-info {
    position: relative;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .general-info-row {
    display: flex;
    flex-wrap: wrap;
  }
  .general-info-card {
    width: 24%;
    margin: auto;
    height: 250px;
    /* border: 1px solid rgba(0, 0, 0, 0.317); */
    border-radius: 10px;
    box-shadow: 2px 5px 10px 2px rgba(0, 0, 0, 0.17);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease;
    /* background-color: #2a2a72;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  }
  .general-info-card:hover {
    transform: scale(1.05) !important;
  }
  .general-info-icon {
    font-size: 4rem;
    margin-bottom: 15px;
  }

  .general-info-content h1 {
    font-family: "Oxygen", serif;
    font-size: 50px;
    line-height: 56px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--hgc-clr-burnt-orange);
  }

  .general-info-content p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
  }
  @media (max-width: 1136px) {
    .general-info-card {
      width: 48%;
      margin-bottom: 1%;
    }
  }
  @media (max-width: 767px) {
    .general-info-card {
      width: 100%;
    }
  }
  /* General Info End */

/* Services------------- */
.services {
  background: var(--hgc-clr-smoke-white);
}
.services .box-container {
    position: relative;
    width: 100%;
    height: 100%;
  display: flex;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem; */
}
.services .box-container .box {
  position: relative;
  width: calc((100% / 4) - 20px);
  height: auto;
  margin-right: 20px;
  margin-bottom: 40px;
  text-align: center;
  padding: 5rem;
  background: var(--hgc-clr-white);
  box-shadow: var(--box-shadow);
  border: var(--border-bottom);
  border-radius: 10px;
}
.services .box-container .box:hover img {
  transform: translateY(-1rem);
}
.services .box-container .box img {
  height: 7rem;
  margin-bottom: 0.5rem;
  transition: 0.2s linear;
}
.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}




/* Projects */
.project-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 90%;
  margin: 0 auto;
  padding: 15px;
  box-sizing: border-box;
}

.projectsection-image {
  width: calc(31%);
  margin: 20px 0px;
  box-sizing: border-box;
  position: relative;
}

.projectsection-image img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.projectsection-image:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.projectsection-image h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.projectsection-image p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
}




@media (max-width: 1200px) {
  .projectsection-image {
    width: calc(50% - 20px);
  }
  .project-heading {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .projectsection-image {
    width: 100%;
  }
  .project-heading {
    font-size: 30px;
  }
}




/* Why choose us Start */
.whyChooseUs-section {
  background: url('../images/banner/cup-notebook-near-construction-s.jpg');
  background-size: cover;
  padding: 0;
  
}
.whychooseus-overlay {
  
  background:var(--hgc-clr-charcoal);
  opacity: 80%;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 80px;
  transition: 0.6s;
}

.whychooseus-container {
  background-size: cover;
  padding: 5rem 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}
.whychooseus-row {
  display: flex;
  flex-wrap: wrap;
  margin: 40px;
  color: #ffffff;
  width: 100%;
}
.whychooseus-block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* width: 31.5%;
  margin: 10px; */
  width: calc((100% / 3) - 20px);
  margin-bottom: 40px;
  margin-right: 20px;
}
.whychooseus-block i {
  color: #ffffff; 
  padding-right: 8px;
  font-size: 25px;
}
.whychooseus-coloumn h3 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 5px;
  font-weight: 500;
}
.whychooseus-coloumn p {
  font-size: 16px;
  line-height: 22px;
}
.whychooseus-coloumn hr {
  margin-top: 10px;
  width: 30%;
  /* color: #0f0135; */
  border: none;
  border-radius: 5px;
  height: 3px;
  background-color: white;
}

@media (max-width: 1250px) {
  .whychooseus-block {
    width: 30%;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .whychooseus-block {
    width: 100%;
  }
}




.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* .logo-container .title{
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--hgc-clr-matte-black);
} */

.logo-container img {
height: 10rem;
pointer-events: none;
user-select: none;
}


/*** Team ***/
.team{
  position: relative;
  width: 100%;
  background: var(--hgc-clr-smoke-white);
  margin-bottom: 60px;
}
.team .team-members{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.team .team-members .team-box{
  position: relative;
  width: calc((100% / 4) - 15px);
  height: auto;
  padding: 10px;
  border: none;
  background: var(--hgc-clr-white);
  box-shadow: var(--box-shadow);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 20px;
}

.team .team-members .team-box:last-child{
  margin-right: 0;
}

.team .team-box .profile-img{
  position: relative;
  width: 190px;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}
.team .team-box .profile-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team .team-box .content{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.team .team-box .content .title{
  width: 100%;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--hgc-clr-burnt-orange);
  margin-bottom: 8px;
}

.team .team-box .content .designation{
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--hgc-clr-matte-black);
  margin-bottom: 8px;
}

.team .team-box .content .contact{
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--hgc-clr-matte-black);
  text-decoration: none;
  margin-bottom: 8px;
}
.team .team-box .content .email{
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--hgc-clr-matte-black);
  text-decoration: none;
  margin-bottom: 30px;
}

.team .team-box .content .social-links{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.team .team-box .content .social-links a{
  position: relative;
  margin-right: 10px;
}

.team .team-box .content .social-links a:last-child{
  margin-right: 0;
}

.team .team-box .content .social-links img{
  width: 18px;
  height: 18px;
}

/* Footer */

.footer {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--hgc-clr-smoke-white);
    padding: 5rem 10%;
    padding-top: 160px;
    overflow: hidden;
  }


  .container {
    max-width: 1250px;
    margin: auto;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-col {
    padding: 0 20px;
  }
  .footer-col h4 {
    font-size: 16px;
    color: #0f0135;
    margin-bottom: 30px;
    line-height: 0.5rem;
    font-weight: 600;
    position: relative;
  }
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-image: linear-gradient(to right,#cde2ff,#1c55a4);
    height: 2.25px;
    box-sizing: border-box;
    width: 50px;
    transition: 0.5s ease-in-out;
    border-radius: 40%;
  }
  
  /* hover on heading in footer */
  
  .footer-col h4{
    transition: 0.5s ease-in-out;
   }
   .footer-col h4:hover{
     cursor: pointer;
   }
   
   .footer-col h4:hover::before {
     background-color:#1c55a4;
     width: 80px;
   }
  
   .footer-col ul{
    list-style: none;
    padding-left: 0;
   }
  .footer-col ul li {
    margin-bottom: 15px;
  }
  .footer-col ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #1d0f44ad;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .footer-col ul li a:hover {
    color: #0f0135;
    padding-left: 8px;
  }
  .footer-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  
    width: 36%;
    line-height: 1.5;
    color: #0f0135;
  }
  .footer-logo {
    width: 160px;
    height: 160px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* margin: -150px 0px 0px -150px; */
  }

  .address{
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--hgc-clr-black);
  }

  .service {
    width: 23%;
  }
  .repair {
    width: 18%;
  }
  .contact {
    width: 23%;
  }
  .contact i {
    margin-right: 5px;
  }
  .footer-copyright {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: rgba(23, 5, 57, 0.58);
    font-size: 16px;
    color: var(--hgc-clr-charcoal);
  }
  .footer-copyright a {
    color: #1d0f44ad;
    transition: all 0.3s ease;
  }
  .footer-copyright a:hover {
    color: #0f0135;
  }

  .legal{
    display: flex;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--hgc-clr-black);
    text-decoration: none;
  }

  .legal a{
    margin-right: 15px;
  }

/* About..................... */

.bredcrum-banner{
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 100px;
  padding: 0;
}
.bredcrum-banner .banner{
  position: relative;
  width: 100%;
  height: 500px;
  
}
.bredcrum-banner .banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
 
}
.bredcrum-banner .banner .overlay{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgb(255,172,28);
  background: linear-gradient(90deg, rgba(255,172,28,1) 0%, rgba(255,172,28,0) 35%);
}

.bredcrum-banner .banner .breadcrumb {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  padding: 5rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bredcrum-banner .banner .breadcrumb .breadcrumb-title{
  font-size: 50px;
  line-height: 56px;
  font-weight: 700;
  color: var(--hgc-clr-matte-black);
  margin-bottom: 20px;
}
.bredcrum-banner .banner .breadcrumb .breadcrumb-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  padding: 0;
}

.bredcrum-banner .banner .breadcrumb .breadcrumb-content .breadcrumb-item{
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
}
.bredcrum-banner .banner .breadcrumb .breadcrumb-content .breadcrumb-item a{
  text-decoration: none;
  color: var(--hgc-clr-black);
}

.how-it-started {
  width: 55%;
  margin: 3% auto;
  text-align: center;
  padding: 20px;
}
.how-it-started h2{
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}
.how-it-started p{
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}


@media(max-width: 767px){
  .how-it-started{
    width: 80%;
  }
  .how-it-started h2{
    font-size: 2.21rem;
  }
}

.vision-container{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-container .vision-content{
  position: relative;
  width: calc(100% / 2);
  height: auto;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}
.vision-container .vision-content:last-child{
  margin-right: 0;
}

.vision-container .vision-content h2{
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.vision-container .vision-content p{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.vision-container .vision-content img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Meet Start */

.meet-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.meet-content{
  width: 50%;
}
.meet-content h2{
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}
.meet-content p{
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.meet-content ul li{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.meet-content img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 767px){
  .meet-content{
    width: 100%;
  }
}
/* Meet End */


.contact-bg{
  position: relative;
  display: flex;
  width: 100%;
}
.contact-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission Start */
.mission {
  margin: 20px auto;
  width: 90%;
}
.mission-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.mission-content {
  width: 50%;
  margin: auto;
}
.mission-content img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .mission-content {
    width: 100%;
    margin-bottom: 2%;
    text-align: center;
  }
}
/* Mission End */




@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 3rem 5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }

  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}
@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }
  .header .login-form {
    width: 90%;
  }

  .home .slide {
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

/*# sourceMappingURL=style.css.map */
