body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.py-40 {
  padding: 20px 0;
}

@media (min-width: 768px) {
  .py-40 {
    padding: 40px 0;
  }
}

.py-60 {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .py-60 {
    padding: 60px 0;
  }
}

.my-40 {
  margin: 20px 0;
}

@media (min-width: 768px) {
  .my-40 {
    margin: 40px 0;
  }
}

.my-60 {
  margin: 30px 0;
}

@media (min-width: 768px) {
  .my-60 {
    margin: 60px 0;
  }
}

.font-sm {
  font-size: 18px;
}

@media (min-width: 768px) {
  .font-sm {
    font-size: 20px;
  }
}

.btn-primary {
  background: #f1a100;
  color: #fff;
  border-color: #f1a100;
  padding: 14px 25px 12px 25px;
  line-height: normal;
  border-radius: 5px;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #fff !important;
  color: #f1a100 !important;
  border-color: #f1a100 !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

.btn-primary-outline {
  background: transparent;
  border: 1px solid #232f3e;
  color: #232f3e;
  border-radius: 5px;
}

.btn-primary-outline:hover, .btn-primary-outline:focus {
  background: #f1a100 !important;
  border-color: #f1a100 !important;
  color: #fff !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

h1 {
  font-size: 2.9rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.9rem;
  }
}

h2 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

.bg-grey {
  background: #f9f9f9;
}

.slick-dots {
  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;
  padding: 15px 0;
  margin-bottom: 0;
}

.slick-dots li {
  margin: 0 3px;
  border: 2px solid #232f3e;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slick-dots li:nth-child(7n) {
  margin-right: 15px;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dots li button {
  font-size: 0px;
  border: 0;
  height: 0;
  width: 0;
  visibility: hidden;
}

.slick-dots li.slick-active {
  background: #232f3e;
}

.header {
  background-color: #fff;
  width: 100%;
  z-index: 3;
  padding: 20px 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

@media (min-width: 875px) {
  .header ul {
    overflow: visible;
  }
}

.header li {
  position: relative;
}

@media (max-width: 875px) {
  .header li {
    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-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

@media (min-width: 875px) {
  .header li {
    float: left;
    margin-left: 30px;
  }
}

.header li:hover .submenu {
  padding: 15px;
  max-height: 500px !important;
  visibility: visible !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header li:hover .link {
  color: #f1a100;
}

.header li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #000;
}

.header li a:hover {
  background-color: #fff;
  color: #f1a100;
}

@media (min-width: 875px) {
  .header li a {
    padding: 20px 0px 15px 0px;
  }
}

.header li.active {
  background: #efefef;
}

.header li.active a {
  background: transparent;
}

.header li.active .submenu {
  max-height: 500px !important;
  visibility: visible !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
}

.header .menu-btn {
  display: none;
}

.header .menu-btn:hover {
  background-color: #fff;
}

@media (max-width: 875px) {
  .header .menu-btn:checked ~ .menu {
    max-height: 90vh;
    overflow-y: auto;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    padding-bottom: 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  }
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.header .logo img {
  max-height: 55px;
}

.header .menu {
  clear: both;
  max-height: 0;
}

@media (min-width: 875px) {
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 875px) and (max-width: 992px) {
  .header .menu {
    font-size: 14px;
  }
}

.header .menu .submenu {
  max-height: 0px;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}

@media (min-width: 875px) {
  .header .menu .submenu {
    position: absolute;
    top: 100%;
    left: -15px;
    padding: 0 15px;
    border-radius: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid #efefef;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}

.header .menu .submenu li {
  margin: 0;
}

.header .menu .submenu li a {
  padding: 5px 10px;
}

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (min-width: 875px) {
  .header .menu-icon {
    display: none;
  }
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  width: 100%;
  top: 5px;
}

.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  width: 100%;
  top: -5px;
}

.header .link-arrow {
  font-weight: 600;
}

.header .link-arrow:after {
  content: '';
  background-size: 100% 100%;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 5px;
  right: -28px;
  -webkit-transition: all 0.4s cubic-bezier(0.35, 1, 0.33, 1);
  transition: all 0.4s cubic-bezier(0.35, 1, 0.33, 1);
}

.header .link-arrow:hover:after {
  right: -35px;
}

.header .link-arrow.btn {
  padding: 15px 30px;
  margin-top: 10px;
  margin-right: 20px;
}

@media (min-width: 875px) {
  .header .link-arrow.btn {
    margin: 0px;
  }
}

@media (min-width: 875px) and (max-width: 992px) {
  .header .link-arrow.btn {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.header .link-arrow.link-arrow-white:after {
  background-size: 100% 100%;
}

.header .link-arrow-hover:after {
  right: -35px;
}

.header .link {
  display: inline-block;
  position: relative;
  border: none;
  font-weight: 600;
}

.header .link:active {
  outline: 0;
}

.header .link:focus {
  outline: 0;
}

.header .link:hover {
  outline: 0;
  color: #f1a100;
}

.header .link:hover:before {
  width: 100%;
}

.header .link:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.4s cubic-bezier(0.35, 1, 0.33, 1);
  transition: all 0.4s cubic-bezier(0.35, 1, 0.33, 1);
}

@media (max-width: 875px) {
  .header .link:before, .header .link:after {
    content: none;
  }
}

.header .link-theme:before {
  background: #f1a100;
}

.header-hide {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100px;
  padding: 20px 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  overflow: visible;
}

.scroll-to-top {
  font-size: 24px;
  border: 1px solid #f1a100;
  color: #f1a100;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 50px;
  width: 50px;
  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;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  z-index: 99;
  visibility: hidden;
}

.scroll-to-top.show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.scroll-to-top:hover {
  background: #f1a100;
  color: #fff;
}

@media (max-width: 580px) {
  .bg-even > div:nth-child(odd) {
    background: rgb(241 161 0 / 50%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px #ccc;
  }
}

@media (min-width: 580px) and (max-width: 991px) {
  .bg-even > div:nth-child(1), .bg-even > div:nth-child(4) {
    background: rgb(241 161 0 / 50%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px #ccc;
  }
}

@media (min-width: 992px) {
  .bg-even > div:nth-child(even) {
    background: rgb(241 161 0 / 50%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px #ccc;
  }
}

@media (max-width: 580px) {
  .bg-odd > div:nth-child(odd) {
    background: rgb(241 161 0 / 50%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px #ccc;
  }
}

@media (min-width: 580px) and (max-width: 991px) {
  .bg-odd > div:nth-child(1), .bg-odd > div:nth-child(4) {
    background: rgb(241 161 0 / 50%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px #ccc;
  }
}

@media (min-width: 992px) {
  .bg-odd > div:nth-child(odd) {
    background: rgb(241 161 0 / 50%);
    border-radius: 4px;
    box-shadow: 2px 2px 10px #ccc;
  }
}

.img-fit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 1200px) {
  .achievement .content ul {
    line-height: 2;
  }
}

.achievement .box-wrap {
  padding: 15px 30px;
  font-size: 14px;
}

.achievement .box-wrap i {
  font-size: 20px;
  color: #f1a100;
}

.achievement .box-wrap span {
  font-size: 22px;
  font-weight: 600;
}

.bg-pattern i {
  color: rgba(241, 161, 0, 0.18);
  font-size: 250px;
  position: absolute;
  top: 10px;
  z-index: 0;
}

.bg-pattern.bg-left i {
  left: 0;
}

.bg-pattern.bg-right i {
  right: 0;
}

.title h3 {
  position: relative;
  font-weight: 600;
  padding-bottom: 15px;
  letter-spacing: 1px;
}

.title h3:after {
  content: "";
  height: 2px;
  background-color: #f1a100;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.title h3 span {
  color: #FFF;
  background: #f1a100;
  padding: 13px 10px;
}

.cards-wrap .box-wrap {
  background: #fff;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cards-wrap .box-wrap .icon i {
  color: #f1a100;
  font-size: 30px;
}

.cards-wrap .box-wrap h5 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.cards-wrap .box-wrap p {
  font-size: 14px;
}

.cards-wrap .box-wrap .content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cards-wrap .box-wrap .action-wrap {
  margin-top: auto;
}

.cards-wrap .box-wrap .action-wrap > a {
  color: #3ac162;
  font-weight: 600;
}

.cards-wrap .box-wrap .action-wrap > a:last-child {
  color: #f1a100;
}

.cards-wrap .box-wrap:after {
  content: "";
  height: 2px;
  background: #f1a100;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 0;
}

.cards-wrap .box-wrap:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cards-wrap .box-wrap:hover:after {
  max-width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .founder .founder-img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 100%;
  }
}

.founder .content {
  background: #fff;
  padding: 20px 0px;
}

@media (min-width: 768px) {
  .founder .content {
    padding: 0px 30px;
  }
}

@media (min-width: 1200px) {
  .founder .content {
    padding: 25px 30px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin: 50px 0px 50px -70px;
    border-radius: 5px;
    width: calc(100% + 100px);
  }
}

.logo-wrapper {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-row {
  white-space: nowrap;
  display: inline-block;
}

.logo-item {
  display: inline-block;
  margin: 1rem 2rem;
  width: 150px;
  /*background:#efefef;*/
}

@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes scrollRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes scrollRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.blueimp-gallery-display > .next,
.blueimp-gallery-display > .prev,
.blueimp-gallery-svgasimg > .play-pause,
.blueimp-gallery-svgasimg > .close {
  display: block;
}

.blueimp-gallery-svgasimg > .next {
  background-image: url("../images/gallery/next.svg");
}

.blueimp-gallery-svgasimg > .prev {
  background-image: url("../images/gallery/prev.svg");
}

.blueimp-gallery-svgasimg > .play-pause {
  background-image: url("../images/gallery/play-pause.svg");
}

.blueimp-gallery-svgasimg > .close {
  background-image: url("../images/gallery/close.svg");
}

.media h6 {
  color: #303447;
  text-decoration: underline;
  opacity: 0.55;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.media h2 {
  font-weight: bold;
  margin-bottom: 10px;
}

.media .media-flters {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.media .media-flters li {
  padding: 10px 20px;
  text-transform: uppercase;
  line-height: normal;
  font-weight: bold;
  cursor: pointer;
}

.media .media-flters li.filter-active {
  border-bottom: 1px solid #000;
  color: #f1a100;
}

.media .media-container {
  margin-top: 20px;
}

.media .media-container .media-wrap img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

@media (min-width: 768px) {
  .media .media-container {
    margin-top: 40px;
  }
}

.media .media-container .media-item {
  margin-bottom: 20px;
}

.media .media-container .portfolio-info {
  padding: 5px 0;
}

.media .media-container .portfolio-info span {
  font-size: 10px;
}

.media .media-container .portfolio-info h5 {
  margin-bottom: 0;
  font-size: 18px;
  margin-top: 10px;
  min-height: 45px;
}

.media .media-container .portfolio-info .btn-secondary {
  background: transparent;
  color: #000;
  padding: 0;
  border: 0;
  font-size: 10px;
  text-decoration: underline;
}

.contact h5 {
  font-weight: 600;
}

.contact .content-box h6 {
  font-size: 14px;
  line-height: 1.6;
}

.contact form {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}

.contact form .form-control {
  padding: 10px 15px;
  height: unset;
  margin: 15px 0;
}

.contact form .form-control:focus, .contact form .form-control:hover {
  outline: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-color: #f1a100;
}

.contact form input::-webkit-outer-spin-button,
.contact form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact form input[type=number] {
  -moz-appearance: textfield;
}

.contact form textarea {
  resize: none;
}

footer {
  background: #363a37;
  color: #fff;
  font-size: 14px;
}

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

footer .footer-logo img {
  max-height: 75px;
}

footer .social-links .fab {
  font-size: 28px;
  margin: 0 5px;
}

footer h5 {
  color: #f1a100;
  font-weight: 600;
  margin-bottom: 20px;
}

footer .content p {
  line-height: 1.7;
}

footer .content p a {
  font-weight: 700;
  text-decoration: underline;
}

footer .content .content-box h6 {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

footer .content .content-box h6 i {
  font-size: 20px;
}

footer .footer-links li {
  padding: 4px 0;
}

footer .bottom-footer {
  background-color: #161616;
  padding: 20px;
  color: #fff;
}

footer .bottom-footer .footer-bottom-link > span {
  margin: 0 10px;
}

footer .bottom-footer .footer-bottom-link a {
  font-size: 12px;
}
/*# sourceMappingURL=style.css.map */