/* ===================================
    General
====================================== */

body {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #2b2b2b;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================================
    Loader
====================================== */

.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  overflow-x: hidden;
  background: #ffffff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3264f5', endColorstr='#7202bb', GradientType=1);
}

/* loader_main class  */

#loader_main {
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================
    Header & Navigation
====================================== */

header {
  width: 100%;
  z-index: 99;
}

/* logo change */

header .logo .logo-dark,
header .logo .logo-light {
  visibility: hidden;
  opacity: 0;
  width: 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

header .logo .logo-dark.default,
header .logo .logo-light.default {
  visibility: visible;
  opacity: 1;
  width: auto;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

header.header-appear nav .logo .logo-light,
header.header-appear nav.header-dark .logo .logo-light {
  visibility: visible;
  opacity: 1;
  width: auto;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

header.header-appear nav .logo .logo-dark,
header.header-appear nav.header-dark .logo .logo-dark {
  visibility: hidden;
  opacity: 0;
  width: 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

header.header-appear nav .logo .logo-dark,
header.header-appear nav.header-light .logo .logo-dark {
  visibility: visible;
  opacity: 1;
  width: auto;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

header.header-appear nav .logo .logo-light,
header.header-appear nav.header-light .logo .logo-light {
  visibility: hidden;
  opacity: 0;
  width: 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

header a.logo {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

header a.logo img {
  min-height: 50px;
  min-width: 200px;
  vertical-align: sub;
}

/*header top bar*/

.top-header-area {
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
  display: block;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
}

.top-header-area .header-top-text i {
  font-size: 18px;
}

.top-header-area ~ .navbar-top-default {
  background-color: #ffffff;
  top: 30px;
  height: 60px;
}

.header-appear .top-header-area {
  display: none;
}

.header-appear .top-header-area ~ .navbar-top-default {
  top: 0;
}

/* nav top default */

.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 80px;
  width: 100%;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.navbar-top-default.navbar-gradient .navbar-nav .nav-link {
  padding: 0.4rem 0;
  color: #ffffff;
  font-weight: 300;
  min-width: 80px;
  text-align: center;
}

.header-appear .navbar-top-default.navbar-gradient .navbar-nav .nav-link,
.header-appear
  .navbar-top-default.navbar-gradient
  .navbar-nav
  .nav-link.active {
  color: #ffffff;
}

.header-appear .navbar-top-default.navbar-gradient .navbar-nav .menu-line {
  color: #ffffff;
}

.header-appear .navbar-top-default {
  height: 90px;
  position: fixed;
  z-index: 999;
  background: #ffffff;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-appear .navbar-top-default.navbar-gradient {
  background: #3264f5;
  background: -moz-linear-gradient(left, #7202bb 2%, #3264f5 82%);
  background: -webkit-linear-gradient(left, #7202bb 2%, #3264f5 82%);
  background: linear-gradient(to right, #7202bb 2%, #3264f5 82%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3264f5', endColorstr='#7202bb', GradientType=1);
}

.navbar-top-default #wexim {
  margin-right: -30px;
}

.nav-icon .navbar-nav {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-line {
  position: absolute;
  top: -20px;
  font-size: 20px;
  color: #ffffff;
  left: 0;
  display: block;
  text-align: center;
  width: 100px;
  height: 30px;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
}

.nav-icon .navbar-nav .nav-link:nth-child(1).active ~ .menu-line {
  -webkit-transform: translate3d(5%, 0, 0);
  transform: translate3d(5%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(2).active ~ .menu-line {
  -webkit-transform: translate3d(115%, 0, 0);
  transform: translate3d(115%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(3).active ~ .menu-line {
  -webkit-transform: translate3d(239%, 0, 0);
  transform: translate3d(239%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(4).active ~ .menu-line {
  -webkit-transform: translate3d(346%, 0, 0);
  transform: translate3d(346%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(5).active ~ .menu-line {
  -webkit-transform: translate3d(468%, 0, 0);
  transform: translate3d(468%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(6).active ~ .menu-line {
  -webkit-transform: translate3d(600%, 0, 0);
  transform: translate3d(600%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(7).active ~ .menu-line {
  -webkit-transform: translate3d(735%, 0, 0);
  transform: translate3d(735%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(1):hover ~ .menu-line {
  -webkit-transform: translate3d(5%, 0, 0);
  transform: translate3d(5%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(2):hover ~ .menu-line {
  -webkit-transform: translate3d(115%, 0, 0);
  transform: translate3d(115%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(3):hover ~ .menu-line {
  -webkit-transform: translate3d(239%, 0, 0);
  transform: translate3d(239%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(4):hover ~ .menu-line {
  -webkit-transform: translate3d(346%, 0, 0);
  transform: translate3d(346%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(5):hover ~ .menu-line {
  -webkit-transform: translate3d(468%, 0, 0);
  transform: translate3d(468%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(6):hover ~ .menu-line {
  -webkit-transform: translate3d(600%, 0, 0);
  transform: translate3d(600%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(7):hover ~ .menu-line {
  -webkit-transform: translate3d(735%, 0, 0);
  transform: translate3d(735%, 0, 0);
}

/*Navbar Simple*/

.navbar-simple .navbar-nav .nav-link {
  padding: 0.4rem 1.5rem;
  margin-left: 0.5rem;
  color: #fff;
  font-weight: 300;
}

.navbar-top-default.navbar-dark .navbar-nav .nav-link,
.navbar-top-default.navbar-dark .navbar-nav .nav-link.active {
  color: #151515;
  font-weight: 400;
}

.navbar-top-default.navbar-dark .menu-line {
  color: #151515;
}

.navbar-dark .sidemenu_btn span {
  background: #151515;
}

.header-appear .navbar-simple .navbar-nav .nav-link {
  color: #2b2b2b;
  font-weight: 400;
}

.nav-box-round .navbar-nav .nav-link {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.header-appear .nav-box-round .navbar-nav .nav-link.active {
  background-color: #00bcd4;
  color: #ffffff !important;
}

.header-appear .nav-box-round .navbar-nav .nav-link:hover {
  color: #00bcd4;
}

/*nav line*/

.nav-line .navbar-nav .nav-link.active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  visibility: visible;
  opacity: 1;
}

.nav-line .navbar-nav .nav-link:before {
  position: relative;
  content: "";
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: table;
  height: 3px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  bottom: -28px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background: #00bcd4;
  visibility: hidden;
  opacity: 0;
}

/*Navbar Center Logo*/

.center-logo .logo {
  left: 50%;
  position: absolute;
  margin-top: -14px;
  top: 50%;
  text-align: center;
  transform: translateX(-50%);
  z-index: 1;
}

.center-logo .navbar-nav .nav-link:nth-child(5) {
  margin-left: auto;
}

header .center-logo a.logo img {
  max-width: 130px;
}

/*Bottom Nav*/

.bottom-nav,
.header-appear .bottom-nav {
  position: absolute;
  top: auto;
  height: 70px;
  bottom: 0;
  -webkit-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.bottom-nav.navbar-bottom-top {
  position: fixed !important;
  top: 0 !important;
  bottom: auto !important;
  margin: auto !important;
}

/*Navbar Box*/

.navbar-box {
  height: auto;
  top: 50px;
}

.header-appear .navbar-box {
  top: 0;
}

.navbar-box .container {
  height: 65px;
  border-radius: 5px;
  background-color: #ffff;
  padding: 0 30px;
}

.navbar-box .sidemenu_btn {
  display: none !important;
}

.header-appear .navbar-box .sidemenu_btn {
  display: inline-block !important;
}

/*side nav*/

.navbar-side {
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 90px;
}

.header-appear .navbar-side .logo {
  transform: scale(0) !important;
}

.header-appear .navbar-side .sidemenu_btn span {
  background: #151515;
}

/* side menu button */

.sidemenu_btn {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 36px;
  padding: 6px;
  margin-right: 1rem;
  position: absolute;
  right: 15px;
  display: inline-block;
}

.sidemenu_btn.parallax-btn {
  width: 70px;
}

.sidemenu_btn_inner {
  height: 70px;
  width: 70px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  float: left;
}

.sidemenu_btn_inner .animated-element {
  width: 25px;
  text-align: center;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  display: block;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/*Navbar Right*/

.navbar.navbar-right {
  background: #fff;
  border: none;
  display: inline-table;
  width: 290px;
  -webkit-border-radius: 0;
  border-radius: 0;
  position: fixed;
  top: 0;
  z-index: 110;
  height: 100%;
  padding: 3rem 2rem;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  left: 0;
  overflow-x: hidden;
}

.navbar.navbar-right.left {
  left: auto;
  right: 0;
}

.navbar.navbar-right .navbar-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.navbar.navbar-right a.logo {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 8rem;
}

.navbar.navbar-right .navbar-nav .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 300;
}

.navbar.navbar-right .navbar-nav .nav-link.active {
  color: #00bcd4;
}

.wrapper {
  padding-left: 290px;
}

.wrapper.right {
  padding-left: 0;
  padding-right: 290px;
}

.side-right-social {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 0;
}

.side-right-social a {
  height: 30px;
  width: 30px;
  display: inline-block;
  line-height: 30px;
  border: 1px solid #00bcd4;
  color: #ffffff;
  background: #00bcd4;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-right-btn {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 40px;
  padding: 10px;
  display: none;
  position: fixed;
  background: #ffffff;
  z-index: 999;
  top: 20px;
  left: 20px;
  cursor: pointer;
}

.side-right-btn > span {
  height: 2px;
  width: 100%;
  background: #1d1d1d;
  display: block;
}

.side-right-btn > span:nth-child(2) {
  margin: 4px 0;
}

/* FOOTER  */
/* CONTACT US MAIN CONTAINER */

.contactUs_mainContainer {
  flex-direction: column !important;
}

.contactUs_mainContainer div {
  min-width: 100%;
}

.contactUs_mainContainer div .emailContainer div {
  min-width: 65%;
}
.contactUs_mainContainer .about_us {
  padding: 0rem !important;
  text-align: left;
}

/* EXTRA USED  */

.contactUs_mainContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contactUs_mainContainer .about_us {
  padding: 2rem;
  margin: 1rem;
}

.contactUs_mainContainer .company_details {
  width: 100%;
  padding: 2rem 1rem;
  height: 100%;
  text-align: center;
}

.contactUs_mainContainer .company_details h2 {
  font-size: 2rem;
}

.contactUs_mainContainer .emailContainer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem auto;
}

.contactUs_mainContainer .emailContainer div {
  width: 70%;
  padding: 1rem 0.5rem;
  margin: 0.5rem;
  text-align: center;
  border-radius: 0.6rem;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.1);
}

.contactUs_mainContainer .emailContainer div a {
  color: #000000;
  font-weight: bold;
}

.contactUs_mainContainer .emailContainer div:hover {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.company-about {
  text-align: center;
  font-size: 16px;
}

.company-about a:hover {
  color: #000000;
  font-weight: 400;
}

/* ===================================
   Footer
====================================== */

.footer-social li {
  display: inline-block;
}

.footer-social a {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50px;
  font-size: 17px;
  margin: 10px 5px;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.footer-social li a:hover {
  box-shadow: 0px 4px 6px 4px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

/* ICON TEXT HOVER */

.twitter-text-hvr {
  color: #1da1f2 !important;
  box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.1);
}

.linkedin-text-hvr {
  color: #0077b5 !important;
  box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.1);
}

/* MEDIA QUERIES */

@media screen and (max-width: 1199px) {
  .emailContainer div {
    width: 75% !important;
  }
}

@media screen and (max-width: 991px) {
  .contactUs_mainContainer div .emailContainer div {
    min-width: 65%;
  }
  .emailContainer div {
    width: 65% !important;
  }
}

@media only screen and (max-device-width: 466px) {
  .emailContainer div {
    width: 90% !important;
    margin: 1rem !important;
  }
  .emailContainer div:hover {
    box-shadow: none !important;
  }
}

@media screen and (max-width: 576px) {
  .company-about {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 466px) {
  .company-about {
    font-size: 14px !important;
  }
}

@media only screen and (max-device-width: 375px) {
  .company-about {
    font-size: 14px !important;
  }
}

@media only screen and (max-device-width: 320px) {
  .company-about {
    font-size: 14px !important;
  }
}
