@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@font-face {
  font-family: "iconfont";
  src: url("/assets/fonts/iconfont.eot");
  src: url("/assets/fonts/iconfont.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/iconfont.woff2") format("woff2"), url("/assets/fonts/iconfont.woff") format("woff"), url("/assets/fonts/iconfont.ttf") format("truetype"), url("/assets/fonts/iconfont.svg#iconfont") format("svg");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  color: #494949;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: inherit;
}
header .navbar-brand img {
  max-width: 180px;
}
header ul.navbar-nav .nav-item .nav-link {
  color: #0e1727;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
}
header ul.navbar-nav .nav-item .nav-link:hover {
  color: #f79622;
}
header ul.navbar-nav ul.dropdown-menu {
  padding: 1rem 0;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
header ul.navbar-nav ul.dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  color: #0e1727;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
}
header ul.navbar-nav ul.dropdown-menu .dropdown-item:hover {
  background: none;
  color: #f79622;
}
header ul.navbar-nav ul.dropdown-menu.show {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.navbar-collapse {
  flex-grow: inherit;
}

section,
footer {
  padding: 32px 0;
}

.hero {
  background: #0e1727;
  padding: 0;
}
.hero .hero--details {
  width: 100%;
  padding: 2rem 1rem 7rem;
  color: #fff;
}
.hero .hero--details h2 {
  font-size: 35px;
  line-height: 45px;
  background: linear-gradient(to right, #f79622, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .btn {
  background: #f79622;
}
.hero .btn::after {
  background: #fff;
}
.hero .btn span:last-child {
  color: #0e1727;
}
.hero .owl-carousel .owl-item.active h2,
.hero .owl-carousel .owl-item.active p,
.hero .owl-carousel .owl-item.active a,
.hero .owl-carousel .owl-item.active .hero--img {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.hero .owl-carousel .owl-item.active p {
  animation-delay: 0.6s;
}
.hero .owl-carousel .owl-item.active a {
  animation-delay: 0.9s;
}
.hero .owl-carousel .owl-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}
.hero .owl-carousel .owl-nav button.owl-next,
.hero .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.hero .owl-carousel .owl-nav button.owl-next img,
.hero .owl-carousel .owl-nav button.owl-prev img {
  width: 20px;
}
.hero .owl-carousel .owl-nav button.owl-next:hover,
.hero .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #f79622;
}
.hero .owl-carousel .owl-nav button.owl-prev img {
  transform: rotate(180deg);
}

.about--head {
  margin-bottom: 32px;
}
.about--head h1 {
  font-size: 22px;
  font-weight: 600;
  color: #0e1727;
}

small {
  color: #f79622;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  padding-left: 60px;
}
small::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 45px;
  height: 1px;
  background: #f79622;
}

p {
  margin-top: 16px;
  margin-bottom: 0;
}

.btn {
  border: 0;
  position: relative;
  color: #fff;
  background: #f79622;
  overflow: hidden;
  border-radius: 50px;
  font-size: 12px;
  padding: 15px 20px;
  transition: all 0.4s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: auto;
}
.btn span:first-child {
  position: relative;
  z-index: 5;
}
.btn span:last-child {
  color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
  opacity: 0;
  top: 50%;
  transform: translateY(225%);
}
.btn h6 {
  position: relative;
  z-index: 99;
  color: white;
  margin: 0;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 103%;
  height: 100%;
  background-color: #0e1727;
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 9;
}
.btn:hover span:last-child {
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.48, 0, 0.12, 1);
}
.btn:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}
.text-center .btn {
  float: none;
  margin: auto;
}

.about--desc img.raduis {
  border-radius: 30px;
  overflow: hidden;
}
.about--desc .about--desc-col {
  padding: 1rem 0;
}
.about--desc ul.values-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: inherit;
  flex-wrap: wrap;
}
.about--desc ul.values-list li {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0;
}
.about--desc ul.values-list li img.icon-check {
  width: 32px;
  height: 32px;
}
.about--desc ul.values-list li h3 {
  padding-left: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #0e1727;
  line-height: 30px;
  margin: 0;
}

.mt-20 {
  margin-top: 20px;
}

.mt-50 {
  margin-top: 50px;
}

figure {
  margin: 0;
}

