@font-face {
  font-family: "regular";
  src: url(../Fonts/segoe-print/Segoe_Print.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/segoe-print/Segoe_Print_Bold.ttf);
}

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

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

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

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

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

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

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

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

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

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, #f895c5, #E24B95);
  color: #000;
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

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

/***************************** Animations *****************************/
@-webkit-keyframes circles {
  0% {
    -webkit-clip-path: circle(0% at 50% 50%);
            clip-path: circle(0% at 50% 50%);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-6px, 6px);
            transform: translate(-6px, 6px);
  }
  40% {
    -webkit-transform: translate(-6px, -6px);
            transform: translate(-6px, -6px);
  }
  60% {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  80% {
    -webkit-transform: translate(6px, -6px);
            transform: translate(6px, -6px);
  }
  100% {
    -webkit-clip-path: circle(50% at 50% 50%);
            clip-path: circle(50% at 50% 50%);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes circles {
  0% {
    -webkit-clip-path: circle(0% at 50% 50%);
            clip-path: circle(0% at 50% 50%);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-6px, 6px);
            transform: translate(-6px, 6px);
  }
  40% {
    -webkit-transform: translate(-6px, -6px);
            transform: translate(-6px, -6px);
  }
  60% {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  80% {
    -webkit-transform: translate(6px, -6px);
            transform: translate(6px, -6px);
  }
  100% {
    -webkit-clip-path: circle(50% at 50% 50%);
            clip-path: circle(50% at 50% 50%);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes box {
  0% {
    -webkit-transform: scale3d(1, 1, 1) translate(0);
            transform: scale3d(1, 1, 1) translate(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(-6px, 6px);
            transform: translate(-6px, 6px);
  }
  40% {
    -webkit-transform: translate(-6px, -6px);
            transform: translate(-6px, -6px);
  }
  60% {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  80% {
    -webkit-transform: translate(6px, -6px);
            transform: translate(6px, -6px);
  }
  100% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8) translate(0);
            transform: scale3d(0.8, 0.8, 0.8) translate(0);
    opacity: 1;
  }
}

@keyframes box {
  0% {
    -webkit-transform: scale3d(1, 1, 1) translate(0);
            transform: scale3d(1, 1, 1) translate(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(-6px, 6px);
            transform: translate(-6px, 6px);
  }
  40% {
    -webkit-transform: translate(-6px, -6px);
            transform: translate(-6px, -6px);
  }
  60% {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  80% {
    -webkit-transform: translate(6px, -6px);
            transform: translate(6px, -6px);
  }
  100% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8) translate(0);
            transform: scale3d(0.8, 0.8, 0.8) translate(0);
    opacity: 1;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1) translate(0);
            transform: scale3d(1, 1, 1) translate(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  40% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
  50% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
            transform: scale3d(0.8, 0.8, 0.8);
    opacity: .5;
  }
  60% {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  80% {
    -webkit-transform: translate(6px, -6px);
            transform: translate(6px, -6px);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1) translate(0);
            transform: scale3d(1, 1, 1) translate(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1) translate(0);
            transform: scale3d(1, 1, 1) translate(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  40% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
  50% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
            transform: scale3d(0.8, 0.8, 0.8);
    opacity: .5;
  }
  60% {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  80% {
    -webkit-transform: translate(6px, -6px);
            transform: translate(6px, -6px);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1) translate(0);
            transform: scale3d(1, 1, 1) translate(0);
    opacity: 1;
  }
}

@-webkit-keyframes vibrate {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  40% {
    -webkit-transform: translate(-10px, -10px);
            transform: translate(-10px, -10px);
  }
  60% {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  80% {
    -webkit-transform: translate(10px, -10px);
            transform: translate(10px, -10px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes vibrate {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  40% {
    -webkit-transform: translate(-10px, -10px);
            transform: translate(-10px, -10px);
  }
  60% {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  80% {
    -webkit-transform: translate(10px, -10px);
            transform: translate(10px, -10px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

@-webkit-keyframes backgroundPosition {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 0px;
  }
}

@keyframes backgroundPosition {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 0px;
  }
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

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

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

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

.cliping {
  -webkit-animation: cliping 2s 1 linear;
          animation: cliping 2s 1 linear;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@-webkit-keyframes scaling {
  0% {
    -webkit-transform: rotate(0deg) scale(0.1);
            transform: rotate(0deg) scale(0.1);
    opacity: .2;
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(180deg) scale(0.5);
            transform: rotate(180deg) scale(0.5);
    opacity: .5;
  }
}

@keyframes scaling {
  0% {
    -webkit-transform: rotate(0deg) scale(0.1);
            transform: rotate(0deg) scale(0.1);
    opacity: .2;
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(180deg) scale(0.5);
            transform: rotate(180deg) scale(0.5);
    opacity: .5;
  }
}

@-webkit-keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}

@keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}

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

/***************************** Start Edit Navbar & Footer *****************************/
.nav-container .navbar .navbar-brand img {
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-container .navbar .nav-link {
  text-align: center;
  margin: 0 10px;
  font-family: 'regular';
  color: #483F3F;
  position: relative;
  font-size: 16px;
}

.nav-container .navbar .nav-link::after {
  content: '';
  width: 0%;
  height: 9px;
  background-image: url(../images/icons/nav-active.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

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

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

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

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

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

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

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

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

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

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

.nav-container .search-container {
  position: fixed;
  z-index: 9999999999;
  top: 0;
}

.nav-container .search-container #search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100vw;
  will-change: transform, opacity;
  z-index: -1;
}

.nav-container .search-container #search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .9;
}

.nav-container .search-container #search:target {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh !important;
  opacity: 1;
  width: 100vw !important;
  z-index: 2;
}

.nav-container .search-container #search:target .close-btn {
  display: block;
}

.nav-container .search-container form {
  position: relative;
}

.nav-container .search-container form .form-control {
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 99;
  border: none;
  border-bottom: 2px solid #eee;
  color: #fff;
  font-size: 18px;
  outline: 0;
  padding: 1rem 1.375rem;
}

.nav-container .search-container form .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.nav-container .search-container form .form-control:-ms-input-placeholder {
  color: #ccc;
}

.nav-container .search-container form .form-control::-ms-input-placeholder {
  color: #ccc;
}

.nav-container .search-container form .form-control::placeholder {
  color: #ccc;
}

.nav-container .search-container form .form-control:focus {
  border-bottom: 2px solid #E24B95;
}

.nav-container .search-container form .submit-btn {
  position: absolute;
  right: 0;
  top: 7px;
  background-color: transparent;
  color: #E24B95;
  border: 1px solid transparent;
}

.nav-container .search-container .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: .5rem;
  right: 2rem;
}

.nav-container .page-heading {
  background: url(../images/page-heading.jpg);
  padding: 100px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-container .page-heading .inner {
  text-align: center;
}

.nav-container .page-heading .inner .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.nav-container .page-heading .inner .breadcrumb .breadcrumb-item {
  color: #E24B95;
  font-weight: bold;
}

.nav-container .page-heading .inner .breadcrumb .breadcrumb-item a {
  color: #004D9E;
}

.nav-container .page-heading .inner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #999;
  content: "|";
}

.footer {
  padding: 70px 0px 0px 0px;
  background-color: #f9f9f9;
}

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

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

.footer .content h5 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer .content p {
  color: #7C7C7C;
  line-height: 1.6rem;
  margin-bottom: .5rem;
  font-family: cursive;
}

.footer .content.social a {
  margin: 0 10px;
  color: #E24B95;
}

.footer .content.social a:hover {
  color: #004D9E;
}

.footer .content .links a {
  color: #7C7C7C;
  display: block;
  margin: 10px 0;
  font-family: cursive;
}

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

.footer .content .links .loc-btn {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #7C7C7C;
  display: block;
  margin: 10px 0;
  font-family: cursive;
}

.footer .content .links .loc-btn:hover {
  color: #E24B95;
}

.footer .content .social-links a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #E24B95;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #eee;
  border-radius: 50%;
}

.footer .content .social-links a:hover {
  background-color: #004D9E;
  color: #fff;
}

.footer .content .pink {
  color: #E24B95;
}

.footer .content .blue {
  color: #004D9E;
}

.footer .copyright {
  background-color: #f3f3f3;
  padding: 20px 0;
  margin-top: 30px;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #000;
  font-family: cursive;
}

/***************************** Start Edit Home Page *****************************/
header {
  position: relative;
}

header .nav-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: .7;
  z-index: 5;
}

header .swiper-container .swiper-slide {
  padding: 300px 0px 280px 0px;
  background: url(../images/header-bg-1.png);
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
}

header .swiper-container .swiper-slide::after {
  content: '';
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .9;
  z-index: 4;
}

header .swiper-container .swiper-slide .inner {
  position: relative;
  z-index: 6;
  text-align: center;
}

header .swiper-container .swiper-slide .inner h5 {
  font-size: 3rem;
  color: #0059A8;
  font-family: 'regular';
  margin-bottom: 1rem;
}

header .swiper-container .swiper-slide .inner h5 b {
  font-family: 'bold';
  color: #E24B95;
}

header .swiper-container .swiper-slide .inner p {
  font-size: 13px;
  line-height: 1.8rem;
}

header .swiper-container .swiper-slide .inner .butn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 25px;
  color: #000;
  display: block;
  text-align: center;
  margin: auto;
  position: relative;
  border: 1px solid #fff;
  overflow: hidden;
}

header .swiper-container .swiper-slide .inner .butn::before {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: #E24B95;
  position: absolute;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: 2;
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

header .swiper-container .swiper-slide .inner .butn::after {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: #004D9E;
  position: absolute;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -webkit-box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

header .swiper-container .swiper-slide .inner .butn span {
  position: relative;
  z-index: 7;
}

header .swiper-container .swiper-slide .inner .butn img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .swiper-container .swiper-slide .inner .butn:hover {
  border: 1px solid #E24B95;
  color: #fff;
}

header .swiper-container .swiper-slide .inner .butn:hover::before {
  opacity: 1;
  width: 116%;
}

header .swiper-container .swiper-slide .inner .butn:hover::after {
  opacity: 1;
  width: 130%;
}

header .swiper-container .swiper-slide .inner .butn:hover img {
  -webkit-filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(316deg) brightness(210%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(316deg) brightness(210%) contrast(101%);
}

header .swiper-container .swiper-slide .cup-img {
  position: absolute;
  bottom: 90px;
  z-index: 5;
  width: 22vw;
}

header .swiper-container .swiper-slide .shape {
  width: 100%;
  position: absolute;
  bottom: -1px;
}

header .swiper-container .swiper-pagination {
  bottom: 200px;
  width: 100%;
}

header .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  position: relative;
}

header .swiper-container .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #E24B95;
  opacity: 0;
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
}

header .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #E24B95;
}

header .swiper-container .swiper-pagination .swiper-pagination-bullet-active::after {
  opacity: 1;
}

header .swiper-container .swiper-slide-active .cup-img {
  -webkit-animation: wobble-hor-bottom 1s both;
          animation: wobble-hor-bottom 1s both;
}

header .swiper-container .swiper-slide-active p {
  -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;
}

header .swiper-container .swiper-slide-active .butn {
  -webkit-animation: zoomIn 2s both;
          animation: zoomIn 2s both;
}

section .sec-heading {
  margin-bottom: 65px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

section .sec-heading h3 {
  color: #E24B95;
  font-size: 45px;
  position: relative;
}

section .sec-heading h3::after {
  content: '';
  width: 50px;
  height: 16px;
  background-image: url(../images/icons/sec-heading.svg);
  background-size: cover;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  top: 60px;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-animation: cliping 2s 1 linear;
          animation: cliping 2s 1 linear;
  display: none;
}

section .sec-heading .line {
  width: 50px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

section .sec-heading .circles {
  padding: 0px 20px;
}

section .sec-heading .circles svg {
  width: 60px;
  height: 60px;
}

section .sec-heading .circles svg #circle_1,
section .sec-heading .circles svg #circle_6 {
  animation: pulse 7s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
  -webkit-animation: pulse 7s linear infinite;
}

section .sec-heading .circles svg #circle_2,
section .sec-heading .circles svg #circle_5 {
  -webkit-animation: circles 10s linear infinite;
          animation: circles 10s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

section .sec-heading .circles svg #circle_3,
section .sec-heading .circles svg #circle_7 {
  -webkit-animation: box 6s linear infinite;
          animation: box 6s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

section .sec-heading .circles svg #circle_4,
section .sec-heading .circles svg #circle_9 {
  -webkit-animation: circles 8s linear infinite;
          animation: circles 8s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

section .sec-heading .circles svg #circle_8 {
  -webkit-animation: vibrate 10s linear infinite;
          animation: vibrate 10s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

section .butn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 25px;
  color: #000;
  display: block;
  text-align: center;
  margin: auto;
  position: relative;
  border: 1px solid #fff;
  overflow: hidden;
}

section .butn::before {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: #E24B95;
  position: absolute;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: 2;
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

section .butn::after {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: #004D9E;
  position: absolute;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -webkit-box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

section .butn span {
  position: relative;
  z-index: 7;
}

section .butn img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

section .butn:hover {
  border: 1px solid #E24B95;
  color: #fff;
}

section .butn:hover::before {
  opacity: 1;
  width: 116%;
}

section .butn:hover::after {
  opacity: 1;
  width: 130%;
}

section .butn:hover img {
  -webkit-filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(316deg) brightness(210%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(316deg) brightness(210%) contrast(101%);
}

.about-sec {
  padding: 20px 0px 70px 0px;
  position: relative;
}

.about-sec .image-content {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
}

.about-sec .image-content .img1 {
  width: 90%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}

.about-sec .image-content .img2 {
  width: 70%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 35px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 5px solid #fff;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
}

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

.about-sec .text h5 {
  color: #004D9E;
  margin-bottom: 1.3rem;
}

.about-sec .text p {
  line-height: 2rem;
  color: #999;
  margin-bottom: 2rem;
}

.about-sec .pattern {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  z-index: -1;
}

.categories-sec {
  padding: 70px 0px;
}

.categories-sec .swiper-container .swiper-slide {
  height: 260px;
}

.categories-sec .swiper-container .swiper-slide .item {
  position: relative;
  top: 30px;
  height: 210px;
}

.categories-sec .swiper-container .swiper-slide .item .bg-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 80px 50px 90px 50px;
  height: 100%;
}

.categories-sec .swiper-container .swiper-slide .item .bg-wrapper .bg-img {
  width: 100%;
  height: 100%;
}

.categories-sec .swiper-container .swiper-slide .item .bg-wrapper .lines {
  position: absolute;
  top: 0;
  right: -20px;
  width: 115%;
  display: block;
  margin: auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-animation: slide-left 3s linear infinite alternate both;
          animation: slide-left 3s linear infinite alternate both;
}

.categories-sec .swiper-container .swiper-slide .item .content {
  position: absolute;
  top: 0;
  width: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  height: 210px;
}

.categories-sec .swiper-container .swiper-slide .item .content .text {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.categories-sec .swiper-container .swiper-slide .item .content .text h5 {
  color: #ffd418;
  font-size: 25px;
  text-align: center;
}

.categories-sec .swiper-container .swiper-slide .item .content .category-img {
  position: absolute;
  bottom: -20px;
  left: 40px;
}

.categories-sec .swiper-container .swiper-slide .item .content .category2-img {
  position: absolute;
  top: 65px;
  left: 35px;
}

.categories-sec .swiper-container .swiper-slide .item .circles1 {
  position: absolute;
  top: -15px;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.categories-sec .swiper-container .swiper-slide .item .circles2 {
  position: absolute;
  top: -13px;
  right: 3px;
  -webkit-animation: scaling 6s ease-in-out infinite;
          animation: scaling 6s ease-in-out infinite;
}

.categories-sec .swiper-container .swiper-slide .item .circles3 {
  position: absolute;
  bottom: -13px;
  left: 100px;
  -webkit-animation: scaling 6s 1s ease-in-out infinite;
          animation: scaling 6s 1s ease-in-out infinite;
}

.categories-sec .swiper-container .swiper-slide .item .circles4 {
  position: absolute;
  bottom: -13px;
  right: 0;
  -webkit-animation: float 6s .5s ease-in-out infinite;
          animation: float 6s .5s ease-in-out infinite;
}

.categories-sec .swiper-container .swiper-slide .item:hover .product-img {
  -webkit-animation: shake-horizontal 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
          animation: shake-horizontal 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

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

.products-sec .inner {
  position: relative;
  z-index: 5;
}

.products-sec .inner .card {
  background-color: #fff;
  border-radius: 25px;
  border: 1px dashed transparent;
  margin-bottom: 30px;
  padding: 2rem 1rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.products-sec .inner .card .product-img {
  width: 80%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

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

.products-sec .inner .card .card-body .price {
  margin-top: 1rem;
  color: #004D9E;
  font-size: 15px;
}

.products-sec .inner .card .card-body .price b {
  color: #E24B95;
  font-size: 25px;
}

.products-sec .inner .card:hover {
  border: 1px dashed #E24B95;
  -webkit-box-shadow: 0px 4px 15px 0px #ddd;
          box-shadow: 0px 4px 15px 0px #ddd;
}

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

.products-sec .inner .butn {
  background-color: #f169ab;
}

.products-sec .pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: .04;
}

.media-sec {
  padding: 70px 0px;
}

.media-sec .inner h4 {
  color: #0059A8;
  margin-bottom: 35px;
  font-size: 1.7rem;
}

.media-sec .inner .photos.swiper-container .image-content {
  height: 350px;
  position: relative;
  overflow: hidden;
}

.media-sec .inner .photos.swiper-container .image-content .main-img {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-sec .inner .photos.swiper-container .image-content .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.media-sec .inner .photos.swiper-container .image-content .icon:hover {
  -webkit-filter: invert(36%) sepia(92%) saturate(1097%) hue-rotate(300deg) brightness(96%) contrast(84%);
          filter: invert(36%) sepia(92%) saturate(1097%) hue-rotate(300deg) brightness(96%) contrast(84%);
}

.media-sec .inner .photos.swiper-container .image-content:hover .icon {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.media-sec .inner .main-video {
  height: 450px;
  border-radius: 35px;
  position: relative;
  margin-bottom: 35px;
}

.media-sec .inner .main-video .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 35px;
}

.media-sec .inner .main-video .video-icon {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.media-sec .inner .main-video .video-icon:hover {
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
          transform: translate(-50%, -50%) rotate(360deg);
}

.media-sec .inner .main-video::after {
  content: '';
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: .4;
  border-radius: 35px;
}

.media-sec .inner .videos.swiper-container .image-content {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.media-sec .inner .videos.swiper-container .image-content::after {
  content: '';
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: .2;
  border-radius: 35px;
}

.media-sec .inner .videos.swiper-container .image-content .main-img {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-sec .inner .videos.swiper-container .image-content .icon {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.media-sec .inner .videos.swiper-container .image-content .icon:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.3);
          transform: translate(-50%, -50%) scale(1.3);
}

.newsletter-sec {
  overflow: hidden;
  padding: 200px 0px;
  background-image: url(../images/newsletter-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.newsletter-sec .content {
  position: relative;
  z-index: 5;
}

.newsletter-sec .content h2 {
  color: #E24B95;
}

.newsletter-sec .content h2 b {
  font-size: 2.5rem;
}

.newsletter-sec .content .form-group {
  position: relative;
  margin-top: 30px;
}

.newsletter-sec .content .form-group .form-control {
  height: 75px;
  padding: 0.375rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 3px 15px #ddd;
          box-shadow: 0px 3px 15px #ddd;
}

.newsletter-sec .content .form-group .butn {
  background-color: #f169ab;
  color: #fff;
  height: 70px;
  line-height: 70px;
  border-radius: 50px;
  position: absolute;
  right: 2.5px;
  top: 2.5px;
}

.newsletter-sec .img {
  position: absolute;
  right: 0;
  top: -150px;
}

.feedback-sec {
  padding: 100px 0px 70px 0px;
}

.feedback-sec .swiper-container {
  width: 100%;
  height: 450px !important;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .image-content {
  width: 100%;
  height: 400px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .image-content .client {
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .image-content .line {
  position: relative;
  display: inline-block;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .image-content .line::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #E24B95;
  display: block;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .image-content .line .icon {
  background-color: #fff;
  padding: 60px 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 50px 0 0;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .text h4 {
  color: #E24B95;
  margin-bottom: 1.3rem;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .text h4 span {
  color: #000;
}

.feedback-sec .swiper-container .swiper-slide .single-feedback .text p {
  line-height: 2rem;
}

.feedback-sec .swiper-container .swiper-button-prev {
  background-image: url(../images/icons/next-arrow.svg);
  left: unset;
  top: 41%;
  right: 0;
}

.feedback-sec .swiper-container .swiper-button-next {
  background-image: url(../images/icons/next-arrow.svg);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: unset;
  right: 0;
  top: 59%;
}

.feedback-sec .swiper-container .swiper-button-prev,
.feedback-sec .swiper-container .swiper-button-next {
  width: 40px;
  height: 65px;
  background-size: 18px 44px;
  border: 2px solid #E24B95;
}

.banner-sec {
  padding: 70px 0px;
}

.banner-sec .inner {
  position: relative;
  height: 375px;
  overflow: hidden;
}

.banner-sec .inner .img1 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-sec .inner .img2 {
  position: absolute;
  left: 35%;
  top: 60%;
  -webkit-transform: translate(-65%, -40%);
          transform: translate(-65%, -40%);
}

.banner-sec .inner .img3 {
  width: 45%;
  position: absolute;
  right: 0;
  top: 50px;
}

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

.menu-pg .menu-inner {
  position: relative;
  z-index: 5;
}

.menu-pg .menu-inner .single-item {
  margin-bottom: 30px;
  padding: 0 15px;
}

.menu-pg .menu-inner .single-item .image-content {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.menu-pg .menu-inner .single-item .image-content::after {
  content: '\f00e';
  font-family: 'Font Awesome 5 Free';
  color: #fff;
  font-weight: 900;
  display: block;
  text-align: center;
  line-height: 80px;
  font-size: 25px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #E24B95;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  pointer-events: none;
}

.menu-pg .menu-inner .single-item .image-content img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-pg .menu-inner .single-item .text .heading-top {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
  padding-top: 11px;
}

.menu-pg .menu-inner .single-item .text .heading-top h4 {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  font-size: 20px;
  line-height: 28px;
}

.menu-pg .menu-inner .single-item .text .heading-top .line {
  position: relative;
  display: block;
  border: 1px dashed #cccccc;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  top: 2px;
}

.menu-pg .menu-inner .single-item .text .heading-top .price {
  position: relative;
  float: right;
  display: inline-block;
  margin-left: 20px;
  font-size: 15px;
  color: #004D9E;
  font-family: cursive;
  font-weight: bold;
}

.menu-pg .menu-inner .single-item .text .desc {
  font-size: 15px;
  color: #666;
  font-family: cursive;
}

.menu-pg .menu-inner .single-item:hover .image-content::after {
  opacity: .8;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.special-menu {
  padding: 70px 0px;
  background: url(../images/menu-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.special-menu::after {
  content: '';
  background-color: #eee;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.special-menu .special-menu-box {
  position: relative;
  display: block;
  width: 100%;
  padding: 100px 50px 60px 45px;
}

.special-menu .special-menu-box .bg-layer {
  background: url(../images/menu-box-1.png);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-pg .contact-info {
  margin-bottom: 25px;
}

.contact-pg .contact-info .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f9f9f9;
}

.contact-pg .contact-info .items .icons {
  color: #E24B95;
  min-width: 20%;
  text-align: center;
  font-size: 21px;
  border-right: 1px solid #004D9E;
}

.contact-pg .contact-info .items .info p {
  font-size: 13px;
  color: #004D9E;
  padding-left: 20px;
  margin-bottom: 0;
  line-height: 31px;
  font-family: 'bold';
}

.contact-pg .contact-info .map {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 30px 0;
  min-height: 500px;
}

.contact-pg .contact-info .map iframe {
  border-radius: 10px;
}

.vision {
  padding: 150px 0;
  background: url(../images/pattern-1.png);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
  background-attachment: fixed;
}

.vision::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(#fff));
  background-image: linear-gradient(to top, transparent, #fff);
  pointer-events: none;
}

.vision::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background-image: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.vision .items {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.vision .items h5 {
  color: #E24B95;
  margin-bottom: 20px;
  font-size: 25px;
}

.vision .items p {
  color: #777;
  font-size: 14px;
  line-height: 2;
}

.vision .items::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: calc(100% - 15px);
  width: 100%;
  height: 20px;
  background: url(../images/shape.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top;
  border-radius: 20px;
}

.vision .items::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(100% - 15px);
  width: 100%;
  height: 20px;
  background: url(../images/shape.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top;
  border-radius: 20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.follow {
  padding: 100px 0;
  background-image: url(../images/follow.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
}

.follow::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffffe8), to(transparent));
  background: linear-gradient(to bottom, #ffffffe8, transparent);
}

.follow .content {
  position: relative;
  z-index: 10;
}

.follow p {
  color: #777;
  font-size: 21px;
  line-height: 2;
}

.follow .follow_social {
  margin-top: 30px;
}

.follow .follow_social a {
  color: #E24B95;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #E24B95;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
}

.contact_pg {
  padding: 80px 0;
}

.contact_pg .contact_info .items {
  margin-bottom: 30px;
}

.contact_pg .contact_info .items h6 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact_pg .contact_info .items p {
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: #848484;
  font-weight: 600;
}

.contact_pg .contact_info .contact_social a {
  width: 35px;
  height: 35px;
  border: 1px solid #9993;
  margin-right: 5px;
  color: #888;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  background-color: #fff;
}

.contact_pg .contact_info .contact_social a:hover {
  color: #E24B95;
  border-color: #E24B95;
}

.contact_pg .contact_form {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.contact_pg .contact_form::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: calc(100% - 15px);
  width: 100%;
  height: 20px;
  background: url(../images/shape.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top;
  border-radius: 20px;
}

.contact_pg .contact_form::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(100% - 15px);
  width: 100%;
  height: 20px;
  background: url(../images/shape.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top;
  border-radius: 20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.contact_pg .contact_form .form-control {
  border-radius: 30px;
  border: 1px solid #9992;
  min-height: 45px;
  font-size: 13px;
  padding: 15px;
}

.contact_pg .contact_form .butn {
  background-color: #E24B95;
}

.photos_pg {
  background: url(../images/vid_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.photos_pg:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.99;
}

.photos_pg .portfolio {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.photos_pg .portfolio .taps {
  display: inline-block;
  border: 1px solid #EC407A50;
  border-radius: 30px;
  border-style: dashed;
  margin-bottom: 20px;
}

.photos_pg .portfolio .taps span {
  font-size: 13px;
  border-radius: 30px;
  padding: 10px 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  background: transparent;
  cursor: pointer;
  display: inline-block;
}

.photos_pg .portfolio .taps span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #EC407A;
}

.photos_pg .portfolio .taps span.active {
  color: #fff;
}

.photos_pg .portfolio .taps span.active::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.photos_pg .portfolio .items {
  padding: 30px;
}

.photos_pg .portfolio .items .mix {
  padding: 10px;
}

.photos_pg .portfolio .items .mix .img {
  position: relative;
  width: 100%;
  height: 400px;
}

.photos_pg .portfolio .items .mix .img img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.photos_pg .portfolio .items .mix .img:after {
  position: absolute;
  content: "";
  background-color: #fff;
  opacity: 0;
  left: 3%;
  top: 30px;
  width: 94%;
  height: 94%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.photos_pg .portfolio .items .mix .img:hover:after {
  opacity: 0.85;
  top: 3%;
}

.photos_pg .portfolio .items .mix .img:hover .info {
  opacity: 1;
  top: 50%;
}

.photos_pg .portfolio .items .mix .img .info {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  color: #EC407A;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_pg {
  background: url(../images/vid_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.video_pg:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.85;
}

.video_pg .media-sec {
  position: relative;
  z-index: 10;
}
/*# sourceMappingURL=style.css.map */