@charset "UTF-8";
@font-face {
  font-family: "light";
  src: url(../Fonts/raleway/Raleway-Light.ttf);
}

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

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

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

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'light';
}

*::-moz-selection {
  background-color: #F496BE;
  color: #fff;
}

*::selection {
  background-color: #F496BE;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background-color: #0F2C52;
}

*::-webkit-scrollbar-thumb {
  background: #F496BE;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #fa7cb3;
}

body {
  background-color: #F5F5F5;
}

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

h4,
h5,
h6 {
  font-family: "medium";
}

p {
  font-size: 15px;
  font-family: 'regular';
  color: #555;
}

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

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

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

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;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

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

.scroll-top-btn:hover {
  border-radius: 50%;
  color: #fff;
}

/***************************** Animations *****************************/
@-webkit-keyframes moveX {
  0% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
@keyframes moveX {
  0% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes cliping {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
            clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(50% 0, 100% 0%, 0 0%, 0 0);
            clip-path: polygon(50% 0, 100% 0%, 0 0%, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  }
}

@keyframes cliping {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
            clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(50% 0, 100% 0%, 0 0%, 0 0);
            clip-path: polygon(50% 0, 100% 0%, 0 0%, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  }
}

.cliping {
  -webkit-animation: cliping 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: cliping 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container .navbar {
  background-color: #F5F5F5;
}

.navs-container .navbar .nav-link {
  color: #707070;
  margin: 0 5px;
  font-family: 'regular';
  text-align: center;
  font-size: 15px;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0%;
  height: 3px;
  background-color: #F496BE;
  display: block;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-container .navbar .nav-link.active, .navs-container .navbar .nav-link:hover {
  color: #F496BE;
  font-weight: bold;
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

.navs-container .navbar .order-link {
  background-color: #5CCCF5;
  color: #fff;
  width: 110px;
  height: 35px;
  line-height: 35px;
  border-radius: 25px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  margin: 0 5px;
  display: block;
}

.navs-container .navbar .order-link:hover {
  background-color: #F496BE;
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .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);
}

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

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

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #F496BE;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #F496BE;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-container .heading-pg {
  padding: 50px 0px 70px 0px;
  background-color: #D6F0F9;
  position: relative;
  overflow: hidden;
}

.navs-container .heading-pg::after {
  content: '';
  width: 150px;
  height: 90px;
  background: url(../images/logo.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  opacity: .05;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 25px;
}

.navs-container .heading-pg .inner {
  position: relative;
  z-index: 5;
}

.navs-container .heading-pg .inner .breadcrumb {
  background-color: transparent;
}

.navs-container .heading-pg .inner .breadcrumb .breadcrumb-item {
  color: #0F2C52;
  font-size: 13px;
  font-style: italic;
  font-weight: bold;
}

.navs-container .heading-pg .inner h4 {
  text-align: center;
  color: #0F2C52;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 0;
}

.navs-container .heading-pg .pattern {
  position: absolute;
  right: 0;
  top: 10px;
  width: 20%;
}

footer {
  padding-top: 70px;
  background-color: #f5f5f5;
}

footer .content {
  margin-bottom: 50px;
}

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

footer .content p {
  color: #A3A3A3;
  font-size: 12px;
  line-height: 1.6rem;
}

footer .content .social-links a {
  color: #5CCCF5;
  margin: 0 5px;
}

footer .content .social-links a:hover {
  color: #F496BE;
}

footer .content h5 {
  font-family: 'regular';
  margin-bottom: 1.5rem;
}

footer .content .links a {
  display: block;
  margin: 10px 0px;
  font-size: 14px;
  color: #888;
}

footer .content .links a i {
  margin: 0 3px;
}

footer .content .links a:hover {
  font-weight: bold;
  color: #F496BE;
}

footer .copyright {
  padding: 25px 0px;
  border-top: 1px solid #ddd;
}

footer .copyright p {
  margin-bottom: 0;
  font-size: 13px;
}

footer .copyright .copyright-links {
  text-align: right;
}

footer .copyright .copyright-links a {
  margin: 0 7px;
  color: #888;
  font-size: 13px;
}

footer .copyright .copyright-links a:hover {
  font-weight: bold;
  color: #F496BE;
}

/***************************** Start Edit Home Page *****************************/
header {
  padding: 100px 0px;
  height: 100vh;
  position: relative;
}

header::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  z-index: -1;
}

header .text {
  position: relative;
  z-index: 5;
}

header .text h2 {
  color: #0F2C52;
  margin-bottom: 1.5rem;
}

header .text P {
  color: #0F2C52;
  margin-bottom: 1.5rem;
}

header .text .more-butn {
  color: #0F2C52;
  font-size: 15px;
  font-family: 'regular';
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

header .text .more-butn img {
  margin: 0 5px;
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

header .text .more-butn:hover {
  font-weight: bold;
}

header .text .more-butn:hover img {
  -webkit-animation: moveX .5s infinite alternate both;
          animation: moveX .5s infinite alternate both;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

header .watermark {
  position: absolute;
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

header .header1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-icons {
  position: absolute;
  top: 30%;
  left: 0;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  overflow: hidden;
}

header .header-icons .butn {
  width: 200px;
  height: 45px;
  line-height: 45px;
  padding: 0px 40px;
  display: block;
  margin: 5px 0px;
  border-radius: 0 25px 25px 0;
  color: #fff;
  position: relative;
  left: -120px;
  font-size: 13px;
}

header .header-icons .butn.app img {
  -webkit-filter: invert(100%) sepia(100%) saturate(15%) hue-rotate(214deg) brightness(104%) contrast(100%);
          filter: invert(100%) sepia(100%) saturate(15%) hue-rotate(214deg) brightness(104%) contrast(100%);
}

header .header-icons .butn img {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 30px;
  top: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 0 20px;
}

header .header-icons .butn:hover {
  left: 0;
}

header .downl {
  position: relative;
  z-index: 10;
}

header .downl a {
  margin-bottom: 10px;
  display: inline-block;
}

header .downl a img {
  width: 150px;
  border-radius: 10px;
  margin: 25px 10px 0 0;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.intro-sec {
  margin-top: -108px;
  position: relative;
}

.intro-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #5CCCF5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.intro-sec .man {
  width: 90%;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.intro-sec .text {
  padding: 100px 0px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.intro-sec .text h1 {
  font-family: 'regular';
  color: #fff;
  line-height: 3.3rem;
  margin-bottom: 1.5rem;
}

.intro-sec .text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 1.6rem;
}

.intro-sec .text .wavy-butn {
  width: 160px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  background-color: #5CCCF5;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  -webkit-box-shadow: 0 0 2px 0 rgba(92, 204, 245, 0.1), 0 0 4px 0 rgba(92, 204, 245, 0.2), 0 0 6px 0 rgba(92, 204, 245, 0.3), 0 0 8px 0 rgba(92, 204, 245, 0.4), 0 0 12px 0 rgba(92, 204, 245, 0.5), 0 0 18px 0 rgba(92, 204, 245, 0.6);
          box-shadow: 0 0 2px 0 rgba(92, 204, 245, 0.1), 0 0 4px 0 rgba(92, 204, 245, 0.2), 0 0 6px 0 rgba(92, 204, 245, 0.3), 0 0 8px 0 rgba(92, 204, 245, 0.4), 0 0 12px 0 rgba(92, 204, 245, 0.5), 0 0 18px 0 rgba(92, 204, 245, 0.6);
}

.intro-sec .text .wavy-butn span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.intro-sec .text .wavy-butn i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 200px;
  background-color: inherit;
  -webkit-transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 1s linear;
  transition: transform 0.4s linear, top 1s linear, -webkit-transform 0.4s linear;
  overflow: hidden;
}

.intro-sec .text .wavy-butn i::before, .intro-sec .text .wavy-butn i::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
  opacity: 0;
}

.intro-sec .text .wavy-butn i::before {
  border-radius: 46%;
  background-color: rgba(20, 20, 20, 0.2);
  -webkit-animation: animate 5s linear infinite;
          animation: animate 5s linear infinite;
}

.intro-sec .text .wavy-butn i::after {
  border-radius: 40%;
  background-color: rgba(20, 20, 20, 0.5);
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}

.intro-sec .text .wavy-butn:hover i:before,
.intro-sec .text .wavy-butn:hover i:after {
  opacity: 1;
}

.wavy-butn {
  width: 160px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  background-color: #5CCCF5;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  -webkit-box-shadow: 0 0 2px 0 rgba(92, 204, 245, 0.1), 0 0 4px 0 rgba(92, 204, 245, 0.2), 0 0 6px 0 rgba(92, 204, 245, 0.3), 0 0 8px 0 rgba(92, 204, 245, 0.4), 0 0 12px 0 rgba(92, 204, 245, 0.5), 0 0 18px 0 rgba(92, 204, 245, 0.6);
          box-shadow: 0 0 2px 0 rgba(92, 204, 245, 0.1), 0 0 4px 0 rgba(92, 204, 245, 0.2), 0 0 6px 0 rgba(92, 204, 245, 0.3), 0 0 8px 0 rgba(92, 204, 245, 0.4), 0 0 12px 0 rgba(92, 204, 245, 0.5), 0 0 18px 0 rgba(92, 204, 245, 0.6);
}

.wavy-butn span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.wavy-butn i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 200px;
  background-color: inherit;
  -webkit-transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 1s linear;
  transition: transform 0.4s linear, top 1s linear, -webkit-transform 0.4s linear;
  overflow: hidden;
}

.wavy-butn i::before, .wavy-butn i::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
  opacity: 0;
}

.wavy-butn i::before {
  border-radius: 46%;
  background-color: rgba(20, 20, 20, 0.2);
  -webkit-animation: animate 5s linear infinite;
          animation: animate 5s linear infinite;
}

.wavy-butn i::after {
  border-radius: 40%;
  background-color: rgba(20, 20, 20, 0.5);
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}

.wavy-butn:hover i:before,
.wavy-butn:hover i:after {
  opacity: 1;
}

.about-sec {
  padding: 70px 0px;
  position: relative;
  background-color: #F5F5F5;
}

.about-sec .text h4 {
  font-size: 2rem;
  font-family: 'regular';
  margin-bottom: 1.5rem;
}

.about-sec .text p {
  line-height: 1.6rem;
  color: #A3A3A3;
  margin-bottom: 1.7rem;
}

.about-sec .text .wavy-butn {
  width: 160px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #a3a3a3;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.about-sec .text .wavy-butn span {
  position: relative;
  z-index: 1;
  color: #666;
  font-family: 'regular';
}

.about-sec .text .wavy-butn i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 200px;
  background-color: inherit;
  -webkit-transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 1s linear;
  transition: transform 0.4s linear, top 1s linear, -webkit-transform 0.4s linear;
  overflow: hidden;
}

.about-sec .text .wavy-butn i::before, .about-sec .text .wavy-butn i::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
  opacity: 0;
}

.about-sec .text .wavy-butn i::before {
  border-radius: 46%;
  background-color: rgba(92, 204, 245, 0.2);
  -webkit-animation: animate 5s linear infinite;
          animation: animate 5s linear infinite;
}

.about-sec .text .wavy-butn i::after {
  border-radius: 40%;
  background-color: rgba(92, 204, 245, 0.5);
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}

.about-sec .text .wavy-butn:hover i:before,
.about-sec .text .wavy-butn:hover i:after {
  opacity: 1;
}

.about-sec .pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
}

.wavy-butn {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.products-categ {
  padding: 0px 0px 70px 0px;
  position: relative;
  background-color: #F5F5F5;
}

.products-categ .card {
  border-radius: 0;
  border: none;
  padding: 15px 0px;
}

.products-categ .card .img {
  width: 70%;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.products-categ .card .card-body {
  text-align: center;
}

.products-categ .card .card-body h5 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.products-categ .card .card-body p {
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
}

.products-categ .card:hover .img {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

.our-products {
  padding: 70px 0px;
  background-color: #F5F5F5;
}

.our-products .inner {
  background-color: #fff;
  padding: 60px 35px;
}

.our-products .inner .text {
  padding: 0 20px;
}

.our-products .inner .text h4 {
  font-family: 'regular';
  margin-bottom: 1.6rem;
  color: #0F2C52;
}

.our-products .inner .text p {
  color: #A3A3A3;
  margin-bottom: 1.6rem;
  font-size: 16px;
  line-height: 1.6rem;
}

.our-products .inner .text .wavy-butn {
  width: 160px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #a3a3a3;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.our-products .inner .text .wavy-butn span {
  position: relative;
  z-index: 1;
  color: #666;
  font-family: 'regular';
}

.our-products .inner .text .wavy-butn i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 200px;
  background-color: inherit;
  -webkit-transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 1s linear;
  transition: transform 0.4s linear, top 1s linear, -webkit-transform 0.4s linear;
  overflow: hidden;
}

.our-products .inner .text .wavy-butn i::before, .our-products .inner .text .wavy-butn i::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
  opacity: 0;
}

.our-products .inner .text .wavy-butn i::before {
  border-radius: 46%;
  background-color: rgba(92, 204, 245, 0.2);
  -webkit-animation: animate 5s linear infinite;
          animation: animate 5s linear infinite;
}

.our-products .inner .text .wavy-butn i::after {
  border-radius: 40%;
  background-color: rgba(92, 204, 245, 0.5);
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}

.our-products .inner .text .wavy-butn:hover i:before,
.our-products .inner .text .wavy-butn:hover i:after {
  opacity: 1;
}

.our-products .inner .services-categ {
  padding: 0 20px;
}

.our-products .inner .services-categ .item {
  margin-bottom: 5px;
}

.our-products .inner .services-categ .item h6 {
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 19px;
}

.our-products .inner .services-categ .item h6 img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
  display: block;
}

.our-products .inner .services-categ .item ul {
  padding-left: 0;
}

.our-products .inner .services-categ .item ul li {
  color: #5CCCF5;
  font-family: 'regular';
  font-size: 13px;
  line-height: 2;
}

.our-products .inner .services-categ .item ul li::before {
  content: '•';
  margin-right: 0.5rem;
}

.facts-sec {
  padding: 70px 0px 150px 0px;
  position: relative;
}

.facts-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  z-index: -1;
}