.video {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: inherit;
  background: url(../images/video-bg.jpg) no-repeat center center;
  background-size: cover;
  min-height: 445px;
  text-align: center;
  position: relative;
  color: #fff;
}
.video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background: rgba($primary, 0.8);*/
  mix-blend-mode: darken;
}
.video .container {
  z-index: 9;
}
.video .video-play-button {
  margin: 0 auto;
  position: relative;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 35px 20px 18px 35px;
  cursor: pointer;
  transition: all 0.5s;
}
.video .video-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #f4d4ad;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video .video-play-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #f79622;
  border-radius: 50%;
  transition: all 0.5s;
}
.video .video-play-button:hover::after {
  background-color: #0e1727;
}
.video .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.video .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 25px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.video h2 {
  margin-top: 50px;
  font-size: 28px;
  font-weight: 700;
}
.video p {
  font-size: 18px;
}

.title h2 {
  font-size: 20px;
  line-height: 30px;
  color: #0e1727;
  font-weight: 600;
  margin: 0.5rem 0 0;
}

ul.cards-list {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
ul.cards-list li {
  padding: 1rem;
  width: 100%;
}
ul.cards-list li .card {
  padding-bottom: 16px;
  border: none;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-decoration: none;
  transition: all 0.5s;
}
ul.cards-list li .card h4,
ul.cards-list li .card p {
  padding: 0 1rem;
}
ul.cards-list li .card h4 {
  margin: 16px 0 0;
  font-size: 20px;
  color: #0e1727;
  transition: all 0.5s;
  font-weight: 700;
}
ul.cards-list li .card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
ul.cards-list li .card:hover h4 {
  color: #f79622;
}

.why-us {
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.why-us .why {
  background: #0e1727;
  color: #fff;
  padding: 100px 32px;
  border-radius: 0 30px 30px 0;
}
.why-us .why .title h2 {
  color: #fff;
}
.why-us .why-list {
  padding: 1rem;
}
.why-us .why-list ul {
  list-style: none;
  padding: 0 1rem;
  margin: 1rem 0 0;
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
}
.why-us .why-list ul li {
  width: 100%;
  padding: 1rem 0;
}
.why-us .why-list ul li .icon {
  position: relative;
}
.why-us .why-list ul li .icon img {
  width: 100px;
}
.why-us .why-list ul li .icon::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 10px;
  width: 80px;
  height: 80px;
  background: #fadcb8;
  border-radius: 30px;
  z-index: -1;
}
.why-us .why-list ul li h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0e1727;
  margin: 20px 0 0;
}

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: inherit;
  background: url(.assets/images/testimonial-bg.jpg) no-repeat center center;
  background-size: cover;
  min-height: 650px;
  position: relative;
}
.review::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(228, 232, 243, 0.8784313725);
}
.review .container {
  z-index: 9;
}
.review .review-card {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
.review .review-card .review-card--desc {
  background: #fff;
  border-radius: 30px;
  padding: 1rem;
  position: relative;
  z-index: 9;
  width: 85%;
  margin-top: -60px;
}
.review .review-card .review-card--desc .reviewer {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
}
.review .review-card .review-card--desc .reviewer figure {
  width: 50px;
  height: 50px;
  background: #fff;
  border: #f79622 1px solid;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.review .review-card .review-card--desc .reviewer figure img {
  width: 43px;
  border-radius: 50%;
}
.review .review-card .review-card--desc .reviewer span {
  padding-left: 10px;
}
.review .review-card .review-card--desc .reviewer span h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0e1727;
  margin: 0;
}
.review .review-card .review-card--desc .reviewer span h6 {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.review .review-card .review-card--desc .reviewer .stars .uis-star::before {
  color: #18B31A !important;
}
.review .review-card .review-card--desc::after {
  content: url(.assets/images/quote.png);
  position: absolute;
  right: 16px;
  width: 70px;
  top: 16px;
  opacity: 1;
}
.review .review-card .review-card--img img {
  border-radius: 30px;
  overflow: hidden;
}
.review .owl-carousel .owl-item.active .review-card--img,
.review .owl-carousel .owl-item.active .review-card--desc {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.review .owl-carousel .owl-item.active .review-card--desc {
  animation-delay: 0.6s;
}
.review .owl-nav {
  position: absolute;
  top: 0;
  right: 1rem;
  margin: 0;
  margin-top: 0;
}
.review .owl-nav button.owl-next,
.review .owl-nav button.owl-prev {
  margin: 0 2px;
  width: 50px;
  height: 50px;
  background: #0e1727;
  border-radius: 50%;
  transition: all 0.5s;
}
.review .owl-nav button.owl-next img,
.review .owl-nav button.owl-prev img {
  width: 20px;
  margin-top: -3px;
}
.review .owl-nav button.owl-next:hover,
.review .owl-nav button.owl-prev:hover {
  background: #f79622;
}
.review .owl-nav button.owl-prev img {
  transform: rotate(180deg);
}

.clients .owl-carousel .owl-item {
  padding: 0 16px;
}
.clients .owl-carousel .owl-item img {
  width: auto;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
.clients .owl-carousel .owl-item img:hover {
  filter: none;
  -webkit-filter: none;
}

footer {
  padding-bottom: 0;
  background-color: #0e1727;
  color: #fff;
}
footer a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s;
}
footer a:hover {
  color: #f79622;
}
footer h3 {
  font-size: 25px;
  font-weight: 700;
  margin: 30px 0;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul.quick-links li {
  padding: 5px 0;
}
footer ul.social-list {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  margin-top: 20px;
}
footer ul.social-list li {
  padding: 0 10px;
}
footer ul.social-list li i {
  font-size: 32px;
}
footer ul.social-list li:first-child {
  padding-left: 0;
}
footer ul.social-list .btn {
  width: 50px;
  height: 50px;
  background: none;
  padding: 0;
}
footer ul.social-list .btn::after {
  background: #f79622;
}
footer ul.social-list .btn span {
  width: 50px;
  height: 50px;
}
footer ul.social-list .btn img {
  width: 31px;
  margin: auto;
  margin: 10px 0 0;
}
footer .copyrights {
  background: #202836;
  margin-top: 32px;
  padding: 16px 0;
  text-align: center;
  line-height: 2;
}
footer .copyrights .links a {
  position: relative;
  border-right: 1px solid #fff;
  padding: 0 5px;
}
footer .copyrights .links a:last-child {
  border: none;
}
footer .footer-logo img {
  max-width: 250px;
}

.owl-nav button i {
  font-size: 20px;
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: none;
  border: none;
}

.dropdown-toggle::after {
  border: none;
  font-family: "unicons-line";
  content: "\eb3a";
  vertical-align: middle;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
  header ul.navbar-nav ul.dropdown-menu {
    padding: 0 0 16px;
  }
  small {
    padding-left: 20px;
  }
  small::before {
    width: 15px;
  }
}
/* Small devices (portrait tablets and large phones, 576px and up) */
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .hero .hero--details {
    padding: 0;
    position: absolute;
    width: 55%;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
  }
  ul.cards-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  ul.cards-list li {
    width: 50%;
  }
  .why-us .why {
    padding: 135px 32px;
  }
  .why-us .why-list ul {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  .why-us .why-list ul li {
    padding: 1rem;
  }
  .review .review-card {
    flex-direction: row;
  }
  .review .review-card .review-card--desc {
    width: 50%;
    margin: 0;
  }
  .review .review-card .review-card--img {
    width: 80%;
    margin-left: -150px;
  }
  .review .owl-nav {
    right: 2%;
  }
  .about--head h1 {
    font-size: 42px;
    line-height: 52px;
  }
  .title h2 {
    font-size: 27px;
    line-height: 37px;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .hero .hero--details {
    left: 14%;
  }
  .hero .hero--details h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .hero .hero--details p {
    width: 55%;
  }
  .about--desc ul.values-list li {
    width: 50%;
  }
  .why-us .why-list ul li {
    width: 50%;
  }
  .review .review-card .review-card--desc {
    width: 45%;
  }
  .review .review-card .review-card--img {
    width: 70%;
  }
  .review .owl-nav {
    right: 2%;
  }
  .about--head h1,
  .title h2,
  .why-us .why .title h2 {
    font-size: 40px;
    line-height: 55px;
  }
  .review .title h2 {
    font-size: 44px;
    line-height: 57px;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  section {
    padding: 100px 0;
  }
  header {
    height: 100px;
  }
  ul.cards-list {
    flex-direction: row;
  }
  ul.cards-list li {
    width: 25%;
  }
  .why-us .why-list ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .why-us .why-list ul li {
    width: 50%;
    padding: 1rem;
  }
  .hero .hero--details {
    left: 17%;
  }
  .hero .hero--details h2 {
    font-size: 60px;
    line-height: 70px;
  }
  .hero .hero--details p {
    width: 55%;
  }
  ul.cards-list li {
    width: 25%;
  }
  .review .review-card .review-card--desc {
    width: 40%;
  }
  .review .review-card .review-card--desc {
    width: 40%;
  }
  .review .review-card .review-card--img {
    width: 50%;
  }
  .review .owl-nav {
    right: 12%;
  }
}
@media only screen and (min-width: 1400px) {
  .hero .hero--details {
    left: 15%;
  }
  .hero .hero--details h2 {
    font-size: 80px;
    line-height: 90px;
  }
  .hero .hero--details p {
    width: 55%;
  }
  .hero .owl-carousel .owl-nav {
    position: absolute;
    bottom: 16px;
    left: 50.66%;
    transform: translateX(-50%);
  }
  .why-us .why {
    padding: 200px 90px;
  }
  .why-us .why-list {
    padding: 0 70px;
  }
  .why-us .why-list ul li {
    padding: 2rem 1rem;
  }
  .review .review-card .review-card--desc {
    width: 30%;
  }
  .review .review-card .review-card--img {
    width: 40%;
  }
  .review .owl-nav {
    right: 21%;
  }
}
/*about*/
.banner-inner {
  position: relative;
}

.caption {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  align-items: center;
}
.caption:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.567);
  z-index: 2;
}
.caption h1 {
  position: relative;
  z-index: 3;
  color: white;
  font-weight: 700;
}
.caption ul {
  position: relative;
  z-index: 3;
  display: flex;
  list-style: none;
}
.caption ul li {
  color: white;
  margin: 0 5px;
}

.title-main {
  font-size: 45px;
  font-weight: 700;
}

.medium-main {
  font-size: 30px;
  font-weight: 700;
}

.title-small {
  font-size: 20px;
  text-transform: uppercase;
  color: orange;
  font-weight: 300;
}

.missionvission h2, .missionvission p {
  color: white;
  margin: 0;
}

.background-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.background-image .z-index1 {
  position: relative;
  z-index: 2;
}

.background-image:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.48);
  z-index: 0;
  position: absolute;
  top: 0;
}

/*accordiancustome*/
.accordiancustome {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.accordiancustome .accordion-item {
  border: 0;
  margin: 15px 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background-color: #ffc887 !important;
}
.accordiancustome .accordion-item .accordion-button {
  box-shadow: none !important;
  color: #000000;
  font-weight: 700;
}
.accordiancustome .accordion-item .accordion-button .collapsed {
  background-color: #ffc887 !important;
  border: 0;
  outline: none;
}
.accordiancustome .accordion-item .accordion-button.collapsed {
  border-radius: 30px;
  background-color: #ffc887 !important;
  border: 0;
  outline: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-bottom-right-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
}
.accordiancustome .accordion-item .accordion-button:not(.collapsed) {
  border-radius: 30px 30px 30px 30px;
  background-color: #ffc887 !important;
  border: 0;
  outline: none;
  -webkit-border-radius: 30px 30px 30px 30px;
  -moz-border-radius: 30px 30px 30px 30px;
  -ms-border-radius: 30px 30px 30px 30px;
  -o-border-radius: 30px 30px 30px 30px;
}
.accordiancustome .accordion-item .accordion-body {
  background-color: #ffc887 !important;
  border: 0;
  border-radius: 30px;
  outline: none;
  color: #000000;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.accordiancustome .accordion-item .accordion-body p {
  color: #000000;
}

.client-carousel .item {
  text-align: center;
}
.client-carousel .item h5 {
  margin-top: 15px;
}

.color-bg-1 {
  background-color: #e9ecf0;
}

.awards .item img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid #c9c9ca;
}

.client-carousel .item {
  margin-bottom: 20px;
}
.client-carousel .item .card {
  border-radius: 26px;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -ms-border-radius: 26px;
  -o-border-radius: 26px;
}

.div-line {
  border-bottom: 2px solid #ffc887;
  padding-bottom: 29px;
}

.title {
  text-align: center;
}

.item-cl {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.item-cl img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
.item-cl img:hover {
  filter: none;
  -webkit-filter: none;
}

.border-radius-1 {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.list-style-1 {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.list-style-1 li {
  display: flex;
  margin-bottom: 15px;
}
.list-style-1 li img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.list-style-2 {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.list-style-2 li {
  display: flex;
  margin-bottom: 10px;
}
.list-style-2 li img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.list-style-2 li h5 {
  color: white;
  font-weight: 300;
}

.list-style-3 {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.list-style-3 li {
  display: flex;
  margin-bottom: 17px;
}
.list-style-3 li img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.list-style-3 li h5 {
  color: white;
  font-weight: 300;
  font-size: 18px;
}

.background-image2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.background-image2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(264deg, rgba(0, 0, 0, 0) 0%, rgba(14, 23, 39, 0.91) 62%);
  z-index: 1;
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  z-index: 99;
}

.color-blue {
  background-color: #0e1727;
}

.card-services {
  background-color: #dfdfdf;
}
.card-services h5 {
  font-weight: 800;
}

.color-white {
  color: white;
}

.card-gridl1 {
  display: flex;
  flex-wrap: wrap;
}

.card-grid-1 {
  display: flex;
  margin-bottom: 15px;
}
.card-grid-1 h5 {
  font-weight: 700;
}

.card-calltock {
  text-align: center;
  padding: 3rem 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: rgb(14, 23, 39);
}
.card-calltock::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 11, 21, 0.87);
  top: 0;
  left: 0;
}
.card-calltock h3, .card-calltock p {
  font-size: 20px;
  position: relative;
  z-index: 2;
  margin: 0;
  color: white;
}
.card-calltock p {
  color: white;
  font-size: 27px;
}
.card-calltock h3 {
  color: white;
  margin: 0 0 13px 0;
  font-size: 27px;
}
.card-calltock a {
  display: flex;
  text-align: center;
  color: white;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px;
  border-radius: 49px;
  margin: 17px 0 0 0;
  text-decoration: none;
  position: relative;
  z-index: 2;
  background-color: #f79622;
  width: auto;
  display: flex;
  -webkit-border-radius: 49px;
  -moz-border-radius: 49px;
  -ms-border-radius: 49px;
  -o-border-radius: 49px;
}

.testimonial {
  position: relative;
}
.testimonial .card-testimonial {
  display: flex;
  border: 0;
  padding: 0;
}
.testimonial .card-testimonial .rate {
  width: 150px;
}
.testimonial .card-testimonial h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 14px;
}
.testimonial .card-testimonial h5 {
  font-size: 15px;
  color: #4a4a4a;
}
.testimonial .card-testimonial p {
  font-size: 14px;
  color: #4a4a4a;
}
.testimonial::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 311px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 22%, rgb(255, 255, 255) 48%);
}

