body {
  font-family: "Readex Pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}

p {
  margin-bottom: 0;
}

.no-padding {
  padding: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

header {
  position: absolute;
  color: #ffffff;
  width: 100%;
  padding: 10px 0;
  z-index: 55;
  height: 75px;
}
header .header-container {
  padding: 0 4%;
}
header .flex-header {
  display: flex;
  justify-content: space-around;
}
header .flex-header .header-logo {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}
header .flex-header .first-step {
  padding-left: 30px;
}
header .flex-header .last-step {
  padding-right: 30px;
}
header .flex-header nav {
  display: inline-block;
  text-align: center;
  width: 100%;
}
header .flex-header nav .nav-link {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 0;
}
header .flex-header nav .nav-link .nav-item {
  margin-right: 40px;
  margin-top: 4px;
}
header .flex-header nav a {
  color: #ffffff;
}
header .header-right-nav {
  float: right;
  display: none;
}
header .header-right-nav .menu-icon-group ul {
  display: flex;
  align-items: center;
}
header .header-right-nav .menu-icon-group ul li {
  margin-left: 10px;
  display: inline-block;
}
@media (max-width: 991px) {
  header .header-right-nav .menu-icon-group ul li.off-nav {
    display: none;
  }
}
header .header-right-nav .menu-icon-group ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  color: #2f98c5;
  font-size: 16px;
}
@media (max-width: 767px) {
  header .header-right-nav .menu-icon-group ul li .icon {
    width: 40px;
    height: 40px;
  }
}
header .navbar-toggler {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
header .navbar-toggler span {
  position: relative;
  background-color: #ffffff;
  border-radius: 3px;
  display: block;
  height: 3px;
  margin-top: 5px;
  padding: 0;
  transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}
header .navbar-toggler.active span:nth-of-type(1) {
  transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}
header .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
header .navbar-toggler.active span:nth-of-type(3) {
  transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}
header .header-logo img {
  width: 210px;
  filter: brightness(0) invert(1);
}
header .contact-info {
  float: right;
}
header .header-contact {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
}
header .header-contact .call-icon i {
  font-size: 22px;
}
header .header-contact a {
  color: #ffffff;
  font-size: 16px;
}
header .header-contact .call-detail {
  line-height: 1.1;
}
header.colored {
  position: fixed;
  top: -100px;
  background-color: #fff;
  width: 100%;
  color: #2f98c5;
}
header.colored .header-logo img {
  width: 185px;
  filter: brightness(1) invert(0);
}
header.colored a {
  color: #2f98c5;
  font-size: 16px;
}
header.colored .flex-header a {
  color: #2f98c5;
}
header.colored .navbar-toggler span {
  background-color: #000000;
}
header.sticky {
  top: 0;
  width: 100%;
  transition: all 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 999;
}

#landing {
  height: 100vh;
  position: relative;
}
#landing::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.2;
  z-index: 2;
}
#landing .bg-landing {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
#landing .landing-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
  z-index: 3;
  padding-bottom: 75px;
}
#landing .landing-content .landing-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}
#landing .landing-content .landing-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 2px;
}

#about {
  padding: 95px 0;
  position: relative;
}
#about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 155px;
  background-image: url("../assets/images/breaker-4.png");
  top: -144px;
  left: 0;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 5;
  background-position: top;
}
#about .about-content {
  text-align: center;
}
#about .about-content .bg-title {
  line-height: 1;
  font-size: 48px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #2f98c5;
  text-transform: uppercase;
}
#about .about-content .about-title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  position: relative;
}
#about .about-content .about-desc {
  width: 80%;
  margin: 0 auto;
}

