@font-face {
  font-family: light_font;
  src: url("../fonts/poppins_light.ttf");
}

@font-face {
  font-family: reg_font;
  src: url("../fonts/poppins_reg.ttf");
}

@font-face {
  font-family: med_font;
  src: url("../fonts/poppins_med.ttf");
}

@font-face {
  font-family: semi_font;
  src: url("../fonts/poppins_semi.ttf");
}

@font-face {
  font-family: bold_font;
  src: url("../fonts/poppins_bold.ttf");
}

@font-face {
  font-family: header_reg;
  src: url("../fonts/corm_reg.ttf");
}

@font-face {
  font-family: header_italic;
  src: url("../fonts/corm_italic.ttf");
}

@font-face {
  font-family: header_bold;
  src: url("../fonts/corm_semi.ttf");
}

@font-face {
  font-family: header_light;
  src: url("../fonts/corm_light.ttf");
}

/*GLobal Colors*/
/*GLobal Variables*/
/*GLobal Variables*/
/*Functions and Mixin*/
/* Mixin and Function End*/
/* ========== HEADER STYLES START ========== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.main-header.scrolled .nav-link {
  color: #2c3e50;
}

.main-header.scrolled .nav-link::after {
  background-color: #2c3e50;
}

.main-header.scrolled .mobile-menu-toggle span {
  background-color: #2c3e50;
}

.main-header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.main-header .logo-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 10;
  position: relative;
}

.main-header .logo-wrap a {
  display: block;
  position: relative;
}

.main-header .logo {
  height: 60px;
  width: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}

.main-header .white_logo {
  opacity: 1;
}

.main-header .color_logo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.main-header.scrolled .logo {
  height: 48px;
}

.main-header.scrolled .white_logo {
  opacity: 0;
}

.main-header.scrolled .color_logo {
  opacity: 1;
}

.main-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 60px;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 45px;
}

.nav-link {
  font-family: med_font;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 5px 0;
  text-decoration: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  -webkit-transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 80px 30px 40px;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 45px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0.7;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  font-family: med_font;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  padding-left: 15px;
  color: #8dbeda;
}

/* Header Responsive Styles */
@media only screen and (max-width: 1100px) {
  .nav-menu {
    gap: 30px;
  }
  .nav-link {
    font-size: 12px;
  }
}

@media only screen and (max-width: 786px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-header {
    padding: 15px 0;
  }
  .main-header .logo {
    height: 38px;
  }
  .main-header.scrolled {
    padding: 10px 0;
  }
  .main-header.scrolled .logo {
    height: 32px;
  }
}

@media only screen and (max-width: 480px) {
  .mobile-menu-content {
    padding: 70px 20px 30px;
  }
  .mobile-nav-link {
    font-size: 16px;
    padding: 18px 0;
  }
  .main-header .logo {
    height: 32px;
  }
  .main-header.scrolled .logo {
    height: 28px;
  }
}

/* ========== HEADER STYLES END ========== */
body {
  /*Common Body Styles Start*/
  font-family: reg_font;
  background-color: #f2f2f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /*Common Elements Style*/
  /*Common Body Responsive Styles Start*/
}

body p,
body .content_ul li {
  color: #000;
  padding: 0;
  margin: 0;
  padding-top: 15px;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}

body p.primary,
body .content_ul li.primary {
  color: #8dbeda;
}

body p.accent,
body .content_ul li.accent {
  color: #000;
}

body p.secondary,
body .content_ul li.secondary {
  color: #545454;
}

body p.white,
body .content_ul li.white {
  color: #fff;
}

body p.align_justify,
body .content_ul li.align_justify {
  text-align: justify;
}

body p.align_left,
body .content_ul li.align_left {
  text-align: left;
}

body p.align_right,
body .content_ul li.align_right {
  text-align: right;
}

body p.reg,
body .content_ul li.reg {
  font-family: reg_font;
}

body p.semi,
body .content_ul li.semi {
  font-family: semi_font;
}

body p.bold,
body .content_ul li.bold {
  font-family: bold_font;
}

body p.light,
body .content_ul li.light {
  font-family: light_font;
}

body p.med,
body .content_ul li.med {
  font-family: med_font;
}

body p.capital,
body .content_ul li.capital {
  text-transform: uppercase;
}

body p.header_reg,
body .content_ul li.header_reg {
  font-family: header_reg;
}