.contact-connect-widget {
  padding: 3rem 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-position: center;
  display: flex;
  align-content: flex-end;
  align-items: flex-end;
}
.contact-connect-widget::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  z-index: 0;
  background: linear-gradient(90deg, #f59522 0%, #0e1727 40%);
  opacity: 0.6;
}
.contact-connect-widget img {
  width: 100%;
}
.contact-connect-widget h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-connect-widget p {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 0px;
}
.contact-connect-widget a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 20px;
  padding: 0 0px;
}

form {
  margin-top: 25px;
}
form .form-control {
  border: 1px solid black;
  box-shadow: none;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  font-size: 16px;
  padding: 10px;
  outline: none;
}
form .form-control:focus {
  box-shadow: none;
  outline: none;
}
form .form-label {
  font-weight: 600;
  color: black;
}
form .form-select {
  border: 1px solid black;
  box-shadow: none;
  border-radius: 15px;
  padding: 10px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  outline: none;
  font-size: 16px;
}
form .form-select:focus {
  box-shadow: none;
  outline: none;
}

.title {
  text-align: left;
}
.title h5 {
  font-size: 16px;
  color: #f79622;
  font-weight: 400;
}
.title h3 {
  font-size: 24px;
  color: black;
}

.map {
  filter: grayscale(100%);
}