#gorak-ebc {
  position: relative;
  padding: 65px 0;
  padding-top: 0;
  overflow: hidden;
}
#gorak-ebc .gorak-ebc-desc {
  padding: 25px 70px;
  padding-left: 0;
  text-align: justify;
  font-weight: 300;
}
#gorak-ebc .gorak-ebc-desc .gorak-ebc-title {
  font-size: 38px;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-weight: 700;
  display: inline-block;
  color: #2f98c5;
  text-transform: uppercase;
  position: relative;
}
#gorak-ebc .gorak-ebc-desc .gorak-ebc-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1.35px;
  background-color: #2f98c5;
  z-index: 0;
  transform: scaleY(1.001);
}
#gorak-ebc .gorak-ebc-desc .gorak-ebc-title::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 45%;
  width: 35px;
  line-height: 1;
  font-size: 0;
  height: 35px;
  padding: 0 10px;
  background-image: url("../assets/images/plus.png");
  background-size: contain;
  background-color: #fff;
  z-index: 4;
}
#gorak-ebc .trekker {
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: -1;
}
#gorak-ebc .trekker img {
  height: 450px;
  opacity: 0.25;
}

#gorak-why {
  position: relative;
  padding: 65px 0;
  padding-top: 0;
  overflow: hidden;
}
#gorak-why .gorak-why-title {
  font-size: 34px;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-weight: 700;
  color: #2f98c5;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
#gorak-why .gorak-why-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1.35px;
  background-color: #2f98c5;
  z-index: 0;
  transform: scaleY(1.001);
}
#gorak-why .gorak-why-title::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 45%;
  width: 35px;
  line-height: 1;
  font-size: 0;
  height: 35px;
  padding: 0 10px;
  background-image: url("../assets/images/plus.png");
  background-size: contain;
  background-color: #fff;
  z-index: 4;
}
#gorak-why .gorak-ebc-desc {
  text-align: justify;
  padding-right: 45px;
  font-weight: 300;
}
#gorak-why .trekker {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#gorak-why .trekker img {
  height: 450px;
  opacity: 0.15;
}

.ml-auto {
  display: block;
  margin-left: auto;
}

#extra-breaker {
  position: relative;
  padding: 75px 0;
  height: 75vh;
}
#extra-breaker .dark-mountain {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../assets/images/about-section-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#extra-breaker-2 {
  position: relative;
  padding: 95px 0;
  padding-bottom: 0px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#extra-breaker-2 .dark-mountain {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../assets/images/extra-breaker.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.25;
  z-index: -1;
}

#high-alti {
  position: relative;
  padding: 75px 0;
  padding-bottom: 95px;
}
#high-alti::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: -125px;
  left: 0;
  background-image: url("../assets/images/dark-breaker.png");
  background-size: contain;
  z-index: 2;
}
#high-alti::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 450px;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../assets/images/bg-mountain.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.25;
}
#high-alti .highalti-desc {
  width: 75%;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
  padding-bottom: 35px;
  text-align: center;
  line-height: 1.7;
}
#high-alti .highalti-title {
  font-size: 42px;
  margin-bottom: 0px;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  color: #2f98c5;
  display: block;
}
#high-alti .highalti-title .highalti-main-title {
  display: block;
}
#high-alti .highalti-title .highalti-plus {
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}
#high-alti .highalti-title .highalti-plus img {
  width: 45px;
}
#high-alti .highalti-title .highalti-plus::after {
  content: "";
  position: absolute;
  bottom: 55%;
  left: 205%;
  width: 200%;
  height: 1.35px;
  background-color: #2f98c5;
  z-index: 0;
  transform: translateX(-50%) scaleY(1.001);
}
#high-alti .highalti-title .highalti-plus::before {
  content: "";
  position: absolute;
  bottom: 55%;
  right: 6%;
  width: 200%;
  height: 1.35px;
  background-color: #2f98c5;
  z-index: 0;
  transform: translateX(-50%) scaleY(1.001);
  z-index: 4;
}

#services {
  position: relative;
  padding: 75px 0;
  padding-bottom: 85px;
}
#services::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 155px;
  background-image: url("../assets/images/breaker-4.png");
  top: -120px;
  left: 0;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 5;
  background-position: top;
}
#services .services-heading {
  text-align: center;
  margin-bottom: 40px;
}
#services .services-heading .main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 15px;
  color: #2f98c5;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
