/* 
Template Name: Ambar
Template URL: http://wwsthemes.com/themes/ambar/v3.0/
Description: A collection of multipurpose single page templates 
Version: 1.0
Author: WWS Themes
Author URL: http://wwsthemes.com
*/
/*

    **************MENU**************

    1. Core CSS (html, body, a, hr etc)
    2. Typography (headings, paragraphs, blockquotes etc)
    3. Helper Classes (special classes for ease of use)
    4. General CSS (various elements such as member boxes, icon boxes etc.)
    5. Mobile CSS (responsive css for mobile devices)

*/
/*
=================================
1. CORE CSS
=================================
*/
/*******************/
/****** Fonts ******/
/*******************/
@import url("https://fonts.googleapis.com/css?family=Alegreya+Sans:400,700,900");
@import url("https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,700");
/************************/
/****** Foundation ******/
/************************/
html {
  font-size: 15px;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Boxed Website or Wide Website */
.boxed, .wide {
  position: relative;
  height: 100%;
  background-color: #fff;
}

.boxed {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/********************/
/****** Loader ******/
/********************/
.loader-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 999999;
}

.loader {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
}

.circle {
  animation: rotate 2s linear infinite;
}

.path {
  stroke: #148389;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: strokeLength 2s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes strokeLength {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

/*
=================================
2. TYPOGRAPHY
=================================
*/
/************************/
/****** Typography ******/
/************************/
a {
  color: #148389;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a:focus {
  color: #148389;
  text-decoration: none;
  outline: none;
}

p {
  line-height: 1.67em;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 0.6em;
  line-height: 1.2em;
}

.heading {
  font-family: "Alegreya Sans", sans-serif;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 2.64rem;
}

h3, .h3 {
  font-size: 2.28rem;
}

h4, .h4 {
  font-size: 1.92rem;
}

h5, .h5 {
  font-size: 1.56rem;
}

h6, .h6 {
  font-size: 1.2rem;
}

.h1 .small, .h1 small, h1 .small, h1 small, .h2 .small, .h2 small, h2 .small, h2 small, .h3 .small, .h3 small, h3 .small, h3 small, .h4 .small, .h4 small, h4 .small, h4 small, .h5 .small, .h5 small, h5 .small, h5 small, .h6 .small, .h6 small, h6 .small, h6 small {
  color: #a4a4a4;
  font-weight: 400;
}

b, strong {
  font-weight: 700;
}

blockquote {
  border: 0;
  position: relative;
  padding-top: 4rem;
}

blockquote:before {
  content: "\f347";
  font-family: "Ionicons";
  color: #148389;
  position: absolute;
  font-size: 2.133rem;
  left: 0;
  top: 0;
  line-height: 2.667rem;
}

/************************/
/****** Heading Box ******/
/************************/
.heading-box {
  text-align: center;
  margin-bottom: 3.333rem;
}

.heading-box .super-heading {
  text-transform: uppercase;
  color: #148389;
  font-size: 0.9rem;
  font-weight: 900;
}

.heading-box .sub-heading {
  max-width: 600px;
  margin: auto;
}

.heading-box.no-center, .heading-box.no-center .sub-heading, .heading-box.no-center .super-heading {
  text-align: left;
  margin-left: 0;
}

/*******************/
/****** Lists ******/
/*******************/
.list-default {
  padding-left: 1.667rem;
  list-style: none;
}

.list-default > li {
  position: relative;
  padding: 0.4rem 0;
  line-height: 1.55em;
}

.list-default > li:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 13px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 4px solid #148389;
}

/*
=================================
3. HELPER CSS
=================================
*/
/***********************/
/****** Utilities ******/
/***********************/
/* Font Weight Utilities */
.thin {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.x-bold {
  font-weight: 900;
}

/* Font Size Utilities */
.font-1x {
  font-size: 1.1rem;
}

.font-2x {
  font-size: 1.2rem;
}

.font-3x {
  font-size: 1.3rem;
}

.font-4x {
  font-size: 1.4rem;
}

.font-5x {
  font-size: 1.5rem;
}

.font-6x {
  font-size: 1.6rem;
}

.font-7x {
  font-size: 1.7rem;
}

.font-8x {
  font-size: 1.8rem;
}

.font-9x {
  font-size: 1.9rem;
}

.font-10x {
  font-size: 2rem;
}

/* Margin Utilities */
.nom {
  margin: 0 !important;
}

.nom-tb {
  margin-top: 0;
  margin-bottom: 0 !important;
}

.m-1x {
  margin: 1.667rem 1.667rem 1.667rem 1.667rem !important;
}

.m-2x {
  margin: 3.334rem 3.334rem 3.334rem 3.334rem !important;
}

.m-3x {
  margin: 5.001rem 5.001rem 5.001rem 5.001rem !important;
}

.m-4x {
  margin: 6.668rem 6.668rem 6.668rem 6.668rem !important;
}

.m-5x {
  margin: 8.335rem 8.335rem 8.335rem 8.335rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1x {
  margin-top: 1.667rem !important;
}

.mt-2x {
  margin-top: 3.334rem !important;
}

.mt-3x {
  margin-top: 5.001rem !important;
}

.mt-4x {
  margin-top: 6.668rem !important;
}

.mt-5x {
  margin-top: 8.335rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1x {
  margin-bottom: 1.667rem !important;
}

.mb-2x {
  margin-bottom: 3.334rem !important;
}

.mb-3x {
  margin-bottom: 5.001rem !important;
}

.mb-4x {
  margin-bottom: 6.668rem !important;
}

.mb-5x {
  margin-bottom: 8.335rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1x {
  margin-left: 1.667rem !important;
}

.ml-2x {
  margin-left: 3.334rem !important;
}

.ml-3x {
  margin-left: 5.001rem !important;
}

.ml-4x {
  margin-left: 6.668rem !important;
}

.ml-5x {
  margin-left: 8.335rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1x {
  margin-right: 1.667rem !important;
}

.mr-2x {
  margin-right: 3.334rem !important;
}

.mr-3x {
  margin-right: 5.001rem !important;
}

.mr-4x {
  margin-right: 6.668rem !important;
}

.mr-5x {
  margin-right: 8.335rem !important;
}

/* Padding Utilities */
.nop {
  padding: 0 !important;
}

.nop-tb {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1x {
  padding: 1.667rem 1.667rem 1.667rem 1.667rem !important;
}

.p-2x {
  padding: 3.334rem 3.334rem 3.334rem 3.334rem !important;
}

.p-3x {
  padding: 5.001rem 5.001rem 5.001rem 5.001rem !important;
}

.p-4x {
  padding: 6.668rem 6.668rem 6.668rem 6.668rem !important;
}

.p-5x {
  padding: 8.335rem 8.335rem 8.335rem 8.335rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1x {
  padding-top: 1.667rem !important;
}

.pt-2x {
  padding-top: 3.334rem !important;
}

.pt-3x {
  padding-top: 5.001rem !important;
}

.pt-4x {
  padding-top: 6.668rem !important;
}

.pt-5x {
  padding-top: 8.335rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1x {
  padding-bottom: 1.667rem !important;
}

.pb-2x {
  padding-bottom: 3.334rem !important;
}

.pb-3x {
  padding-bottom: 5.001rem !important;
}

.pb-4x {
  padding-bottom: 6.668rem !important;
}

.pb-5x {
  padding-bottom: 8.335rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1x {
  padding-left: 1.667rem !important;
}

.pl-2x {
  padding-left: 3.334rem !important;
}

.pl-3x {
  padding-left: 5.001rem !important;
}

.pl-4x {
  padding-left: 6.668rem !important;
}

.pl-5x {
  padding-left: 8.335rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1x {
  padding-right: 1.667rem !important;
}

.pr-2x {
  padding-right: 3.334rem !important;
}

.pr-3x {
  padding-right: 5.001rem !important;
}

.pr-4x {
  padding-right: 6.668rem !important;
}

.pr-5x {
  padding-right: 8.335rem !important;
}

/* Text Color Utilities */
.text-muted {
  color: #a4a4a4 !important;
}

.text-primary {
  color: #148389 !important;
}

.text-secondary {
  color: #e65400 !important;
}

.text-success {
  color: #41c741 !important;
}

.text-info {
  color: #00c4ff !important;
}

.text-warning {
  color: #ffc800 !important;
}

.text-danger {
  color: #e62c22 !important;
}

/* Background Color Utilities */
.bg-primary {
  background: -moz-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: -webkit-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: linear-gradient(135deg, #148389 0%, #01ccff 100%) !important;
}

.bg-secondary {
  background: -moz-linear-gradient(-45deg, #e65400 0%, #ff1e01 100%) !important;
  background: -webkit-linear-gradient(-45deg, #e65400 0%, #ff1e01 100%) !important;
  background: linear-gradient(135deg, #e65400 0%, #ff1e01 100%) !important;
}

.bg-success {
  background: -moz-linear-gradient(-45deg, #41c741 0%, #73cd55 100%) !important;
  background: -webkit-linear-gradient(-45deg, #41c741 0%, #73cd55 100%) !important;
  background: linear-gradient(135deg, #41c741 0%, #73cd55 100%) !important;
}

.bg-info {
  background: -moz-linear-gradient(-45deg, #00c4ff 0%, #1afffb 100%) !important;
  background: -webkit-linear-gradient(-45deg, #00c4ff 0%, #1afffb 100%) !important;
  background: linear-gradient(135deg, #00c4ff 0%, #1afffb 100%) !important;
}

.bg-warning {
  background: -moz-linear-gradient(-45deg, #ffc800 0%, #ff941a 100%) !important;
  background: -webkit-linear-gradient(-45deg, #ffc800 0%, #ff941a 100%) !important;
  background: linear-gradient(135deg, #ffc800 0%, #ff941a 100%) !important;
}

.bg-danger {
  background: -moz-linear-gradient(-45deg, #e62c22 0%, #e9395c 100%) !important;
  background: -webkit-linear-gradient(-45deg, #e62c22 0%, #e9395c 100%) !important;
  background: linear-gradient(135deg, #e62c22 0%, #e9395c 100%) !important;
}

.bg-light {
  background: -moz-linear-gradient(-45deg, #f7f7f7 0%, #fbfbfb 100%) !important;
  background: -webkit-linear-gradient(-45deg, #f7f7f7 0%, #fbfbfb 100%) !important;
  background: linear-gradient(135deg, #f7f7f7 0%, #fbfbfb 100%) !important;
}

.bg-dark {
  background: -moz-linear-gradient(-45deg, #222222 0%, #2f2f2f 100%) !important;
  background: -webkit-linear-gradient(-45deg, #222222 0%, #2f2f2f 100%) !important;
  background: linear-gradient(135deg, #222222 0%, #2f2f2f 100%) !important;
}

/* Background Pattern Utilities */
.bg-pattern-1 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-1.png);
}

.bg-pattern-2 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-2.png);
}

.bg-pattern-3 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-3.png);
}

.bg-pattern-4 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-4.png);
}

.bg-pattern-5 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-5.png);
}

.bg-pattern-6 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-6.png);
}

.bg-pattern-7 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-7.png);
}

.bg-pattern-8 {
  background-attachment: fixed;
  background-image: url(../images/bg-pattern-8.png);
}

/* Border Utilities */
.border {
  border: 2px solid #f7f7f7 !important;
}

.border-bottom {
  border-bottom: 2px solid #f7f7f7 !important;
}

.border-top {
  border-top: 2px solid #f7f7f7 !important;
}

.border-left {
  border-left: 2px solid #f7f7f7 !important;
}

.border-right {
  border-right: 2px solid #f7f7f7 !important;
}

.border-primary {
  border-color: #148389 !important;
}

.border-secondary {
  border-color: #e65400 !important;
}

.border-success {
  border-color: #41c741 !important;
}

.border-info {
  border-color: #00c4ff !important;
}

.border-warning {
  border-color: #ffc800 !important;
}

.border-danger {
  border-color: #e62c22 !important;
}

.border-light {
  border-color: #f7f7f7 !important;
}

.border-dark {
  border-color: #222222 !important;
}

/* Transitions */
.collapsing, .fade {
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

/* Miscellaneous Utilities */
small, .small {
  font-size: 90%;
}

.lead {
  font-size: 1.06rem;
  line-height: 1.55em;
}

hr.divider {
  border: 0;
  height: 5px;
  max-width: 50px;
  margin: 0 0 3.333rem 0;
  background: -moz-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: -webkit-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: linear-gradient(135deg, #148389 0%, #01ccff 100%) !important;
}

/*
=================================
4. GENERAL CSS
=================================
*/
/**************************/
/****** Hero Section ******/
/**************************/
.hero-1 {
  padding: 100px 0 100px 0px;
}

.hero-2 {
  min-height: calc(100vh - 69px);
  display: flex;
}

.hero-3 {
  padding: 100px 0 0 0;
}

/*************************/
/****** Counter Box ******/
/*************************/
.counter-box .counter-body .count {
  color: #148389;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/**********************/
/****** Features ******/
/**********************/
.features {
  list-style: none;
  padding: 0;
}

.features li {
  overflow: hidden;
  margin-bottom: 1.667rem;
}

.features li .icon {
  display: inline-block;
  color: #148389;
  vertical-align: middle;
  font-size: 2.5rem;
  margin-right: 1.333rem;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.features li:hover .icon {
  transform: rotateY(180deg);
}

/************************/
/****** Icon Boxes ******/
/************************/
.icon-box-1 {
  overflow: hidden;
}

.icon-box-1 .icon {
  color: #148389;
  font-size: 3.2rem;
  line-height: 1;
  margin: 0 auto 1.333rem auto;
  overflow: hidden;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.icon-box-1:hover .icon {
  transform: rotateY(180deg);
}

/********************/
/****** Header ******/
/********************/
header {
  position: relative;
  z-index: 999;
}

.sticky-header {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
}

.stick {
  position: fixed;
  top: 0;
  width: 100%;
  animation: slideHeader 750ms ease-out;
}

@keyframes slideHeader {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

/****************************/
/****** Navbar Widgets ******/
/****************************/
.navbar-light .widget-item .icon {
  color: #f7f7f7;
}

.navbar-dark .widget-item .icon {
  color: #222222;
}

.navbar-widgets {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 0 75px;
  display: flex;
}

.navbar-widgets .widget-item .icon {
  font-size: 1.6rem;
}

.navbar-widgets .widget-item + .widget-item {
  margin-left: 1.667rem;
}

.cart-widget .cart-count {
  position: absolute;
  top: -5px;
  right: -15px;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Mini Cart in Modal */
.cart-list {
  list-style: none;
  padding: 0;
}

.cart-list .cart-item {
  display: flex;
  padding: 1.333rem 0;
  align-items: center;
  justify-content: space-between;
}

.cart-list .cart-item + .cart-item {
  border-top: 2px solid #f7f7f7;
}

/*************************/
/****** Pricing Box ******/
/*************************/
.pricing {
  perspective: 1000px;
}

.pricing .pricing-box {
  text-align: center;
  transform-style: preserve-3d;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.pricing .pricing-box .pricing-header .plan-name {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1.667rem;
}

.pricing .pricing-box .pricing-header .price {
  color: #148389;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
}

.pricing .pricing-box .pricing-header .plan-tenure {
  margin-top: 1.667rem;
  text-transform: capitalize;
}

.pricing .pricing-box .pricing-body {
  margin-top: 3.333rem;
}

.pricing .pricing-box .pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .pricing-box .pricing-body ul li + li {
  margin-top: 1.8rem;
}

.pricing .link-pricing, .pricing .meta-pricing {
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.pricing .link-pricing {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 1.667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background: -moz-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: -webkit-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: linear-gradient(135deg, #148389 0%, #01ccff 100%) !important;
  transform: rotateY(180deg) translateZ(1px);
}

.pricing:hover .pricing-box {
  transform: rotateY(180deg);
}

/*************************/
/****** Team Box ******/
/*************************/
.team-box-1 .img-team {
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.team-box-1:hover .img-team {
  transform: rotateY(180deg);
}

.team-box-2 {
  flex-direction: row;
  align-items: center;
}

.team-box-2 .team-box-2-img {
  margin-right: 1.667rem;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.team-box-2:hover .team-box-2-img {
  transform: rotateY(180deg);
}

/***************************/
/****** Portfolio Box ******/
/***************************/
.portfolio {
  perspective: 1000px;
}

.portfolio .portfolio-box {
  transform-style: preserve-3d;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.portfolio .img-portfolio, .portfolio .meta-portfolio {
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.portfolio .meta-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 1.667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background: -moz-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: -webkit-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: linear-gradient(135deg, #148389 0%, #01ccff 100%) !important;
  transform: rotateY(180deg) translateZ(1px);
}

.portfolio:hover .portfolio-box {
  transform: rotateY(180deg);
}

/******************/
/****** Blog ******/
/******************/
.blog-box .img-blog {
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.blog-box:hover .img-blog {
  transform: rotateY(180deg);
}

/***********************/
/****** Brand Box ******/
/***********************/
.brand-box .img-brand {
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.brand-box:hover .img-brand {
  transform: rotateY(180deg);
}

/*************************/
/****** Process Box ******/
/*************************/
.process-box {
  text-align: center;
}

.process-box .process-header {
  color: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 52px;
  font-weight: 900;
  margin: auto;
  border-radius: 50%;
  background: -moz-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: -webkit-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: linear-gradient(135deg, #148389 0%, #01ccff 100%) !important;
}

.process-box .process-body {
  position: relative;
  margin-top: 2.667rem;
  padding-top: 2rem;
  border-top: 2px solid #f7f7f7;
}

.process-box .process-body:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  margin-left: -10px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-left: 2px solid #f7f7f7;
  border-top: 2px solid #f7f7f7;
  transform: rotate(45deg);
}

/*************************/
/****** Star Rating ******/
/*************************/
.star-rating {
  list-style: none;
  padding: 0;
  overflow: hidden;
  display: flex;
}

.star-rating li {
  margin: 0 0.2rem;
  opacity: 0;
  transform: rotateY(180deg);
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.star-rating li i {
  color: #148389;
  font-size: 2rem;
}

.star-rating li.starAnimate {
  opacity: 1;
  transform: rotateY(0deg);
}

/*****************************/
/****** Testimonial Box ******/
/*****************************/
.testimonial-box .testimonial-by {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.667rem;
}

.testimonial-box .testimonial-by .testimonial-name {
  margin-left: 1.333rem;
}

/*******************/
/****** Timer ******/
/*******************/
.timer {
  list-style: none;
  display: flex;
  padding: 0;
  margin-bottom: 0;
  font-size: 1rem;
}

.timer li {
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.timer li + li {
  margin-left: 2.6rem;
}

.timer li + li:before {
  content: ".";
  font-size: 350%;
  opacity: 0.2;
  position: absolute;
  left: -1.733rem;
  top: -0.5333rem;
  line-height: 0.8;
}

.timer .days, .timer .hours, .timer .minutes, .timer .seconds {
  font-weight: 900;
  display: block;
  line-height: 0.8;
  font-size: 350%;
}

/****************************/
/****** Youtube Videos ******/
/****************************/
.youtube {
  position: relative;
  background-size: 200%;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-position: center center;
  overflow: hidden;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.youtube .video-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 126, 230, 0.8);
}

.youtube .btn-play {
  font-size: 2.333rem;
  color: #ffffff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube:hover {
  background-size: 350%;
}

/************************/
/****** Google Map ******/
/************************/
.gmap {
  width: 100%;
}

.gmap #map-pin {
  animation: mapPinBounce 2000ms linear infinite;
}

@keyframes mapPinBounce {
  20%, 100% {
    transform: rotateY(180deg);
  }
}

.gmap #map-pin path {
  fill: #148389;
}

.gmap #map-pin circle {
  fill: #148389;
}

/**************************/
/****** Social Icons ******/
/**************************/
.social {
  display: flex;
  list-style: none;
  padding: 0;
}

.social li a {
  color: #148389;
  font-size: 1.333rem;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.social li + li {
  margin-left: 1.2rem;
}

.contact {
  display: inline-flex;
  color: #148389;
  font-weight: 900;
  font-size: 1.333rem;
  align-items: center;
}

.contact .icon {
  margin-right: 0.6667rem;
  font-size: 1.2em;
  line-height: 1;
}

.contact + .contact {
  margin-left: 1.2rem;
}

/********************/
/****** Footer ******/
/********************/
.footer-pri {
  position: relative;
  padding: 5.001rem 0 5.001rem 0;
}

.footer-sec {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.8335rem 0 0.8335rem 0;
}

.footer {
  background: -moz-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: -webkit-linear-gradient(-45deg, #148389 0%, #01ccff 100%) !important;
  background: linear-gradient(135deg, #148389 0%, #01ccff 100%) !important;
}

.footer .social a {
  color: rgba(255, 255, 255, 0.5);
}

.footer .btn {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer-text, .footer .footer-heading {
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links a {
  display: block;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer .contact {
  color: rgba(255, 255, 255, 0.5);
}

.footer .navbar-brand {
  opacity: 0.5;
  margin: 0;
}

.footer .form-control, .footer .form-control:focus {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .link-list a {
  display: block;
  margin: 0.6rem 0;
}

/***************************/
/****** Miscellaneous ******/
/***************************/
/* Back to Top Link */
#backHome {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.5);
  height: 40px;
  width: 100px;
  border-radius: 0.2667rem 0.2667rem 0 0;
  line-height: 45px;
  text-align: center;
  font-size: 1rem;
  z-index: 99999;
  transform: translate(-50%, -100%);
}

/* Input Placeholder Color */
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  opacity: 1;
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  opacity: 1;
}

::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  opacity: 1;
}

/* Pretty Photo */
a.pp_close {
  background: none !important;
  position: absolute;
  color: #fff;
  font-size: 3rem;
  right: 1.6rem;
  top: 0.3rem;
  opacity: 0.4;
  z-index: 99;
  text-shadow: none;
  text-indent: 0;
}

.pp_description {
  text-align: center;
  font-size: 20px !important;
  font-weight: 900 !important;
  padding: 20px 0;
  line-height: 15px;
}

/*********************/
/****** Plugins ******/
/*********************/
/* Owl Carousel Plugin */
.owl-theme .owl-dots {
  margin-top: 1.667rem !important;
}

.owl-theme .owl-dots .owl-dot span {
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 0.2667rem;
  background-color: #148389 !important;
  opacity: 0.2;
  -moz-transition: 750ms ease all;
  -webkit-transition: 750ms ease all;
  transition: 750ms ease all;
}

.owl-theme .owl-dots .owl-dot.active span {
  opacity: 1;
  width: 2rem;
}

.owl-inverse .owl-dots .owl-dot span {
  background-color: #ffffff !important;
}

/* Typed Plugin */
.typed-cursor {
  opacity: 1;
  animation: blink 750ms infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
=================================
5. RESPONSIVE CSS
=================================
*/
/******************************/
/****** Mobile Utilities ******/
/******************************/
/* Small Devices */
/* Medium Devices */
/* Large Devices */
@media only screen and (min-width: 992px) {
  /* Boxed or Wide */
  .boxed {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  }
  .boxed, .boxed .stick {
    width: 992px;
  }
}

/* Extra Large Devices */
@media only screen and (min-width: 1200px) {
  /* Boxed or Wide */
  .boxed, .boxed .stick {
    width: 1200px;
  }
}
