/* Variables
======================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;900&display=swap");
.form-group {
  position: relative;
  margin: 0 0 20px 0;
  text-align: start;
}

.form-group i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  line-height: 50px;
  background-color: transparent;
  border: 0;
  color: #00aeef;
  text-align: center;
  border-right: 1px solid #c1c1c1;
}

label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  line-height: 25px;
  margin: 0 0 10px 0;
  color: #4e4e4e;
  text-align: right;
}

.form-control {
  text-align: left;
  width: 100%;
  color: #4e4e4e;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  margin: 0;
  padding: 0 15px 0 50px;
  line-height: 50px;
  height: 50px;
  font-size: 13px;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 500;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

.form-control:hover {
  outline: 0;
  border: 1px solid #c1c1c1;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control:focus {
  outline: 0;
  border: 1px solid #c1c1c1;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea.form-control {
  resize: none;
  min-height: 120px !important;
}

.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
  font-size: 13px;
  padding: 0 12px;
  text-transform: uppercase;
  background-color: #8fc640;
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

.link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-clip-path: circle(15% at 0% 100%);
          clip-path: circle(15% at 0% 100%);
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
}

.link span {
  position: relative;
  display: block;
  z-index: 999;
}

.link i {
  margin-left: 5px;
}

.link:hover {
  color: #fff;
}

.link:hover::before {
  background-color: #8fc640;
  -webkit-clip-path: circle(150% at 100% 100%);
          clip-path: circle(150% at 100% 100%);
  -webkit-transition: 0.4s all linear;
  transition: 0.4s all linear;
}

/* Setting
=============================*/
*,
:focus {
  outline: 0 !important;
}

::-moz-selection {
  background-color: #00aeef !important;
  color: #fff !important;
}

::selection {
  background-color: #00aeef !important;
  color: #fff !important;
}

