@font-face {
  font-family: "light";
  src: url(../Fonts/din/DINNEXTLTARABIC-LIGHT-2-2.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/din/DINNextLTArabic-Regular-4.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/din/DINNextLTArabic-Medium-4.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/din/DINNextLTArabic-Bold-4.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: rtl;
  text-decoration: none;
  font-family: 'regular';
  scroll-behavior: smooth;
}

/***************************** Global Style *****************************/
h1, h2, h3, h4 {
  font-family: "bold";
}

h5, h6 {
  font-family: "regular";
}

p {
  font-size: 12px;
  font-family: 'regular';
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: 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 .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/***************************** Animations *****************************/
@-webkit-keyframes skewAfter {
  0% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  100% {
    -webkit-transform: skew(2deg, 13deg);
            transform: skew(2deg, 13deg);
  }
}
@keyframes skewAfter {
  0% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  100% {
    -webkit-transform: skew(2deg, 13deg);
            transform: skew(2deg, 13deg);
  }
}

@-webkit-keyframes skewImg {
  0% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  100% {
    -webkit-transform: skew(4deg, -5deg);
            transform: skew(4deg, -5deg);
  }
}

@keyframes skewImg {
  0% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  100% {
    -webkit-transform: skew(4deg, -5deg);
            transform: skew(4deg, -5deg);
  }
}

.skewImg {
  -webkit-animation-name: skewImg;
          animation-name: skewImg;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.skewAfter {
  -webkit-animation-name: skewAfter;
          animation-name: skewAfter;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes bubble {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}

@keyframes bubble {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipIn-X {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes arrow {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0px, 3px);
            transform: translate(0px, 3px);
  }
}

@keyframes arrow {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0px, 3px);
            transform: translate(0px, 3px);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
nav.bg-light {
  background-color: #fff !important;
}

nav .follow {
  padding: 0px 30px;
  text-align: center;
}

nav .follow p {
  color: #bebebe;
  margin-bottom: .5rem;
  font-weight: bold;
}

nav .follow i {
  color: #34b5a4;
  margin: 0px 5px;
}

nav .nav-item {
  margin: 0px 10px;
}

nav .nav-item .nav-link {
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

nav .nav-item .nav-link::after {
  content: '';
  width: 0%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  display: block;
  position: absolute;
  top: 100%;
  opacity: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: .5s;
  transition: .5s;
}

nav .nav-item .nav-link::before {
  content: '';
  width: 0%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  display: block;
  position: absolute;
  top: 110%;
  opacity: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: .5s;
  transition: .5s;
}

nav .nav-item .nav-link.active, nav .nav-item .nav-link:hover {
  color: #56bd96 !important;
}

nav .nav-item .nav-link.active::after, nav .nav-item .nav-link:hover::after {
  width: 60%;
  opacity: 1;
}

nav .nav-item .nav-link.active::before, nav .nav-item .nav-link:hover::before {
  width: 30%;
  opacity: 1;
}

nav .contact-icons .icon-container {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  margin: 0px 5px;
  font-size: 18px;
}

nav .contact-icons .icon-container i {
  position: relative;
  top: 5px;
}

nav .contact-icons .consultation {
  padding: .375rem .75rem .75rem;
  position: relative;
  top: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  color: #fff;
  margin: 0px 5px;
  border-radius: 25px;
}

footer {
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}

footer .content {
  padding-bottom: 50px;
  position: relative;
  z-index: 9;
}

footer .content .logo-footer {
  width: 95px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1rem;
}

footer .content p {
  color: #b1b1b1;
  line-height: 1.8rem;
  font-size: 15px;
}

footer .content h5 {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  font-weight: bold;
}

footer .content h5::after {
  content: '';
  width: 50px;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  margin: auto;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

footer .content .subscribe {
  text-align: right;
}

footer .content .subscribe::after {
  left: 100%;
  right: 0%;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

footer .content .links {
  text-align: center;
}

footer .content .links a {
  display: block;
  color: #b1b1b1;
  margin: 10px 0px;
}

footer .content .links a:hover {
  color: #43afab;
}

footer .content .form-group {
  position: relative;
}

footer .content .form-group .form-control {
  width: 100%;
  border-radius: 25px;
  padding-right: 80px;
}

footer .content .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #43afab;
}

footer .content .form-group .form-control::-webkit-input-placeholder {
  font-size: 15px;
}

footer .content .form-group .form-control:-ms-input-placeholder {
  font-size: 15px;
}

footer .content .form-group .form-control::-ms-input-placeholder {
  font-size: 15px;
}

footer .content .form-group .form-control::placeholder {
  font-size: 15px;
}

footer .content .form-group .btn-primary {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 25px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  padding: .375rem 1.2rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6cc28e), to(#34b5a4));
  background-image: linear-gradient(to bottom, #6cc28e, #34b5a4);
  border: 1px solid #43afab;
}

footer .copywrite {
  padding: 30px 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6cc28e), to(#34b5a4));
  background-image: linear-gradient(to bottom, #6cc28e, #34b5a4);
  color: #fff;
  position: relative;
}

footer .copywrite p {
  margin-bottom: 0;
  font-size: 15px;
  color: #fff;
  float: left;
  position: relative;
  z-index: 9;
}

footer .copywrite a {
  margin-left: 5px;
  font-size: 15px;
  font-family: 'light';
  color: #fff;
  position: relative;
  z-index: 9;
}

footer .copywrite .center-b {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%) rotate(180deg);
          transform: translateX(50%) rotate(180deg);
  bottom: 57%;
  z-index: 9;
}

footer .copywrite .center-b .icon {
  position: relative;
  left: 50%;
  bottom: 29px;
  width: 15px;
  -webkit-animation: arrow 1s linear infinite;
          animation: arrow 1s linear infinite;
  -webkit-transition: .5s;
  transition: .5s;
}

footer .circle-bottom {
  position: absolute;
  bottom: -230px;
  opacity: .5;
  z-index: 1;
  right: 30px;
}

footer .circle-left {
  position: absolute;
  bottom: -230px;
  opacity: .5;
  z-index: 1;
  left: 200px;
}

/***************************** Start Edit Home Page *****************************/
header {
  padding: 100px 0px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  position: relative;
  overflow: hidden;
}

header .top-l {
  position: absolute;
  top: 100px;
  left: -140px;
}

header .top-r {
  position: absolute;
  top: 30px;
  right: 20px;
}

header .center-b {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  margin-top: 63px;
}

header .center-b .icon {
  position: relative;
  left: 50%;
  bottom: 29px;
  width: 15px;
  -webkit-animation: arrow 1s linear infinite;
          animation: arrow 1s linear infinite;
  -webkit-transition: .5s;
  transition: .5s;
}

header .image-content {
  width: 75%;
  height: 75%;
  position: relative;
  z-index: 9;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

header .text-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  z-index: 9;
}

header .text-content h5 {
  padding: 1.5rem 0rem;
}

header .text-content p {
  font-size: 16px;
  line-height: 1.8rem;
  color: #eee;
  font-family: "light";
  margin-bottom: 3rem;
}

header .text-content .links {
  margin: 35px 0px;
}

header .text-content .links .button {
  width: 140px;
  display: inline-block;
  height: 45px;
  text-align: center;
  line-height: 38px;
  color: #fff;
  border: 2px solid #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(41%, transparent), to(transparent));
  background-image: linear-gradient(to right, transparent 0%, transparent 41%, transparent);
  border-radius: 25px;
  margin: 0px 5px;
  font-size: 15px;
}

header .text-content .links .button.active {
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  font-weight: bold;
  border: 2px solid #31ad8f;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.build {
  padding: 80px 0px;
}

.build .image-content {
  width: 80%;
  height: 280px;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.build .image-content .bg-linear {
  width: 95%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  -webkit-transform: skew(2deg, 13deg);
          transform: skew(2deg, 13deg);
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: auto;
}

.build .image-content img {
  width: 100%;
  height: 100%;
  -webkit-transform: skew(4deg, -5deg);
          transform: skew(4deg, -5deg);
  position: relative;
  z-index: 9;
}

.build .text-content h4 {
  color: #43afab;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
}

.build .text-content h4::after {
  content: '';
  width: 60%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  position: absolute;
  right: 0;
  top: 47px;
}

.build .text-content h5 {
  padding: 10px 0px;
  font-weight: 600;
}

.build .text-content p {
  color: #363131;
  font-size: 15px;
  margin-bottom: 1.2rem;
  line-height: 2rem;
}

.build .text-content p span {
  color: #93ca8d;
}

.build .text-content .links {
  margin: 35px 0px;
}

.build .text-content .links .button {
  border-radius: 25px;
  padding: .375rem 1.75rem .675rem;
  border: 1px solid #96cb8d;
  background-color: #fff;
  color: #52b9a5;
  margin: 0px 5px;
}

.build .text-content .links .button.active {
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  color: #fff;
}

.build .text-content .links .button:hover {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.services {
  padding: 50px 0px;
}

.services .text h4 {
  color: #43afab;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.services .text h4::after {
  content: '';
  width: 100px;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  position: absolute;
  right: 0;
  top: 150%;
}

.services .card {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(41%, #fff), to(#fff));
  background-image: linear-gradient(to right, #fff 0%, #fff 41%, #fff);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  border: none;
  height: 100%;
  border-radius: 20px;
}

.services .card .icon-container {
  position: relative;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 0px 20px;
}

.services .card .icon-container .bg-curve {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: auto;
  position: absolute;
  z-index: 1;
  width: 215px;
  left: -65px;
  top: -40px;
}

.services .card .icon-container .icon {
  position: relative;
  z-index: 9;
  margin: auto;
}

.services .card .card-body h5 {
  color: #29a891;
  -webkit-transition: all .5s !important;
  transition: all .5s !important;
}

.services .card .card-body p {
  color: #999898;
  line-height: 1.8rem;
  -webkit-transition: all .5s !important;
  transition: all .5s !important;
}

.services .card:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
}

.services .card:hover .bg-curve {
  -webkit-filter: invert(100%) sepia(0%) saturate(7483%) hue-rotate(226deg) brightness(30%) contrast(104%);
          filter: invert(100%) sepia(0%) saturate(7483%) hue-rotate(226deg) brightness(30%) contrast(104%);
  -webkit-animation: bubble 5s linear infinite both;
          animation: bubble 5s linear infinite both;
}

.services .card:hover .card-body h5 {
  color: #fff;
}

.services .card:hover .card-body p {
  color: #eee;
}

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

.projects .skew {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  -webkit-transform: skewY(-1deg);
          transform: skewY(-1deg);
  position: absolute;
  z-index: 1;
}

.projects .projects-inner {
  position: relative;
  z-index: 9;
  padding: 50px 0px;
}

.projects .projects-inner .text h4 {
  color: #43afab;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 2rem;
}

.projects .projects-inner .text h4::after {
  content: '';
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  position: absolute;
  right: 0;
  top: 150%;
}

.projects .projects-inner .text p {
  color: #8d8d8d;
}

.projects .projects-inner .nav-pills {
  height: 42px;
}

.projects .projects-inner .nav-pills .nav-link {
  color: #babebe;
  border-radius: 0px;
  font-family: 'light';
}

.projects .projects-inner .nav-pills .nav-link.active {
  background-color: transparent;
  color: #43afab;
  border-bottom: 2px solid #43afab;
  font-family: 'regular';
}

.projects .projects-inner .projects-carousel.owl-theme .owl-dots {
  display: block;
}

.projects .projects-inner .projects-carousel.owl-theme .owl-dots .owl-dot span {
  background-color: #90e8ce;
}

.projects .projects-inner .projects-carousel.owl-theme .owl-dots .owl-dot.active span,
.projects .projects-inner .projects-carousel.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  background: #31ad8f;
}

.projects .projects-inner .projects-carousel .item .image-content {
  width: 100%;
  height: 300px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.projects .projects-inner .projects-carousel .item .image-content img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.projects .projects-inner .projects-carousel .item .image-content .overlay {
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .9;
  border-radius: 25px;
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
  -webkit-transition: .5s;
  transition: .5s;
}

.projects .projects-inner .projects-carousel .item .image-content .text-content {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

.projects .projects-inner .projects-carousel .item .image-content .text-content h5 {
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: .9s;
  transition: .9s;
}

.projects .projects-inner .projects-carousel .item .image-content .text-content h5::after {
  content: '';
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(41%, #fff), to(#fff));
  background-image: linear-gradient(to right, #fff 0%, #fff 41%, #fff);
  position: absolute;
  right: 0;
  top: 150%;
}

.projects .projects-inner .projects-carousel .item .image-content .text-content p {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: .9s;
  transition: .9s;
}

.projects .projects-inner .projects-carousel .item .image-content:hover .overlay {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.projects .projects-inner .projects-carousel .item .image-content:hover .text-content h5 {
  opacity: 1;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.projects .projects-inner .projects-carousel .item .image-content:hover .text-content p {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.packages {
  position: relative;
}

.packages .skew {
  width: 100%;
  height: 100%;
  background: url(../images/home/packages.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: skewY(-1deg);
          transform: skewY(-1deg);
  position: absolute;
  z-index: 1;
}

.packages .overlay {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .9;
  z-index: 2;
  -webkit-transform: skewY(-1deg);
          transform: skewY(-1deg);
}

.packages .packages-inner {
  position: relative;
  z-index: 9;
  padding: 80px 0px;
}

.packages .packages-inner .text {
  width: 100%;
  text-align: center;
}

.packages .packages-inner .text h4 {
  color: #fff;
  position: relative;
}

.packages .packages-inner .text h4::after {
  content: '';
  width: 100px;
  height: 2px;
  background-color: #ccc;
  margin: auto;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.packages .packages-inner .owl-carousel.owl-theme .owl-dots {
  display: block;
}

.packages .packages-inner .owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.packages .packages-inner .owl-carousel.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  background: #31ad8f;
}

.packages .packages-inner .owl-carousel .owl-item {
  opacity: .6;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: .5s;
  transition: .5s;
}

.packages .packages-inner .owl-carousel .owl-item.center {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.packages .packages-inner .owl-carousel .item .card {
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  border-radius: 20px;
  color: #fff;
  padding: 40px 25px;
}

.packages .packages-inner .owl-carousel .item .card h5 {
  color: #fff;
  position: relative;
}

.packages .packages-inner .owl-carousel .item .card h5::after {
  content: '';
  width: 100px;
  height: 2px;
  background-color: #ccc;
  margin: auto;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.packages .packages-inner .owl-carousel .item .card .price {
  width: 100%;
  padding: 30px 0px;
  border-bottom: 1px solid #ccc;
}

.packages .packages-inner .owl-carousel .item .card .price h6 span {
  font-size: 30px;
  font-weight: bold;
}

.packages .packages-inner .owl-carousel .item .card p {
  font-size: 18px;
  margin-bottom: 0;
  padding: 20px 0px;
}

.packages .packages-inner .owl-carousel .item .card .button {
  border: 2px solid #fff;
  border-radius: 25px;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: .375rem 1.75rem .7rem;
  margin: 20px auto 0px;
}

.packages .packages-inner .owl-carousel .item .card .button:hover {
  background-color: #fff;
  color: #43afab;
}

.join {
  position: relative;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, right top, from(#008da2), color-stop(41%, #31ad8f), to(#8dc26e));
  background-image: linear-gradient(to right, #008da2 0%, #31ad8f 41%, #8dc26e);
  -webkit-transform: skewY(-1deg);
          transform: skewY(-1deg);
  padding: 100px 0px;
}

.join .top-l {
  position: absolute;
  top: 100px;
  left: -140px;
  opacity: .5;
  z-index: 2;
}

.join .top-r {
  position: absolute;
  top: 30px;
  right: 20px;
  right: -20px;
  z-index: 2;
}

.join .join-inner {
  position: relative;
  z-index: 9;
  -webkit-transform: skewY(1deg);
          transform: skewY(1deg);
}

.join .join-inner .text {
  color: #fff;
}

.join .join-inner .text h3 {
  color: #fff;
  position: relative;
  margin-bottom: 3rem;
}

.join .join-inner .text h3::after {
  content: '';
  width: 100px;
  height: 2px;
  background-color: #eee;
  margin: auto;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.join .join-inner .text p {
  font-size: 15px;
  color: #eee;
  margin-bottom: 3rem;
}

.join .join-inner .text .button {
  padding: .375rem 2.75rem .75rem;
  border: 2px solid #fff;
  background-color: #fff;
  color: #43afab;
  border-radius: 25px;
}

.join .join-inner .text .button:hover {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}

.partners {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

.partners .top-l {
  position: absolute;
  top: 0px;
  right: -110px;
  opacity: .2;
  z-index: 2;
  width: 200px;
}

.partners .top-r {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 2;
  opacity: .4;
}

.partners .owl-carousel.owl-theme .owl-dots {
  display: block;
}

.partners .owl-carousel.owl-theme .owl-dots .owl-dot span {
  background-color: #90e8ce;
}

.partners .owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.partners .owl-carousel.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  background: #31ad8f;
}

.partners .owl-carousel .owl-item {
  opacity: .4;
  -webkit-transition: .5s;
  transition: .5s;
}

.partners .owl-carousel .owl-item.center {
  opacity: 1;
}

.partners .owl-carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/*# sourceMappingURL=style.css.map */