/*-----------------------------------------------------------------------------------

    Template Name: 
    Template URI: site.com
    Description: 
    Author: Uideck
    Author URI: https://uideck.com/
    Support: https://uideck.com/support/
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
     01.COMMON css 
===========================*/
@import url("https://use.typekit.net/lkd1tcq.css");
body {
  font-family: "quicksand", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #747E88; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

main{
  display: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none; }

i,
span,
a {
  display: inline;
  color: #d9c21c }

a:hover {
  color: #fff }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "soap", sans-serif;
  font-weight: 400;
  color: #47f4ca;
  margin: 0px; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  margin: 0px;
  justify-content: center; }

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; }

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0; }

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #d9c21c;
  padding: 0 40px;
  font-size: 16px;
  line-height: 46px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #d9c21c;
  -webkit-box-shadow: 0px 15px 40px 0px rgba(213, 154, 87, 0.34);
  -moz-box-shadow: 0px 15px 40px 0px rgba(213, 154, 87, 0.34);
  box-shadow: 0px 15px 40px 0px rgba(213, 154, 87, 0.34); }
  .main-btn:hover {
    background-color: #fff;
    color: #D59A57;
    border-color: #D59A57; }
  .main-btn.main-btn-2 {
    background-color: #fff;
    color: #D59A57;
    border-color: #D59A57; }
    .main-btn.main-btn-2:hover {
      background-color: #D59A57;
      border-color: #D59A57;
      color: #fff; }

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 45px;
  color: #47f4ca; }
  @media (max-width: 767px) {
    .section_title .title {
      font-size: 34px; } }
.section_title img {
  margin-top: 10px; }
.section_title p {
  font-size: 30px;
  line-height: 38px;
  color: #38424D; }
  @media (max-width: 767px) {
    .section_title p {
      font-size: 24px; } }
.section_title .text {
  font-size: 16px;
  line-height: 26px;
  color: #747E88;
  margin-top: 30px; }

/*===== All Preloader Style =====*/
.holder {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #233969;
  min-height: 400px;
}
.preloader {
 /* size */
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation: rotatePreloader 2s infinite ease-in;
}
.preloader:before, .preloader:after {
  position: absolute;
  content: "";
  width: 30%;
  height: 30%;
  background-color: #47f4ca;
  z-index: 20;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
}
.preloader:after {
  width: 40%;
  height: 40%;
  background-color: #47f4ca;
  z-index: 19;
}
@keyframes rotatePreloader {
  0% {
    transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
 }
  100% {
    transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
 }
}
.preloader div {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.preloader div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 15%;
  height: 40%;
  background-color: #07b1d5;
  transform: translateX(-50%);
  border-radius: 50%;
}
.preloader div:nth-child(1) {
  transform: rotateZ(0deg);
  animation: rotateCircle1 2s infinite linear;
  z-index: 9;
}
@keyframes rotateCircle1 {
  0% {
    opacity: 0;
 }
  0% {
    opacity: 1;
    transform: rotateZ(36deg);
 }
  7% {
    transform: rotateZ(0deg);
 }
  57% {
    transform: rotateZ(0deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(2) {
  transform: rotateZ(36deg);
  animation: rotateCircle2 2s infinite linear;
  z-index: 8;
}
@keyframes rotateCircle2 {
  5% {
    opacity: 0;
 }
  5.0001% {
    opacity: 1;
    transform: rotateZ(0deg);
 }
  12% {
    transform: rotateZ(-36deg);
 }
  62% {
    transform: rotateZ(-36deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(3) {
  transform: rotateZ(72deg);
  animation: rotateCircle3 2s infinite linear;
  z-index: 7;
}
@keyframes rotateCircle3 {
  10% {
    opacity: 0;
 }
  10.0002% {
    opacity: 1;
    transform: rotateZ(-36deg);
 }
  17% {
    transform: rotateZ(-72deg);
 }
  67% {
    transform: rotateZ(-72deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(4) {
  transform: rotateZ(108deg);
  animation: rotateCircle4 2s infinite linear;
  z-index: 6;
}
@keyframes rotateCircle4 {
  15% {
    opacity: 0;
 }
  15.0003% {
    opacity: 1;
    transform: rotateZ(-72deg);
 }
  22% {
    transform: rotateZ(-108deg);
 }
  72% {
    transform: rotateZ(-108deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(5) {
  transform: rotateZ(144deg);
  animation: rotateCircle5 2s infinite linear;
  z-index: 5;
}
@keyframes rotateCircle5 {
  20% {
    opacity: 0;
 }
  20.0004% {
    opacity: 1;
    transform: rotateZ(-108deg);
 }
  27% {
    transform: rotateZ(-144deg);
 }
  77% {
    transform: rotateZ(-144deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(6) {
  transform: rotateZ(180deg);
  animation: rotateCircle6 2s infinite linear;
  z-index: 4;
}
@keyframes rotateCircle6 {
  25% {
    opacity: 0;
 }
  25.0005% {
    opacity: 1;
    transform: rotateZ(-144deg);
 }
  32% {
    transform: rotateZ(-180deg);
 }
  82% {
    transform: rotateZ(-180deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(7) {
  transform: rotateZ(216deg);
  animation: rotateCircle7 2s infinite linear;
  z-index: 3;
}
@keyframes rotateCircle7 {
  30% {
    opacity: 0;
 }
  30.0006% {
    opacity: 1;
    transform: rotateZ(-180deg);
 }
  37% {
    transform: rotateZ(-216deg);
 }
  87% {
    transform: rotateZ(-216deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(8) {
  transform: rotateZ(252deg);
  animation: rotateCircle8 2s infinite linear;
  z-index: 2;
}
@keyframes rotateCircle8 {
  35% {
    opacity: 0;
 }
  35.0007% {
    opacity: 1;
    transform: rotateZ(-216deg);
 }
  42% {
    transform: rotateZ(-252deg);
 }
  92% {
    transform: rotateZ(-252deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(9) {
  transform: rotateZ(288deg);
  animation: rotateCircle9 2s infinite linear;
  z-index: 1;
}
@keyframes rotateCircle9 {
  40% {
    opacity: 0;
 }
  40.0008% {
    opacity: 1;
    transform: rotateZ(-252deg);
 }
  47% {
    transform: rotateZ(-288deg);
 }
  97% {
    transform: rotateZ(-288deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}
.preloader div:nth-child(10) {
  transform: rotateZ(324deg);
  animation: rotateCircle10 2s infinite linear;
  z-index: 0;
}
@keyframes rotateCircle10 {
  45% {
    opacity: 0;
 }
  45.0009% {
    opacity: 1;
    transform: rotateZ(-288deg);
 }
  52% {
    transform: rotateZ(-324deg);
 }
  102% {
    transform: rotateZ(-324deg);
 }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
 }
}

/*flower2*/
.preloader.flower2 div:nth-child(1) {
  transform: rotateZ(0deg);
  animation: rotateCircleTwo1 1.5s infinite linear;
  z-index: 4;
}
@keyframes rotateCircleTwo1 {
  0% {
    opacity: 0;
 }
  0% {
    opacity: 1;
    transform: rotateZ(72deg);
 }
  12% {
    transform: rotateZ(0deg);
 }
  62% {
    transform: rotateZ(0deg);
 }
  100% {
    transform: rotateZ(-288deg);
    opacity: 1;
 }
}
.preloader.flower2 div:nth-child(2) {
  transform: rotateZ(72deg);
  animation: rotateCircleTwo2 1.5s infinite linear;
  z-index: 3;
}
@keyframes rotateCircleTwo2 {
  10% {
    opacity: 0;
 }
  10.0001% {
    opacity: 1;
    transform: rotateZ(0deg);
 }
  22% {
    transform: rotateZ(-72deg);
 }
  72% {
    transform: rotateZ(-72deg);
 }
  100% {
    transform: rotateZ(-288deg);
    opacity: 1;
 }
}
.preloader.flower2 div:nth-child(3) {
  transform: rotateZ(144deg);
  animation: rotateCircleTwo3 1.5s infinite linear;
  z-index: 2;
}
@keyframes rotateCircleTwo3 {
  20% {
    opacity: 0;
 }
  20.0002% {
    opacity: 1;
    transform: rotateZ(-72deg);
 }
  32% {
    transform: rotateZ(-144deg);
 }
  82% {
    transform: rotateZ(-144deg);
 }
  100% {
    transform: rotateZ(-288deg);
    opacity: 1;
 }
}
.preloader.flower2 div:nth-child(4) {
  transform: rotateZ(216deg);
  animation: rotateCircleTwo4 1.5s infinite linear;
  z-index: 1;
}
@keyframes rotateCircleTwo4 {
  30% {
    opacity: 0;
 }
  30.0003% {
    opacity: 1;
    transform: rotateZ(-144deg);
 }
  42% {
    transform: rotateZ(-216deg);
 }
  92% {
    transform: rotateZ(-216deg);
 }
  100% {
    transform: rotateZ(-288deg);
    opacity: 1;
 }
}
.preloader.flower2 div:nth-child(5) {
  transform: rotateZ(288deg);
  animation: rotateCircleTwo5 1.5s infinite linear;
  z-index: 0;
}
@keyframes rotateCircleTwo5 {
  40% {
    opacity: 0;
 }
  40.0004% {
    opacity: 1;
    transform: rotateZ(-216deg);
 }
  52% {
    transform: rotateZ(-288deg);
 }
  102% {
    transform: rotateZ(-288deg);
 }
  100% {
    transform: rotateZ(-288deg);
    opacity: 1;
 }
}
.preloader.flower2 {
  left: 50%;
  animation-duration: 1.5s;
}
.preloader.flower2 div:before {
  width: 40%;
}

  
/*===========================
     02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.07); }

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .sticky .navbar {
    padding: 10px 0; }

.navbar {
  padding: 15px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }

.navbar-brand {
  padding: 0; }
  .navbar-brand img {
    width: 85px; }

.navbar-toggler {
  padding: 0; }
  .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px; }
  .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0; }
  .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px; } }
@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px; } }

.navbar-nav .nav-item {
  margin-left: 45px;
  position: relative; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
      margin-left: 40px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item {
      margin: 0; } }
  @media (max-width: 767px) {
    .navbar-nav .nav-item {
      margin: 0; } }
  .navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
    font-family: "quicksand", sans-serif;
    position: relative; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #38424D; } }
    @media (max-width: 767px) {
      .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #38424D; } }
  .navbar-nav .nav-item.active > a span, .navbar-nav .nav-item:hover > a span {
    opacity: 1;
    visibility: visible;
    width: 60%; }
    .navbar-nav .nav-item.active > a span::before, .navbar-nav .nav-item:hover > a span::before {
      width: 20%; }
    .navbar-nav .nav-item.active > a span::after, .navbar-nav .nav-item:hover > a span::after {
      width: 15%; }
  .navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .nav-item:hover .sub-menu {
        top: 0; } }
    @media (max-width: 767px) {
      .navbar-nav .nav-item:hover .sub-menu {
        top: 0; } }
  .navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible; } }
    @media (max-width: 767px) {
      .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible; } }
    .navbar-nav .nav-item .sub-menu li {
      display: block; }
      .navbar-nav .nav-item .sub-menu li a {
        display: block;
        padding: 8px 20px;
        color: #38424D; }
        .navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
          padding-left: 25px;
          color: #47f4ca; }
.navbar-nav .sub-nav-toggler {
  display: none; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #38424D;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px; } }
  @media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #38424D;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px; } }
  .navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #38424D;
    border-bottom: 1px solid #38424D;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: -5px; }

.sticky .navbar-toggler .toggler-icon {
  background-color: #38424D; }
.sticky .navbar-nav .nav-item a {
  color: #38424D; }
.sticky .navbar-nav .nav-item.active > a, .sticky .navbar-nav .nav-item:hover > a {
  color: #47f4ca; }

/*===== SLIDER =====*/
.single_slider {
  height: 800px;
  position: relative; }
  @media only screen and (min-width: 1400px) {
    .single_slider {
      height: 900px; } }
  @media (max-width: 767px) {
    .single_slider {
      height: 900px; } }
  .single_slider::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }

.slider_content {
  padding-top: 80px; }
  .slider_content .slider_sub_title {
    font-size: 30px;
    font-family: "quicksand", sans-serif;
    font-weight: 600;
    color: #fff; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider_content .slider_sub_title {
        font-size: 24px; } }
    @media (max-width: 767px) {
      .slider_content .slider_sub_title {
        font-size: 18px; } }
  .slider_content .slider_title {
    font-size: 112px;
    color: #47f4ca;
    margin-top: 15px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .slider_content .slider_title {
        font-size: 102px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider_content .slider_title {
        font-size: 82px; } }
    @media (max-width: 767px) {
      .slider_content .slider_title {
        font-size: 42px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider_content .slider_title {
        font-size: 60px; } }
    .slider_content .slider_title span {
      display: contents;
      color: #47f4ca; }
  .slider_content .location a:link {
    color: #47f4ca; }
  .slider_content .location a:visited {
    color: #d9c21c; }
  .slider_content .location a:hover {
    color: #fff; }
  .slider_content .location {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-top: 35px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider_content .location {
        font-size: 24px; } }
    @media (max-width: 767px) {
      .slider_content .location {
        font-size: 18px; } }
  .slider_content p {
    font-size: 25px;
    color: #fff;
    margin-top: 30px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider_content p {
        font-size: 20px; } }
    @media (max-width: 767px) {
      .slider_content p {
        font-size: 16px; } }
    .slider_content p img {
      display: inline-block; }
      @media (max-width: 767px) {
        .slider_content p img {
          width: 40px; } }
  .slider_image {
    margin-top: 100px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider_image {
        font-size: 20px; } }
    @media (max-width: 767px) {
      .slider_content p {
        font-size: 16px; } }
    .slider_content p img {
      display: inline-block; }
      @media (max-width: 767px) {
        .slider_content p img {
          width: 40px; } }


.slider-active .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 50px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }
  .slider-active .slick-dots li {
    display: inline-block;
    margin: 0 3px; }
    .slider-active .slick-dots li button {
      width: 15px;
      height: 15px;
      background: none;
      border: 2px solid #fff;
      border-radius: 50%;
      font-size: 0;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%); }
    .slider-active .slick-dots li.slick-active button {
      background-color: #fff;
      border-color: #707070; }
.slider-active .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 9;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0; }
  .slider-active .slick-arrow i {
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.58);
    font-size: 26px;
    color: rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .slider-active .slick-arrow:hover i {
    color: #D59A57;
    border-color: #D59A57; }
  .slider-active .slick-arrow.next {
    right: 0;
    left: auto; }
.slider-active:hover .slick-arrow {
  left: 30px;
  opacity: 1; }
  @media only screen and (min-width: 1400px) {
    .slider-active:hover .slick-arrow {
      left: 130px; } }
  .slider-active:hover .slick-arrow.next {
    left: auto;
    right: 30px; }
    @media only screen and (min-width: 1400px) {
      .slider-active:hover .slick-arrow.next {
        right: 130px; } }

/*===========================
     03.COUPLE css 
===========================*/
.single_couple .couple_image {
  overflow: hidden;
  border-radius: 10px; }
  .single_couple .couple_image img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
.single_couple .couple_content {
  width: 90%;
  margin: 0 auto;
  background-color: #233969;
  -webkit-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  -moz-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  margin-top: -70px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_couple .couple_content {
      padding: 15px; } }
  @media (max-width: 767px) {
    .single_couple .couple_content {
      padding: 15px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .single_couple .couple_content {
      padding: 30px; } }
  .single_couple .couple_content .shape {
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70px;
    z-index: -1;
    opacity: 0.26; }
  .single_couple .couple_content .couple_name {
    font-size: 40px;
    color: #D59A57; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .single_couple .couple_content .couple_name {
        font-size: 30px; } }
    @media (max-width: 767px) {
      .single_couple .couple_content .couple_name {
        font-size: 30px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single_couple .couple_content .couple_name {
        font-size: 40px; } }
  .single_couple .couple_content p {
    font-weight: 300;
    margin-top: 25px; }
  .single_couple .couple_content .social {
    margin-top: 30px; }
    .single_couple .couple_content .social li {
      display: inline-block;
      margin: 0 3px; }
      .single_couple .couple_content .social li a {
        width: 35px;
        height: 35px;
        line-height: 33px;
        text-align: center;
        border: 1px solid #747E88;
        color: #747E88;
        font-size: 16px;
        border-radius: 50%;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .single_couple .couple_content .social li a:hover {
          border-color: #D59A57;
          background-color: #D59A57;
          color: #fff; }
.single_couple:hover .couple_image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }
.single_couple:hover .couple_content {
  -webkit-box-shadow: 0px 3px 50px 0px rgba(177, 177, 177, 0.3);
  -moz-box-shadow: 0px 3px 50px 0px rgba(177, 177, 177, 0.3);
  box-shadow: 0px 3px 50px 0px rgba(177, 177, 177, 0.3); }

/*===========================
     04.COMING SOON css 
===========================*/
.coming_soon_area {
  background-color: #233969;
  position: relative;
  overflow: hidden;
  z-index: 5; }

.coming_soon_shape_1 {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1; }
  .coming_soon_shape_1 img {
    width: 130px;
    opacity: 0.31; }

.coming_soon_shape_2 {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: -1; }
  .coming_soon_shape_2 img {
    width: 130px;
    opacity: 0.31; }

.coming_soon_count .single_count {
  width: 150px;
  height: 150px;
  text-align: center;
  background-color: #D59A57;
  border-radius: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .coming_soon_count .single_count {
      width: 120px;
      height: 120px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .coming_soon_count .single_count {
      width: 130px;
      height: 130px; } }
  @media (max-width: 767px) {
    .coming_soon_count .single_count {
      width: 60px;
      height: 60px;
      margin-bottom: 5px;
      margin-right: 5px; } }
  @media (max-width: 767px) {
    .coming_soon_count .single_count {
      width: 100px;
      height: 100px;
      margin-bottom: 10px;
      margin-right: 10px; } }
  .coming_soon_count .single_count::before {
    position: absolute;
    content: '';
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background-color: rgba(213, 154, 87, 0.2);
    top: 10px;
    left: 10px; }
    @media (max-width: 767px) {
      .coming_soon_count .single_count::before {
        top: 5px;
        left: 5px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .coming_soon_count .single_count::before {
        top: 10px;
        left: 10px; } }
  .coming_soon_count .single_count .count_content .count {
    font-size: 60px;
    font-family: "Niconne", cursive;
    color: #fff;
    line-height: 45px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .coming_soon_count .single_count .count_content .count {
        font-size: 50px; } }
    @media (max-width: 767px) {
      .coming_soon_count .single_count .count_content .count {
        font-size: 30px;
        line-height: 30px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .coming_soon_count .single_count .count_content .count {
        font-size: 46px;
        line-height: 50px; } }
  .coming_soon_count .single_count .count_content .times {
    font-size: 25px;
    color: #fff;
    line-height: 45px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .coming_soon_count .single_count .count_content .times {
        font-size: 22px; } }
    @media (max-width: 767px) {
      .coming_soon_count .single_count .count_content .times {
        font-size: 12px;
        line-height: 20px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .coming_soon_count .single_count .count_content .times {
        font-size: 18px;
        line-height: 30px; } }

/*===========================
     05.OUR LOVE css 
===========================*/
.our_love_area {
  background-color: #233969; }

.love_wrapper {
  position: relative;
  margin-top: 30px; }
  @media (max-width: 767px) {
    .love_wrapper {
      margin-top: 0; } }
  .love_wrapper::before {
    width: 1px;
    height: 100%;
    position: absolute;
    content: '';
    background-color: #233969;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media (max-width: 767px) {
      .love_wrapper::before {
        display: none; } }

.single_love .love_content {
  width: 45%; }
  @media (max-width: 767px) {
    .single_love .love_content {
      width: 100%;
      margin-top: 30px; } }
  .single_love .love_content .love_title {
    font-size: 30px;
    color: #47f4ca; }
  .single_love .love_content p {
    margin-top: 30px;
    font-weight: 300; }
.single_love .love_date {
  width: 10%;
  text-align: center; }
  @media (max-width: 767px) {
    .single_love .love_date {
      width: 100%;
      margin-top: 30px; } }
  .single_love .love_date p {
    width: 40px;
    position: relative;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 14px;
    padding: 2px;
    position: relative;
    line-height: 35px;
    padding-bottom: 32px;
    padding-top: 62px;
    background-color: #233969;
    margin: 0 auto; }
    @media (max-width: 767px) {
      .single_love .love_date p {
        width: auto;
        height: 40px;
        padding-left: 62px;
        padding-right: 30px;
        padding-top: 0;
        padding-bottom: 0; } }
    .single_love .love_date p i {
      width: 40px;
      height: 40px;
      line-height: 38px;
      text-align: center;
      border: 1px solid #fff;
      border-radius: 50%;
      color: #fff;
      position: absolute;
      top: -1px;
      left: -1px; }
.single_love .love_image {
  width: 45%; }
  @media (max-width: 767px) {
    .single_love .love_image {
      width: 100%;
      margin-top: 30px; } }
  .single_love .love_image img {
    width: 100%;
    border-radius: 10px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .single_love .love_image img {
        height: 415px;
        object-fit: cover;
        object-position: center; } }

/*===========================
     06.GALLERY css 
===========================*/
.gallery_area {
  background-color: #233969; }
.gallery_wrapper {
  margin-top: 30px;
  padding-bottom: 30px;
  background-color: #233969; }

.single_gallery {
  position: relative; }
  .single_gallery .gallery_image img {
    width: 100%; 
    border-radius: 10px; }
  .single_gallery .gallery_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .single_gallery .gallery_content::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 0;
      top: 0;
      left: 0;
      background-color: rgba(56, 66, 77, 0.85);
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .single_gallery .gallery_content .gallery_icon {
      position: absolute;
      top: 50%;
      width: 100%;
      text-align: center;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
      .single_gallery .gallery_content .gallery_icon li {
        display: inline-block;
        margin: 0 5px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        opacity: 0;
        visibility: hidden; }
        .single_gallery .gallery_content .gallery_icon li:first-child {
          -webkit-transform: translateX(-100%);
          -moz-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
          -o-transform: translateX(-100%);
          transform: translateX(-100%); }
        .single_gallery .gallery_content .gallery_icon li:last-child {
          -webkit-transform: translateX(100%);
          -moz-transform: translateX(100%);
          -ms-transform: translateX(100%);
          -o-transform: translateX(100%);
          transform: translateX(100%); }
        .single_gallery .gallery_content .gallery_icon li a {
          width: 40px;
          height: 40px;
          line-height: 36px;
          text-align: center;
          font-size: 16px;
          color: #D59A57;
          border: 2px solid #D59A57;
          border-radius: 50%; }
  .single_gallery:hover .gallery_content::before {
    height: 100%; }
  .single_gallery:hover .gallery_content .gallery_icon li {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
.gallery_image:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.gpopup {
  background-color: #fff;
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center; }
.gpopup-content img {
  background: #fff;
  padding: 20px;
  border-radius: 30px;
  text-align: center; }
.gpopup:target {
  display: flex; }

/*===========================
     07.EVENT css 
===========================*/
.event_area {
  background-color: #07b1d5; }

.event_area .title {
  color: #fff; }

.single_event .event_image {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }
  .single_event .event_image img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
.single_event .event_content {
  padding: 25px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #d9c21c;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(177, 177, 177, 0.35);
  -moz-box-shadow: 0px 3px 6px 0px rgba(177, 177, 177, 0.35);
  box-shadow: 0px 3px 6px 0px rgba(177, 177, 177, 0.35);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .single_event .event_content .date {
    font-size: 16px;
    color: #fff; }
  .single_event .event_content .event_title {
    font-size: 30px;
    color: #fff;
    margin-top: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .single_event .event_content p {
    margin-top: 15px; }
  .single_event .event_content .more {
    color: #747E88;
    margin-top: 15px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .single_event .event_content .more:hover {
      color: #D59A57; }
.single_event:hover .event_image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }
.single_event:hover .event_content {
  -webkit-box-shadow: 0px 3px 16px 0px rgba(177, 177, 177, 0.35);
  -moz-box-shadow: 0px 3px 16px 0px rgba(177, 177, 177, 0.35);
  box-shadow: 0px 3px 16px 0px rgba(177, 177, 177, 0.35); }

/*===========================
    09.TESTIMONIAL css 
===========================*/
.testimonial_area {
  background-color: #233969;
  position: relative;
  overflow: hidden;
  z-index: 9; }

.testimonial_shape_1 {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1; }
  .testimonial_shape_1 img {
    width: 130px;
    opacity: 0.31; }

.testimonial_shape_2 {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: -1; }
  .testimonial_shape_2 img {
    width: 130px;
    opacity: 0.31; }

.single_testimonial .testimonial_author img {
  border-radius: 50%;
  padding: 5px;
  -webkit-box-shadow: 0px 3px 13px 0px rgba(213, 154, 87, 0.35);
  -moz-box-shadow: 0px 3px 13px 0px rgba(213, 154, 87, 0.35);
  box-shadow: 0px 3px 13px 0px rgba(213, 154, 87, 0.35);
  display: inline-block;
  background-color: #fff; }
.single_testimonial .testimonial_content .author_name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #38424D;
  margin-top: 20px; }
.single_testimonial .testimonial_content .sub_title {
  color: #747E88;
  margin-top: 5px; }

.testimonial_wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  left: -150px;
  z-index: 9;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial_wrapper .slick-arrow {
      left: -80px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .testimonial_wrapper .slick-arrow {
      left: -45px; } }
  .testimonial_wrapper .slick-arrow i {
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border: 2px solid rgba(116, 126, 136, 0.58);
    font-size: 26px;
    color: rgba(116, 126, 136, 0.58);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .testimonial_wrapper .slick-arrow i {
        width: 40px;
        height: 40px;
        line-height: 36px;
        font-size: 20px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testimonial_wrapper .slick-arrow i {
        width: 40px;
        height: 40px;
        line-height: 36px;
        font-size: 20px; } }
  .testimonial_wrapper .slick-arrow:hover i {
    color: #D59A57;
    border-color: #D59A57; }
  .testimonial_wrapper .slick-arrow.next {
    right: -150px;
    left: auto; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .testimonial_wrapper .slick-arrow.next {
        right: -80px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testimonial_wrapper .slick-arrow.next {
        right: -45px; } }

/*===========================
       10.CONTACT css 
===========================*/
p.form-message.success, p.form-message.error {
  font-size: 16px;
  color: #333;
  background: #ddd;
  padding: 10px 15px;
  margin-top: 15px;
  margin-left: 15px; }
  p.form-message.success.form-message.error, p.form-message.error.form-message.error {
    color: #f00; }

.contact_wrapper {
  padding: 80px 110px;
  -webkit-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  -moz-box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  box-shadow: 0px 3px 32px 0px rgba(177, 177, 177, 0.16);
  background-color: #fff; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact_wrapper {
      padding: 30px 50px; } }
  @media (max-width: 767px) {
    .contact_wrapper {
      padding: 30px; } }

.single_form {
  margin-top: 30px; }
  .single_form textarea, .single_form input {
    padding: 0 25px;
    border: 2px solid #F1F1F1;
    border-radius: 5px;
    height: 55px;
    width: 100%;
    color: #747E88;
    width: 100%; }
  .single_form textarea {
    padding-top: 15px;
    resize: none;
    height: 185px; }

/*===========================
       11.FOOTER css 
===========================*/
.footer_area {
  background-color: #233969;
  position: relative;
  z-index: 9;
  overflow: hidden; }

.footer_shape_1 {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1; }
  .footer_shape_1 img {
    width: 130px;
    opacity: 0.31; }

@media (max-width: 160px) {
  .footer_widget .footer_logo a img {
    width: 160px; } }
.footer_widget .footer_title {
  margin-top: 30px; }
  .footer_widget .footer_title .title {
    font-size: 52px;
    color: #47f4ca; }
    @media (max-width: 160px) {
      .footer_widget .footer_title .title {
        font-size: 38px; } }
    .footer_widget .footer_title .title span {
      color: #47f4ca; }
.footer_widget .footer_menu {
  margin-top: 30px; }
  .footer_widget .footer_menu li {
    display: inline-block;
    margin: 0 20px; }
    .footer_widget .footer_menu li a {
      font-size: 16px;
      color: #47f4ca;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .footer_widget .footer_menu li a:hover {
        color: #47f4ca; }

.footer_copyright {
  border-top: 2px solid #47f4ca;
  padding: 40px 0; }

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background-color: #47f4ca;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none; }
  .back-to-top:hover {
    color: #fff;
    background-color: #47f4ca; }

/*# sourceMappingURL=style.css.map */