body {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Lists  
======================*/
ul,
li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Loading
========================*/
.loading {
  background-color: #8fc640;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

/* Section Setting
=======================*/
.page_content {
  z-index: 99;
  position: relative;
}

.copyright {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #4e4e4e;
  font-weight: 500;
  margin: 0;
}

section {
  padding: 70px 0;
  position: relative;
}

section.section_color {
  background-color: #f8f8f8;
}

section.contact {
  padding-bottom: 25px;
}

section .section_title {
  margin: 0 auto 50px;
}

section .section_title h3 {
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #4e4e4e;
  font-weight: 900;
  letter-spacing: 4px;
}

section .section_title p {
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  background-color: #00aeef;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  padding: 0 5px;
}

@media all and (max-width: 767.98px) {
  section .copyright {
    text-align: center;
  }
  section .section_title {
    text-align: center;
    margin-bottom: 15px;
  }
  section .section_title h3 {
    font-size: 28px;
  }
  section .section_title p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media all and (max-width: 575.98px) {
  section {
    padding: 35px 0;
  }
  section .section_title h3 {
    letter-spacing: 1px;
    line-height: 30px;
    font-size: 18px;
  }
}

.scroll_id {
  width: 100%;
  position: absolute;
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  bottom: 100px;
}

/* Header
==============================*/
header {
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 9998;
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

header.move {
  top: 0;
  background-color: #fff;
}

header.move img {
  padding: 10px;
}

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

header .navbar-brand {
  margin: 0;
  padding: 2px 0;
  height: 75px;
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

header .navbar-brand img {
  height: 100%;
}

header .link {
  margin: 0;
}

header .link i {
  margin: 0 5px 0 0;
}

header .header_btns {
  position: absolute;
  right: 0;
  top: 0;
  margin: auto;
  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;
  z-index: 9999;
}

header .header_btns .menu-btn {
  display: none;
  margin-left: 5px;
  border: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #fff;
  background-color: #00aeef;
}

header .header_btns .menu-btn:hover {
  background-color: #8fc640;
}

header .navbar {
  padding: 0;
  margin: 0;
}

header .navbar-nav {
  width: 100%;
  text-align: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding-right: 175px;
}

header .navbar-nav a {
  position: relative;
  display: block;
  padding: 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  color: #4e4e4e;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  letter-spacing: 2px;
  z-index: 999;
}

@media all and (max-width: 991.98px) {
  header {
    top: 0;
  }
  header .container {
    max-width: 100%;
    padding: 0;
  }
  header .navbar-brand img {
    padding: 10px;
  }
  header .header_btns {
    top: 15px;
    right: 15px;
  }
  header .header_btns .menu-btn {
    display: inline-block;
  }
  header .navbar-collapse {
    background-color: #4e4e4e;
  }
  header .navbar-nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  header .navbar-nav a {
    color: #fff;
    text-align: left;
    line-height: 35px;
  }
}

/* Home Section
=========================*/
.main_section {
  background: url(../images/bc.png) top left no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_section .cont {
  margin: auto;
  position: relative;
  z-index: 98;
  text-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.main_section .cont h1 {
  text-transform: uppercase;
  word-spacing: 2px;
  color: #00aeef;
  font-weight: 900;
  font-size: 84px;
  margin: 0 0 25px 0;
  letter-spacing: 6px;
}

.main_section .cont h1 span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 5px;
}

.main_section .cont h2 {
  color: #4e4e4e;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 25px 0;
}

.main_section .main_img {
  position: relative;
}

.main_section .main_img img {
  width: 100%;
  margin: auto auto auto 0;
}

@media all and (max-width: 991.98px) {
  .main_section {
    display: block;
    min-height: 100vh;
    height: auto;
  }
  .main_section .cont {
    margin-top: 45px;
    text-align: center;
    display: block;
  }
}

@media all and (max-width: 575.98px) {
  .main_section .cont h1 {
    font-size: 44px;
  }
  .main_section .cont h1 span {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .main_section .cont h2 {
    font-size: 18px;
  }
}

/* Scroll Button
=====================*/
.scroll_btn {
  position: absolute;
  width: 154px;
  height: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.scroll_btn .chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.scroll_btn .chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}

.scroll_btn .chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}

.scroll_btn .chevron:before, .scroll_btn .chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background-color: #8fc640;
}

.scroll_btn .chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
  transform: skew(0deg, 30deg);
}

.scroll_btn .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
  transform: skew(0deg, -30deg);
}

@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  font-size: 14px;
  color: #00aeef;
  text-transform: uppercase;
  margin: 65px auto 0;
}

#next {
  display: block;
  width: 100%;
  margin-top: -70px;
  overflow: hidden;
  clear: both;
  z-index: -1;
}

/* Services
=========================*/
.services {
  padding-bottom: 35px;
}

.services .container .service_item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media all and (max-width: 991.98px) {
  .services .container .service_item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service_item {
  text-align: center;
  margin: 0 auto 35px;
}

.service_item .service_img {
  margin-bottom: 25px;
}

.service_item .service_img img {
  padding: 0 15px;
}

.service_item .service_cont {
  text-align: left;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -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;
}

.service_item .service_cont span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 270px;
  font-weight: 700;
  opacity: 0.045;
  height: 80px;
  line-height: 80px;
}

.service_item .service_cont h3 {
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin: 25px 0;
  letter-spacing: 3px;
  color: #00aeef;
  text-shadow: 1px 1px 5px #efefef;
}

.service_item .service_cont p {
  color: #4e4e4e;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 35px;
}

@media all and (max-width: 991.98px) {
  .service_item .service_cont {
    text-align: center;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media all and (max-width: 767.98px) {
  .service_item .service_cont span {
    font-size: 140px;
  }
  .service_item .service_cont h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 15px 0;
  }
  .service_item .service_cont p {
    line-height: 28px;
    font-size: 14px;
  }
}

@media all and (max-width: 575.98px) {
  .service_item .service_cont span {
    font-size: 90px;
  }
  .service_item .service_cont h3 {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 10px 0;
  }
  .service_item .service_cont p {
    line-height: 22px;
    font-size: 13px;
    text-align: justify;
  }
}

/* Project Item
======================*/
.project_img {
  margin-bottom: 25px;
}

.project_cont {
  text-align: left;
  padding-left: 15px;
}

.project_cont h3 {
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #00aeef;
  font-weight: 900;
  letter-spacing: 2px;
}

.project_cont p {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: #4e4e4e;
  display: inline-block;
}

.project_cont .link {
  margin: 0;
}

@media all and (max-width: 575.98px) {
  .project_cont {
    padding: 0;
  }
  .project_cont h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 10px 0;
  }
  .project_cont p {
    line-height: 22px;
    font-size: 13px;
    text-align: justify;
  }
}

/* Loading
=======================*/
.loading {
  background-color: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.loading .load_cont .scroll_btn {
  position: relative;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.loading .load_cont img {
  margin-top: 15px;
}

/* Up Button
======================*/
.up_btn {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  border: 0;
  z-index: 999;
  width: 35px;
  height: 35px;
  font-size: 16px;
  border: 0;
  color: #fff;
  background-color: #00aeef;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
/*# sourceMappingURL=style.css.map */