.facts-sec .text {
  position: relative;
  z-index: 5;
}

.facts-sec .text h4 {
  font-family: 'regular';
}

.facts-sec .text h3 {
  font-family: 'regular';
  font-size: 35px;
  margin: 1.5rem 0rem;
  line-height: 2.8rem;
}

.facts-sec .text p {
  color: #A3A3A3;
}

.facts-sec .water {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
}

.contact-sec {
  position: relative;
  padding: 400px 0px 70px 0px;
  margin-top: -500px;
}

.contact-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #5CCCF5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.contact-sec .heading-sec {
  padding-top: 200px;
  position: relative;
  z-index: 5;
  margin-bottom: 50px;
}

.contact-sec .heading-sec h2 {
  font-family: 'regular';
  margin-bottom: 1rem;
  color: #fff;
}

.contact-sec .heading-sec p {
  font-size: 13px;
  color: #fff;
}

.contact-sec form {
  position: relative;
  z-index: 5;
  padding: 0 0 25px 0;
  border-bottom: 1px solid #fff;
}

.contact-sec form .form-control {
  height: 55px;
  font-style: 14px;
  border: 1px solid #f9f9f9;
  background-color: #5CCCF5;
  color: #fff;
  font-weight: bold;
}

.contact-sec form .form-control::-webkit-input-placeholder {
  color: #eee;
  font-style: italic;
  font-weight: 400;
}