body p.header_italic,
body .content_ul li.header_italic {
  font-family: header_italic;
}

body p.header_bold,
body .content_ul li.header_bold {
  font-family: header_bold;
}

body .content_ul ul,
body .content_ul ol {
  padding-top: 15px;
}

body .content_ul li {
  padding-top: 0;
}

body .common_header {
  padding: 0;
  margin: 0;
  padding-top: 15px;
  font-family: med_font;
  color: #000;
  line-height: 1.1em;
}

body .common_header.primary {
  color: #8dbeda;
}

body .common_header.accent {
  color: #000;
}

body .common_header.secondary {
  color: #545454;
}

body .common_header.white {
  color: #fff;
}

body .common_header.reg {
  font-family: reg_font;
}

body .common_header.semi {
  font-family: semi_font;
}

body .common_header.bold {
  font-family: bold_font;
}

body .common_header.light {
  font-family: light_font;
}

body .common_header.med {
  font-family: med_font;
}

body .common_header.capital {
  text-transform: uppercase;
}

body .common_header.header_reg {
  font-family: header_reg;
}

body .common_header.header_italic {
  font-family: header_italic;
}

body .common_header.header_bold {
  font-family: header_bold;
}

body .common_header.header_light {
  font-family: header_light;
}

body .common_header span {
  font-family: bold_font;
  color: #8dbeda;
}

body .common_header span.primary {
  color: #8dbeda;
}

body .common_header span.accent {
  color: #000;
}

body .common_header span.secondary {
  color: #545454;
}

body .common_header span.white {
  color: #fff;
}

body .common_header span.reg {
  font-family: reg_font;
}

body .common_header span.semi {
  font-family: semi_font;
}

body .common_header span.bold {
  font-family: bold_font;
}

body .common_header span.light {
  font-family: light_font;
}

body .common_header span.med {
  font-family: med_font;
}

body .common_header span.capital {
  text-transform: uppercase;
}

body .common_header span.header_reg {
  font-family: header_reg;
}

body .common_header span.header_italic {
  font-family: header_italic;
}

body .common_header span.header_bold {
  font-family: header_bold;
}

body .common_header span.header_light {
  font-family: header_light;
}

