@font-face {
  font-family: 'paragraph-font';
  src: url(../Fonts/poppins/Poppins-Light.ttf) !important;
}

@font-face {
  font-family: 'heading';
  src: url(../Fonts/poppins/Poppins-Bold.ttf) !important;
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: ltr;
  text-decoration: none;
}

/***************************** Global Style *****************************/
h4, h5, h6 {
  font-weight: 500;
}

p {
  font-size: 15px;
}

a {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  outline: 0;
}

.scroll-top-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: linear-gradient(-135deg, #ccc, #ccc);
  color: #000;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border: 1px solid #555;
}

.scroll-top-btn:hover {
  background: linear-gradient(-135deg, #333, #333);
  border-radius: 50%;
  color: #fff;
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  position: relative;
  bottom: 10px;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes growDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  80% {
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes growDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  80% {
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

header {
  width: 100%;
  background: url(../images/header-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 180px;
  overflow: hidden;
}

header .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .7;
  top: 0;
  left: 0;
}

header .bg-light {
  background-color: #111 !important;
  opacity: .9;
  border-bottom: 5px solid #000;
}

header .navbar.navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 99;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

header .navbar.navbar-fixed-top.scrolled {
  -webkit-box-shadow: 0px 0px 10px 0px #333;
          box-shadow: 0px 0px 10px 0px #333;
}

header .navbar.navbar-fixed-top.scrolled .bg-light {
  height: 83px;
  opacity: 1;
}

header .navbar.navbar-fixed-top.scrolled .navbar-brand {
  height: 55px;
}

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

header .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  right: 10px;
  background-color: transparent;
  border: none;
}

header .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

header .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

header .navbar .navbar-toggler:focus {
  outline-color: transparent;
}

header .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

header .navbar .navbar-toggler .navbar-toggler-icon::after, header .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

header .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -10px;
  right: 0px;
}

header .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 10px;
  right: 0px;
}

header .navbar .dropdown-menu {
  -webkit-animation: growDown 300ms ease-in-out forwards;
          animation: growDown 300ms ease-in-out forwards;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  background-color: #333;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

header .navbar .dropdown-menu .dropdown-item {
  color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

header .navbar .dropdown-menu .dropdown-item:hover, header .navbar .dropdown-menu .dropdown-item:focus {
  background-color: #f5f5f5;
  color: #333;
}

header .navbar .nav-item {
  margin-left: 35px;
}

header .navbar .nav-item::after {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #f5f5f5;
  display: block;
  position: relative;
  bottom: 40%;
  -webkit-transform: translateY(60%);
          transform: translateY(60%);
  left: 100%;
  opacity: .5;
}

header .navbar .nav-item.last-item::after {
  display: none;
}

header .navbar .nav-item .nav-link {
  color: #f5f5f5 !important;
}

header .navbar .nav-item .nav-link::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: block;
  position: relative;
  left: 50%;
  top: 35px;
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
  opacity: 0;
  -webkit-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

header .navbar .nav-item .nav-link.active, header .navbar .nav-item .nav-link:hover {
  color: #fff !important;
}

header .navbar .nav-item .nav-link.active::before, header .navbar .nav-item .nav-link:hover::before {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
}

header .navbar .nav-icons {
  display: contents;
}

header .navbar .nav-icons .search-container {
  z-index: 99;
  /* Active state */
}

header .navbar .nav-icons .search-container .search-bar input,
header .navbar .nav-icons .search-container .search-btn,
header .navbar .nav-icons .search-container .search-btn:before,
header .navbar .nav-icons .search-container .search-btn:after {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

header .navbar .nav-icons .search-container .search-bar input,
header .navbar .nav-icons .search-container .search-btn {
  width: 3em;
  height: 3em;
}

header .navbar .nav-icons .search-container .search-bar input:invalid:not(:focus),
header .navbar .nav-icons .search-container .search-btn {
  cursor: pointer;
}

header .navbar .nav-icons .search-container .search-bar,
header .navbar .nav-icons .search-container .search-bar input:focus,
header .navbar .nav-icons .search-container .search-bar input:valid {
  width: 200px;
}

header .navbar .nav-icons .search-container .search-bar input:focus,
header .navbar .nav-icons .search-container .search-bar input:not(:focus) + .search-btn:focus {
  outline: transparent;
}

header .navbar .nav-icons .search-container .search-bar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: auto;
  padding: 1.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 30em;
}

header .navbar .nav-icons .search-container .search-bar input {
  background: transparent;
  border-radius: 1.5em;
  -webkit-box-shadow: 0 0 0 0.4em #171717 inset;
          box-shadow: 0 0 0 0.4em #171717 inset;
  padding: 0.75em;
  -webkit-transform: translate(0.5em, 0.5em) scale(0.5);
          transform: translate(0.5em, 0.5em) scale(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #f5f5f5;
}

header .navbar .nav-icons .search-container .search-bar input::-webkit-search-decoration {
  -webkit-appearance: none;
}

header .navbar .nav-icons .search-container .search-bar input:focus,
header .navbar .nav-icons .search-container .search-bar input:valid {
  background: #fff;
  border-radius: 0.375em 0 0 0.375em;
  -webkit-box-shadow: 0 0 0 0.1em #d9d9d9 inset;
          box-shadow: 0 0 0 0.1em #d9d9d9 inset;
  -webkit-transform: scale(1);
          transform: scale(1);
}

header .navbar .nav-icons .search-container .search-btn {
  background: #171717;
  border-radius: 0 0.75em 0.75em 0 / 0 1.5em 1.5em 0;
  padding: 0.75em 1.5rem;
  position: relative;
  -webkit-transform: translate(0.25em, 0.25em) rotate(45deg) scale(0.25, 0.125);
          transform: translate(0.25em, 0.25em) rotate(45deg) scale(0.25, 0.125);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

header .navbar .nav-icons .search-container .search-btn:before,
header .navbar .nav-icons .search-container .search-btn:after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
}

header .navbar .nav-icons .search-container .search-btn:before {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0.2em #f1f1f1 inset;
          box-shadow: 0 0 0 0.2em #f1f1f1 inset;
  top: 0.75em;
  left: 0.75em;
  width: 1.2em;
  height: 1.2em;
}

header .navbar .nav-icons .search-container .search-btn:after {
  background: #f1f1f1;
  border-radius: 0 0.25em 0.25em 0;
  top: 51%;
  left: 51%;
  width: 0.75em;
  height: 0.25em;
  -webkit-transform: translate(0.2em, 0) rotate(45deg);
          transform: translate(0.2em, 0) rotate(45deg);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

header .navbar .nav-icons .search-container .search-btn span {
  display: inline-block;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

header .navbar .nav-icons .search-container .search-bar input:focus + .search-btn,
header .navbar .nav-icons .search-container .search-bar input:valid + .search-btn {
  background: #000;
  border: 1px solid #f5f5f5;
  border-radius: 0 0.375em 0.375em 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}

header .navbar .nav-icons .search-container .search-bar input:focus + .search-btn:before,
header .navbar .nav-icons .search-container .search-bar input:focus + .search-btn:after,
header .navbar .nav-icons .search-container .search-bar input:valid + .search-btn:before,
header .navbar .nav-icons .search-container .search-bar input:valid + .search-btn:after {
  opacity: 1;
}

header .navbar .nav-icons .search-container .search-bar input:focus + .search-btn:hover,
header .navbar .nav-icons .search-container .search-bar input:valid + .search-btn:hover,
header .navbar .nav-icons .search-container .search-bar input:valid:not(:focus) + .search-btn:focus {
  background: #0c48db;
}

header .navbar .nav-icons .search-container .search-bar input:focus + .search-btn:active,
header .navbar .nav-icons .search-container .search-bar input:valid + .search-btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

@media screen and (prefers-color-scheme: dark) {
  header .navbar .nav-icons .search-container body, header .navbar .nav-icons .search-container input {
    color: #f1f1f1;
  }
  header .navbar .nav-icons .search-container body {
    background: #171717;
  }
  header .navbar .nav-icons .search-container .search-bar input {
    -webkit-box-shadow: 0 0 0 0.4em #f1f1f1 inset;
            box-shadow: 0 0 0 0.4em #f1f1f1 inset;
  }
  header .navbar .nav-icons .search-container .search-bar input:focus,
  header .navbar .nav-icons .search-container .search-bar input:valid {
    background: #3d3d3d;
    -webkit-box-shadow: 0 0 0 0.1em #3d3d3d inset;
            box-shadow: 0 0 0 0.1em #3d3d3d inset;
  }
  header .navbar .nav-icons .search-container .search-btn {
    background: #f1f1f1;
  }
}

header .navbar .nav-icons .language-container {
  margin-right: 10px;
}

header .navbar .nav-icons .language-container .nav-link {
  background-color: #333;
  color: #f5f5f5;
  padding: 0.3rem .5rem;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

header .navbar .nav-icons .language-container .nav-link .en-img {
  margin-right: 4px;
}

header .navbar .nav-icons .language-container .nav-link:hover {
  background-color: #ccc;
  color: #222;
}

header .navbar .nav-icons .profile a {
  color: #777;
  font-size: 30px;
  margin-left: 15px;
}

header .navbar .nav-icons .profile a:hover {
  color: #f5f5f5;
}

header .caption-carousel {
  padding: 180px 0px 20px;
}

header .caption-carousel.owl-theme .owl-nav {
  display: none;
}

header .caption-carousel.owl-theme .owl-dots {
  margin-top: 25px;
}

header .caption-carousel.owl-theme .owl-dots .owl-dot.active span, header .caption-carousel .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}

header .caption-carousel.owl-theme .owl-dots .owl-dot span {
  background: #555;
}

header .caption-carousel .caption-content {
  color: #FFF;
}

header .caption-carousel .caption-content h3::before {
  content: '';
  width: 100px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin-bottom: 15px;
}

header .caption-carousel .caption-content p {
  color: #999;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6rem;
}

header .caption-carousel .caption-content .to-right {
  color: #333;
  background-color: #fff;
  padding: .475em 2.5em .475em 1.75em;
  text-align: center;
  display: inline-block;
  /* or block */
  position: relative;
  border-radius: 5px;
  border: 1px solid #333;
}

header .caption-carousel .caption-content .to-right i {
  position: absolute;
  -webkit-transition: -webkit-transform .5s ease-in;
  transition: -webkit-transform .5s ease-in;
  transition: transform .5s ease-in;
  transition: transform .5s ease-in, -webkit-transform .5s ease-in;
  margin-top: 5px;
  margin-left: 6px;
}

header .caption-carousel .caption-content .to-right:hover {
  background-color: #333;
  color: #fff;
}

header .caption-carousel .caption-content .to-right:hover i {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

header .raise-marketing {
  width: 40%;
  padding: 20px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
}

header .raise-marketing .marketing-carousel.owl-theme .owl-nav {
  display: block;
  text-align: left;
}

header .raise-marketing .marketing-carousel.owl-theme .owl-nav .owl-next, header .raise-marketing .marketing-carousel.owl-theme .owl-nav .owl-prev {
  width: 30px;
  height: 30px;
  font-size: 25px;
  background-color: #fff;
  color: #333;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .raise-marketing .marketing-carousel.owl-theme .owl-nav .owl-next span, header .raise-marketing .marketing-carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  bottom: 5px;
}

header .raise-marketing .marketing-carousel.owl-theme .owl-nav .owl-next:hover, header .raise-marketing .marketing-carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: #333;
  color: #fff;
}

header .raise-marketing .marketing-carousel.owl-theme .owl-dots {
  display: none;
}

header .raise-marketing .marketing-carousel .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

header .raise-marketing .marketing-carousel .item .text-content h6 {
  font-size: 12px;
}

header .raise-marketing .marketing-carousel .item .text-content h6::before {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin-bottom: 15px;
}

header .raise-marketing .marketing-carousel .item .text-content p {
  color: #ccc;
  font-size: 12px;
  font-weight: 300;
}

header .raise-marketing .marketing-carousel .item .video-container {
  width: 200px;
  height: 120px;
  background-color: #333;
  background: url(../images/video-contain.png);
  background-size: cover;
  background-repeat: no-repeat;
}

header .raise-marketing .marketing-carousel .item .video-container .play-video {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  text-align: center;
}

header .raise-marketing .marketing-carousel .item .video-container .play-video::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #999;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

header .raise-marketing .marketing-carousel .item .video-container .play-video i {
  position: relative;
  top: 13px;
}

header .raise-marketing .marketing-carousel .item .video-container .play-video:hover {
  background-color: #333;
  color: #fff;
}

.introduction {
  padding: 50px 0px;
}

.introduction .text-content {
  width: 100%;
  height: 100px;
  position: relative;
}

.introduction .text-content .inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.introduction .text-content .inner h6::before {
  content: '';
  width: 70px;
  height: 3px;
  background-color: #000;
  display: block;
  margin-bottom: 15px;
}

.introduction .text-intro p {
  line-height: 2rem;
  font-size: 18px;
}

.introduction .text-intro .to-right {
  color: #333;
  background-color: #fff;
  padding: .475em 2.5em .475em 1.75em;
  text-align: center;
  display: inline-block;
  /* or block */
  position: relative;
  border-radius: 5px;
  border: 1px solid #333;
}

.introduction .text-intro .to-right i {
  position: absolute;
  -webkit-transition: -webkit-transform .5s ease-in;
  transition: -webkit-transform .5s ease-in;
  transition: transform .5s ease-in;
  transition: transform .5s ease-in, -webkit-transform .5s ease-in;
  margin-top: 5px;
  margin-left: 6px;
}

.introduction .text-intro .to-right:hover {
  background-color: #333;
  color: #fff;
}

.introduction .text-intro .to-right:hover i {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.introduction .image-container {
  width: 100%;
  height: 300px;
}

.introduction .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  padding: 50px 0px;
  background-color: #f8f8f8;
}

.about .card {
  position: relative;
  padding: 40px 15px;
  border: none;
  border-radius: 10px;
  -webkit-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

.about .card:hover {
  -webkit-box-shadow: 0px 0px 10px #999;
          box-shadow: 0px 0px 10px #999;
  background-color: #f8f8f8;
  border-bottom: 3px solid #333;
}

.about .card .top-l {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}

.about .card h6 {
  font-size: 18px;
}

.about .card h6::before {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #333;
  display: block;
  margin-bottom: 15px;
}

.about .card .icon {
  width: 50px;
  height: 50px;
  margin: 15px 0px;
}

.about .card p {
  color: #666;
  line-height: 1.6rem;
  font-size: 12px;
  padding-top: 1.5rem;
  margin-bottom: 3rem;
}

.about .card .learn-more {
  color: #333;
  border: 1px solid transparent;
  background-color: #f5f5f5;
  padding: .375em 3.3em .375em 2.75em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: 20px;
  border-radius: 5px;
}

.about .card .learn-more:hover {
  color: #fff;
  background-color: #333;
}

.about .card .learn-more:hover .arrow::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-color: #f5f5f5;
  height: 100%;
}

.about .card .learn-more:hover .arrow::before {
  border-color: #f5f5f5;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.about .card .learn-more .arrow {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 11px;
  margin-left: 5px;
  -webkit-transform: rotate(45deg) scale(0.8);
          transform: rotate(45deg) scale(0.8);
}

.about .card .learn-more .arrow::before {
  content: '';
  width: 100%;
  height: 100%;
  border-width: .4vmin .4vmin 0 0;
  border-style: solid;
  border-color: #333;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  display: block;
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.about .card .learn-more .arrow:after {
  content: '';
  float: left;
  position: relative;
  top: -90%;
  width: 100%;
  height: 100%;
  border-width: 0 .4vmin 0 0;
  border-style: solid;
  border-color: #333;
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.provide {
  padding: 50px 0px;
  position: relative;
  overflow-x: hidden;
}

.provide .text-content {
  width: 100%;
  height: 100px;
  position: relative;
}

.provide .text-content .inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.provide .text-content .inner h6::before {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #333;
  display: block;
  margin-bottom: 15px;
}

.provide .icon-img-right {
  width: 150px;
  position: absolute;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.provide .icon-img-left {
  width: 150px;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.provide .services-container {
  position: relative;
}

.provide .services-container .provide-text {
  position: relative;
}

.provide .services-container .provide-text h6 {
  font-size: 15px;
}

.provide .services-container .provide-text h6::before {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #333;
  display: block;
  margin-bottom: 15px;
}

.provide .services-container .provide-text p {
  font-size: 12px;
  color: #555;
}

.provide .services-container .provide-text .number {
  font-size: 100px;
  color: #eee;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: bold;
}

.provide .services-container .provide-text .details {
  font-weight: 500;
  padding: 10px 0px;
}

.provide .services-container .provide-text .details p {
  margin-bottom: .5rem;
  color: #333;
}

.provide .services-container .image-container {
  width: 100%;
  height: 300px;
}

.provide .services-container .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact {
  padding: 50px 0px;
  position: relative;
}

.contact .form-container {
  background-color: #000;
  padding: 50px 70px;
  overflow: hidden;
}

.contact .form-container .text-content {
  color: #fff;
}

.contact .form-container .text-content h6::before {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #ccc;
  display: block;
  margin-bottom: 15px;
}

.contact .form-container .text-content p {
  font-size: 12px;
  color: #999;
  letter-spacing: 1.5px;
  margin-top: 1.5rem;
}

.contact .form-container form {
  margin: 50px 0px;
}

.contact .form-container form .form-group {
  position: relative;
}

.contact .form-container form .form-group i {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #f5f5f5;
}

.contact .form-container form .form-group .form-control {
  background-color: #222;
  border-radius: 5px;
  color: #fff;
  padding: 8px 40px;
  border: 1px solid transparent;
  resize: none;
}

.contact .form-container form .form-group .form-control:focus {
  outline-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ccc;
}

.contact .form-container form .form-group .form-control::-webkit-input-placeholder {
  color: #999;
  font-size: 13px;
}

.contact .form-container form .form-group .form-control:-ms-input-placeholder {
  color: #999;
  font-size: 13px;
}

.contact .form-container form .form-group .form-control::-ms-input-placeholder {
  color: #999;
  font-size: 13px;
}

.contact .form-container form .form-group .form-control::placeholder {
  color: #999;
  font-size: 13px;
}

.contact .form-container form .submit-button {
  background-color: #f5f5f5;
  color: #222;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  border-radius: 5px;
  padding: .375em 2.75em;
  border-color: transparent;
  font-weight: bold;
}

.contact .form-container form .submit-button:hover {
  background-color: #222;
  color: #f5f5f5;
}

.contact .image-content {
  width: 100%;
  height: 70%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: -100px;
}

.contact .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact .image-content .border-circle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #ccc;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  margin-left: -50px;
}

.contact .image-content .border-circle .contact-icon {
  background-color: #ddd;
  color: #333;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
}

.contact .image-content .border-circle .contact-icon i {
  position: relative;
  top: 25px;
  font-size: 21px;
}

.contact .image-content .border-circle .contact-icon:hover {
  background-color: #333;
  color: #fff;
}

.contact .image-content .border-circle .contact-icon:hover i {
  position: relative;
  top: 50%;
  left: 15%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.sponsors {
  padding: 50px 0px;
}

.sponsors .sponsor-carousel.owl-theme .owl-nav {
  display: block;
  position: relative;
}

.sponsors .sponsor-carousel.owl-theme .owl-nav .owl-next, .sponsors .sponsor-carousel.owl-theme .owl-nav .owl-prev {
  width: 30px;
  height: 30px;
  font-size: 25px;
  background-color: #ccc;
  color: #333;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sponsors .sponsor-carousel.owl-theme .owl-nav .owl-next span, .sponsors .sponsor-carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  bottom: 7px;
}

.sponsors .sponsor-carousel.owl-theme .owl-nav .owl-next:hover, .sponsors .sponsor-carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: #333;
  color: #fff;
  border-radius: 50%;
}

.sponsors .sponsor-carousel.owl-theme .owl-dots {
  display: none;
}

.sponsors .sponsor-carousel .item img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.sponsors .sponsor-carousel .item:hover img {
  -webkit-filter: invert(83%) sepia(1%) saturate(0%) hue-rotate(118deg) brightness(100%) contrast(91%);
          filter: invert(83%) sepia(1%) saturate(0%) hue-rotate(118deg) brightness(100%) contrast(91%);
}

footer {
  padding: 30px 0px;
  background-color: #eee;
  overflow: hidden;
}

footer .text-content {
  padding: 10px 0px;
}

footer .text-content .logo {
  width: 50px;
  height: 50px;
}

footer .text-content p {
  color: #444;
  font-size: 12px;
  line-height: 1.6rem;
  margin-top: 1.5rem;
}

footer .text-content h6::before {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #333;
  display: block;
  margin-bottom: 15px;
}

footer .text-content .links {
  padding-top: 20px;
  display: -ms-grid;
  display: grid;
}

footer .text-content .links a {
  color: #444;
  font-size: 12px;
  margin: 8px 0px;
}

footer .text-content .links a:hover {
  color: #000;
}

footer .text-content form input {
  border: 1px solid  #ccc;
  padding-right: 5px;
}

footer .text-content form input:focus {
  outline: 1px solid  #333;
}

footer .text-content form .btn-primary {
  background-color: #333;
  color: #fff;
  border-color: transparent;
}

footer .text-content form .btn-primary:hover {
  background-color: #ccc;
  color: #000;
}

footer .text-content .icons-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 10px 0px;
}

footer .text-content .icons-content .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #333;
  display: block;
  margin-right: 5px;
  text-align: center;
}

footer .text-content .icons-content .icon i {
  position: relative;
  top: 8px;
}

footer .text-content .icons-content .icon:hover {
  background-color: #333;
  color: #f5f5f5;
}

.copywrite {
  background-color: #ddd;
  padding: 10px 0px;
}

.copywrite p {
  margin-bottom: 0px;
}
/*# sourceMappingURL=style.css.map */