.radious-1 {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.gallery-title h3 {
  color: #f59522;
  font-weight: 600;
  font-size: 18px;
}
.gallery-title h1 {
  color: #000000;
  font-weight: 600;
  font-size: 30px;
}

.gallery .nav-tabs {
  width: auto;
  justify-content: center;
}
.gallery .nav-tabs .nav-link {
  padding: 7PX 14px;
  color: black;
  margin: 0 0;
  border-bottom: 3px solid rgba(157, 157, 157, 0.33);
}
.gallery .nav-tabs .nav-link:focus {
  box-shadow: none;
}
.gallery .nav-tabs .nav-link:active, .gallery .nav-tabs .nav-link:focus {
  border: 3px;
  outline: 0;
}
.gallery .nav-tabs .nav-link.active {
  padding: 7PX 14px;
  color: black;
  border: 3px;
  border-bottom: 3px solid #f49422;
}
.gallery a .icong {
  display: none;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition-duration: 1s;
}
.gallery a:hover .icong {
  transition-duration: 1s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  width: 30px;
  display: block;
  position: absolute;
  z-index: 9;
}

.gallery {
  position: relative;
}
.gallery a {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.gallery a:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 15px;
  top: 0;
  display: block;
  position: absolute;
  z-index: 0;
  background: linear-gradient(180deg, rgba(14, 23, 39, 0) 0%, rgb(0, 0, 0) 48%);
  opacity: 0.6;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.gallery a .caption-gallery {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gallery a .caption-gallery h5 {
  padding: 15px;
  color: white;
  font-size: 17px;
  width: 100%;
  text-align: left;
}/*# sourceMappingURL=style.css.map */