body .common_anchor {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-family: reg_font;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #8dbeda;
  padding-left: 4%;
  padding-right: 40px;
  padding-left: 40px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

body .common_anchor:hover {
  text-decoration: none;
  color: #fff;
  background-color: #545454;
}

body .common_anchor.secondary {
  background-color: #545454;
  color: #fff;
}

body .common_anchor.secondary:hover {
  background-color: #8dbeda;
  color: #fff;
}

body .common_anchor.border_anchor {
  background-color: transparent;
  border: 2px solid #8dbeda;
  color: #8dbeda;
}

body .common_anchor.border_anchor:hover {
  background-color: #8dbeda;
  color: #fff;
}

body .gridContainer {
  margin: auto;
  clear: none;
  float: none;
  margin-left: auto;
}

body .table_wrap {
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

body .cell_wrap {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

body .btn-group {
  display: inline-block;
  margin-top: 15px;
}

body .btn-group button {
  padding: 12px;
  font-family: reg_font;
  background-color: #fff !important;
  background: none;
  border-color: #ccc;
  border-radius: 8px;
}

body .btn-group a:hover {
  background: none;
  background-color: #8dbeda !important;
  color: #000;
}

body .form_field {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #ccc;
  width: 100%;
}

body .nav.nav-tabs {
  margin-top: 15px !important;
}

body .nav.nav-tabs li a {
  color: #000;
}

body .nav.nav-tabs li.active a {
  background-color: #8dbeda;
}

body input[type=text] {
  background-color: #fff;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-webkit-keyframes rotation_minus {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}

@keyframes rotation_minus {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}

@media only screen and (min-width: 1600px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 15px;
  }
  body p.small_size {
    font-size: 13px;
  }
  body .common_header {
    font-size: 50px;
  }
  body .common_header.large {
    font-size: 70px;
  }
  body .common_header.small {
    font-size: 35px;
  }
  body .gridContainer {
    width: 95.5%;
    min-width: 1250px;
    padding-left: 0.75%;
    padding-right: 0.75%;
  }
}

@media only screen and (max-width: 1599px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 13px;
  }
  body .common_header {
    font-size: 30px;
  }
  body .common_header.large {
    font-size: 50px;
  }
  body .common_header.small {
    font-size: 30px;
  }
  body .gridContainer {
    width: 85.5%;
    min-width: 1250px;
    padding-left: 0.75%;
    padding-right: 0.75%;
  }
  body p.small_size {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1100px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 13px;
  }
  body .common_header {
    font-size: 30px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .gridContainer {
    width: 95.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    min-width: auto !important;
  }
  body p.small_size {
    font-size: 12px;
  }
  body .common_header.small {
    font-size: 30px;
  }
}

@media only screen and (max-width: 786px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 13px;
  }
  body .common_header {
    font-size: 30px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .gridContainer {
    width: 95.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    min-width: auto !important;
  }
  body p.small_size {
    font-size: 12px;
  }
  body .common_header.small {
    font-size: 30px;
  }
}

@media only screen and (max-width: 480px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 13px;
  }
  body .nav.nav-tabs li {
    float: none;
    display: inline-block;
  }
  body .nav.nav-tabs {
    white-space: nowrap;
    overflow-x: scroll;
  }
  body .common_header {
    font-size: 22px;
  }
  body .common_header.large {
    font-size: 35px;
  }
  body .gridContainer {
    width: 95.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
  }
  body a.common_anchor {
    font-size: 13px;
  }
  body p.small_size {
    font-size: 11px;
  }
  body .common_header.small {
    font-size: 25px;
  }
}

body .gridContainer.small_test_wrap {
  max-width: 900px;
  min-width: auto;
  width: auto;
  background-color: #fff;
  padding: 30px !important;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
}

.full_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

.half_wrap {
  width: 50%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

.gardient {
  background: #C7883D;
  background: -webkit-gradient(linear, right top, left top, from(#c7883d), color-stop(48%, #eec789), to(#e3ad56));
  background: linear-gradient(270deg, #c7883d 0%, #eec789 48%, #e3ad56 100%);
}

.gradient_text {
  color: #C7893E;
  background-image: linear-gradient(45deg, #C7893E, #EDC78A 50%, #E3AD56 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.capital_letter_spacing {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.opacity_text {
  opacity: 0.5;
}

/*Home starts*/
.slider_top_wrap {
  height: 100vh;
  overflow: hidden;
}

.slider_top_wrap .image_wrap {
  height: 100vh;
  position: relative;
}

.slider_top_wrap .image_wrap .slide {
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 0;
  will-change: opacity, filter, transform;
}

.slider_top_wrap .image_wrap .slide.active {
  opacity: 1;
}

.slider_top_wrap .image_wrap .slide img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider_top_wrap .image_wrap .slide .mobile {
  display: none;
}

.slider_top_wrap .title_wrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 80px;
}

.slider_top_wrap .title_wrap p {
  padding-right: 60%;
}

.slider_top_wrap .title_wrap .marquee_wrap {
  background-color: white;
  margin-top: 7vh;
  padding-top: 5px;
  padding-bottom: 5px;
}

.slider_top_wrap .title_wrap .marquee_wrap p {
  padding: 0;
  white-space: nowrap;
}

.overview_wrap {
  padding-top: 7vh;
  padding-bottom: 7vh;
  overflow: hidden;
}

.overview_wrap .half_wrap {
  float: right;
  margin-top: -250px;
}

.overview_wrap .image_wrap {
  margin-top: -200px;
}

.overview_wrap h3 {
  font-size: 140px !important;
}

.icon_wrap {
  background-color: #8dbeda;
  padding-top: 7vh;
  padding-bottom: 7vh;
}

.icon_wrap ul {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

.icon_wrap ul li {
  width: 33.33333%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 0%;
  padding: 30px;
  text-align: center;
}

.icon_wrap ul li:nth-child(3n+0) {
  margin-right: 0;
}

.category_wrap {
  height: 100vh;
  overflow: hidden;
}

.category_wrap .image_wrap {
  height: 100vh;
}

.category_wrap .image_wrap > img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category_wrap .image_wrap .title_wrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

.category_wrap .image_wrap .title_wrap img {
  max-width: 250px;
}

.category_wrap .image_wrap .title_wrap p {
  padding-left: 30%;
  padding-right: 30%;
}

.infrastructure_wrap {
  background-color: white;
  padding-top: 7vh;
  padding-bottom: 7vh;
  padding-bottom: 0;
}

.infrastructure_wrap .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.infrastructure_wrap .image_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  width: 70%;
}

.infrastructure_wrap .image_wrap img {
  width: 100%;
  max-width: none;
}

.infrastructure_wrap .data_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  width: 30%;
  padding: 40px;
}

.infrastructure_wrap .infra_gallery_wrap {
  overflow: hidden;
}

.infrastructure_wrap .infra_gallery_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: auto;
  margin: 0;
  padding: 0;
  will-change: transform;
}

.infrastructure_wrap .infra_gallery_wrap ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

.globe_wrap {
  background-color: #b9daed;
  padding-top: 7vh;
  padding-bottom: 7vh;
}

.globe_wrap .image_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.globe_wrap .image_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.globe_wrap .data_wrap {
  text-align: center;
}

.globe_wrap .data_wrap .common_header {
  padding-bottom: 30vh;
  color: #2e688a;
}

.contact_section_wrap {
  background-color: #f8f8f8;
  padding-top: 7vh;
  padding-bottom: 7vh;
}

.contact_section_wrap .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}

.contact_section_wrap .form_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  width: 45%;
}

.contact_section_wrap .form_wrap .form_inner {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.contact_section_wrap .details_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  width: 50%;
}

.contact_section_wrap .contact_form {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

.contact_section_wrap .contact_form .form_field {
  background-color: white;
  border: 1px solid #e0e0e0;
  padding: 18px;
  font-family: reg_font;
  width: 100%;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact_section_wrap .contact_form .form_field:focus {
  outline: none;
  border-color: #8dbeda;
  -webkit-box-shadow: 0 0 0 3px rgba(141, 190, 218, 0.1);
          box-shadow: 0 0 0 3px rgba(141, 190, 218, 0.1);
}

.contact_section_wrap .contact_form .form_field::-webkit-input-placeholder {
  color: #999;
}

.contact_section_wrap .contact_form .form_field:-ms-input-placeholder {
  color: #999;
}

.contact_section_wrap .contact_form .form_field::-ms-input-placeholder {
  color: #999;
}

.contact_section_wrap .contact_form .form_field::placeholder {
  color: #999;
}

.contact_section_wrap .contact_form .textarea_field {
  resize: vertical;
  min-height: 120px;
}

.contact_section_wrap .submit_button {
  background-color: #f9b115;
  color: white;
  font-family: med_font;
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 16px 50px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact_section_wrap .submit_button:hover {
  background-color: #e0a014;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(249, 177, 21, 0.3);
          box-shadow: 0 4px 12px rgba(249, 177, 21, 0.3);
}

.contact_section_wrap .workshop_section,
.contact_section_wrap .office_section {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact_section_wrap .workshop_section h3,
.contact_section_wrap .office_section h3 {
  padding-top: 0;
}

.contact_section_wrap .workshop_section p,
.contact_section_wrap .office_section p {
  color: #666;
  line-height: 1.8em;
}

.contact_section_wrap .workshop_section + .workshop_section,
.contact_section_wrap .office_section {
  margin-top: 30px;
}

.contact_section_wrap .map_wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 15px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact_section_wrap .map_wrap iframe {
  display: block;
}

.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 20px;
}

.popup_overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup_container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.popup_overlay.active .popup_container {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.popup_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #8dbeda;
}

.popup_close:hover {
  background: #545454;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.popup_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.popup_image {
  width: 45%;
  overflow: hidden;
}

.popup_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup_form {
  width: 55%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup_form h3 {
  padding: 0;
  margin-bottom: 10px;
}

.popup_form p {
  padding: 0;
  margin-bottom: 25px;
  opacity: 0.7;
}

.popup_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.popup_form form input {
  padding: 10px;
  border: 2px solid rgba(26, 77, 55, 0.2);
  border-radius: 10px;
  font-family: reg_font;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.popup_form form input:focus {
  outline: none;
  border-color: #8dbeda;
}

.popup_form form button {
  margin-top: 10px;
  font-family: reg_font;
  font-size: 16px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
}

/*Responsive Starts*/
@media only screen and (max-width: 1599px) {
  .overview_wrap {
    padding-top: 7vh;
    padding-bottom: 7vh;
    overflow: hidden;
  }
  .overview_wrap .half_wrap {
    float: right;
    margin-top: -250px;
  }
  .overview_wrap .image_wrap {
    margin-top: -150px;
  }
  .overview_wrap .image_wrap img {
    max-width: 80%;
  }
  .overview_wrap h3 {
    font-size: 110px !important;
  }
  .icon_wrap ul li .image_wrap img {
    max-width: 150px;
  }
}

@media only screen and (max-width: 1100px) {
  .infrastructure_wrap .parent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .infrastructure_wrap .parent .image_wrap {
    width: 100%;
  }
  .infrastructure_wrap .parent .data_wrap {
    width: 100%;
    padding-top: 0;
  }
  .contact_section_wrap .parent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .contact_section_wrap .form_wrap {
    width: 100%;
  }
  .contact_section_wrap .form_wrap .form_inner {
    position: relative;
    top: auto;
  }
  .contact_section_wrap .details_wrap {
    width: 100%;
  }
  .contact_section_wrap .workshop_section,
  .contact_section_wrap .office_section {
    padding: 30px;
  }
}

@media only screen and (max-width: 786px) {
  .overview_wrap {
    padding-top: 7vh;
    padding-bottom: 7vh;
    overflow: hidden;
  }
  .overview_wrap .half_wrap {
    float: right;
    margin-top: -100px;
    width: 100%;
  }
  .overview_wrap .image_wrap {
    margin-top: -150px;
  }
  .overview_wrap .image_wrap img {
    max-width: 100%;
  }
  .overview_wrap h3 {
    font-size: 110px !important;
  }
  .icon_wrap ul li {
    width: 100%;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
  }
  .icon_wrap ul li .image_wrap img {
    max-width: 150px;
  }
}

@media only screen and (max-width: 480px) {
  .popup_container {
    max-width: 95%;
    border-radius: 25px;
    margin: 20px;
  }
  .popup_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup_image {
    width: 100%;
    height: 200px;
  }
  .popup_form {
    width: 100%;
    padding: 30px 25px;
  }
  .popup_form h3 {
    font-size: 24px;
  }
  .popup_form p {
    font-size: 14px;
  }
  .popup_close {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  .popup_overlay {
    padding: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .popup_container {
    border-radius: 30px 30px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0;
    max-width: 100%;
  }
  .popup_image {
    height: 180px;
  }
  .popup_form {
    padding: 25px 20px;
  }
  .popup_form h3 {
    font-size: 22px;
  }
  .popup_close {
    top: 10px;
    right: 10px;
  }
  .slider_top_wrap .title_wrap p {
    padding-right: 0;
    padding-left: 0;
  }
  .overview_wrap {
    padding-top: 7vh;
    padding-bottom: 7vh;
    overflow: hidden;
  }
  .overview_wrap .half_wrap {
    float: right;
    margin-top: -100px;
    width: 100%;
  }
  .overview_wrap .image_wrap {
    margin-top: -120px;
  }
  .overview_wrap .image_wrap img {
    width: 200%;
    max-width: none;
    margin-left: -50%;
  }
  .overview_wrap h3 {
    font-size: 70px !important;
  }
  .icon_wrap ul li {
    width: 100%;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
  }
  .icon_wrap ul li .image_wrap img {
    max-width: 100px;
  }
  .category_wrap .image_wrap .title_wrap p {
    padding-left: 0;
    padding-right: 0;
  }
  .infrastructure_wrap .parent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .infrastructure_wrap .parent .image_wrap {
    width: 100%;
    overflow: hidden;
  }
  .infrastructure_wrap .parent .image_wrap img {
    width: 180%;
    margin-left: -65%;
  }
  .infrastructure_wrap .parent .data_wrap {
    width: 100%;
    padding-top: 0;
    padding: 20px;
  }
  .infrastructure_wrap .infra_gallery_wrap ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66%;
            flex: 0 0 66.66%;
  }
  .slider_top_wrap .image_wrap .slide .desktop {
    display: none;
  }
  .slider_top_wrap .image_wrap .slide .mobile {
    display: block;
  }
  .contact_section_wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact_section_wrap .workshop_section,
  .contact_section_wrap .office_section {
    padding: 25px;
  }
  .contact_section_wrap .map_wrap iframe {
    height: 200px;
  }
}

/*Responsive Ends*/
.field-error {
  color: #d32f2f;
  font-size: 13px;
  margin: 2px 0 8px 0;
  min-height: 16px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.field-error:empty {
  display: none;
}

button.common_anchor {
  border: 0;
}
/*# sourceMappingURL=style.css.map */