#services .services-heading .main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 75%;
  height: 1.35px;
  background-color: #2f98c5;
  z-index: 0;
  transform: translateX(-50%) scaleY(1.001);
}
#services .services-heading .main-title::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 45%;
  width: 35px;
  line-height: 1;
  font-size: 0;
  height: 35px;
  padding: 0 10px;
  background-image: url("../assets/images/plus.png");
  background-size: contain;
  background-color: #fff;
  z-index: 4;
}
#services .list-serviceDesc {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 25px;
  border-right: 1px solid rgba(47, 152, 197, 0.35);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(47, 152, 197, 0.35);
  text-align: center;
  min-height: 175px;
  line-height: 1;
}
#services .list-serviceDesc .list-heading {
  margin-bottom: 15px;
}
#services .list-serviceDesc .list-heading img {
  width: 70px;
  height: auto;
  opacity: 0.75;
}
#services .list-serviceDesc .list-serviceTitle {
  font-weight: 700;
  color: #2f98c5;
}
#services .no-border .list-serviceDesc {
  border-right: none;
}
#services .no-bottom {
  border-bottom: 0px !important;
}

#contact-form {
  position: relative;
  padding: 75px 0;
  padding-top: 25px;
  /* From uiverse.io by @mrhyddenn */
  /* reset input */
}
#contact-form::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: -150px;
  left: 0;
  background-image: url("../assets/images/dark-breaker.png");
  background-size: contain;
  z-index: 2;
}
#contact-form .contact-title {
  font-size: 42px;
  text-align: center;
  font-weight: 700;
  color: #2f98c5;
  text-transform: uppercase;
}
#contact-form .contact-title .contact-main-title {
  margin-bottom: 40px;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
}
#contact-form .contact-title .contact-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 65%;
  height: 1.35px;
  background-color: #2f98c5;
  z-index: 0;
  transform: translateX(-50%) scaleY(1.001);
}
#contact-form .contact-title .contact-main-title::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 45%;
  width: 35px;
  line-height: 1;
  font-size: 0;
  height: 35px;
  padding: 0 10px;
  background-image: url("../assets/images/plus.png");
  background-size: contain;
  background-color: #fff;
  z-index: 4;
}
#contact-form .form__group {
  position: relative;
  padding: 20px 0 0;
  margin-top: 10px;
  width: 100%;
  margin-bottom: 35px;
}
#contact-form .form__field {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 17px;
  color: #fff;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}
#contact-form .form__field::-moz-placeholder {
  color: transparent;
}
#contact-form .form__field:-ms-input-placeholder {
  color: transparent;
}
#contact-form .form__field::placeholder {
  color: transparent;
}
#contact-form .form__field:-moz-placeholder-shown ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
}
#contact-form .form__field:-ms-input-placeholder ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
}
#contact-form .form__field:placeholder-shown ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
}
#contact-form .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #9b9b9b;
  pointer-events: none;
}
#contact-form .form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  -o-border-image: linear-gradient(to right, #2f98c5, #2f98c5);
     border-image: linear-gradient(to right, #2f98c5, #2f98c5);
  border-image-slice: 1;
}
#contact-form .form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #2f98c5;
  font-weight: 700;
}
#contact-form .form__field:required, #contact-form .form__field:invalid {
  box-shadow: none;
}

#contact {
  position: relative;
  padding: 75px 0;
}
#contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 155px;
  background-image: url("../assets/images/breaker-4.png");
  top: -120px;
  left: 0;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 5;
  background-position: top;
}

.footer-section {
  padding-top: 45px;
  text-align: center;
  padding-bottom: 45px;
}
.footer-section .footer-logo {
  margin-bottom: 25px;
}
.footer-section .footer-logo img {
  width: 170px;
}
.footer-section a {
  color: #2f98c5;
  font-weight: 800;
}
.footer-section i {
  color: #2f98c5;
  margin-right: 10px;
  font-size: 22px;
}
.footer-section .footer-phone, .footer-section .footer-mail, .footer-section .footer-whats {
  margin-top: 15px;
}
.footer-section .gorak-phone a {
  display: inline-block;
  margin-right: 10px;
}
.footer-section .gorak-phone a i {
  font-size: 18px;
}
.copyright {
  padding: 7px 0;
  font-size: 16px;
}

/* From uiverse.io */
.fancy {
  background-color: transparent;
  border: 2px solid #2f98c5;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 1.25em 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 13px;
  margin-top: 25px;
}

