body {
  overflow-x: hidden;
}

button:focus {
  outline: none;
}

li {
  list-style-type: none;
}

ul {
  margin-left: 0;
  padding-left: 0;
}

.link-green {
    color: #d6b36a;
    text-decoration: underline;
}

.link-green:hover {
    color: #c49e5c;
    text-decoration: underline;
}

.btn.btn-green {
  background-color: #d6b36a;
  color: #fff;
  border-color: #d6b36a;
}

.btn.btn-green:hover {
  color: #fff;
  background-color: #c49e5c;
  border-color: #c49e5c;
}

.btn.btn-outline-green {
  border-style: solid;
  border-width: 1px;
  border-color: #d6b36a;
  background-color: transparent;
  color: #d6b36a;
}

.btn.btn-outline-green:hover {
  background-color: #c49e5c;
  color: #fff;
  border-color: #c49e5c;
}
.navbar-toggler {
  border: none;
  background: transparent !important;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.navbar-brand {
  padding: 0;
}

.navbar-nav .nav-link {
  padding-bottom: 0;
  height: 50px;
  line-height: 60px;
}

.navbar-toggler {
  padding-top: 10px; 
  padding-bottom: 0;
}

.collapse a {
  color: #212529;
}

.collapse a:hover {
  color: #868e96;
}

.icon-bar {
  width: 25px;
  height: 3px;
  background-color: #212529;
  display: block;
  transition: all 0.2s;
  margin-top: 4px;
}

.f300 {
  font-weight: 300;
}

.p-12 {
  color: #777; 
  font-size: 12px;
}
.grey {
  background-color: #ecf1f7;
  color: #212529;
}

.grey-box {
  background-color: #ecf1f7;
  border-radius: 8px;
}

.icon-bar {
  width: 25px;
  height: 3px;
  background-color: #212529;
  display: block;
  transition: all 0.2s;
  margin-top: 4px;
}

.line { 
  border-left: 1px solid #00000020;
}
@media screen and (max-width: 576px) {
.line {
  border-left: 0px solid #00000020;
  }
}
.line-two { 
  border-left: 1px solid #00000020;
}
@media screen and (max-width: 768px) {
.line-two {
  border-left: 0px solid #00000020;
  }
}

.img-job:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  transition: .5s;
}

.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

.owl-nav i {
  display: none;
  font-size: 10px;
}

.owl-nav .owl-prev {
  display: none;
  left: -30px;
}

.owl-nav .owl-next {
  display: none;
  right: -30px;
}

.video iframe {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 767px) {
.mobile-space {margin-top:10px;}
}

.animated-modal {
  max-width: 550px;
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(-50px);
  transition: all .7s;
}

.animated-modal h2,
.animated-modal p {
  transform: translateY(-50px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: .4s;
}

.fancybox-slide--current .animated-modal,
.fancybox-slide--current .animated-modal h2,
.fancybox-slide--current .animated-modal p {
  transform: translateY(0);
  opacity: 1;
}

.fancybox-slide--current .animated-modal h2 {
  transition-delay: .1s;
}

.fancybox-slide--current .animated-modal p {
  transition-delay: .3s;
}

.callback {
  width: 50px;
  height: 50px;
  background: url("../img/callback.svg") no-repeat center;
  position: fixed;
  background-size: 50px; 
  bottom: 40px;
  right: 40px;
  z-index: 99;
  -webkit-animation: callback 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s infinite;
          animation: callback 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s infinite;
}
@-webkit-keyframes callback {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes callback {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  background: #ffffff;
  transition: all 0.3s;
}

#sidebar.active {
  margin-left: -250px;
}

#sidebar .sidebar-header {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  background: #ffffff;
}

#sidebar ul.components {
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
}

#sidebar ul p {
  padding-top: 10px;
  padding-right: 10px;
}

#sidebar form {
  padding-right: 20px;
}

#content {
  width: calc(100% - 250px);
  padding: 40px;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}

#content.active {
  width: 100%;
}

@media (max-width: 991px) {
  #sidebar {
      margin-left: -250px;
  }
  #sidebar.active {
      margin-left: 0;
  }
  #content {
      width: 100%;
      padding: 0;
  }
  #content.active {
      width: calc(100% - 250px);
  }
  #sidebarCollapse span {
      display: none;
  }
}
@media (max-width: 350px) {
  .text-break {
      font-size: 1.75rem;
  }
@media (max-width: 305px) {
  .text-break {
      overflow-wrap: break-word;
  }