.contact-sec form .form-control:-ms-input-placeholder {
  color: #eee;
  font-style: italic;
  font-weight: 400;
}

.contact-sec form .form-control::-ms-input-placeholder {
  color: #eee;
  font-style: italic;
  font-weight: 400;
}

.contact-sec form .form-control::placeholder {
  color: #eee;
  font-style: italic;
  font-weight: 400;
}

.contact-sec form .form-control:focus {
  border: 1px solid #F496BE;
}

.contact-sec form textarea {
  resize: none;
  height: 250px !important;
}

.contact-sec form .submit-btn {
  background-color: transparent;
  border: transparent;
  display: block;
  margin: 10px auto;
  color: #fff;
}

.contact-sec form .submit-btn img {
  margin: 0 5px;
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-filter: invert(100%) sepia(100%) saturate(15%) hue-rotate(214deg) brightness(104%) contrast(100%);
          filter: invert(100%) sepia(100%) saturate(15%) hue-rotate(214deg) brightness(104%) contrast(100%);
}

.contact-sec form .submit-btn:hover {
  font-weight: bold;
}

.contact-sec form .submit-btn:hover img {
  -webkit-animation: moveX .5s infinite alternate both;
          animation: moveX .5s infinite alternate both;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

.contact-sec .app-wrapper {
  margin-top: 70px;
}

.contact-sec .app-wrapper .phone-img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .app-wrapper .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact-sec .app-wrapper .text h1 {
  font-family: 'regular';
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-sec .app-wrapper .text p {
  color: #fff;
  line-height: 1.6rem;
  margin-bottom: 2.5rem;
}

.contact-sec .app-wrapper .text h6 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-sec .app-wrapper .text .app-img img {
  margin: 0 5px;
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .app-wrapper .text .app-img img:hover {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

/***************************** Start Edit products Page *****************************/
.products-pg {
  padding: 70px 0px;
}

.products-pg .card {
  margin-bottom: 35px;
}

.products-pg .card .image-content {
  padding-top: 15px;
}

.products-pg .card .image-content .icons {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 25px auto;
}

.products-pg .card .image-content .icons .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  margin: 0 5px;
}

.products-pg .card .image-content .icons .icon img {
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.products-pg .card .image-content .icons .icon:hover {
  background-color: #0F2C52;
}

.products-pg .card .image-content .icons .icon:hover img {
  -webkit-filter: invert(100%) sepia(0%) saturate(7448%) hue-rotate(135deg) brightness(199%) contrast(112%);
          filter: invert(100%) sepia(0%) saturate(7448%) hue-rotate(135deg) brightness(199%) contrast(112%);
}

.products-pg .card .image-content .img {
  width: 80%;
  height: 250px;
}

/* -------------------- preview ------------------------- */
.preview .tab-content {
  border: 1px solid #9995;
  border-top: 0;
  padding: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.preview .info {
  color: #777;
  line-height: 2;
}

.preview .nav-tabs .nav-link {
  font-weight: 600;
}

.preview .nav-tabs .nav-item.show .nav-link,
.preview .nav-tabs .nav-link.active {
  color: #00012a;
}

.product-details {
  padding: 80px 0;
  background-color: #fff;
}

.product-details .wavy-butn {
  margin-top: 30px;
  width: 160px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #a3a3a3;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.product-details .wavy-butn span {
  position: relative;
  z-index: 1;
  color: #666;
  font-family: 'regular';
}

.product-details .wavy-butn i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 200px;
  background-color: inherit;
  -webkit-transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: top 1s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 1s linear;
  transition: transform 0.4s linear, top 1s linear, -webkit-transform 0.4s linear;
  overflow: hidden;
}

.product-details .wavy-butn i::before, .product-details .wavy-butn i::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
  opacity: 0;
}

.product-details .wavy-butn i::before {
  border-radius: 46%;
  background-color: rgba(92, 204, 245, 0.2);
  -webkit-animation: animate 5s linear infinite;
          animation: animate 5s linear infinite;
}

.product-details .wavy-butn i::after {
  border-radius: 40%;
  background-color: rgba(92, 204, 245, 0.5);
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}

.product-details .wavy-butn:hover i:before,
.product-details .wavy-butn:hover i:after {
  opacity: 1;
}

.product-details .text {
  font-size: 17px;
  color: #888;
  line-height: 2;
  margin-top: 30px;
}

.product-details .img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 15px rgba(92, 204, 245, 0.1);
          box-shadow: 0 5px 15px rgba(92, 204, 245, 0.1);
}

.product-details .info h2 {
  color: #0F2C52;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 30px;
}

.product-details .info .prs {
  margin-top: 20px;
}

.product-details .swiper-container {
  border: 1px solid #9993;
  border-radius: 5px;
  margin-bottom: 10px;
  height: 400px;
}

.product-details .swiper-container .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details .swiper-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-details .gallery-thumbs {
  height: 110px;
  border: 0;
}

.product-details .gallery-thumbs img {
  border: 1px dashed #9993;
  border-radius: 5px;
  height: 100px;
  width: 100%;
  margin: auto 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details .swiper-slide-thumb-active img {
  border: 1px solid #00012a;
}
/*# sourceMappingURL=style.css.map */