.fancy::before {
  content: " ";
  width: 1.5625rem;
  height: 2px;
  background: #2f98c5;
  top: 50%;
  left: 1.5em;
  position: absolute;
  transform: translateY(-50%);
  transform-origin: center;
  transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
  font-size: 1.125em;
  line-height: 1.33333em;
  padding-left: 2em;
  display: block;
  text-align: left;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  text-decoration: none;
  color: #2f98c5;
}

.fancy .top-key {
  height: 2px;
  width: 1.5625rem;
  top: -2px;
  left: 0.625rem;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
  height: 2px;
  width: 1.5625rem;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
  height: 2px;
  width: 0.625rem;
  right: 0.625rem;
  bottom: -2px;
  position: absolute;
  background: #e8e8e8;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
  color: white;
  background: #2f98c5;
}

.fancy:hover::before {
  width: 0.9375rem;
  background: white;
}

.fancy:hover .text {
  color: white;
  padding-left: 1.5em;
}

.fancy:hover .top-key {
  left: -2px;
  width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
  right: 0;
  width: 0;
}

.mobile-nav {
  display: none;
}

.quick-contact {
  bottom: 5%;
  left: 0%;
  z-index: 99;
  transform: translateY(-50%);
  position: fixed;
}
.quick-contact .social-fixed ul {
  list-style-type: none;
  padding-left: 0;
}
.quick-contact .social-fixed ul a {
  color: #fff;
  display: block;
  height: 45px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 45px;
  z-index: 2;
  font-size: 20px;
}
.quick-contact .social-fixed ul a:hover span {
  visibility: visible;
  left: 47px;
  opacity: 1;
  z-index: 2;
}
.quick-contact .social-fixed ul span {
  line-height: 45px;
  left: 40px;
  position: absolute;
  text-align: center;
  width: 175px;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
  background-color: #2f98c5;
}
.quick-contact .social-fixed li {
  background-color: #2f98c5;
  margin-bottom: 2px;
}

@media only screen and (max-width: 1300px) {
  header .flex-header {
    justify-content: space-between;
  }
  #gorak-ebc .gorak-ebc-desc {
    padding: 25px 40px;
    text-align: justify;
  }
  #gorak-ebc .gorak-ebc-desc .gorak-ebc-title {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2f98c5;
    text-transform: uppercase;
  }
  #gorak-why .gorak-ebc-desc {
    padding: 0 20px;
    padding-left: 40px;
    text-align: justify;
  }
  #high-alti .highalti-desc {
    width: 85%;
  }
  #extra-breaker {
    height: 55vh;
  }
  #extra-breaker-2 {
    padding-top: 135px;
    height: auto;
  }
}
@media only screen and (max-width: 1200px) {
  header .flex-header {
    width: 100%;
    display: block;
  }
  header .flex-header .header-logo {
    left: 2%;
    transform: translateX(0);
  }
  header .flex-header nav .nav-link {
    display: block;
  }
  header .flex-header .first-part, header .flex-header .last-part {
    display: none;
  }
  header .header-right-nav {
    display: block;
    margin-top: 13px;
  }
  header .mobile-nav {
    display: block;
    position: fixed;
    background-color: #fff;
    width: 300px;
    height: 100vh;
    top: 0;
    right: 0;
    transform: translateX(355px);
    transition: all ease-in-out 0.35s;
    padding-top: 85px;
  }
  header .mobile-nav .nav-link {
    list-style-type: none;
    padding-left: 0px;
  }
  header .mobile-nav .nav-link .nav-item {
    margin-bottom: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
  }
  header .mobile-nav .nav-link .nav-item a {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #2f98c5;
  }
  header .mobile-nav.active {
    transform: translateX(0);
    transition: all ease-in-out 0.45s;
  }
  header .mobile-nav .close-nav {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2f98c5;
    width: 40px;
    height: 40px;
    padding: 7px;
    text-align: center;
  }
  header .mobile-nav .close-nav i {
    font-size: 18px;
  }
  header.colored .mobile-nav a {
    font-weight: 600;
  }
  header .extra-css span {
    background-color: #000;
  }
}
@media only screen and (max-width: 992px) {
  #gorak-ebc {
    padding-bottom: 0;
  }
  #gorak-ebc .gorak-ebc-desc {
    padding: 55px 40px;
  }
  #gorak-ebc .trekker {
    left: auto;
    right: 0;
    bottom: -55px;
  }
  #gorak-why {
    padding-bottom: 0;
  }
  #gorak-why .gorak-ebc-desc {
    padding: 55px 40px;
  }
  #high-alti .highalti-desc {
    width: 100%;
  }
  #high-alti .highalti-title {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 600px) {
  header .call-detail {
    display: none;
  }
  header .call-icon {
    margin-right: 25px;
  }
  header .mobile-nav {
    width: 100%;
    transform: translateX(380px);
  }
  header .mobile-nav .nav-link .nav-item {
    padding-left: 5px;
  }
  header .mobile-nav .nav-link .nav-item a {
    font-size: 16px;
    padding: 15px 10px;
  }
  #gorak-ebc {
    padding-bottom: 0;
  }
  #gorak-ebc .gorak-ebc-desc {
    padding: 35px 20px;
  }
  #gorak-ebc .gorak-ebc-desc .gorak-ebc-title {
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    display: block;
    text-align: center;
  }
  #gorak-ebc .gorak-ebc-desc .gorak-ebc-title::after {
    width: 80%;
    left: 50%;
    transform: translateX(-50%) scaleY(1.001);
  }
  #gorak-ebc .trekker {
    left: auto;
    right: 0;
    bottom: -55px;
  }
  #gorak-ebc .trekker img {
    height: 355px;
  }
  #gorak-why {
    padding-bottom: 0;
  }
  #gorak-why .gorak-ebc-desc {
    padding: 55px 20px;
  }
  #gorak-why .gorak-ebc-desc .gorak-why-title {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    display: block;
    text-align: center;
  }
  #gorak-why .gorak-ebc-desc .gorak-why-title::after {
    width: 80%;
    left: 50%;
    transform: translateX(-50%) scaleY(1.001);
  }
  #gorak-why .trekker {
    left: auto;
    right: 0;
    bottom: -15px;
  }
  #gorak-why .trekker img {
    height: 355px;
  }
  #landing {
    text-align: center;
  }
  #landing .landing-content .landing-title {
    font-size: 34px;
  }
  #about::before {
    top: -146px;
  }
  #about .about-content .about-title {
    line-height: 1.2;
    font-size: 24px;
  }
  #about .about-content .bg-title {
    font-size: 34px;
  }
  #about .about-content .about-desc {
    text-align: justify;
    padding: 0 15px;
    width: 100%;
  }
  #high-alti {
    padding-bottom: 40px;
  }
  #high-alti::after {
    background-repeat: no-repeat;
    bottom: -140px;
  }
  #high-alti::before {
    width: 100%;
    top: 19%;
  }
  #high-alti .highalti-desc {
    padding: 0 15px;
    text-align: justify;
  }
  #high-alti .highalti-title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  #high-alti .highalti-title .highalti-plus {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #contact-form::after {
    background-repeat: no-repeat;
    bottom: -140px;
  }
  #services {
    padding-bottom: 55px;
  }
  #services .services-heading .main-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #services .list-serviceDesc {
    padding: 25px 12px;
    min-height: 190px;
  }
  #services .list-serviceDesc .list-serviceTitle {
    font-weight: 500;
    font-size: 16px;
  }
  #services .col-6 .list-serviceDesc {
    border: 0 !important;
  }
  #services .no-border .list-serviceDesc {
    border-right: 1px solid #2f98c5;
  }
  #services .no-bottom {
    border-bottom: 1px solid #2f98c5 !important;
  }
  #contact-form {
    padding-top: 0;
  }
  #contact-form .contact-title {
    font-size: 34px;
    margin-bottom: 25px;
  }
  #contact-form .contact-title .contact-main-title {
    margin-bottom: 0;
  }
  #contact-form .form__group {
    margin-bottom: 20px;
  }
  .footer-section {
    padding: 45px 0;
  }
  .copyright {
    text-align: center;
  }
  .copyright .text-end {
    text-align: center !important;
  }
}/*# sourceMappingURL=index.css.map */