/*-------------------------------------------------------------------------------------------------------
Template Name      : Fixyland - Hotel and Resort Booking HTML Template
Author             : pus_infotech
Version            : 1.0
Author Portfolio   : https://themeforest.net/user/pus_infotech
---------------------------------------------------------------------------------------------------------
NOTE:This is the stylesheet of the template, This file contains the styling for the actual Template
---------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------
[  CSS INDEX START ]
-------------------------------------------------------------------
1. base css 
    - variables
    - mixin
    - reset
    - typography
    - spacing
2. theme css
    - common
    - animations
    - theme-class 
    - preloader
3.components css
    - header
    - footer
    - widget
    - offcanvus
    - accordion
4. page styles
    - index
    - index-2
    - index-3
    - about
    - services
    - gallery
    - booking
    - restaurant
    - blog
    - contact
-------------------------------------------------------------------
[ CSS INDEX END ]
-----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #1f8f6a;
  --secondary-color: #e5c466;
  --white-color: #ffffff;
  --black-color: #181a17;
  --text-color: #666666;
  --body-color: #e9f0ec;
  --dark-color: #1a1a1a;
  --light-color: #767676;
  --grey-color: #272727;
  --border-color: #e5e5e5;
  --border-radius-1: 5px;
  --border-radius-2: 20px;
  --gradient-color: linear-gradient(0, rgba(255, 255, 255, 0) 0%, var(--primary-color) 100%);
  --title-fonts: "Montserrat", sans-serif;
  --body-fonts: "Montserrat", sans-serif;
  --transition: all 0.5s ease-in-out;
}

::-moz-selection {
  text-shadow: none;
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  text-shadow: none;
  background: var(--primary-color);
  color: var(--white-color);
}

::selection {
  text-shadow: none;
  background: var(--primary-color);
  color: var(--white-color);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
}

body {
  background: var(--body-color);
  font-family: var(--body-fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--text-color);
  overflow: hidden;
}

div,
section {
  position: relative;
}

.container {
  max-width: 1424px;
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}

.container-fluid {
  max-width: 1800px;
}

.mfp-iframe-scaler {
  position: unset;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-fonts);
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  color: var(--black-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

a {
  color: inherit;
  outline: none !important;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

button,
a:hover,
a:focus {
  text-decoration: none;
  outline: none !important;
  color: inherit;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

pre {
  background: var(--white-color);
  padding: 15px;
  border: 1px solid var(--light-color);
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid var(--light-color);
  border-top: 0px;
}

b,
strong {
  font-weight: 600;
}

ol,
ul {
  padding-left: 0;
  margin-bottom: 0;
}

ol li {
  list-style: decimal;
}

ol ol {
  padding-left: 25px;
}

ul li {
  list-style: none;
}

dl dd {
  margin-bottom: 15px;
}

dl dd:last-child {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table td,
table th {
  padding: 4px 8px;
  font-size: 13px;
  text-align: center;
}

blockquote {
  background-color: var(--body-color);
  border-left: 5px solid var(--primary-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  position: relative;
  padding: 30px;
  margin-bottom: 20px;
}
blockquote::before {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 22px;
  bottom: 10px;
  font-size: 90px;
  opacity: 0.1;
  line-height: 98px;
  color: var(--primary-color);
}
blockquote strong {
  font-family: var(--title-fonts);
  color: var(--primary-color);
  font-style: italic;
  font-weight: 600;
  display: block;
  padding-top: 20px;
}

input,
.form-control,
.form-select {
  width: 100%;
  float: none;
  font-size: 16px;
  font-weight: normal;
  padding: 0 15px;
  height: 56px;
  line-height: 56px;
  outline: none;
  border-color: transparent;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

input:focus,
input:hover,
textarea:hover,
textarea:focus,
textarea:hover,
.form-control:hover,
.form-control:focus,
.form-select:focus,
.form-select:hover {
  outline: none;
  border-color: var(--primary-color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

input[type=radio],
input[type=checkbox] {
  width: auto;
  height: auto;
  float: none;
  margin-right: 5px;
}

textarea {
  overflow: hidden;
  resize: none;
  color: var(--dark-color);
  width: 100%;
  float: none;
  padding: 10px;
  outline: none;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.field-inner.with-icon i {
  position: absolute;
  bottom: 0;
  right: 20px;
  top: 30px;
  margin: auto;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px bottom 50%;
  background-size: 20px 20px;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}

label {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--white-color);
}

h1 {
  font-size: 62px;
  line-height: 1.25;
  font-weight: 800;
}
@media (max-width: 991px) {
  h1 {
    font-size: 52px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 42px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
}
@media (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}
@media (max-width: 991px) {
  h4 {
    font-size: 24px;
    line-height: normal;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

h6 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

p {
  position: relative;
  font-size: 16px;
  line-height: 1.6em;
  color: inherit;
  margin-bottom: 20px;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-105 {
  margin-top: 105px !important;
}

.mt-110 {
  margin-top: 110px !important;
}

.mt-115 {
  margin-top: 115px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mt-125 {
  margin-top: 125px !important;
}

.mt-130 {
  margin-top: 130px !important;
}

.mt-135 {
  margin-top: 135px !important;
}

.mt-140 {
  margin-top: 140px !important;
}

.mt-145 {
  margin-top: 145px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mt-155 {
  margin-top: 155px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

.mt-165 {
  margin-top: 165px !important;
}

.mt-170 {
  margin-top: 170px !important;
}

.mt-175 {
  margin-top: 175px !important;
}

.mt-180 {
  margin-top: 180px !important;
}

.mt-185 {
  margin-top: 185px !important;
}

.mt-190 {
  margin-top: 190px !important;
}

.mt-195 {
  margin-top: 195px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-105 {
  margin-bottom: 105px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-125 {
  margin-bottom: 125px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.mb-135 {
  margin-bottom: 135px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

.mb-145 {
  margin-bottom: 145px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-155 {
  margin-bottom: 155px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.mb-165 {
  margin-bottom: 165px !important;
}

.mb-170 {
  margin-bottom: 170px !important;
}

.mb-175 {
  margin-bottom: 175px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mb-185 {
  margin-bottom: 185px !important;
}

.mb-190 {
  margin-bottom: 190px !important;
}

.mb-195 {
  margin-bottom: 195px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.ml-105 {
  margin-left: 105px !important;
}

.ml-110 {
  margin-left: 110px !important;
}

.ml-115 {
  margin-left: 115px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.ml-125 {
  margin-left: 125px !important;
}

.ml-130 {
  margin-left: 130px !important;
}

.ml-135 {
  margin-left: 135px !important;
}

.ml-140 {
  margin-left: 140px !important;
}

.ml-145 {
  margin-left: 145px !important;
}

.ml-150 {
  margin-left: 150px !important;
}

.ml-155 {
  margin-left: 155px !important;
}

.ml-160 {
  margin-left: 160px !important;
}

.ml-165 {
  margin-left: 165px !important;
}

.ml-170 {
  margin-left: 170px !important;
}

.ml-175 {
  margin-left: 175px !important;
}

.ml-180 {
  margin-left: 180px !important;
}

.ml-185 {
  margin-left: 185px !important;
}

.ml-190 {
  margin-left: 190px !important;
}

.ml-195 {
  margin-left: 195px !important;
}

.ml-200 {
  margin-left: 200px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mr-105 {
  margin-right: 105px !important;
}

.mr-110 {
  margin-right: 110px !important;
}

.mr-115 {
  margin-right: 115px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mr-125 {
  margin-right: 125px !important;
}

.mr-130 {
  margin-right: 130px !important;
}

.mr-135 {
  margin-right: 135px !important;
}

.mr-140 {
  margin-right: 140px !important;
}

.mr-145 {
  margin-right: 145px !important;
}

.mr-150 {
  margin-right: 150px !important;
}

.mr-155 {
  margin-right: 155px !important;
}

.mr-160 {
  margin-right: 160px !important;
}

.mr-165 {
  margin-right: 165px !important;
}

.mr-170 {
  margin-right: 170px !important;
}

.mr-175 {
  margin-right: 175px !important;
}

.mr-180 {
  margin-right: 180px !important;
}

.mr-185 {
  margin-right: 185px !important;
}

.mr-190 {
  margin-right: 190px !important;
}

.mr-195 {
  margin-right: 195px !important;
}

.mr-200 {
  margin-right: 200px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-105 {
  padding-top: 105px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-125 {
  padding-top: 125px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-135 {
  padding-top: 135px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pt-145 {
  padding-top: 145px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-155 {
  padding-top: 155px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pt-165 {
  padding-top: 165px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

.pt-175 {
  padding-top: 175px !important;
}

.pt-180 {
  padding-top: 180px !important;
}

.pt-185 {
  padding-top: 185px !important;
}

.pt-190 {
  padding-top: 190px !important;
}

.pt-195 {
  padding-top: 195px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-105 {
  padding-bottom: 105px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-125 {
  padding-bottom: 125px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pb-135 {
  padding-bottom: 135px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pb-145 {
  padding-bottom: 145px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-155 {
  padding-bottom: 155px !important;
}

.pb-160 {
  padding-bottom: 160px !important;
}

.pb-165 {
  padding-bottom: 165px !important;
}

.pb-170 {
  padding-bottom: 170px !important;
}

.pb-175 {
  padding-bottom: 175px !important;
}

.pb-180 {
  padding-bottom: 180px !important;
}

.pb-185 {
  padding-bottom: 185px !important;
}

.pb-190 {
  padding-bottom: 190px !important;
}

.pb-195 {
  padding-bottom: 195px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pl-105 {
  padding-left: 105px !important;
}

.pl-110 {
  padding-left: 110px !important;
}

.pl-115 {
  padding-left: 115px !important;
}

.pl-120 {
  padding-left: 120px !important;
}

.pl-125 {
  padding-left: 125px !important;
}

.pl-130 {
  padding-left: 130px !important;
}

.pl-135 {
  padding-left: 135px !important;
}

.pl-140 {
  padding-left: 140px !important;
}

.pl-145 {
  padding-left: 145px !important;
}

.pl-150 {
  padding-left: 150px !important;
}

.pl-155 {
  padding-left: 155px !important;
}

.pl-160 {
  padding-left: 160px !important;
}

.pl-165 {
  padding-left: 165px !important;
}

.pl-170 {
  padding-left: 170px !important;
}

.pl-175 {
  padding-left: 175px !important;
}

.pl-180 {
  padding-left: 180px !important;
}

.pl-185 {
  padding-left: 185px !important;
}

.pl-190 {
  padding-left: 190px !important;
}

.pl-195 {
  padding-left: 195px !important;
}

.pl-200 {
  padding-left: 200px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pr-105 {
  padding-right: 105px !important;
}

.pr-110 {
  padding-right: 110px !important;
}

.pr-115 {
  padding-right: 115px !important;
}

.pr-120 {
  padding-right: 120px !important;
}

.pr-125 {
  padding-right: 125px !important;
}

.pr-130 {
  padding-right: 130px !important;
}

.pr-135 {
  padding-right: 135px !important;
}

.pr-140 {
  padding-right: 140px !important;
}

.pr-145 {
  padding-right: 145px !important;
}

.pr-150 {
  padding-right: 150px !important;
}

.pr-155 {
  padding-right: 155px !important;
}

.pr-160 {
  padding-right: 160px !important;
}

.pr-165 {
  padding-right: 165px !important;
}

.pr-170 {
  padding-right: 170px !important;
}

.pr-175 {
  padding-right: 175px !important;
}

.pr-180 {
  padding-right: 180px !important;
}

.pr-185 {
  padding-right: 185px !important;
}

.pr-190 {
  padding-right: 190px !important;
}

.pr-195 {
  padding-right: 195px !important;
}

.pr-200 {
  padding-right: 200px !important;
}

.mt--100 {
  margin-top: -100px;
}

@media only screen and (max-width: 991px) {
  .md-pt-150 {
    padding-top: 150px !important;
  }
  .md-pt-140 {
    padding-top: 140px !important;
  }
  .md-pt-130 {
    padding-top: 130px !important;
  }
  .md-pt-120 {
    padding-top: 120px !important;
  }
  .md-pt-110 {
    padding-top: 110px !important;
  }
  .md-pt-100 {
    padding-top: 100px !important;
  }
  .md-pt-90 {
    padding-top: 90px !important;
  }
  .md-pt-80 {
    padding-top: 80px !important;
  }
  .md-pt-70 {
    padding-top: 70px !important;
  }
  .md-pt-60 {
    padding-top: 60px !important;
  }
  .md-pt-50 {
    padding-top: 50px !important;
  }
  .md-pt-40 {
    padding-top: 40px !important;
  }
  .md-pt-30 {
    padding-top: 30px !important;
  }
  .md-pt-20 {
    padding-top: 20px !important;
  }
  .md-pt-10 {
    padding-top: 10px !important;
  }
  .md-pb-150 {
    padding-bottom: 150px !important;
  }
  .md-pb-140 {
    padding-bottom: 140px !important;
  }
  .md-pb-130 {
    padding-bottom: 130px !important;
  }
  .md-pb-120 {
    padding-bottom: 120px !important;
  }
  .md-pb-110 {
    padding-bottom: 110px !important;
  }
  .md-pb-100 {
    padding-bottom: 100px !important;
  }
  .md-pb-90 {
    padding-bottom: 90px !important;
  }
  .md-pb-80 {
    padding-bottom: 80px !important;
  }
  .md-pb-70 {
    padding-bottom: 70px !important;
  }
  .md-pb-60 {
    padding-bottom: 60px !important;
  }
  .md-pb-50 {
    padding-bottom: 50px !important;
  }
  .md-pb-40 {
    padding-bottom: 40px !important;
  }
  .md-pb-30 {
    padding-bottom: 30px !important;
  }
  .md-pb-20 {
    padding-bottom: 20px !important;
  }
  .md-pb-10 {
    padding-bottom: 10px !important;
  }
  .md-mt--110 {
    margin-top: -110px;
  }
  .md-mt--120 {
    margin-top: -120px;
  }
  .md-mt--130 {
    margin-top: -130px;
  }
  .md-mt--140 {
    margin-top: -140px;
  }
  .md-mt--150 {
    margin-top: -150px;
  }
}
.section-title {
  margin-bottom: 50px;
}
.section-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: var(--primary-color);
  background-color: var(--white-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
}
.section-title .title {
  margin-bottom: 0;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  color: var(--text-color);
  margin-bottom: 15px;
}
.check-list li:nth-last-child(1) {
  margin-bottom: 0;
}
.check-list li .check {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  height: 20px;
  width: 20px;
  border: 1px solid var(--primary-color);
  font-size: 12px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.check-list li .check::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.line-effect {
  background-repeat: no-repeat;
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-image: linear-gradient(var(--black-color), var(--black-color)), linear-gradient(var(--black-color), var(--black-color));
  -webkit-transition: background-size 0.6s linear;
  -ms-transition: background-size 0.6s linear;
  -o-transition: background-size 0.6s linear;
  -moz-transition: background-size 0.6s linear;
  transition: background-size 0.6s linear;
}
.line-effect:hover {
  background-size: 0 1px, 100% 1px;
}

.social-style-one li a {
  background-color: var(--grey-color);
  color: var(--white-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  position: relative;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
.social-style-one li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

button:focus {
  text-decoration: none;
  outline: none;
}

.theme-button {
  font-family: var(--title-fonts);
  text-transform: capitalize;
  line-height: 2;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.theme-button span {
  position: relative;
  z-index: 2;
}
.theme-button svg {
  position: relative;
  margin-left: 10px;
  -webkit-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  -moz-transition: 0.1s;
  transition: 0.1s;
  z-index: 2;
}
.theme-button:hover svg {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.theme-button.theme-button-primary {
  background-color: var(--primary-color);
}
.theme-button.theme-button-primary::after {
  content: "";
  bottom: inherit;
  position: absolute;
  right: inherit;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--black-color);
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.theme-button.theme-button-primary:hover::after {
  width: 100%;
}
.theme-button.theme-button-primary span {
  color: var(--white-color);
}
.theme-button.theme-button-primary svg {
  color: var(--white-color);
}
.theme-button.theme-button-secondary {
  background-color: var(--secondary-color);
}
.theme-button.theme-button-secondary::after {
  content: "";
  bottom: inherit;
  position: absolute;
  right: inherit;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--black-color);
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.theme-button.theme-button-secondary:hover::after {
  width: 100%;
}
.theme-button.theme-button-secondary span {
  color: var(--black-color);
}
.theme-button.theme-button-secondary svg {
  color: var(--black-color);
}
.theme-button.theme-button-secondary:hover span {
  color: var(--white-color);
}
.theme-button.theme-button-secondary:hover svg {
  color: var(--white-color);
}
.theme-button.theme-button-black {
  background-color: var(--black-color);
}
.theme-button.theme-button-black::after {
  content: "";
  bottom: inherit;
  position: absolute;
  right: inherit;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.theme-button.theme-button-black:hover::after {
  width: 100%;
}
.theme-button.theme-button-black span {
  color: var(--white-color);
}
.theme-button.theme-button-black svg {
  color: var(--white-color);
}
.theme-button.theme-button-black:hover span {
  color: var(--white-color);
}
.theme-button.theme-button-black:hover svg {
  color: var(--white-color);
}
.theme-button.theme-button-white {
  background-color: var(--white-color);
}
.theme-button.theme-button-white::after {
  content: "";
  bottom: inherit;
  position: absolute;
  left: 0;
  right: inherit;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--secondary-color);
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.theme-button.theme-button-white:hover::after {
  width: 100%;
}
.theme-button.theme-button-white span {
  color: var(--black-color);
}
.theme-button.theme-button-white svg {
  color: var(--black-color);
}
.theme-button.theme-button-link {
  padding: 0;
  background-color: transparent;
  color: var(--primary-color);
}
.theme-button.theme-button-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -ms-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -o-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -moz-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.theme-button.theme-button-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -ms-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -o-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -moz-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}
.theme-button.theme-button-link:hover::after {
  -webkit-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -ms-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -o-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -moz-transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  transition: 0.3s cubic-bezier(0.48, 0.05, 0.5, 0.94);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}
.theme-button.theme-button-link:hover::before {
  -webkit-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -ms-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -o-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -moz-transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  transition: 0.3s cubic-bezier(0.47, 0.05, 0.5, 0.94) 0.2s;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
}

.breadcrumb-area {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .breadcrumb-area {
    padding: 80px 0;
  }
}
.breadcrumb-area .breadcrumb-inner h1 {
  margin-bottom: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  font-size: 52px;
}
@media (max-width: 991px) {
  .breadcrumb-area .breadcrumb-inner h1 {
    font-size: 40px;
    line-height: normal;
  }
}
.breadcrumb-area .breadcrumb-inner .breadcrumb-wrap {
  display: inline-block;
}
.breadcrumb-area .breadcrumb-inner .breadcrumb-wrap .breadcrumb {
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb-inner .breadcrumb-wrap .breadcrumb .breadcrumb-item {
  padding-left: 10px;
}
.breadcrumb-area .breadcrumb-inner .breadcrumb-wrap .breadcrumb .breadcrumb-item:not(:nth-child(1))::before {
  content: "\f105";
  color: var(--white-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 15px;
  padding-right: 10px;
  top: 0;
  position: relative;
}
.breadcrumb-area .breadcrumb-inner .breadcrumb-wrap .breadcrumb .breadcrumb-item:nth-child(1) {
  padding-left: 0;
}
.breadcrumb-area .breadcrumb-inner .breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
  color: var(--white-color);
}
.breadcrumb-area .breadcrumb-inner .breadcrumb-wrap .breadcrumb .breadcrumb-item a {
  color: var(--white-color);
}

.pagination {
  margin-top: 20px;
}
.pagination nav .page-list {
  padding-left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.pagination nav .page-list li .page-numbers {
  position: relative;
  display: block;
  padding: 0 15px;
  height: 48px;
  width: 48px;
  line-height: 48px;
  text-align: center;
  margin: 0 5px;
  color: var(--white-color);
  background-color: var(--grey-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
.pagination nav .page-list li .page-numbers.current {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.pagination nav .page-list li .page-numbers.prev {
  width: auto;
}
.pagination nav .page-list li .page-numbers.next {
  width: auto;
}
.pagination nav .page-list li .page-numbers:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  text-decoration: none;
  z-index: 2;
}

.scroll-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  width: 50px;
  height: 50px;
  right: 50px;
  bottom: 0;
  background-color: var(--black-color);
  color: var(--white-color);
  border: 1px solid var(--grey-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 9;
}
@media (max-width: 991px) {
  .scroll-to-top {
    width: 40px;
    height: 40px;
    right: 20px;
  }
}
.scroll-to-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 80px;
}
@media (max-width: 991px) {
  .scroll-to-top.show {
    bottom: 20px;
  }
}
.scroll-to-top:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.owl-carousel .owl-nav {
  cursor: inherit;
  position: static;
}
.owl-carousel .owl-nav button {
  position: absolute !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  -o-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
.owl-carousel .owl-nav button.owl-prev {
  outline: none;
  text-align: center;
  text-indent: inherit;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0 !important;
  margin: 0 5px 0 30px;
  border: none;
  left: 0;
  cursor: pointer;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: var(--primary-color);
}
.owl-carousel .owl-nav button.owl-next {
  outline: none;
  text-align: center;
  text-indent: inherit;
  cursor: pointer;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 0 !important;
  margin: 0 5px 0 30px;
  border: none;
  right: 0;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--primary-color);
}
.owl-carousel .owl-nav button:hover {
  color: var(--white-color);
}
.owl-carousel .owl-dots {
  margin-top: 30px;
  line-height: normal;
  position: relative;
  width: 100%;
  text-indent: inherit;
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  outline: none;
  background-color: var(--grey-color);
  border: 1px solid var(--grey-color);
  display: inline-block;
  padding: 0;
  margin: 0 8px;
  height: 16px;
  width: 16px;
  cursor: pointer;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.owl-carousel .owl-dots .owl-dot:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 1;
}
.owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  outline: 1px solid var(--primary-color) !important;
  outline-offset: 4px;
}

.cursor {
  pointer-events: none;
  position: fixed;
  height: 10px;
  width: 10px;
  background-color: var(--white-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  mix-blend-mode: exclusion;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.4s ease;
  transition: transform 0.3s ease, opacity 0.4s ease, -webkit-transform 0.3s ease;
  z-index: 99999;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.cursor.cursor-active {
  opacity: 0.1;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%) scale(2);
  -ms-transform: translate(-50%, -50%) scale(2);
  -o-transform: translate(-50%, -50%) scale(2);
  -moz-transform: translate(-50%, -50%) scale(2);
  transform: translate(-50%, -50%) scale(2);
}

.reveal {
  position: relative;
  visibility: hidden;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
}
.reveal::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes float-y-axis {
  0% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes slide-har {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slide-har-revers {
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  0% {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes waves {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2, 0.2);
    -ms-transform: scale(0.2, 0.2);
    -o-transform: scale(0.2, 0.2);
    -moz-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes updownslow {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes gloPulse {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.primary-color {
  color: var(--primary-color) !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

.white-color {
  color: var(--white-color) !important;
}

.black-color {
  color: var(--black-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-grey {
  background-color: var(--grey-color) !important;
}

label.error {
  color: red !important;
}

.background-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.background-image.background-after.opacity-09::after {
  opacity: 0.9;
}
.background-image.background-after.opacity-08::after {
  opacity: 0.8;
}
.background-image.background-after.opacity-07::after {
  opacity: 0.7;
}
.background-image.background-after.opacity-06::after {
  opacity: 0.6;
}
.background-image.background-after.opacity-05::after {
  opacity: 0.5;
}
.background-image.background-after.opacity-04::after {
  opacity: 0.4;
}
.background-image.background-after.opacity-03::after {
  opacity: 0.3;
}
.background-image.background-after.opacity-02::after {
  opacity: 0.2;
}
.background-image.background-after.opacity-01::after {
  opacity: 0.1;
}
.background-image.background-after::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--black-color);
}
.background-image.background-fixed {
  background-attachment: fixed;
}

.background-patten {
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.loaded .loader-wrapper {
  visibility: hidden;
}
.loaded .loader-wrapper .loader {
  top: -100%;
  opacity: 0;
}
.loaded .loader-wrapper .loder-section.left-section {
  left: -100%;
}
.loaded .loader-wrapper .loder-section.right-section {
  right: -100%;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 666;
  -webkit-transition: 0.8s 1s ease;
  -ms-transition: 0.8s 1s ease;
  -o-transition: 0.8s 1s ease;
  -moz-transition: 0.8s 1s ease;
  transition: 0.8s 1s ease;
}
.loader-wrapper .loader {
  position: relative;
  display: block;
  z-index: 201;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 1s 1s ease;
  -ms-transition: all 1s 1s ease;
  -o-transition: all 1s 1s ease;
  -moz-transition: all 1s 1s ease;
  transition: all 1s 1s ease;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
.loader-wrapper .loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid transparent;
  border-right-color: var(--white-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  -o-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}
.loader-wrapper .loader::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 3px solid transparent;
  border-left-color: var(--secondary-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.loader-wrapper .loder-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--dark-color);
  z-index: 2;
}
.loader-wrapper .loder-section.left-section {
  left: 0;
  -webkit-transition: 1s 1.4s ease;
  -ms-transition: 1s 1.4s ease;
  -o-transition: 1s 1.4s ease;
  -moz-transition: 1s 1.4s ease;
  transition: 1s 1.4s ease;
}
.loader-wrapper .loder-section.right-section {
  right: 0;
  -webkit-transition: 1s 1.4s ease;
  -ms-transition: 1s 1.4s ease;
  -o-transition: 1s 1.4s ease;
  -moz-transition: 1s 1.4s ease;
  transition: 1s 1.4s ease;
}

.header {
  position: relative;
  z-index: 99;
  width: 100%;
}
.header .header-top {
  background-color: var(--primary-color);
}
.header .header-top .header-top-left {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header-top .header-top-left .header-contact-info {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header-top .header-top-left .header-contact-info li {
  position: relative;
  padding-left: 20px;
  margin-right: 30px;
}
.header .header-top .header-top-left .header-contact-info li:nth-last-child(1) {
  margin-right: 0;
}
.header .header-top .header-top-left .header-contact-info li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 9px;
  left: 0;
  background-color: var(--secondary-color);
}
.header .header-top .header-top-left .header-contact-info li p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--white-color);
}
.header .header-top .header-top-right .header-social-media {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header-top .header-top-right .header-social-media li {
  height: 45px;
  width: 45px;
  line-height: 45px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header-top .header-top-right .header-social-media li a {
  font-size: 16px;
  color: var(--white-color);
}
.header .header-top .header-top-right .header-social-media li a:hover {
  color: var(--secondary-color);
}
.header .header-lower {
  background-color: var(--grey-color);
}
.header .header-lower::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100px;
  top: 54%;
  background-color: var(--white-color);
  -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .header .header-lower::after {
    width: 480px;
    height: 84px;
  }
}
.header .header-content .logo-box {
  z-index: 10;
  padding: 10px 0;
}
.header .header-content .logo-box .logo a {
  display: inline-block;
}
.header .header-content .logo-box .logo a img {
  display: inline-block;
  max-width: 100%;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.header .header-content .header-navigation nav.main-menu {
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .header .header-content .header-navigation nav.main-menu {
    display: none;
  }
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse {
  padding: 0;
  float: left;
  display: block !important;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation {
  margin: 0;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li {
  display: inline-block;
  margin-right: 30px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  /* level one */
}
@media (max-width: 1499px) {
  .header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li {
    margin-right: 15px;
  }
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li.current > a {
  opacity: 1;
  color: var(--primary-color) !important;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li.dropdown > a {
  padding-right: 15px;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li.dropdown > a::before {
  position: absolute;
  content: "\f107";
  right: 0;
  line-height: normal;
  font-weight: 400;
  font-size: 12px;
  font-family: "FontAwesome";
  height: 100%;
  top: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > a {
  color: var(--primary-color);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: perspective(300px) scaleY(1) translateZ(0);
  -ms-transform: perspective(300px) scaleY(1) translateZ(0);
  -o-transform: perspective(300px) scaleY(1) translateZ(0);
  -moz-transform: perspective(300px) scaleY(1) translateZ(0);
  transform: perspective(300px) scaleY(1) translateZ(0);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > ul > li:hover > a {
  padding-left: 30px;
  color: var(--black-color);
  background-color: var(--secondary-color);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > ul > li:hover > a::before {
  opacity: 1;
  color: var(--black-color);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > ul > li:hover > a::after {
  color: var(--black-color);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  padding: 31px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--white-color);
  text-transform: capitalize;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul {
  position: absolute;
  width: 15rem;
  opacity: 0;
  background-color: var(--primary-color);
  visibility: hidden;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: perspective(300px) scaleY(0) translateZ(30px);
  -ms-transform: perspective(300px) scaleY(0) translateZ(30px);
  -o-transform: perspective(300px) scaleY(0) translateZ(30px);
  -moz-transform: perspective(300px) scaleY(0) translateZ(30px);
  transform: perspective(300px) scaleY(0) translateZ(30px);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li {
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* level two */
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li.dropdown > a::after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 8px;
  top: 13px;
  width: 10px;
  height: 20px;
  display: block;
  color: var(--white-color);
  line-height: 20px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  z-index: 5;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li:nth-last-child(1) {
  border-bottom: none;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li:hover > ul > li > a:hover {
  padding-left: 30px;
  color: var(--black-color);
  background-color: var(--secondary-color);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li:hover > ul > li > a:hover::before {
  opacity: 1;
  color: var(--black-color);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li > a {
  display: block;
  padding: 12px 18px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li > a::before {
  position: absolute;
  content: "//";
  left: 10px;
  top: 12px;
  opacity: 0;
  font-weight: 500;
  color: var(--white-color);
  font-size: 10px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 15rem;
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li > ul > li:nth-last-child(1) {
  border-bottom: 0;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 12px 18px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > ul > li > ul > li > a::before {
  position: absolute;
  content: "//";
  left: 10px;
  top: 12px;
  opacity: 0;
  font-weight: 500;
  font-size: 10px;
  color: var(--white-color);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: var(--white-color);
  line-height: 28px;
  border: 1px solid var(--white-color);
  background-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: none;
}
.header .header-content .header-right-box .search-box-btn {
  position: relative;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  color: var(--white-color);
  background-color: rgba(236, 253, 245, 0.2);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 420px) {
  .header .header-content .header-right-box .search-box-btn {
    display: none;
  }
}
.header .header-content .header-right-box .search-box-btn svg {
  position: relative;
  z-index: 1;
}
.header .header-content .header-right-box .button-box a:hover span {
  color: var(--black-color);
}
.header .header-content .header-right-box .button-box a:hover svg {
  color: var(--black-color);
}
.header .header-content .header-right-box .button-box a:hover::after {
  background-color: var(--white-color);
}
@media (max-width: 767px) {
  .header .header-content .header-right-box .button-box {
    display: none;
  }
}
.header .header-content .header-right-box .support-box {
  padding-left: 30px;
  margin-left: 10px;
}
@media (max-width: 1199px) {
  .header .header-content .header-right-box .support-box {
    display: none;
  }
}
.header .header-content .header-right-box .support-box::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  left: 0;
}
.header .header-content .header-right-box .support-box a {
  padding-left: 48px;
  position: relative;
  text-align: left;
  white-space: nowrap;
  display: inline-block;
  line-height: 22px;
}
.header .header-content .header-right-box .support-box a i {
  left: 0;
  position: absolute;
  top: 11px;
  font-size: 28px;
}
.header .header-content .header-right-box .support-box a small {
  display: block;
  margin-bottom: -1px;
}
.header .header-content .header-right-box .support-box a strong {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 28px;
}
.header .header-content .header-right-box .sidebar-toggler {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: rgba(236, 253, 245, 0.2);
  cursor: pointer;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 1199px) {
  .header .header-content .header-right-box .sidebar-toggler {
    display: none;
  }
}
.header .header-content .header-right-box .sidebar-toggler span {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  display: block;
  margin: 6px 0 0;
  height: 2px;
  z-index: 2;
  background-color: var(--white-color);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.header .header-content .header-right-box .sidebar-toggler span:nth-child(1) {
  margin-top: 0;
  width: 20px;
  margin-left: -4px;
}
.header .header-content .header-right-box .sidebar-toggler span:nth-child(2) {
  width: 20px;
  margin-left: 4px;
}
.header .header-content .header-right-box .sidebar-toggler span:nth-child(3) {
  width: 20px;
  margin-left: -4px;
}
.header .header-content .header-right-box .sidebar-toggler:hover span:nth-child(1) {
  margin-left: 4px;
}
.header .header-content .header-right-box .sidebar-toggler:hover span:nth-child(2) {
  margin-left: -4px;
}
.header .header-content .header-right-box .sidebar-toggler:hover span:nth-child(3) {
  margin-left: 4px;
}
.header .header-content .header-right-box .sidebar-toggler::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.header .header-content .header-right-box .sidebar-toggler:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.header .header-content .header-right-box .mobile-nav-toggler {
  position: relative;
  cursor: pointer;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  padding: 19px 14px;
  display: none;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
@media (max-width: 1199px) {
  .header .header-content .header-right-box .mobile-nav-toggler {
    display: block;
  }
}
.header .header-content .header-right-box .mobile-nav-toggler span {
  width: 28px;
  height: 2px;
  background-color: var(--black-color);
  display: block;
  margin: 6px 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.header .header-content .header-right-box .mobile-nav-toggler span:nth-child(1) {
  margin-top: 0;
}
.header .sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.87);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header.fixed-header .sticky-header {
  background-color: rgba(255, 255, 255, 0.87);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -o-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.header.fixed-header .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  padding: 30px 0;
  color: var(--black-color);
}
.header.fixed-header .header-right-box .search-box-btn {
  color: var(--black-color);
  background-color: rgba(24, 26, 23, 0.05);
}
.header.fixed-header .header-right-box .sidebar-toggler {
  background-color: rgba(24, 26, 23, 0.05);
}
.header.fixed-header .header-right-box .sidebar-toggler span {
  background-color: var(--black-color);
}
.header.fixed-header .header-right-box .button-box a:hover span {
  color: var(--white-color);
}
.header.fixed-header .header-right-box .button-box a:hover svg {
  color: var(--white-color);
}
.header.fixed-header .header-right-box .button-box a:hover::after {
  background-color: var(--black-color);
}
.header .mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 999999;
}
.header .mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  -moz-transform: translateX(101%);
  transform: translateX(101%);
}
.header .mobile-menu .close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  color: var(--white-color);
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  transform: translateY(-50px);
}
.header .mobile-menu .close-btn span {
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin: 6px 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.header .mobile-menu .close-btn span:nth-child(1) {
  -webkit-transform: translate(0, 0) rotate(-48deg);
  -ms-transform: translate(0, 0) rotate(-48deg);
  -o-transform: translate(0, 0) rotate(-48deg);
  -moz-transform: translate(0, 0) rotate(-48deg);
  transform: translate(0, 0) rotate(-48deg);
}
.header .mobile-menu .close-btn span:nth-child(2) {
  -webkit-transform: translate(0, -9px) rotate(48deg);
  -ms-transform: translate(0, -9px) rotate(48deg);
  -o-transform: translate(0, -9px) rotate(48deg);
  -moz-transform: translate(0, -9px) rotate(48deg);
  transform: translate(0, -9px) rotate(48deg);
}
.header .mobile-menu .menu-box {
  position: absolute;
  right: -400px;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--body-color);
  padding: 0;
  z-index: 5;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
}
.header .mobile-menu .menu-box .nav-logo {
  position: relative;
  padding: 20px 20px;
  text-align: left;
}
.header .mobile-menu .menu-box .nav-logo img {
  max-width: 200px;
}
@media (max-width: 1199px) {
  .header .mobile-menu .menu-box .menu-outer .navbar-collapse {
    display: block;
  }
}
.header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation {
  display: block;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  text-transform: capitalize;
}
.header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li.current > a {
  color: var(--primary-color);
}
.header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li:hover > a {
  color: var(--primary-color);
}
.header .search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -1080px;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header .search-popup::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-image: url("../images/shape/waves-shape.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0;
}
.header .search-popup .search-close-btn {
  position: absolute;
  right: 25px;
  left: auto;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0;
  background: transparent;
  color: var(--white-color);
  border: none;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header .search-popup .search-close-center {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  width: 70px;
  height: 70px;
  text-align: center;
  margin: -200px auto 0 auto;
  border-bottom: 3px solid var(--white-color);
  background-color: var(--primary-color);
  color: var(--white-color);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header .search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  background-color: var(--dark-color);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}
.header .search-popup form .form-group input {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  border: none;
  color: var(--black-color);
  background-color: var(--white-color);
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header .search-popup form .form-group button {
  position: absolute;
  right: 30px;
  top: 0;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 24px;
  background: transparent;
  color: var(--black-color);
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header.header-style-1 .header-top {
  background-color: var(--primary-color);
}
.header.header-style-1 .header-top .header-top-left .header-contact-info li p {
  color: var(--white-color);
}
.header.header-style-1 .header-top .header-top-left .header-contact-info li:before {
  background-color: var(--secondary-color);
}
.header.header-style-1 .header-top .header-top-right .header-social-media li a {
  color: var(--white-color);
}
.header.header-style-1 .header-top .header-top-right .header-social-media li a:hover {
  color: var(--secondary-color);
}
.header.header-style-1 .header-lower {
  position: absolute;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .header.header-style-1 .header-lower {
    position: relative;
    background-color: var(--black-color);
  }
}
.header.header-style-1 .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > a {
  color: var(--primary-color);
}
.header.header-style-1 .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  color: var(--white-color);
}
.header.header-style-1 .header-right-box .sidebar-toggler span {
  background-color: var(--white-color);
}
.header.header-style-1 .header-right-box .button-box a:hover span {
  color: var(--black-color);
}
.header.header-style-1 .header-right-box .button-box a:hover svg {
  color: var(--black-color);
}
.header.header-style-1 .header-right-box .button-box a:hover::after {
  background-color: var(--white-color);
}
.header.header-style-1 .sticky-header .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > a {
  color: var(--primary-color);
}
.header.header-style-1 .sticky-header .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  color: var(--black-color);
}
.header.header-style-1 .sticky-header .header-right-box .button-box a:hover span {
  color: var(--white-color);
}
.header.header-style-1 .sticky-header .header-right-box .button-box a:hover svg {
  color: var(--white-color);
}
.header.header-style-1 .sticky-header .header-right-box .button-box a:hover::after {
  background-color: var(--black-color);
}
.header.header-style-1 .sticky-header .header-right-box .sidebar-toggler span {
  background-color: var(--black-color);
}
.header.header-style-2 .header-top {
  background-color: var(--black-color);
}
.header.header-style-2 .header-top .header-top-left .header-contact-info li p {
  color: var(--white-color);
}
.header.header-style-2 .header-top .header-top-left .header-contact-info li:before {
  background-color: var(--secondary-color);
}
.header.header-style-2 .header-top .header-top-right .header-social-media li a:hover {
  color: var(--primary-color);
}
.header.header-style-2 .header-top .header-top-right .header-top-button a:hover span {
  color: var(--black-color);
}
.header.header-style-2 .header-top .header-top-right .header-top-button a:hover svg {
  color: var(--black-color);
}
.header.header-style-2 .header-top .header-top-right .header-top-button a:hover::after {
  background-color: var(--white-color);
}
.header.header-style-2 .header-lower {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  width: 100%;
}
.header.header-style-2 .header-lower::after {
  display: none;
}
.header.header-style-2 .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > a {
  color: var(--primary-color);
}
.header.header-style-2 .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  color: var(--white-color);
}
.header.header-style-2 .header-right-box .support-box::after {
  background-color: rgba(255, 255, 255, 0.1);
}
.header.header-style-2 .header-right-box .support-box a {
  color: var(--white-color);
}
.header.header-style-2 .header-right-box .sidebar-toggler {
  color: var(--white-color);
}
.header.header-style-2 .header-right-box .sidebar-toggler span {
  background-color: var(--white-color);
}
.header.header-style-2 .sticky-header .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > a {
  color: var(--primary-color);
}
.header.header-style-2 .sticky-header .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  color: var(--black-color);
}
.header.header-style-2 .sticky-header .header-right-box .sidebar-toggler {
  color: var(--black-color);
}
.header.header-style-2 .sticky-header .header-right-box .sidebar-toggler span {
  background-color: var(--black-color);
}
.header.header-style-2 .sticky-header .header-right-box .support-box::after {
  background-color: rgba(0, 0, 0, 0.1);
}
.header.header-style-2 .sticky-header .header-right-box .support-box a {
  color: var(--black-color);
}
.header.header-style-3 .header-lower {
  background-color: var(--body-color);
}
.header.header-style-3 .header-content .header-navigation nav.main-menu .navbar-collapse .navigation > li > a {
  color: var(--black-color);
}
.header.header-style-3 .header-navigation nav.main-menu .navbar-collapse .navigation > li:hover > a {
  color: var(--primary-color);
}
@media (max-width: 1400px) {
  .header.header-style-3 .header-right-box .support-box {
    display: none;
  }
}
.header.header-style-3 .header-right-box .button-box a:hover span {
  color: var(--white-color);
}
.header.header-style-3 .header-right-box .button-box a:hover svg {
  color: var(--white-color);
}
.header.header-style-3 .header-right-box .button-box a:hover::after {
  background-color: var(--black-color);
}
.header.header-style-3 .header-right-box .support-box {
  padding-left: 0;
  margin-left: 0;
  margin-right: 30px;
}
.header.header-style-3 .header-right-box .support-box::after {
  display: none;
}
.header.header-style-3 .header-right-box .support-box a {
  color: var(--black-color);
}

.mobile-menu-active .header .header-right-box .mobile-nav-toggler span:nth-child(1) {
  -webkit-transform: translate(0, 6px) rotate(-48deg);
  -ms-transform: translate(0, 6px) rotate(-48deg);
  -o-transform: translate(0, 6px) rotate(-48deg);
  -moz-transform: translate(0, 6px) rotate(-48deg);
  transform: translate(0, 6px) rotate(-48deg);
}
.mobile-menu-active .header .header-right-box .mobile-nav-toggler span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.mobile-menu-active .header .header-right-box .mobile-nav-toggler span:nth-child(3) {
  -webkit-transform: translate(0, -9px) rotate(48deg);
  -ms-transform: translate(0, -9px) rotate(48deg);
  -o-transform: translate(0, -9px) rotate(48deg);
  -moz-transform: translate(0, -9px) rotate(48deg);
  transform: translate(0, -9px) rotate(48deg);
}
.mobile-menu-active .header .mobile-menu {
  visibility: visible;
}
.mobile-menu-active .header .mobile-menu .menu-backdrop {
  opacity: 1;
  width: 100%;
  visibility: visible;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}
.mobile-menu-active .header .mobile-menu .close-btn {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}
.mobile-menu-active .header .mobile-menu .menu-box {
  right: 0;
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li:nth-last-child(1) {
  border-bottom: none;
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li ul {
  display: none;
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li > ul > li a {
  padding-left: 30px;
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li > ul > li.dropdown > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li > ul > li.dropdown > ul > li a {
  padding-left: 40px;
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li .dropdown-btn {
  position: absolute;
  right: 0;
  top: 2px;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 14px;
  line-height: 44px;
  color: var(--black-color);
  cursor: pointer;
  z-index: 5;
  margin: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li .dropdown-btn.open span {
  -webkit-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li .dropdown-btn span {
  -webkit-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  -moz-transform: rotateZ(0);
  transform: rotateZ(0);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.mobile-menu-active .header .mobile-menu .menu-box .menu-outer .navbar-collapse .navigation li .dropdown-btn::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  width: 1px;
  height: 70%;
  border-left: 1px solid rgba(0, 0, 0, 0.09);
  bottom: 0;
  margin: auto;
}

.search-active .header .search-popup {
  margin-top: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
.search-active .header .search-popup .search-close-btn {
  visibility: visible;
  opacity: 1;
  top: 30px;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.search-active .header .search-popup .search-close-center {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.search-active .header .search-popup form {
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
}

footer {
  position: relative;
}
footer .footer-top .footer-widget {
  margin-bottom: 50px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
footer .footer-top .footer-widget .footer-title {
  text-transform: uppercase;
  margin-bottom: 20px;
}
footer .footer-top .footer-widget.footer-widget-about .footer-logo {
  margin-bottom: 25px;
}
footer .footer-top .footer-widget.footer-widget-about p {
  margin-bottom: 30px;
  font-size: 14px;
}
footer .footer-top .footer-widget.footer-widget-nav-menu ul li {
  margin-bottom: 10px;
}
footer .footer-top .footer-widget.footer-widget-nav-menu ul li:nth-last-child(1) {
  margin-bottom: 0;
}
footer .footer-top .footer-widget.footer-widget-nav-menu ul li a {
  font-size: 14px;
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  footer .footer-top .footer-widget.footer-widget-nav-menu {
    margin-left: auto;
    margin-right: auto;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
footer .footer-top .footer-widget.footer-widget-services ul li {
  margin-bottom: 10px;
}
footer .footer-top .footer-widget.footer-widget-services ul li:nth-last-child(1) {
  margin-bottom: 0;
}
footer .footer-top .footer-widget.footer-widget-services ul li a {
  font-size: 14px;
  margin-bottom: 15px;
}
footer .footer-top .footer-widget.footer-widget-newsletter {
  background-color: rgba(48, 48, 48, 0.4);
  padding: 50px;
}
@media (max-width: 991px) {
  footer .footer-top .footer-widget.footer-widget-newsletter {
    padding: 30px;
  }
}
footer .footer-top .footer-widget.footer-widget-newsletter form {
  position: relative;
  margin-bottom: 30px;
}
footer .footer-top .footer-widget.footer-widget-newsletter form input {
  margin-bottom: 15px;
}
footer .footer-top .footer-widget.footer-widget-newsletter form button {
  background-color: unset;
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--white-color);
}
footer .footer-top .footer-widget.footer-widget-newsletter .newsletter-text {
  color: var(--white-color);
  font-size: 14px;
}
footer .footer-top .footer-widget.footer-widget-newsletter .newsletter-text i {
  margin-right: 10px;
}
footer .footer-top .footer-widget.footer-widget-contact ul li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 20px;
  padding-left: 50px;
}
footer .footer-top .footer-widget.footer-widget-contact ul li:last-child {
  margin-bottom: 0;
}
footer .footer-top .footer-widget.footer-widget-contact ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1em;
  color: var(--primary-color);
  font-size: 26px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
footer .footer-top .footer-widget.footer-widget-contact ul li strong {
  display: block;
  margin-bottom: 5px;
}
footer .footer-top .footer-widget.footer-widget-contact ul li:hover i {
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
footer .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  footer .footer-bottom {
    margin-top: 10px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
footer .footer-bottom .copyright-text p {
  font-size: 14px;
}
footer .footer-bottom .footer-bottom-nav {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
footer .footer-bottom .footer-bottom-nav li {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
footer .footer-bottom .footer-bottom-nav li:first-child {
  margin-left: 0;
  padding-left: 0;
}
footer .footer-bottom .footer-bottom-nav li:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: var(--white-color);
  position: absolute;
  top: 5px;
  left: 0;
  opacity: 0.5;
}
footer .footer-bottom .footer-bottom-nav li a {
  margin-bottom: 15px;
  font-size: 14px;
}
footer.footer-style-1 .footer-top .footer-widget .footer-title {
  color: var(--white-color);
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-about p {
  opacity: 0.5;
  color: var(--white-color);
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-nav-menu ul li a {
  opacity: 0.5;
  color: var(--white-color);
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-nav-menu ul li a:hover {
  opacity: 1;
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-services ul li a {
  color: var(--white-color);
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-contact .footer-address {
  color: var(--white-color);
  font-size: 14px;
  margin-bottom: 30px;
  margin-right: 50px;
  opacity: 0.5;
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-contact ul li {
  padding-left: 0;
  margin-bottom: 15px;
  color: var(--white-color);
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-contact ul li a {
  font-size: 18px;
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
footer.footer-style-1 .footer-top .footer-widget.footer-widget-newsletter form input {
  border-color: transparent;
  background-color: transparent;
  color: var(--white-color);
  border-bottom-color: var(--white-color);
  padding: 0 50px 0 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
footer.footer-style-1 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
footer.footer-style-1 .footer-bottom .copyright-text p {
  color: var(--white-color);
  opacity: 0.5;
}
footer.footer-style-1 .footer-bottom .footer-bottom-nav li a {
  color: var(--white-color);
  opacity: 0.5;
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
footer.footer-style-1 .footer-bottom .footer-bottom-nav li a:hover {
  opacity: 1;
}
footer.footer-style-2 {
  text-align: center;
}
footer.footer-style-2 .background-image::after {
  background-color: var(--black-color);
}
footer.footer-style-2 .footer-top .info-col {
  position: relative;
  order: 4;
  padding: 50px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  background-color: rgba(26, 26, 26, 0.82);
  background-image: url("../images/pattern/pattern-1.png");
  max-width: 520px;
  margin: auto;
}
@media (max-width: 991px) {
  footer.footer-style-2 .footer-top .info-col {
    order: 0;
    margin-bottom: 50px;
    padding: 50px 20px;
  }
}
footer.footer-style-2 .footer-top .info-col .footer-widget {
  margin-bottom: 0;
}
footer.footer-style-2 .footer-top .info-col .footer-widget ul {
  max-width: 290px;
  margin: 0 auto;
}
footer.footer-style-2 .footer-top .info-col .footer-widget ul li {
  color: var(--white-color);
  margin-bottom: 10px;
}
footer.footer-style-2 .footer-top .info-col .footer-widget ul li a {
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
footer.footer-style-2 .footer-top .info-col .footer-widget .offers {
  padding-top: 80px;
}
footer.footer-style-2 .footer-top .info-col .footer-widget .offers h4 {
  color: var(--white-color);
  margin-bottom: 10px;
}
footer.footer-style-2 .footer-top .info-col .footer-widget .offers p {
  color: var(--white-color);
  margin-bottom: 20px;
}
footer.footer-style-2 .footer-top .info-col .footer-widget .offers form {
  position: relative;
}
footer.footer-style-2 .footer-top .info-col .footer-widget .offers form input {
  background-color: var(--black-color);
  border-color: var(--grey-color);
  color: var(--white-color);
  padding: 0 50px 0 20px;
  height: 66px;
  line-height: 66px;
}
footer.footer-style-2 .footer-top .info-col .footer-widget .offers form button {
  position: absolute;
  bottom: 0;
  top: 5px;
  right: 6px;
  width: 56px;
  height: 56px;
  color: var(--white-color);
  background-color: var(--primary-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
footer.footer-style-2 .footer-top .links-col .footer-widget ul li {
  margin-bottom: 20px;
}
footer.footer-style-2 .footer-top .links-col .footer-widget ul li:nth-last-child(1) {
  margin-bottom: 0;
}
footer.footer-style-2 .footer-top .links-col .footer-widget ul li a {
  color: var(--white-color);
  font-size: 14px;
  text-transform: uppercase;
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
footer.footer-style-2 .footer-top .links-col.last {
  order: 12;
}
footer.footer-style-2 .footer-bottom .copyright-text p a:hover {
  color: var(--primary-color);
}
footer.footer-style-3 .footer-title {
  color: var(--white-color);
  margin-bottom: 30px;
}
footer.footer-style-3 p,
footer.footer-style-3 a,
footer.footer-style-3 li {
  color: var(--white-color);
}
footer.footer-style-3 a.line-effect {
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
footer.footer-style-3 .footer-top .footer-widget-about .social-style-one li a {
  background-color: var(--white-color);
  color: var(--black-color);
}
footer.footer-style-3 .footer-top .footer-widget-about .social-style-one li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
footer.footer-style-3 .footer-top .footer-widget-gallery ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
footer.footer-style-3 .footer-top .footer-widget-gallery ul li a::before {
  content: "\f06e";
  font-family: "Font Awesome 6 free";
  position: absolute;
  top: 40%;
  left: 50%;
  font-size: 16px;
  color: var(--white-color);
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
footer.footer-style-3 .footer-top .footer-widget-gallery ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 2;
  background-color: var(--primary-color);
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
footer.footer-style-3 .footer-top .footer-widget-gallery ul li a:hover::after {
  opacity: 0.6;
}
footer.footer-style-3 .footer-top .footer-widget-gallery ul li a:hover::before {
  top: 50%;
  opacity: 1;
}
footer.footer-style-3 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.widget {
  margin-bottom: 40px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .widget {
    padding: 20px;
  }
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widget-title h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
.widget .widget-title h4::before {
  content: "";
  height: 2px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 65px;
  width: 10px;
}
.widget .widget-title h4::after {
  content: "";
  height: 2px;
  width: 60px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.widget.widget-search form .form-group .field-inner input {
  background-color: var(--body-color);
  padding-right: 60px;
}
.widget.widget-search form .form-group .field-inner button {
  position: absolute;
  top: 0;
  right: 15px;
  background: transparent;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.widget.widget-search form .form-group .field-inner button:hover {
  color: var(--primary-color);
}
.widget.widget-categories-list .widget-content .category-list li a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-transform: capitalize;
  text-align: left;
  width: 100%;
  padding: 15px 45px 15px 20px;
  margin: 0 0 15px 0;
  background-color: var(--body-color);
  color: var(--black-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.widget.widget-categories-list .widget-content .category-list li a .cat-icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 55px;
  height: 55px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.widget.widget-categories-list .widget-content .category-list li a .cat-icon .button-bg {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--white-color);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.widget.widget-categories-list .widget-content .category-list li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.widget.widget-categories-list .widget-content .category-list li a:hover .cat-icon svg {
  z-index: 2;
  color: var(--primary-color);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.widget.widget-categories-list .widget-content .category-list li a:hover .cat-icon .button-bg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.widget.widget-categories-list .widget-content .category-list li:nth-last-child(1) a {
  margin-bottom: 0;
}
.widget.widget-recent-post .recent-post-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.widget.widget-recent-post .recent-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding: 0;
}
.widget.widget-recent-post .recent-post-item .recent-post-image {
  margin-right: 20px;
  width: 80px;
  overflow: hidden;
}
.widget.widget-recent-post .recent-post-item .recent-post-image a {
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  display: block;
  overflow: hidden;
}
.widget.widget-recent-post .recent-post-item .recent-post-image a img {
  width: 80px;
  height: 80px;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.widget.widget-recent-post .recent-post-item .recent-post-content {
  flex: 1;
  align-self: center;
}
.widget.widget-recent-post .recent-post-item .recent-post-content h6 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--black-color);
}
.widget.widget-recent-post .recent-post-item .recent-post-content h6 a:hover {
  background-image: linear-gradient(var(--black-color), var(--black-color)), linear-gradient(var(--black-color), var(--black-color));
}
.widget.widget-recent-post .recent-post-item .recent-post-content .post-date {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}
.widget.widget-recent-post .recent-post-item .recent-post-content .post-date i {
  margin-right: 5px;
  color: var(--primary-color);
}
.widget.widget-recent-post .recent-post-item:hover .recent-post-image a img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.widget.widget-tag .widget-content .widget-tag-box a {
  position: relative;
  padding: 10px 20px;
  display: inline-block;
  background-color: var(--body-color);
  color: var(--black-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
.widget.widget-tag .widget-content .widget-tag-box a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.widget.widget-gallery .widget-content .widget-light-gallery {
  margin: -10px -5px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.widget.widget-gallery .widget-content .widget-light-gallery li {
  width: 33.33%;
  padding: 5px;
  max-width: 135px;
}
.widget.widget-gallery .widget-content .widget-light-gallery li a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
.widget.widget-gallery .widget-content .widget-light-gallery li a img {
  display: inline-block;
  width: 100%;
}
.widget.widget-gallery .widget-content .widget-light-gallery li a::before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  top: 40%;
  left: 50%;
  font-size: 22px;
  color: var(--white-color);
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.widget.widget-gallery .widget-content .widget-light-gallery li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 2;
  background-color: var(--primary-color);
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.widget.widget-gallery .widget-content .widget-light-gallery li a:hover::before {
  top: 50%;
  opacity: 1;
}
.widget.widget-gallery .widget-content .widget-light-gallery li a:hover::after {
  opacity: 0.6;
}
.widget.widget-service-ad {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: var(--primary-color);
  background-image: url("https://pusinfotech.com/html/fixyland/main-file/assets/images/shape/shape-1.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100%;
}
.widget.widget-service-ad .widget-content .service-ad-image {
  margin-bottom: 30px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  overflow: hidden;
}
.widget.widget-service-ad .widget-content .service-ad-image img {
  width: 100%;
}
.widget.widget-service-ad .widget-content .service-ad-title h6 {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 20px;
  color: var(--white-color);
}
.widget.widget-service-ad .widget-content .service-ad-desc {
  color: var(--white-color);
  margin-bottom: 30px;
}
.widget.widget-service-ad .widget-content .service-ad-desc p {
  margin-bottom: 0;
}
.widget.widget-company-profile .company-profile-list li {
  margin-bottom: 20px;
}
.widget.widget-company-profile .company-profile-list li:nth-last-child(1) {
  margin-bottom: 0;
}
.widget.widget-company-profile .company-profile-list li a {
  position: relative;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  padding: 5px;
  padding-left: 15px;
  background-color: var(--body-color);
  color: var(--black-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.widget.widget-company-profile .company-profile-list li a .download-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.widget.widget-company-profile .company-profile-list li a .download-content i {
  width: 25px;
  font-size: 24px;
  margin-right: 10px;
  color: var(--primary-color);
}
.widget.widget-company-profile .company-profile-list li a .download-item {
  font-size: 16px;
  line-height: 16px;
  background-color: var(--black-color);
  color: var(--white-color);
  width: 42px;
  height: 42px;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.widget.widget-company-profile .company-profile-list li a .download-item i {
  z-index: 2;
}
.widget.widget-company-profile .company-profile-list li a .download-item .button-bg {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.widget.widget-company-profile .company-profile-list li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.widget.widget-company-profile .company-profile-list li a:hover .download-content i {
  color: var(--white-color);
}
.widget.widget-company-profile .company-profile-list li a:hover .download-item i {
  color: var(--primary-color);
}
.widget.widget-company-profile .company-profile-list li a:hover .download-item .button-bg {
  background-color: var(--white-color);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.widget.widget-book-room form .room-price {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.widget.widget-book-room form .room-price p {
  font-size: 52px;
  font-weight: 600;
  position: relative;
  line-height: initial;
  margin: 0;
  color: var(--primary-color);
}
.widget.widget-book-room form .room-price .room-pre-night {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.widget.widget-book-room form .room-price .room-pre-night span {
  position: relative;
  width: auto;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  margin-left: 15px;
}
.widget.widget-book-room form .field-inner label {
  color: var(--text-color);
}
.widget.widget-book-room form .field-inner input {
  background-color: var(--body-color);
}
.widget.widget-book-room form .field-inner input:focus {
  border-color: var(--primary-color);
}
.widget.widget-book-room form .field-inner select {
  background-color: var(--body-color);
}
.widget.widget-book-room form .field-inner select:focus {
  border-color: var(--primary-color);
}
.widget.widget-book-room form .availability-btn-wapper {
  padding-top: 10px;
}

.sidebar-visible .sidebar {
  visibility: visible;
}
.sidebar-visible .sidebar .sidebar-backdrop {
  opacity: 1;
  width: 100%;
  visibility: visible;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}
.sidebar-visible .sidebar .sidebar-close {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}
.sidebar-visible .sidebar .sidebar-inner {
  right: 0;
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}

.sidebar-inner::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}

.sidebar-inner::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.sidebar-inner::-webkit-scrollbar-track {
  background: #dadada;
}

.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 999999;
}
.sidebar .sidebar-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  -moz-transform: translateX(101%);
  transform: translateX(101%);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
.sidebar .sidebar-close {
  width: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 30px;
  text-align: center;
  color: var(--black-color);
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  transform: translateY(-50px);
}
.sidebar .sidebar-close span {
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin: 6px 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.sidebar .sidebar-close span:nth-child(1) {
  -webkit-transform: translate(0, 0) rotate(-48deg);
  -ms-transform: translate(0, 0) rotate(-48deg);
  -o-transform: translate(0, 0) rotate(-48deg);
  -moz-transform: translate(0, 0) rotate(-48deg);
  transform: translate(0, 0) rotate(-48deg);
}
.sidebar .sidebar-close span:nth-child(2) {
  -webkit-transform: translate(0, -9px) rotate(48deg);
  -ms-transform: translate(0, -9px) rotate(48deg);
  -o-transform: translate(0, -9px) rotate(48deg);
  -moz-transform: translate(0, -9px) rotate(48deg);
  transform: translate(0, -9px) rotate(48deg);
}
.sidebar .sidebar-inner {
  position: absolute;
  right: -400px;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 30px;
  z-index: 5;
  background: var(--body-color);
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
}
.sidebar .sidebar-inner .sidebar-header {
  margin-bottom: 30px;
}
.sidebar .sidebar-inner .sidebar-content .widget {
  background: transparent;
  padding: 0;
  border: none;
}
.sidebar .sidebar-inner .sidebar-content .sidebar-about {
  margin-bottom: 50px;
}
.sidebar .sidebar-inner .sidebar-content .sidebar-recent-post {
  margin-bottom: 50px;
}
.sidebar .sidebar-inner .sidebar-content .sidebar-contact {
  display: inline-block;
  width: 100%;
  margin-bottom: 50px;
}
.sidebar .sidebar-inner .sidebar-content .sidebar-contact .widget-contact .sidebar-contact-content li {
  position: relative;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 20px;
  padding-left: 50px;
}
.sidebar .sidebar-inner .sidebar-content .sidebar-contact .widget-contact .sidebar-contact-content li i {
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1em;
  color: var(--primary-color);
  font-size: 26px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.sidebar .sidebar-inner .sidebar-content .sidebar-contact .widget-contact .sidebar-contact-content li a {
  background-image: linear-gradient(var(--text-color), var(--text-color)), linear-gradient(var(--text-color), var(--text-color));
}
.sidebar .sidebar-inner .sidebar-content .sidebar-contact .widget-contact .sidebar-contact-content li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--black-color);
}
.sidebar .sidebar-inner .sidebar-content .sidebar-contact .widget-contact .sidebar-contact-content li:nth-last-child(1) {
  margin-bottom: 0;
}
.sidebar .sidebar-inner .sidebar-content .sidebar-contact .widget-contact .sidebar-contact-content li:hover i {
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.sidebar .sidebar-inner .sidebar-content .sidebar-social {
  margin-bottom: 30px;
}

.accordion .accordion-item {
  background: var(--body-color);
  margin-bottom: 20px;
  border: none;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.accordion .accordion-item .accordion-header {
  color: var(--black-color);
}
.accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 0;
  color: var(--black-color);
  padding: 20px 80px 20px 20px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.accordion .accordion-item .accordion-header .accordion-button::after {
  content: "+";
  position: absolute;
  height: 45px;
  width: 45px;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.accordion .accordion-item .accordion-header .accordion-button .button-bg {
  width: 45px;
  height: 45px;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  background-color: var(--primary-color);
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.accordion .accordion-item:nth-last-child(1) {
  margin-bottom: 0;
}
.accordion .accordion-item:hover .accordion-header .accordion-button .button-bg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.accordion .accordion-item:hover .accordion-header .accordion-button::after {
  color: var(--white-color);
}

.faq-area .faq-wapper {
  margin-right: 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .faq-area .faq-wapper {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.faq-area .faq-wapper .accordion {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .faq-area .faq-wapper .accordion {
    padding: 20px;
  }
}

.banner-area.banner-style-1 {
  overflow: hidden;
  height: 820px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 991px) {
  .banner-area.banner-style-1 {
    padding: 100px 0 160px 0;
    height: auto;
  }
}
.banner-area.banner-style-1 .banner-content {
  text-align: center;
}
.banner-area.banner-style-1 .banner-content .title {
  font-size: 82px;
  line-height: 82px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--white-color);
}
@media (max-width: 1199px) {
  .banner-area.banner-style-1 .banner-content .title {
    font-size: 54px;
    font-weight: bold;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  .banner-area.banner-style-1 .banner-content .title {
    font-size: 44px;
    line-height: 56px;
  }
}
@media (max-width: 424px) {
  .banner-area.banner-style-1 .banner-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}
.banner-area.banner-style-1 .banner-content .banner-button-wapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.banner-area.banner-style-1 .banner-content .banner-button-wapper .theme-button-secondary:hover span {
  color: var(--black-color);
}
.banner-area.banner-style-1 .banner-content .banner-button-wapper .theme-button-secondary:hover svg {
  color: var(--black-color);
}
.banner-area.banner-style-1 .banner-content .banner-button-wapper .theme-button-secondary:hover::after {
  background-color: var(--white-color);
}
.banner-area.banner-style-1 .banner-image {
  z-index: 1;
}
.banner-area.banner-style-2 {
  overflow: hidden;
  z-index: 1;
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item {
  padding: 250px 0 190px 0;
}
@media (max-width: 991px) {
  .banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item {
    padding: 200px 0 150px 0;
  }
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content::before {
  content: "";
  position: absolute;
  width: calc(100% - 220px);
  height: calc(100% + 173px);
  left: -100px;
  opacity: 0.6;
  border-radius: var(--border-radius-1);
  background: var(--black-color);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 1600px) {
  .banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content::before {
    display: none;
  }
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content .sub-title {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: var(--primary-color);
  background-color: var(--white-color);
  margin-bottom: 20px;
  opacity: 0;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: perspective(400px) rotateY(0) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0) translateY(120px);
  -o-transform: perspective(400px) rotateY(0) translateY(120px);
  -moz-transform: perspective(400px) rotateY(0) translateY(120px);
  transform: perspective(400px) rotateY(0) translateY(120px);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.16);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content .title {
  font-size: 82px;
  line-height: 82px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--white-color);
  opacity: 0;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: perspective(400px) rotateY(0) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0) translateY(-120px);
  -o-transform: perspective(400px) rotateY(0) translateY(-120px);
  -moz-transform: perspective(400px) rotateY(0) translateY(-120px);
  transform: perspective(400px) rotateY(0) translateY(-120px);
}
@media (max-width: 1199px) {
  .banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content .title {
    font-size: 54px;
    font-weight: bold;
    line-height: 62px;
    color: var(--white-color);
  }
}
@media (max-width: 991px) {
  .banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content .title {
    font-size: 44px;
    line-height: 56px;
  }
}
@media (max-width: 424px) {
  .banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content p {
  font-size: 18px;
  opacity: 0;
  max-width: 620px;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: perspective(400px) rotateY(0) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0) translateY(120px);
  -o-transform: perspective(400px) rotateY(0) translateY(120px);
  -moz-transform: perspective(400px) rotateY(0) translateY(120px);
  transform: perspective(400px) rotateY(0) translateY(120px);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .banner-item .banner-content .button-wrap {
  opacity: 0;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transform: perspective(400px) rotateY(0) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0) translateY(80px);
  -o-transform: perspective(400px) rotateY(0) translateY(80px);
  -moz-transform: perspective(400px) rotateY(0) translateY(80px);
  transform: perspective(400px) rotateY(0) translateY(80px);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .active .banner-content .sub-title {
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
  -webkit-transform: perspective(400px) rotateY(0) translateY(0);
  -ms-transform: perspective(400px) rotateY(0) translateY(0);
  -o-transform: perspective(400px) rotateY(0) translateY(0);
  -moz-transform: perspective(400px) rotateY(0) translateY(0);
  transform: perspective(400px) rotateY(0) translateY(0);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .active .banner-content .title {
  opacity: 1;
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transform: perspective(400px) rotateY(0) translateY(0);
  -ms-transform: perspective(400px) rotateY(0) translateY(0);
  -o-transform: perspective(400px) rotateY(0) translateY(0);
  -moz-transform: perspective(400px) rotateY(0) translateY(0);
  transform: perspective(400px) rotateY(0) translateY(0);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .active .banner-content p {
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
  -webkit-transform: perspective(400px) rotateY(0) translateY(0);
  -ms-transform: perspective(400px) rotateY(0) translateY(0);
  -o-transform: perspective(400px) rotateY(0) translateY(0);
  -moz-transform: perspective(400px) rotateY(0) translateY(0);
  transform: perspective(400px) rotateY(0) translateY(0);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .active .banner-content .button-wrap {
  opacity: 1;
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
  -webkit-transform: perspective(400px) rotateY(0) translateY(0);
  -ms-transform: perspective(400px) rotateY(0) translateY(0);
  -o-transform: perspective(400px) rotateY(0) translateY(0);
  -moz-transform: perspective(400px) rotateY(0) translateY(0);
  transform: perspective(400px) rotateY(0) translateY(0);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .owl-dots {
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
  right: 30px;
  margin-top: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .banner-area.banner-style-2 .banner-slider .owl-carousel .owl-dots {
    display: none;
  }
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .owl-dots button {
  width: 12px;
  height: 12px;
  margin: 8px 0;
  background-color: var(--white-color);
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .owl-dots button.active {
  background-color: var(--white-color);
  border-color: var(--white-color);
  width: 12px;
  outline: 1px solid var(--white-color) !important;
  outline-offset: 4px;
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .owl-nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.banner-area.banner-style-2 .banner-slider .owl-carousel .owl-nav button {
  position: relative !important;
  top: 0 !important;
  margin: 0 5px 0 10px !important;
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
.banner-area.banner-style-3 {
  padding: 160px 0 80px 0;
}
@media (max-width: 991px) {
  .banner-area.banner-style-3 {
    padding: 70px 0;
  }
}
.banner-area.banner-style-3 .banner-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.banner-area.banner-style-3 .banner-content .sub-title {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: var(--primary-color);
  background-color: var(--white-color);
  margin-bottom: 30px;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
.banner-area.banner-style-3 .banner-content .title {
  font-size: 82px;
  line-height: 82px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .banner-area.banner-style-3 .banner-content .title {
    font-size: 54px;
    font-weight: bold;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  .banner-area.banner-style-3 .banner-content .title {
    font-size: 44px;
    line-height: 56px;
  }
}
@media (max-width: 424px) {
  .banner-area.banner-style-3 .banner-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}
.banner-area.banner-style-3 .banner-search-form {
  position: relative;
  z-index: 10;
  top: 0;
  width: 100%;
  padding: 0;
  margin-top: 80px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  background-color: var(--primary-color);
  background-image: url("../images/pattern/pattern-1.png");
}
.banner-area.banner-style-3 .banner-search-form form {
  padding: 50px;
}
@media (max-width: 991px) {
  .banner-area.banner-style-3 .banner-search-form form {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .banner-area.banner-style-3 .banner-search-form form .form-group {
    margin-bottom: 20px;
  }
}
.banner-area.banner-style-3 .banner-search-form form .form-group select {
  cursor: pointer;
}
@media (max-width: 991px) {
  .banner-area.banner-style-3 .banner-search-form form .availability-btn-wapper {
    padding-top: 15px;
  }
}

.availability-area {
  z-index: 2;
}
.availability-area form {
  padding: 50px;
}
@media (max-width: 991px) {
  .availability-area form {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .availability-area form .form-group {
    margin-bottom: 20px;
  }
}
.availability-area form .form-group select {
  cursor: pointer;
}
@media (max-width: 991px) {
  .availability-area form .availability-btn-wapper {
    padding-top: 15px;
  }
}
.availability-area.availability-style-1 {
  margin-top: -70px;
  z-index: 3;
}
.availability-area.availability-style-1 .availability-form .stretched-bg {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  width: auto;
  z-index: -1;
  overflow: hidden;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  -ms-border-radius: 20px 0 0 20px;
  -o-border-radius: 20px 0 0 20px;
  border-radius: 20px 0 0 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(68, 140, 116, 0.7);
}
@media (max-width: 1199px) {
  .availability-area.availability-style-1 .availability-form .stretched-bg {
    -webkit-border-radius: var(--border-radius-2);
    -moz-border-radius: var(--border-radius-2);
    -ms-border-radius: var(--border-radius-2);
    -o-border-radius: var(--border-radius-2);
    border-radius: var(--border-radius-2);
  }
}
.availability-area.availability-style-2 {
  background-color: var(--primary-color);
  background-image: url("../images/pattern/pattern-1.png");
}
.availability-area.availability-style-2 form {
  padding: 50px 0;
}
@media (max-width: 991px) {
  .availability-area.availability-style-2 form {
    padding: 30px 0;
  }
}

.roll-area {
  padding: 0 0 40px 0;
}
.roll-area .roll-section {
  position: relative;
  z-index: 9;
  width: 110%;
  left: -20px;
  background-color: var(--primary-color);
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  transform: rotate(3deg);
}
@media (max-width: 767px) {
  .roll-area .roll-section {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
.roll-area .roll-section .slide-roll .roll-box {
  -webkit-animation: slide-har 80s linear infinite;
  -moz-animation: slide-har 80s linear infinite;
  -o-animation: slide-har 80s linear infinite;
  animation: slide-har 80s linear infinite;
}
.roll-area .roll-section .slide-roll .roll-box .roll-item {
  padding: 0 30px;
}
.roll-area .roll-section .slide-roll .roll-box .roll-item .roll-title h2.title {
  white-space: nowrap;
  margin: 30px 0;
  font-size: 48px;
  line-height: normal;
  position: relative;
  overflow: visible;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(255, 255, 255, 0.8), 1px -1px 0 rgba(255, 255, 255, 0.8), -1px 1px 0 rgba(255, 255, 255, 0.8), 1px 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-text-fill-color: var(--primary-color);
  -webkit-text-stroke-width: 0;
  color: transparent;
  letter-spacing: 3px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .roll-area .roll-section .slide-roll .roll-box .roll-item .roll-title h2.title {
    font-size: 42px;
    margin: 10px 0;
  }
}
.roll-area .roll-section .slide-roll .roll-box .roll-item .roll-title h2.title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-fill-color: var(--white-color);
  -webkit-text-stroke: transparent;
  max-width: 0;
  -webkit-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -ms-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -moz-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.roll-area .roll-section .slide-roll .roll-box .roll-item .roll-title h2.title:hover::before {
  max-width: 100%;
}
.roll-area .roll-section .slide-roll .roll-box .roll-item .roll-title img {
  min-width: 50px;
  margin-left: 65px;
  background-color: rgba(39, 39, 39, 0.102);
  padding: 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-animation: rotateImg 15s infinite linear;
  -moz-animation: rotateImg 15s infinite linear;
  -o-animation: rotateImg 15s infinite linear;
  animation: rotateImg 15s infinite linear;
}
.roll-area .roll-section-two {
  position: relative;
  width: 110%;
  left: -20px;
  margin-top: -120px;
  background-color: var(--grey-color);
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
@media (max-width: 767px) {
  .roll-area .roll-section-two {
    margin-top: -70px;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
.roll-area .roll-section-two .slide-roll .roll-box {
  -webkit-animation: slide-har-revers 80s linear infinite;
  -moz-animation: slide-har-revers 80s linear infinite;
  -o-animation: slide-har-revers 80s linear infinite;
  animation: slide-har-revers 80s linear infinite;
}
.roll-area .roll-section-two .slide-roll .roll-box .roll-item {
  padding: 0 30px;
}
.roll-area .roll-section-two .slide-roll .roll-box .roll-item .roll-title h2.title {
  white-space: nowrap;
  margin: 30px 0;
  font-size: 48px;
  line-height: normal;
  position: relative;
  overflow: visible;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(255, 255, 255, 0.8), 1px -1px 0 rgba(255, 255, 255, 0.8), -1px 1px 0 rgba(255, 255, 255, 0.8), 1px 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-text-fill-color: var(--grey-color);
  color: var(--white-color);
  -webkit-text-stroke-width: 0;
  letter-spacing: 3px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .roll-area .roll-section-two .slide-roll .roll-box .roll-item .roll-title h2.title {
    font-size: 42px;
    margin: 10px 0;
  }
}
.roll-area .roll-section-two .slide-roll .roll-box .roll-item .roll-title h2.title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  content: attr(data-text);
  -webkit-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -ms-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -moz-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-text-fill-color: var(--white-color);
  -webkit-text-stroke: transparent;
  max-width: 0;
}
.roll-area .roll-section-two .slide-roll .roll-box .roll-item .roll-title h2.title:hover::before {
  max-width: 100%;
}
.roll-area .roll-section-two .slide-roll .roll-box .roll-item .roll-title img {
  min-width: 50px;
  margin-left: 65px;
  padding: 10px;
  background-color: rgba(1, 1, 1, 0.25);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-animation: rotateImg 15s infinite linear;
  -moz-animation: rotateImg 15s infinite linear;
  -o-animation: rotateImg 15s infinite linear;
  animation: rotateImg 15s infinite linear;
}
.roll-area .roll-section-three .slide-roll .roll-box {
  -webkit-animation: slide-har 80s linear infinite;
  -moz-animation: slide-har 80s linear infinite;
  -o-animation: slide-har 80s linear infinite;
  animation: slide-har 80s linear infinite;
}
.roll-area .roll-section-three .slide-roll .roll-box .roll-item {
  padding: 0 30px;
}
.roll-area .roll-section-three .slide-roll .roll-box .roll-item .roll-title h2.title {
  white-space: nowrap;
  margin: 30px 0;
  font-size: 48px;
  line-height: normal;
  position: relative;
  overflow: visible;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(255, 255, 255, 0.8), 1px -1px 0 rgba(255, 255, 255, 0.8), -1px 1px 0 rgba(255, 255, 255, 0.8), 1px 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-text-fill-color: var(--primary-color);
  -webkit-text-stroke-width: 0;
  color: transparent;
  letter-spacing: 3px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .roll-area .roll-section-three .slide-roll .roll-box .roll-item .roll-title h2.title {
    font-size: 42px;
    margin: 10px 0;
  }
}
.roll-area .roll-section-three .slide-roll .roll-box .roll-item .roll-title h2.title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -ms-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -moz-transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-text-fill-color: var(--white-color);
  -webkit-text-stroke: transparent;
  max-width: 0;
}
.roll-area .roll-section-three .slide-roll .roll-box .roll-item .roll-title h2.title:hover::before {
  max-width: 100%;
}
.roll-area .roll-section-three .slide-roll .roll-box .roll-item .roll-title img {
  min-width: 50px;
  margin-left: 65px;
  padding: 10px;
  background-color: rgba(1, 1, 1, 0.25);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-animation: rotateImg 15s infinite linear;
  -moz-animation: rotateImg 15s infinite linear;
  -o-animation: rotateImg 15s infinite linear;
  animation: rotateImg 15s infinite linear;
}
.roll-area .roll-section-three .slide-roll:hover .roll-box {
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .room-area .section-title {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .room-area .room-btn-wapper {
    text-align: center !important;
    margin-bottom: 50px;
  }
}
.room-area .short-info a {
  background-image: linear-gradient(var(--text-color), var(--text-color)), linear-gradient(var(--text-color), var(--text-color));
}
.room-area .room-grid-style-1 {
  overflow: hidden;
  margin-bottom: 30px;
}
.room-area .room-grid-style-1 .room-item-image {
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
.room-area .room-grid-style-1 .room-item-image img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.room-area .room-grid-style-1 .room-item-image .room-price {
  padding: 5px 15px;
  line-height: 23px;
  position: absolute;
  top: 20px;
  left: 25px;
  z-index: 2;
  background-color: var(--primary-color);
  color: var(--white-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
.room-area .room-grid-style-1 .room-item-content {
  position: relative;
  padding-top: 20px;
}
.room-area .room-grid-style-1 .room-item-content h4 {
  margin-bottom: 10px;
}
.room-area .room-grid-style-1 .room-item-content .room-meta {
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.room-area .room-grid-style-1 .room-item-content .room-meta li {
  position: relative;
  padding-right: 30px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .room-area .room-grid-style-1 .room-item-content .room-meta li {
    padding-right: 15px;
  }
}
.room-area .room-grid-style-1 .room-item-content .room-meta li i {
  color: var(--primary-color);
  margin-right: 10px;
}
.room-area .room-grid-style-1:hover .room-item-image img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.room-area .room-grid-style-2 {
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
.room-area .room-grid-style-2 .room-item-image {
  overflow: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.room-area .room-grid-style-2 .room-item-image img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.room-area .room-grid-style-2 .room-item-image p {
  padding: 5px 15px;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  background-color: var(--primary-color);
  color: var(--white-color);
  line-height: 23px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
.room-area .room-grid-style-2 .room-item-image::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.room-area .room-grid-style-2 .room-item-content {
  padding: 30px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .room-area .room-grid-style-2 .room-item-content {
    padding: 20px;
  }
}
.room-area .room-grid-style-2 .room-item-content .room-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.room-area .room-grid-style-2 .room-item-content .room-meta li {
  margin-bottom: 15px;
  position: relative;
  padding-right: 30px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .room-area .room-grid-style-2 .room-item-content .room-meta li {
    padding-right: 15px;
  }
}
.room-area .room-grid-style-2 .room-item-content .room-meta li i {
  color: var(--primary-color);
  margin-right: 10px;
}
.room-area .room-grid-style-2:hover .room-item-image img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.room-area .room-grid-style-2:hover .room-item-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}
.room-area .room-grid-style-3 {
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 460px;
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-transform: perspective(1000px);
  -ms-transform: perspective(1000px);
  -o-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  transform: perspective(1000px);
}
.room-area .room-grid-style-3 .room-flip-front {
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  -moz-transform: rotateY(0);
  transform: rotateY(0);
  transform-style: preserve-3d;
  overflow: hidden;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.room-area .room-grid-style-3 .room-flip-front .room-flip-front-content {
  padding: 40px;
  height: 100%;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 2;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateX(0) scale(1);
  -ms-transform: translateX(0) scale(1);
  -o-transform: translateX(0) scale(1);
  -moz-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
}
.room-area .room-grid-style-3 .room-flip-front .room-flip-front-content .room-price {
  color: var(--white-color);
  margin-bottom: 10px;
  z-index: 3;
}
.room-area .room-grid-style-3 .room-flip-front .room-flip-front-content .room-price span {
  font-size: 22px;
  font-weight: 600;
}
.room-area .room-grid-style-3 .room-flip-front .room-flip-front-content h4 {
  color: var(--white-color);
  margin-bottom: 0;
  z-index: 3;
}
.room-area .room-grid-style-3 .room-flip-front .room-flip-front-content::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: 2;
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--black-color) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--black-color) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--black-color) 100%);
}
.room-area .room-grid-style-3 .room-flip-back {
  background: var(--white-color);
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  overflow: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content {
  padding: 40px;
  top: 50%;
  z-index: 2;
  height: 100%;
  width: 100%;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(0.88);
  -ms-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(0.88);
  -o-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(0.88);
  -moz-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(0.88);
  transform: translateY(-50%) translateX(650px) translateZ(60px) scale(0.88);
}
@media (max-width: 991px) {
  .room-area .room-grid-style-3 .room-flip-back .room-flip-back-content {
    padding: 20px;
  }
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content .room-price {
  margin-bottom: 10px;
  color: var(--black-color);
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content .room-price span {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content h4 {
  position: relative;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content p {
  margin-bottom: 25px;
  position: relative;
  display: block;
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content .room-meta {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  margin-bottom: 20px;
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content .room-meta li {
  position: relative;
  padding-right: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .room-area .room-grid-style-3 .room-flip-back .room-flip-back-content .room-meta li {
    padding-right: 15px;
  }
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content .room-meta li i {
  color: var(--primary-color);
  margin-right: 10px;
}
.room-area .room-grid-style-3 .room-flip-back .room-flip-back-content .room-btn-wapper {
  text-align: start !important;
  margin-bottom: 0;
}
.room-area .room-grid-style-3:hover .room-flip-front {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.room-area .room-grid-style-3:hover .room-flip-back {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  -moz-transform: rotateY(0);
  transform: rotateY(0);
}
.room-area .room-grid-style-3:hover .room-flip-back .room-flip-back-content {
  -webkit-transform: translateY(-50%) translateX(0) translateZ(0) scale(1);
  -ms-transform: translateY(-50%) translateX(0) translateZ(0) scale(1);
  -o-transform: translateY(-50%) translateX(0) translateZ(0) scale(1);
  -moz-transform: translateY(-50%) translateX(0) translateZ(0) scale(1);
  transform: translateY(-50%) translateX(0) translateZ(0) scale(1);
}
.room-area .room-list {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .room-area .room-list {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.room-area .room-list .room-list-item {
  margin-bottom: 30px;
  padding: 20px;
  overflow: hidden;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 680px) {
  .room-area .room-list .room-list-item {
    display: block;
  }
}
.room-area .room-list .room-list-item .room-image {
  overflow: hidden;
  width: 40%;
  min-height: 284px;
  height: 100%;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 680px) {
  .room-area .room-list .room-list-item .room-image {
    min-height: auto;
    margin-bottom: 20px;
    width: 100%;
  }
}
.room-area .room-list .room-list-item .room-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0px;
  margin: auto;
  min-height: 284px;
  min-width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 680px) {
  .room-area .room-list .room-list-item .room-image img {
    min-height: auto;
    position: relative;
  }
}
.room-area .room-list .room-list-item .room-image::after {
  content: "";
  bottom: 0;
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.room-area .room-list .room-list-item .room-content {
  width: 60%;
  margin-left: 30px;
}
@media (max-width: 680px) {
  .room-area .room-list .room-list-item .room-content {
    width: 100%;
    margin-left: 0;
  }
}
.room-area .room-list .room-list-item .room-content .room-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.room-area .room-list .room-list-item .room-content .room-meta li {
  margin-bottom: 15px;
  position: relative;
  padding-right: 20px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .room-area .room-list .room-list-item .room-content .room-meta li {
    padding-right: 15px;
  }
}
.room-area .room-list .room-list-item .room-content .room-meta li i {
  color: var(--primary-color);
  margin-right: 10px;
}
.room-area .room-list .room-list-item .room-content .price-more {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 420px) {
  .room-area .room-list .room-list-item .room-content .price-more {
    display: block;
    text-align: center;
  }
}
@media (max-width: 420px) {
  .room-area .room-list .room-list-item .room-content .price-more .room-price {
    margin-bottom: 25px;
  }
}
.room-area .room-list .room-list-item .room-content .price-more .room-price span {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}
@media (max-width: 420px) {
  .room-area .room-list .room-list-item .room-content .price-more a {
    width: 100%;
  }
}
.room-area .room-list:hover .room-item-image img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.room-area .room-list:hover .room-item-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}
.room-area .related-room-slider .room-grid-style-2 .room-item-content {
  background-color: var(--white-color);
}

.room-single-area .room-single-post {
  overflow: hidden;
  margin-right: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .room-single-area .room-single-post {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.room-single-area .room-single-post .room-single-contain {
  padding: 40px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 991px) {
  .room-single-area .room-single-post .room-single-contain {
    padding: 20px;
  }
}
.room-single-area .room-single-post .room-single-contain .service-entry-content h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content h3::before {
  content: "";
  height: 2px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 65px;
  width: 10px;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content h3::after {
  content: "";
  height: 2px;
  width: 60px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta {
  padding-top: 10px;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta .room-single-meta-item {
  display: block;
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--body-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
@media (max-width: 767px) {
  .room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta .room-single-meta-item {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta .room-single-meta-item i {
  display: block;
  position: relative;
  margin-bottom: 15px;
  font-size: 26px;
  color: var(--primary-color);
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta .room-single-meta-item .room-single-meta-name {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}
@media (max-width: 568px) {
  .room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta .room-single-meta-item .room-single-meta-name {
    font-size: 14px;
  }
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta .room-single-meta-item .room-single-meta-dec {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 568px) {
  .room-single-area .room-single-post .room-single-contain .service-entry-content .room-single-meta .room-single-meta-item .room-single-meta-dec {
    font-size: 14px;
  }
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-video {
  margin-bottom: 50px;
  padding-top: 30px;
  height: 450px;
}
@media (max-width: 991px) {
  .room-single-area .room-single-post .room-single-contain .service-entry-content .room-video {
    height: 420px;
  }
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-video .video-part {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-video .video-part .video-play {
  width: 100px;
  height: 100px;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 24px;
  line-height: 100px;
  position: relative;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-video .video-part .video-play i {
  z-index: 2;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-video .video-part .video-play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-video .video-part .video-play::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-amenities {
  margin-bottom: 30px;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-amenities .room-amenities-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-amenities .room-amenities-item i {
  margin-right: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-amenities .room-amenities-item p {
  margin-bottom: 0;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .hotel-amenities {
  margin-bottom: 30px;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .hotel-amenities .hotel-amenities-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .hotel-amenities .hotel-amenities-item i {
  margin-right: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .hotel-amenities .hotel-amenities-item p {
  margin-bottom: 0;
}
.room-single-area .room-single-post .room-single-contain .service-entry-content .room-rules {
  margin-bottom: 50px;
}

.food-drink-area .food-drink-content {
  margin-right: 50px;
}
@media (max-width: 991px) {
  .food-drink-area .food-drink-content {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.food-drink-area .food-drink-content .title-box {
  margin-bottom: 30px;
}
.food-drink-area .food-drink-content .food-drink-list {
  margin-bottom: 30px;
}
.food-drink-area .food-drink-content .food-drink-list ul li {
  margin-bottom: 25px;
}
.food-drink-area .food-drink-content .food-drink-list ul li .food-drink-list-content h5 {
  margin: 0 0 5px 0;
}
.food-drink-area .food-drink-image {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.food-drink-area .food-drink-image .food-drink-image-1 {
  width: 48%;
}
.food-drink-area .food-drink-image .food-drink-image-2 {
  width: 48%;
  margin-bottom: 100px;
}
.food-drink-area .food-drink-image .popular-clients {
  margin: auto;
  padding: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  text-align: center;
  width: 248px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-animation: updownslow 1s infinite alternate;
  -moz-animation: updownslow 1s infinite alternate;
  -o-animation: updownslow 1s infinite alternate;
  animation: updownslow 1s infinite alternate;
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
.food-drink-area .food-drink-image .popular-clients span {
  margin-bottom: 15px;
  display: inline-block;
  font-size: 18px;
  color: var(--primary-color);
}
.food-drink-area .food-drink-image .popular-clients ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.food-drink-area .food-drink-image .popular-clients ul li img {
  width: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid var(--white-color);
}
.food-drink-area .food-drink-image .popular-clients ul li:not(:nth-child(1)) {
  margin-left: -20px;
}
@media (max-width: 520px) {
  .food-drink-area .food-drink-image .popular-clients {
    animation: none;
    left: 20%;
    padding: 20px;
  }
}

.offers-area .offers-style-1 {
  background-color: var(--black-color);
  padding: 120px 60px 60px 60px;
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 767px) {
  .offers-area .offers-style-1 {
    padding: 120px 30px 60px 30px;
  }
}
.offers-area .offers-style-1 .background-image {
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.offers-area .offers-style-1 .offers-content {
  z-index: 1;
}
.offers-area .offers-style-1 .offers-content .offers-tag {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 15px 0;
  display: inline-block;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  text-transform: capitalize;
  padding: 5px 15px;
  z-index: 1;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.offers-area .offers-style-1 .offers-content h2 {
  color: var(--white-color);
  margin-bottom: 30px;
}
.offers-area .offers-style-1::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--black-color);
  left: 0;
  opacity: 0.4;
}
.offers-area .offers-style-1:hover .background-image {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.offers-area .offers-style-1:hover .offers-tag {
  background-color: var(--white-color);
  color: var(--black-color);
}

@media (max-width: 991px) {
  .testimonial-area .title-box {
    text-align: center;
  }
}
.testimonial-area .testimonial-image-1 {
  width: 100%;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .testimonial-area .testimonial-image-1 {
    margin-bottom: 50px;
    padding-right: 50px;
  }
}
.testimonial-area .testimonial-image-2 {
  position: absolute;
  top: 50%;
  right: -50px;
  max-width: 256px;
  border: 4px solid var(--white-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-animation: updownslow 1s infinite alternate;
  -moz-animation: updownslow 1s infinite alternate;
  -o-animation: updownslow 1s infinite alternate;
  animation: updownslow 1s infinite alternate;
}
@media (max-width: 991px) {
  .testimonial-area .testimonial-image-2 {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .testimonial-area .testimonial-image-2 {
    max-width: 214px;
    top: 30%;
  }
}
@media (max-width: 480px) {
  .testimonial-area .testimonial-image-2 {
    max-width: 140px;
    top: 20%;
  }
}
.testimonial-area .testimonial-slider {
  padding: 60px 0;
}
.testimonial-area .testimonial-slider .testimonial-item {
  padding: 30px;
  z-index: 1;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .testimonial-area .testimonial-slider .testimonial-item {
    padding: 20px;
  }
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 {
  background-color: var(--body-color);
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 .star-ratings-box {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 .star-ratings-box i {
  color: #fdcf00;
  margin-right: 5px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 p {
  font-size: 18px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 .author-info {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding-top: 30px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 .author-info .author-image img {
  width: 100px;
  height: 100px;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  -o-border-radius: 500px;
  border-radius: 500px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 .author-info .author-image i {
  font-size: 16px;
  z-index: 1;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--white-color);
  color: var(--black-color);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 .author-info .author-content {
  flex: 1;
  margin-left: 30px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-1 .author-info .author-content .author-title {
  margin-bottom: 5px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-2 {
  background-color: var(--body-color);
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-2 .author-info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-2 .author-info .author-image {
  text-align: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-2 .author-info .author-image img {
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  -o-border-radius: 500px;
  border-radius: 500px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-2 .author-info .author-image i {
  font-size: 16px;
  z-index: 1;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--white-color);
  color: var(--black-color);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-2 .author-info .author-content .author-title {
  margin-bottom: 5px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-2 p {
  text-align: center;
  font-size: 18px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 {
  padding: 0;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .testimonial-content {
  padding: 40px;
  position: relative;
  background-color: var(--body-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .testimonial-content {
    padding: 20px;
  }
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .testimonial-content::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -20px;
  border-width: 20px 20px 0 20px;
  border-color: var(--body-color) transparent transparent transparent;
  border-style: solid;
  left: 25px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .testimonial-content .star-ratings-box {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .testimonial-content .star-ratings-box i {
  color: #fdcf00;
  margin-right: 5px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .testimonial-content p {
  font-size: 18px;
  margin-bottom: 0;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .author-info {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 30px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .author-info .author-image img {
  width: 100px;
  height: 100px;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  -o-border-radius: 500px;
  border-radius: 500px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .author-info .author-image i {
  font-size: 16px;
  z-index: 1;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--white-color);
  color: var(--black-color);
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .author-info .author-content {
  flex: 1;
  margin-left: 30px;
}
.testimonial-area .testimonial-slider .testimonial-item.testimonial-style-3 .author-info .author-content .author-title {
  margin-bottom: 5px;
}
.testimonial-area .dot-circle::after {
  content: "";
  position: absolute;
  opacity: 0.3;
  left: -75px;
  bottom: -75px;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(var(--primary-color) 1px, rgba(255, 0, 0, 0) 2.2px);
  background-size: 0.7rem 0.7rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: float-y-axis 4s infinite alternate;
  -moz-animation: float-y-axis 4s infinite alternate;
  -o-animation: float-y-axis 4s infinite alternate;
  animation: float-y-axis 4s infinite alternate;
}

.instagram-area {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .instagram-area .instagram-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    position: relative;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .instagram-area .instagram-item {
    width: 33.333%;
  }
  .instagram-area .instagram-item:first-child {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}
.instagram-area .instagram-item .instagram-gallery {
  position: relative;
  display: block;
  z-index: 1;
}
.instagram-area .instagram-item .instagram-gallery img {
  width: 100%;
}
.instagram-area .instagram-item .instagram-gallery::before {
  content: "\f06e";
  font-family: "Font Awesome 6 free";
  position: absolute;
  top: 40%;
  left: 50%;
  font-size: 32px;
  color: var(--white-color);
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.instagram-area .instagram-item .instagram-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.instagram-area .instagram-item .instagram-content {
  padding: 25px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.instagram-area .instagram-item .instagram-content .instagram-icon {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.instagram-area .instagram-item .instagram-content h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 0;
  color: var(--primary-color);
}
.instagram-area .instagram-item:hover .instagram-gallery::before {
  top: 50%;
  opacity: 1;
}
.instagram-area .instagram-item:hover .instagram-gallery::after {
  opacity: 0.6;
}

.video-area .video-part {
  height: 540px;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .video-area .video-part {
    height: 420px;
  }
}
.video-area .video-part .background-image {
  background-attachment: fixed;
}
.video-area .video-part .play-btn .video-play {
  width: 100px;
  height: 100px;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 24px;
  line-height: 100px;
  position: relative;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.video-area .video-part .play-btn .video-play i {
  z-index: 2;
}
.video-area .video-part .play-btn .video-play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.video-area .video-part .play-btn .video-play::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}

.funfact-area {
  z-index: 2;
}
.funfact-area.funfact-style-1 {
  background-color: var(--primary-color);
}
.funfact-area.funfact-style-1 .funfact-wrap {
  border-right: 1px dashed var(--border-color);
  text-align: center;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-1 .funfact-wrap:not(:nth-child(n+3)) {
    padding-bottom: 50px;
    border-bottom: 1px dashed var(--border-color);
  }
  .funfact-area.funfact-style-1 .funfact-wrap:nth-child(n+3) {
    padding-top: 50px;
  }
  .funfact-area.funfact-style-1 .funfact-wrap:nth-child(2), .funfact-area.funfact-style-1 .funfact-wrap:last-child {
    border-right: none;
  }
}
@media (max-width: 480px) {
  .funfact-area.funfact-style-1 .funfact-wrap:not(:nth-child(n+3)) {
    padding-bottom: 30px;
  }
  .funfact-area.funfact-style-1 .funfact-wrap:nth-child(n+3) {
    padding-top: 30px;
  }
}
.funfact-area.funfact-style-1 .funfact-wrap:last-child {
  border-right: none;
}
.funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-value {
  font-size: 62px;
  line-height: normal;
  position: relative;
  overflow: visible;
  text-shadow: 2px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(255, 255, 255, 0.8), 1px -1px 0 rgba(255, 255, 255, 0.8), -1px 1px 0 rgba(255, 255, 255, 0.8), 1px 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-text-fill-color: var(--primary-color);
  -webkit-text-stroke-width: 0;
  color: transparent;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-value {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-value {
    font-size: 42px;
  }
}
.funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-value::after {
  content: "+";
  position: relative;
  font-size: 62px;
  margin-left: 10px;
  top: 0;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-value::after {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-value::after {
    font-size: 42px;
  }
}
.funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-title {
  font-size: 22px;
  font-weight: normal;
  line-height: normal;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .funfact-area.funfact-style-1 .funfact-wrap .funfact-item .funfact-title {
    font-size: 14px;
  }
}
.funfact-area.funfact-style-2 .outer-box {
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
.funfact-area.funfact-style-2 .outer-box .funfact-wrap {
  border-right: 1px dashed var(--black-color);
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-2 .outer-box .funfact-wrap:not(:nth-child(n+3)) {
    padding-bottom: 50px;
    border-bottom: 1px dashed var(--black-color);
  }
  .funfact-area.funfact-style-2 .outer-box .funfact-wrap:nth-child(n+3) {
    padding-top: 50px;
  }
  .funfact-area.funfact-style-2 .outer-box .funfact-wrap:nth-child(2), .funfact-area.funfact-style-2 .outer-box .funfact-wrap:last-child {
    border-right: none;
  }
}
.funfact-area.funfact-style-2 .outer-box .funfact-wrap:last-child {
  border-right: none;
}
.funfact-area.funfact-style-2 .outer-box .funfact-wrap .funfact-item .funfact-value {
  font-size: 62px;
  line-height: normal;
  position: relative;
  overflow: visible;
  text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.8), -1px -1px 0 rgba(0, 0, 0, 0.8), 1px -1px 0 rgba(0, 0, 0, 0.8), -1px 1px 0 rgba(0, 0, 0, 0.8), 1px 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-text-fill-color: var(--secondary-color);
  -webkit-text-stroke-width: 0;
  color: transparent;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-2 .outer-box .funfact-wrap .funfact-item .funfact-value {
    font-size: 48px;
  }
}
.funfact-area.funfact-style-2 .outer-box .funfact-wrap .funfact-item .funfact-value::after {
  content: "+";
  position: relative;
  font-size: 62px;
  margin-left: 10px;
  top: 0;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-2 .outer-box .funfact-wrap .funfact-item .funfact-value::after {
    font-size: 48px;
  }
}
.funfact-area.funfact-style-2 .outer-box .funfact-wrap .funfact-item .funfact-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .funfact-area.funfact-style-2 .outer-box .funfact-wrap .funfact-item .funfact-title {
    font-size: 16px;
  }
}

.activities-area .background-image {
  height: 650px;
}
.activities-area .activities-item {
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
.activities-area .activities-item .activities-image {
  overflow: hidden;
}
.activities-area .activities-item .activities-image img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.activities-area .activities-item .activities-image::after {
  content: "";
  bottom: 0;
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.activities-area .activities-item .activities-content {
  background-color: var(--white-color);
  padding: 30px;
  text-align: center;
}
@media (max-width: 991px) {
  .activities-area .activities-item .activities-content {
    padding: 20px;
  }
}
.activities-area .activities-item:hover .activities-image img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.activities-area .activities-item:hover .activities-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}

@media (max-width: 991px) {
  .pricing-area .section-title {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .pricing-area .pricing-switch {
    text-align: center !important;
    margin-bottom: 50px;
  }
}
.pricing-area .pricing-switch ul {
  overflow: hidden;
  list-style: none;
  margin-bottom: 0;
  background-color: var(--white-color);
  border: none;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.pricing-area .pricing-switch ul li a {
  height: 45px;
  padding: 5px 25px;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color);
  font-weight: 500;
  text-transform: uppercase;
  border: none !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.pricing-area .pricing-switch ul li a.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.pricing-area .pricing-item {
  overflow: hidden;
  padding: 40px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
@media (max-width: 991px) {
  .pricing-area .pricing-item {
    padding: 20px;
  }
}
.pricing-area .pricing-item .pricing-content .pricing-label {
  display: block;
  width: 210px;
  padding-block: 0.5rem;
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  text-align: center;
  color: var(--white-color);
  background-color: var(--primary-color);
  font-weight: 600;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(38.473deg) translate(28%, -180%);
  -ms-transform: rotate(38.473deg) translate(28%, -180%);
  -o-transform: rotate(38.473deg) translate(28%, -180%);
  -moz-transform: rotate(38.473deg) translate(28%, -180%);
  transform: rotate(38.473deg) translate(28%, -180%);
}
@media (max-width: 991px) {
  .pricing-area .pricing-item .pricing-content .pricing-label {
    width: 170px;
    font-size: 12px;
    padding-block: 0;
    -webkit-transform: rotate(38.473deg) translate(31%, -180%);
    -ms-transform: rotate(38.473deg) translate(31%, -180%);
    -o-transform: rotate(38.473deg) translate(31%, -180%);
    -moz-transform: rotate(38.473deg) translate(31%, -180%);
    transform: rotate(38.473deg) translate(31%, -180%);
  }
}
.pricing-area .pricing-item .pricing-content .pricing-text p span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
}
.pricing-area .pricing-item .pricing-content .pricing-text .pricing-plan-price {
  font-size: 34px;
}
@media (max-width: 767px) {
  .pricing-area .pricing-item .pricing-content .pricing-text .pricing-plan-price {
    font-size: 28px;
  }
}
.pricing-area .pricing-item .pricing-content .pricing-text .pricing-plan-price span {
  font-size: 14px;
  font-weight: normal;
  color: var(--text-color);
}
.pricing-area .pricing-item .pricing-content .pricing-list {
  display: block;
  margin-bottom: 30px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.pricing-area .pricing-item .pricing-content .pricing-list ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}
.pricing-area .pricing-item .pricing-content .pricing-list ul li i {
  position: absolute;
  left: 0;
  top: 4px;
}
.pricing-area .pricing-item .pricing-content .pricing-list ul li i.active {
  color: var(--primary-color);
}
.pricing-area .pricing-item.popular-plan {
  border-color: var(--primary-color);
}

.staff-area .staff-style-1 {
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
.staff-area .staff-style-1 .staff-image {
  overflow: hidden;
  display: block;
}
.staff-area .staff-style-1 .staff-image img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.staff-area .staff-style-1 .staff-image .social-profile {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.staff-area .staff-style-1 .staff-image .social-profile .plus-btn {
  z-index: 2;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.staff-area .staff-style-1 .staff-image .social-profile ul {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  -moz-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.staff-area .staff-style-1 .staff-image .social-profile ul li {
  margin-bottom: 10px;
}
.staff-area .staff-style-1 .staff-image .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: block;
  text-align: center;
  margin: 0 auto;
  background-color: var(--white-color);
  color: var(--primary-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.staff-area .staff-style-1 .staff-image .social-profile ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.staff-area .staff-style-1 .staff-image .social-profile:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
.staff-area .staff-style-1 .staff-image::after {
  content: "";
  bottom: 0;
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.staff-area .staff-style-1 .staff-content {
  z-index: 2;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .staff-area .staff-style-1 .staff-content {
    padding: 20px;
  }
}
.staff-area .staff-style-1 .staff-content h4 {
  margin-bottom: 10px;
}
.staff-area .staff-style-1 .staff-content span {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-left: 45px;
}
.staff-area .staff-style-1 .staff-content span::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  top: 12px;
  position: absolute;
}
.staff-area .staff-style-1:hover .staff-image img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.staff-area .staff-style-1:hover .staff-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}
.staff-area .staff-style-2 {
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
.staff-area .staff-style-2 .staff-image {
  overflow: hidden;
  display: block;
}
.staff-area .staff-style-2 .staff-image img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.staff-area .staff-style-2 .staff-image .social-profile {
  position: absolute;
  right: -40px;
  bottom: 30px;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.staff-area .staff-style-2 .staff-image .social-profile .plus-btn {
  z-index: 2;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.staff-area .staff-style-2 .staff-image .social-profile ul {
  -webkit-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.staff-area .staff-style-2 .staff-image .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: block;
  text-align: center;
  margin: 0 auto;
  background-color: var(--white-color);
  color: var(--primary-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.staff-area .staff-style-2 .staff-image .social-profile ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.staff-area .staff-style-2 .staff-image::after {
  content: "";
  bottom: 0;
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.staff-area .staff-style-2 .staff-content {
  z-index: 2;
  padding: 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .staff-area .staff-style-2 .staff-content {
    padding: 20px;
  }
}
.staff-area .staff-style-2 .staff-content h4 {
  margin-bottom: 10px;
}
.staff-area .staff-style-2 .staff-content span {
  position: relative;
  display: block;
  margin-bottom: 0;
}
.staff-area .staff-style-2:hover .staff-image img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.staff-area .staff-style-2:hover .staff-image .social-profile {
  right: 30px;
}
.staff-area .staff-style-2:hover .staff-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}
.staff-area.staff-before::before {
  content: "";
  height: calc(84% - 85px);
  width: 100%;
  background-color: var(--primary-color);
  background-image: url("../images/pattern/pattern-1.png");
  position: absolute;
  top: 0;
}

.staff-single-area .outer-box {
  padding: 50px;
  background-color: var(--white-color);
  z-index: 1;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .staff-single-area .outer-box {
    padding: 20px;
  }
}
.staff-single-area .outer-box .staff-single-image {
  margin-right: 50px;
}
@media (max-width: 991px) {
  .staff-single-area .outer-box .staff-single-image {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.staff-single-area .outer-box .staff-single-content .staff-contact-info {
  margin-bottom: 30px;
}
.staff-single-area .outer-box .staff-single-content .staff-contact-info li {
  margin-bottom: 10px;
}
.staff-single-area .outer-box .staff-single-content .staff-contact-info li strong {
  color: var(--primary-color);
}
.staff-single-area .outer-box .staff-single-content .staff-contact-info li:nth-last-child(1) {
  margin-bottom: 0;
}

.staff-single-info .staff-single-info-title h2 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white-color);
}
.staff-single-info .staff-single-info-title h2::after {
  content: "";
  height: 2px;
  width: 60px;
  background-color: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.staff-single-info .staff-single-info-title h2::before {
  content: "";
  height: 2px;
  background-color: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 65px;
  width: 10px;
}
.staff-single-info .staff-biography-content p {
  color: var(--white-color);
}
.staff-single-info .staff-skills-content p {
  color: var(--white-color);
}
.staff-single-info .staff-skills-content .skill-progress-wapper {
  padding-top: 20px;
}
.staff-single-info .staff-skills-content .skill-progress-wapper .single-progressbar .progress-title {
  color: var(--white-color);
}
.staff-single-info .staff-skills-content .skill-progress-wapper .single-progressbar .progressbar {
  background-color: var(--white-color);
}
.staff-single-info .staff-skills-content .skill-progress-wapper .single-progressbar .progressbar .progress-bar-count {
  background-color: var(--secondary-color);
}
.staff-single-info .staff-skills-content .skill-progress-wapper .single-progressbar .progressbar .progress-bar-count .progress-number {
  color: var(--white-color);
}

.clents-area .clents-item .clents-image {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.clents-area .clents-item .clents-image img {
  position: relative;
  width: auto;
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.clents-area .clents-item .clents-image img:first-child {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transform: translateY(50%) scaleY(2);
  -ms-transform: translateY(50%) scaleY(2);
  -o-transform: translateY(50%) scaleY(2);
  -moz-transform: translateY(50%) scaleY(2);
  transform: translateY(50%) scaleY(2);
}
.clents-area .clents-item .clents-image:hover img:first-child {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: translateY(0) scaleY(1);
  -ms-transform: translateY(0) scaleY(1);
  -o-transform: translateY(0) scaleY(1);
  -moz-transform: translateY(0) scaleY(1);
  transform: translateY(0) scaleY(1);
}
.clents-area .clents-item .clents-image:hover img:nth-child(2) {
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transform: translateY(-50%) scaleY(2);
  -ms-transform: translateY(-50%) scaleY(2);
  -o-transform: translateY(-50%) scaleY(2);
  -moz-transform: translateY(-50%) scaleY(2);
  transform: translateY(-50%) scaleY(2);
}

@media (max-width: 991px) {
  .subscriber-area .subscriber-content {
    margin-bottom: 30px;
    text-align: center;
  }
}
.subscriber-area .subscriber-content h2 {
  color: var(--white-color);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.subscriber-area .subscriber-form {
  position: relative;
  z-index: 2;
}
.subscriber-area .subscriber-form form {
  position: relative;
}
.subscriber-area .subscriber-form form input {
  height: 66px;
  line-height: 66px;
}
.subscriber-area .subscriber-form form .theme-button {
  position: absolute;
  bottom: 0;
  top: 5px;
  right: 6px;
  height: 56px;
}
@media (max-width: 560px) {
  .subscriber-area .subscriber-form form .theme-button {
    position: relative;
    top: 20px;
    right: 0;
    left: 0;
    width: 100%;
  }
}
.subscriber-area .subscriber-shape-box {
  position: absolute;
  bottom: 0;
  width: 320px;
}

.explore-area .explore-item {
  position: relative;
  top: 200px;
  z-index: 2;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .explore-area .explore-item {
    top: 0;
  }
}
.explore-area .explore-item .explore-list-data {
  padding: 80px 50px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .explore-area .explore-item .explore-list-data {
    padding: 40px 20px;
  }
}
.explore-area .explore-item .explore-list-data.explore-left {
  background: var(--black-color);
}
.explore-area .explore-item .explore-list-data.explore-left .check-list li {
  color: var(--white-color);
}
.explore-area .explore-item .explore-list-data.explore-left .check-list li span {
  border-color: var(--white-color);
  color: var(--white-color);
}
.explore-area .explore-item .explore-list-data.explore-left .check-list li span::before {
  background-color: var(--white-color);
}
.explore-area .explore-item .explore-list-data.explore-right {
  background: var(--secondary-color);
}
.explore-area .explore-item .explore-list-data.explore-right .check-list li {
  color: var(--black-color);
}
.explore-area .explore-item .explore-list-data.explore-right .check-list li span {
  border-color: var(--black-color);
  color: var(--black-color);
}
.explore-area .explore-item .explore-list-data.explore-right .check-list li span::before {
  background-color: var(--black-color);
}

@media (max-width: 991px) {
  .local-amenities-area .local-amenities-image {
    margin-bottom: 30px;
  }
}

.about-area .about-author {
  max-width: 530px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-area .about-author .about-author-image {
  width: 70px;
  height: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.about-area .about-author .about-author-description {
  padding-left: 90px;
  min-height: 70px;
  padding-top: 10px;
}
.about-area .about-author .about-author-description h5 {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}
.about-area.about-style-1 .about-left {
  margin-left: 60px;
  max-width: 470px;
}
@media (max-width: 991px) {
  .about-area.about-style-1 .about-left {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .about-area.about-style-1 .about-left {
    margin-left: 20px;
  }
}
.about-area.about-style-1 .about-left .about-image1 {
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 87%, 87% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 87%, 87% 100%, 0 100%);
}
.about-area.about-style-1 .about-left .about-image2 {
  position: absolute;
  bottom: 180px;
  right: -70px;
  z-index: 2;
  background-color: var(--white-color);
  padding: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .about-area.about-style-1 .about-left .about-image2 {
    right: 10px;
  }
}
.about-area.about-style-1 .about-left .about-image2 .circule-1 {
  -webkit-animation: rotateImg 15s infinite linear;
  -moz-animation: rotateImg 15s infinite linear;
  -o-animation: rotateImg 15s infinite linear;
  animation: rotateImg 15s infinite linear;
}
.about-area.about-style-1 .about-left .about-image2 .about-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  background: var(--primary-color);
  color: var(--white-color);
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-area.about-style-1 .about-left::after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.3;
  left: -75px;
  top: -75px;
  width: 250px;
  height: 250px;
  background: radial-gradient(var(--primary-color) 1px, rgba(255, 0, 0, 0) 2.2px);
  background-size: 0.7rem 0.7rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: float-y-axis 4s infinite alternate;
  -moz-animation: float-y-axis 4s infinite alternate;
  -o-animation: float-y-axis 4s infinite alternate;
  animation: float-y-axis 4s infinite alternate;
}
@media (max-width: 991px) {
  .about-area.about-style-1 .about-left::after {
    left: -65px;
    top: -25px;
    width: 180px;
    height: 180px;
  }
}
.about-area.about-style-1 .about-right .check-list li:nth-last-child(1) {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .about-area.about-style-2 .about-left {
    margin-bottom: 50px;
  }
}
.about-area.about-style-2 .about-left .about-info-block {
  padding-left: 75px;
  max-width: 290px;
  margin-bottom: 30px;
}
.about-area.about-style-2 .about-left .about-info-block svg {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  color: var(--black-color);
}
.about-area.about-style-2 .about-left .about-info-block p {
  font-size: 22px;
  font-weight: bold;
  line-height: normal;
  color: var(--black-color);
  margin-bottom: 0;
}
.about-area.about-style-2 .about-right {
  text-align: right;
  padding-left: 20px;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .about-area.about-style-2 .about-right {
    padding-bottom: 0;
  }
}
.about-area.about-style-2 .about-right .about-image1 {
  display: inline-block;
  margin-bottom: 0;
}
.about-area.about-style-2 .about-right .about-image1 img {
  width: 100%;
  margin-bottom: 50px;
}
.about-area.about-style-2 .about-right .about-image2 {
  position: absolute;
  left: -60px;
  bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .about-area.about-style-2 .about-right .about-image2 {
    left: 0;
  }
}
.about-area.about-style-2 .about-right .exp-box {
  position: absolute;
  left: 135px;
  bottom: 18px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  background-color: var(--black-color);
  width: 260px;
  text-align: center;
  padding: 30px;
  z-index: 2;
  -webkit-animation: updownslow 1s infinite alternate;
  -moz-animation: updownslow 1s infinite alternate;
  -o-animation: updownslow 1s infinite alternate;
  animation: updownslow 1s infinite alternate;
}
@media (max-width: 480px) {
  .about-area.about-style-2 .about-right .exp-box {
    left: 25px;
    width: 240px;
  }
}
.about-area.about-style-2 .about-right .exp-box svg {
  margin-bottom: 10px;
  color: var(--white-color);
  display: inline-block;
}
.about-area.about-style-2 .about-right .exp-box h4 {
  color: var(--white-color);
}
.about-area.about-style-2 .about-right .exp-box p {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 14px;
  line-height: normal;
}
@media (max-width: 991px) {
  .about-area.about-style-3 .about-left {
    margin-bottom: 30px;
  }
}
.about-area.about-style-3 .about-left img {
  width: 100%;
}
.about-area.about-style-3 .about-right {
  margin-left: 50px;
}
@media (max-width: 991px) {
  .about-area.about-style-3 .about-right {
    margin-left: 0;
  }
}
.about-area.about-style-3 .about-right img {
  margin-bottom: 30px;
  width: 100%;
}
.about-area.about-style-3 .about-right .about-working-hour-box {
  margin-bottom: 30px;
}
.about-area.about-style-3 .about-right .about-working-hour-box p {
  margin-bottom: 0;
}

.skills-area .skills-image {
  padding-left: 80px;
  text-align: end;
}
@media (max-width: 991px) {
  .skills-area .skills-image {
    padding-left: 0;
    padding-top: 30px;
  }
}
.skills-area .skills-image.dot-circule::after {
  content: "";
  position: absolute;
  opacity: 0.3;
  left: 0;
  top: 0;
  width: 250px;
  height: 250px;
  z-index: 1;
  background: radial-gradient(var(--primary-color) 1px, rgba(255, 0, 0, 0) 2.2px);
  background-size: 0.7rem 0.7rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: float-y-axis 4s infinite alternate;
  -moz-animation: float-y-axis 4s infinite alternate;
  -o-animation: float-y-axis 4s infinite alternate;
  animation: float-y-axis 4s infinite alternate;
}
.skills-area .skills-image .skills-image-1 {
  width: 100%;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .skills-area .skills-image .skills-image-1 {
    padding-left: 50px;
  }
}
.skills-area .skills-image .skills-image-2 {
  position: absolute;
  bottom: 100px;
  left: 0;
  max-width: 256px;
  border: 4px solid var(--white-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-animation: updownslow 1s infinite alternate;
  -moz-animation: updownslow 1s infinite alternate;
  -o-animation: updownslow 1s infinite alternate;
  animation: updownslow 1s infinite alternate;
}
@media (max-width: 991px) {
  .skills-area .skills-image .skills-image-2 {
    left: 10px;
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .skills-area .skills-image .skills-image-2 {
    max-width: 214px;
  }
}
@media (max-width: 480px) {
  .skills-area .skills-image .skills-image-2 {
    max-width: 140px;
  }
}

.skill-progress-wapper .single-progressbar {
  margin-bottom: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.skill-progress-wapper .single-progressbar .progress-title {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.skill-progress-wapper .single-progressbar .progressbar {
  position: relative;
  width: 100%;
  height: 6px;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  background-color: var(--body-color);
}
.skill-progress-wapper .single-progressbar .progressbar .progress-bar-count {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0;
  background-color: var(--primary-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: all 800ms linear;
  -ms-transition: all 800ms linear;
  -o-transition: all 800ms linear;
  -moz-transition: all 800ms linear;
  transition: all 800ms linear;
}
.skill-progress-wapper .single-progressbar .progressbar .progress-bar-count .progress-number {
  position: absolute;
  bottom: calc(100% + 15px);
  right: 0;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.services-area .background-patten {
  background-position: left bottom;
  background-repeat: no-repeat;
}
.services-area .services-style-1 {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
@media (max-width: 991px) {
  .services-area .services-style-1 {
    padding: 20px;
  }
}
.services-area .services-style-1 .service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  transform-style: preserve-3d;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.services-area .services-style-1 .service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-area .services-style-1 .services-icon {
  color: var(--black-color);
  margin-bottom: 20px;
  font-size: 82px;
  line-height: 82px;
  z-index: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.services-area .services-style-1 .services-content {
  z-index: 2;
}
.services-area .services-style-1 .services-content .services-title {
  margin-bottom: 10px;
}
.services-area .services-style-1 .services-content .services-title a {
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
.services-area .services-style-1 .services-content p {
  margin-bottom: 0;
}
.services-area .services-style-1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color);
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.services-area .services-style-1:hover .services-icon i {
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}
.services-area .services-style-1.active .service-card-bg {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
}
.services-area .services-style-1.active .services-icon {
  color: var(--white-color);
}
.services-area .services-style-1.active .services-content .services-title {
  color: var(--white-color);
}
.services-area .services-style-1.active .services-content p {
  color: var(--white-color);
}
.services-area .services-style-1.active::after {
  opacity: 0.8;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
}
.services-area .services-style-2 {
  margin-bottom: 30px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
.services-area .services-style-2 .service-image img {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 50% 87%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 50% 87%, 0 100%, 0 0);
}
.services-area .services-style-2 .service-image .services-icon {
  font-size: 62px;
  line-height: normal;
  z-index: 1;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  height: 120px;
  width: 120px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  -o-border-radius: 500px;
  border-radius: 500px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 991px) {
  .services-area .services-style-2 .service-image .services-icon {
    height: 100px;
    width: 100px;
    font-size: 42px;
    margin-top: -80px;
  }
}
.services-area .services-style-2 .service-image .services-icon svg {
  width: 60px;
  height: 60px;
}
.services-area .services-style-2 .services-content {
  padding: 40px;
  text-align: center;
}
@media (max-width: 991px) {
  .services-area .services-style-2 .services-content {
    padding: 20px;
  }
}
.services-area .services-style-2 .services-content .services-title {
  margin-bottom: 10px;
}
.services-area .services-style-2 .services-content p {
  margin-bottom: 0;
}
.services-area .services-style-2:hover .services-icon svg {
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.services-area .services-style-3 {
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 40px 20px;
  z-index: 2;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) {
  .services-area .services-style-3 {
    padding: 40px 20px;
  }
}
.services-area .services-style-3 .services-icon {
  color: var(--black-color);
  font-size: 82px;
  line-height: 82px;
  z-index: 1;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.services-area .services-style-3 .services-content {
  z-index: 2;
}
.services-area .services-style-3 .services-content .services-title {
  margin-bottom: 0;
}
.services-area .services-style-3 .services-content .services-title a {
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
.services-area .services-style-3 .services-content p {
  margin-bottom: 0;
}
.services-area .services-style-3:hover .services-icon i {
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.services-area .services-style-3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color);
  background-image: url("../images/pattern/pattern-1.png");
  background-size: cover;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.services-area .services-style-3.active .services-icon {
  color: var(--white-color);
}
.services-area .services-style-3.active .services-content .services-title {
  color: var(--white-color);
}
.services-area .services-style-3.active .services-content p {
  color: var(--white-color);
}
.services-area .services-style-3.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
}
.services-area .short-info span {
  margin: 0 30px;
}
.services-area .short-info a {
  background-image: linear-gradient(var(--text-color), var(--text-color)), linear-gradient(var(--text-color), var(--text-color));
}
.services-area .owl-carousel .owl-dots {
  margin-top: 20px;
}
.services-area .title-outer-line {
  border-style: solid;
  border-width: 2px 0 2px 2px;
  border-color: var(--primary-color);
  margin: 50px -25px 50px 0;
  padding: 80px 80px 80px 50px;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  -ms-border-radius: 20px 0 0 20px;
  -o-border-radius: 20px 0 0 20px;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 991px) {
  .services-area .title-outer-line {
    border-width: 2px 2px 0 2px;
    margin: 20px 20px 0 20px;
    padding: 50px 20px;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
    border-radius: 20px 20px 0 0;
  }
}

.service-single-area .service-single-post {
  overflow: hidden;
  margin-right: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .service-single-area .service-single-post {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.service-single-area .service-single-post .service-single-contain {
  padding: 40px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 991px) {
  .service-single-area .service-single-post .service-single-contain {
    padding: 20px;
  }
}
.service-single-area .service-single-post .service-single-contain .service-entry-content h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.service-single-area .service-single-post .service-single-contain .service-entry-content h3::before {
  content: "";
  height: 2px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 65px;
  width: 10px;
}
.service-single-area .service-single-post .service-single-contain .service-entry-content h3::after {
  content: "";
  height: 2px;
  width: 60px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.service-single-area .service-single-post .service-single-contain .service-entry-content .services-single-gallary {
  overflow: hidden;
  margin-bottom: 20px;
}

.gallery-area .gallery-filters .gallery-filter-button-group ul {
  margin-bottom: 50px;
}
.gallery-area .gallery-filters .gallery-filter-button-group ul li {
  cursor: pointer;
  padding: 10px 20px;
  color: var(--black-color);
  background-color: var(--white-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.gallery-area .gallery-filters .gallery-filter-button-group ul li.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.gallery-area .gallery-grid .gallery-grid-item {
  margin-bottom: 30px;
}
.gallery-area .gallery-grid .gallery-grid-item .gallery-inner {
  height: 420px;
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.gallery-area .gallery-grid .gallery-grid-item .gallery-inner .gallery-image {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.gallery-area .gallery-grid .gallery-grid-item .gallery-inner .gallery-image img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.gallery-area .gallery-grid .gallery-grid-item .gallery-inner .overlay-content {
  height: 100%;
  width: 100%;
}
.gallery-area .gallery-grid .gallery-grid-item .gallery-inner .overlay-content a {
  color: var(--white-color);
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gallery-area .gallery-grid .gallery-grid-item .gallery-inner .overlay-content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.gallery-area .gallery-grid .gallery-grid-item:hover .gallery-inner .overlay-content a {
  top: 50%;
  opacity: 1;
}
.gallery-area .gallery-grid .gallery-grid-item:hover .gallery-inner .overlay-content::after {
  opacity: 0.8;
}

.booking-area .booking-wapper {
  overflow: hidden;
  margin-right: 30px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .booking-area .booking-wapper {
    margin-right: 0;
    margin-bottom: 50px;
    padding: 20px;
  }
}
.booking-area .booking-wapper .booking-form form .field-inner label {
  color: var(--text-color);
}
.booking-area .booking-wapper .booking-form form .field-inner input {
  background-color: var(--body-color);
}
.booking-area .booking-wapper .booking-form form .field-inner input:focus {
  border-color: var(--primary-color);
}
.booking-area .booking-wapper .booking-form form .field-inner select {
  background-color: var(--body-color);
}
.booking-area .booking-wapper .booking-form form .field-inner select:focus {
  border-color: var(--primary-color);
}
.booking-area .booking-wapper .booking-form form .field-inner textarea {
  height: 199px;
  background-color: var(--body-color);
}
.booking-area .booking-wapper .booking-form form .field-inner textarea:focus {
  border-color: var(--primary-color);
}
.booking-area .booking-wapper .booking-form form .booking-btn-wapper {
  padding-top: 10px;
}

.menu-item {
  padding-left: 125px;
  min-height: 100px;
  margin-bottom: 30px;
}
.menu-item .menu-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.menu-item .menu-content h3 {
  position: relative;
  padding-right: 15px;
  font-size: 26px;
  text-transform: capitalize;
  line-height: normal;
  margin-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 520px) {
  .menu-item .menu-content h3 {
    font-size: 22px;
  }
}
.menu-item .menu-content h3 .dish-tag {
  position: relative;
  display: inline-block;
  padding: 3px 5px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  background-color: var(--secondary-color);
  color: var(--black-color);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.menu-item .menu-content .menu-price {
  position: absolute;
  font-size: 18px;
  line-height: normal;
  top: 0;
  right: 0;
  font-weight: 600;
  padding: 5px 10px;
  z-index: 2;
  background-color: var(--primary-color);
  color: var(--white-color);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 580px) {
  .menu-item .menu-content .menu-price {
    position: relative;
    width: 70px;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.menu-item .menu-content p {
  margin-bottom: 0;
}
.menu-item .menu-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 100%;
  height: 6px;
  border-top: 1px dashed transparent;
  border-bottom: 1px dashed transparent;
}

.menu-left {
  padding-right: 80px;
}
@media (max-width: 1200px) {
  .menu-left {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .menu-left {
    padding-right: 10px;
  }
}
.menu-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 30px;
  border-right: 1px dashed var(--border-color);
}
@media (max-width: 991px) {
  .menu-left::after {
    border-right: none;
  }
}

.menu-right {
  padding-left: 80px;
}
@media (max-width: 1200px) {
  .menu-right {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .menu-right {
    padding-left: 10px;
  }
}

.main-courses-area .menu-item .menu-content h3 {
  background-color: var(--white-color);
}
.main-courses-area .menu-item .menu-content::before {
  border-color: rgba(0, 0, 0, 0.2);
}
.main-courses-area .menu-left::after {
  border-color: rgba(0, 0, 0, 0.2);
}

.desserts-area .menu-item .menu-content h3 {
  background-color: var(--body-color);
}
.desserts-area .menu-item .menu-content::before {
  border-color: rgba(0, 0, 0, 0.2);
}
.desserts-area .menu-left::after {
  border-color: rgba(0, 0, 0, 0.2);
}

.soft-drinks-area .menu-item .menu-content h3 {
  background-color: var(--white-color);
}
.soft-drinks-area .menu-item .menu-content::before {
  border-color: rgba(0, 0, 0, 0.2);
}
.soft-drinks-area .menu-left::after {
  border-color: rgba(0, 0, 0, 0.2);
}

.restaurant-booking-area .restaurant-booking-form {
  overflow: hidden;
  padding: 40px;
  background-color: var(--white-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .restaurant-booking-area .restaurant-booking-form {
    padding: 20px;
  }
}
.restaurant-booking-area .restaurant-booking-form form .field-inner label {
  color: var(--text-color);
}
.restaurant-booking-area .restaurant-booking-form form .field-inner input {
  background-color: var(--body-color);
}
.restaurant-booking-area .restaurant-booking-form form .field-inner input:focus {
  border-color: var(--primary-color);
}
.restaurant-booking-area .restaurant-booking-form form .field-inner select {
  background-color: var(--body-color);
}
.restaurant-booking-area .restaurant-booking-form form .field-inner select:focus {
  border-color: var(--primary-color);
}
.restaurant-booking-area .restaurant-booking-form form .field-inner textarea {
  height: 199px;
  background-color: var(--body-color);
}
.restaurant-booking-area .restaurant-booking-form form .field-inner textarea:focus {
  border-color: var(--primary-color);
}
.restaurant-booking-area .restaurant-booking-form form .availability-btn-wapper {
  padding-top: 10px;
}

.blog-area .blog-grid-style-1 {
  margin-bottom: 30px;
}
.blog-area .blog-grid-style-1 .blog-grid-image {
  overflow: hidden;
  display: block;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
.blog-area .blog-grid-style-1 .blog-grid-image a img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-area .blog-grid-style-1 .blog-grid-image .blog-meta-category {
  padding: 5px 15px;
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  background-color: var(--primary-color);
  color: var(--white-color);
  line-height: 23px;
  text-transform: capitalize;
  position: absolute;
  top: 20px;
  left: 25px;
  z-index: 2;
}
.blog-area .blog-grid-style-1 .blog-grid-content {
  padding-top: 20px;
}
.blog-area .blog-grid-style-1 .blog-grid-content .blog-meta {
  margin-bottom: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-grid-style-1 .blog-grid-content .blog-meta li {
  position: relative;
  padding-right: 50px;
}
.blog-area .blog-grid-style-1 .blog-grid-content .blog-meta li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  right: 15px;
  top: 14px;
  background: var(--text-color);
}
.blog-area .blog-grid-style-1 .blog-grid-content .blog-meta li i {
  color: var(--primary-color);
  font-size: 16px;
  margin-right: 10px;
}
.blog-area .blog-grid-style-1 .blog-grid-content .blog-meta li:nth-last-child(1) {
  padding-right: 0;
}
.blog-area .blog-grid-style-1 .blog-grid-content .blog-meta li:nth-last-child(1)::before {
  display: none;
}
.blog-area .blog-grid-style-1 .blog-grid-content h4 {
  text-transform: capitalize;
}
.blog-area .blog-grid-style-1 .blog-grid-content p {
  margin-bottom: 30px;
}
.blog-area .blog-grid-style-1:hover .blog-grid-image a img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.blog-area .blog-grid-style-2 {
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  -webkit-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.07);
}
.blog-area .blog-grid-style-2 .blog-image {
  overflow: hidden;
}
.blog-area .blog-grid-style-2 .blog-image a img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-area .blog-grid-style-2 .blog-image .video-part {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-grid-style-2 .blog-image .video-part .video-play {
  width: 100px;
  height: 100px;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 24px;
  line-height: 100px;
  position: relative;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-grid-style-2 .blog-image .video-part .video-play i {
  z-index: 2;
}
.blog-area .blog-grid-style-2 .blog-image .video-part .video-play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.blog-area .blog-grid-style-2 .blog-image .video-part .video-play::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.blog-area .blog-grid-style-2 .blog-image::after {
  content: "";
  bottom: 0;
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-area .blog-grid-style-2 .blog-content {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .blog-area .blog-grid-style-2 .blog-content {
    padding: 20px;
  }
}
.blog-area .blog-grid-style-2 .blog-content .blog-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  margin-bottom: 20px;
}
.blog-area .blog-grid-style-2 .blog-content .blog-meta::before {
  content: "";
  width: 1px;
  height: 80px;
  z-index: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  background-color: var(--primary-color);
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  -o-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  transform: translateY(-60%);
}
.blog-area .blog-grid-style-2 .blog-content .blog-meta .blog-date {
  margin-right: 15px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.blog-area .blog-grid-style-2 .blog-content .blog-meta .blog-date .date {
  display: block;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-weight: bold;
  text-transform: uppercase;
}
.blog-area .blog-grid-style-2 .blog-content .blog-meta .blog-date .month {
  display: block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-area .blog-grid-style-2 .blog-content .blog-meta p {
  margin: 0 20px 0 0;
  line-height: 1.3;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-grid-style-2 .blog-content .blog-meta p i {
  margin-right: 10px;
  color: var(--primary-color);
}
.blog-area .blog-grid-style-2 .blog-content h4 {
  margin-bottom: 10px;
  text-transform: capitalize;
}
.blog-area .blog-grid-style-2:hover .blog-image a img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.blog-area .blog-grid-style-2:hover .blog-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}
.blog-area .blog-grid-style-3 {
  margin-bottom: 30px;
  overflow: hidden;
}
.blog-area .blog-grid-style-3 .blog-image {
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
.blog-area .blog-grid-style-3 .blog-image a img {
  width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-area .blog-grid-style-3 .blog-image .video-part {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-grid-style-3 .blog-image .video-part .video-play {
  width: 100px;
  height: 100px;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 24px;
  line-height: 100px;
  position: relative;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-grid-style-3 .blog-image .video-part .video-play i {
  z-index: 2;
}
.blog-area .blog-grid-style-3 .blog-image .video-part .video-play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.blog-area .blog-grid-style-3 .blog-image .video-part .video-play::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: gloPulse 3s infinite;
  -moz-animation: gloPulse 3s infinite;
  -o-animation: gloPulse 3s infinite;
  animation: gloPulse 3s infinite;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.blog-area .blog-grid-style-3 .blog-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-area .blog-grid-style-3 .blog-content {
  padding: 30px;
  max-width: 420px;
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  background-color: var(--white-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .blog-area .blog-grid-style-3 .blog-content {
    max-width: 95%;
    padding: 20px;
  }
}
.blog-area .blog-grid-style-3 .blog-content .blog-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  margin-bottom: 20px;
}
.blog-area .blog-grid-style-3 .blog-content .blog-meta .blog-date {
  margin-right: 15px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.blog-area .blog-grid-style-3 .blog-content .blog-meta .blog-date .date {
  display: block;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-weight: bold;
  text-transform: uppercase;
}
.blog-area .blog-grid-style-3 .blog-content .blog-meta .blog-date .month {
  display: block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-area .blog-grid-style-3 .blog-content .blog-meta p {
  margin: 0 15px 0 0;
  line-height: 1.3;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-grid-style-3 .blog-content .blog-meta p i {
  margin-right: 10px;
  color: var(--primary-color);
}
.blog-area .blog-grid-style-3 .blog-content h4 {
  margin-bottom: 10px;
  text-transform: capitalize;
}
.blog-area .blog-grid-style-3:hover .blog-image a img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.blog-area .blog-grid-style-3:hover .blog-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}
.blog-area .blog-left {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .blog-area .blog-left {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.blog-area .blog-list {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .blog-area .blog-list {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.blog-area .blog-list .blog-list-item {
  margin-bottom: 30px;
  padding: 20px;
  overflow: hidden;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 680px) {
  .blog-area .blog-list .blog-list-item {
    display: block;
  }
}
.blog-area .blog-list .blog-list-item .blog-image {
  overflow: hidden;
  width: 50%;
  height: 100%;
  min-height: 284px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 680px) {
  .blog-area .blog-list .blog-list-item .blog-image {
    min-height: auto;
    width: 100%;
    margin-bottom: 20px;
  }
}
.blog-area .blog-list .blog-list-item .blog-image a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-height: 284px;
  min-width: 100%;
}
@media (max-width: 680px) {
  .blog-area .blog-list .blog-list-item .blog-image a {
    min-height: auto;
    position: relative;
    width: 100%;
  }
}
.blog-area .blog-list .blog-list-item .blog-image a img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-height: 284px;
  min-width: 100%;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 680px) {
  .blog-area .blog-list .blog-list-item .blog-image a img {
    min-height: auto;
    position: relative;
    width: 100%;
  }
}
.blog-area .blog-list .blog-list-item .blog-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-area .blog-list .blog-list-item .blog-content {
  width: 50%;
  margin-left: 30px;
}
@media (max-width: 680px) {
  .blog-area .blog-list .blog-list-item .blog-content {
    width: 100%;
    margin-left: 0;
  }
}
.blog-area .blog-list .blog-list-item .blog-content .blog-meta {
  margin-bottom: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.blog-area .blog-list .blog-list-item .blog-content .blog-meta li {
  position: relative;
  padding-right: 50px;
  font-size: 14px;
  line-height: 26px;
}
.blog-area .blog-list .blog-list-item .blog-content .blog-meta li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  right: 15px;
  top: 14px;
  background-color: var(--text-color);
}
.blog-area .blog-list .blog-list-item .blog-content .blog-meta li i {
  color: var(--primary-color);
  font-size: 16px;
  margin-right: 5px;
}
.blog-area .blog-list .blog-list-item .blog-content .blog-meta li:nth-last-child(1) {
  padding-right: 0;
}
.blog-area .blog-list .blog-list-item .blog-content .blog-meta li:nth-last-child(1)::before {
  display: none;
}
.blog-area .blog-list .blog-list-item .blog-content h4 {
  text-transform: capitalize;
}
.blog-area .blog-list .blog-list-item:hover .blog-image a img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  -ms-transform: rotate(-3deg) scale(1.1);
  -o-transform: rotate(-3deg) scale(1.1);
  -moz-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.blog-area .blog-list .blog-list-item:hover .blog-image::after {
  left: 0;
  right: 0;
  opacity: 0;
}

.blog-single-area .blog-single-post {
  overflow: hidden;
  margin-right: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-post {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain {
  padding: 40px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-post .blog-single-contain {
    padding: 20px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-entry-content h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-entry-content h3::before {
  content: "";
  height: 2px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 65px;
  width: 10px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-entry-content h3::after {
  content: "";
  height: 2px;
  width: 60px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta {
  margin: 0 0 15px;
  padding: 0;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  font-size: 14px;
  line-height: 26px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-entry-content .blog-single-meta li i {
  margin-right: 10px;
  color: var(--primary-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-entry-content .blog-post-gallary {
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-tag {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-tag {
    margin-bottom: 30px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-tag h6 {
  margin-bottom: 0;
  font-size: 16px;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-tag h6 {
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-tag ul li a {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--body-color);
  color: var(--black-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-tag ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share h6 {
  margin-bottom: 0;
  font-size: 16px;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share h6 {
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share ul li a {
  position: relative;
  width: 45px;
  height: 45px;
  line-height: normal;
  background-color: var(--body-color);
  color: var(--black-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-share ul li a:hover i {
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination {
  margin-top: 50px;
  padding: 50px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .prev-post span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: var(--primary-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .prev-post a {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  color: var(--black-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .post-nav-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .post-nav-icon {
    display: none;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .next-post {
  text-align: end;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .next-post {
    text-align: start;
    padding-top: 20px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .next-post span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: var(--primary-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .post-pagination .next-post a {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  color: var(--black-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .blog-post-author-box {
  padding: 40px;
  background-color: var(--body-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .blog-post-author-box {
    padding: 20px;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .blog-post-author-box .blog-post-author-image {
  flex: 0 0 auto;
  margin-right: 30px;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .blog-post-author-box .blog-post-author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .blog-post-author-box .blog-post-author-content h6 {
  color: var(--black-color);
  margin-bottom: 10px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .blog-post-author-box .blog-post-author-content .author-social-media li a {
  position: relative;
  width: 45px;
  height: 45px;
  line-height: normal;
  background-color: rgba(24, 26, 23, 0.06);
  color: var(--black-color);
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-footer-content .blog-post-author-box .blog-post-author-content .author-social-media li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comments-title {
  padding-top: 50px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li {
  margin-bottom: 30px;
  padding: 30px;
  background: var(--body-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li {
    padding: 20px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-user-profile {
  flex: 0 0 auto;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-user-profile {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-user-profile img {
  -webkit-border-radius: var(--border-radius-1);
  -moz-border-radius: var(--border-radius-1);
  -ms-border-radius: var(--border-radius-1);
  -o-border-radius: var(--border-radius-1);
  border-radius: var(--border-radius-1);
  width: 100px;
  height: 100px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content {
  position: relative;
  min-height: 115px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content .comment-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content .comment-meta .comment-author {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-flex;
  position: relative;
  color: var(--text-color);
  font-weight: 500;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content .comment-meta .comment-author .comment-author-name {
  margin: 0 5px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content .comment-meta .comment-date {
  display: block;
  font-size: 16px;
  margin: 0 0 0 30px;
  font-weight: 400;
  color: var(--text-color);
  position: relative;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content .comment-meta .comment-date a::before {
  position: absolute;
  content: "";
  left: -22px;
  height: 1px;
  top: 50%;
  width: 8px;
  background-color: var(--text-color);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content p {
  margin-bottom: 15px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content a:hover {
  color: var(--primary-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item .comment-content a i {
  margin-right: 5px;
  color: var(--primary-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item.comment-nesting {
  padding-left: 130px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li .comment-list-item.comment-nesting {
    padding-left: 40px;
  }
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment .comment-list li:nth-last-child(1) {
  border-bottom: none;
  margin-bottom: 0;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comments-respond-title {
  padding-top: 50px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comment-respond-form {
  padding-top: 10px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comment-respond-form form .form-group .field-inner label {
  color: var(--text-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comment-respond-form form .form-group .field-inner input {
  background-color: var(--body-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comment-respond-form form .form-group .field-inner textarea {
  height: 199px;
  background-color: var(--body-color);
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comment-respond-form form .form-group .field-inner.checkbox input[type=checkbox] {
  position: absolute;
  top: 6px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comment-respond-form form .form-group .field-inner.checkbox label {
  padding-left: 30px;
}
.blog-single-area .blog-single-post .blog-single-contain .blog-comment-respond .comment-respond-form form .availability-btn-wapper {
  padding-top: 10px;
}

.conatct-area {
  z-index: 2;
}
.conatct-area .outer-box {
  padding: 50px;
  background-color: var(--white-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .conatct-area .outer-box {
    padding: 20px;
  }
}
.conatct-area .outer-box .contact-left {
  margin-right: 50px;
}
@media (max-width: 991px) {
  .conatct-area .outer-box .contact-left {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner label {
  color: var(--text-color);
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner input {
  background-color: var(--body-color);
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner input.error {
  border-color: red;
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner input.error:focus {
  border-color: red;
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner input:focus {
  border-color: var(--primary-color);
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner textarea {
  height: 199px;
  background-color: var(--body-color);
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner textarea.error {
  border-color: red;
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner textarea.error:focus {
  border-color: red;
}
.conatct-area .outer-box .contact-left .contact-form form .field-inner textarea:focus {
  border-color: var(--primary-color);
}
.conatct-area .outer-box .contact-left .contact-form form .contact-btn-wapper {
  padding-top: 10px;
}
.conatct-area .outer-box .contact-info-box {
  height: 100%;
  padding: 30px;
  background-color: var(--secondary-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .conatct-area .outer-box .contact-info-box {
    padding: 20px;
  }
}
.conatct-area .outer-box .contact-info-box .contact-info {
  margin-bottom: 60px;
}
.conatct-area .outer-box .contact-info-box .contact-info h4 {
  text-transform: capitalize;
}
.conatct-area .outer-box .contact-info-box .contact-info ul {
  padding-top: 15px;
}
.conatct-area .outer-box .contact-info-box .contact-info ul li {
  position: relative;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 20px;
  padding-left: 40px;
}
.conatct-area .outer-box .contact-info-box .contact-info ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1em;
  color: var(--black-color);
  font-size: 26px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.conatct-area .outer-box .contact-info-box .contact-info ul li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--black-color);
}
.conatct-area .outer-box .contact-info-box .contact-info ul li:last-child {
  margin-bottom: 0;
}
.conatct-area .outer-box .contact-info-box .contact-info ul li:hover i {
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.office-area {
  margin-top: -100px;
}
.office-area .office-box {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .office-area .office-box {
    margin-right: 0;
  }
}
.office-area .office-box .office-info {
  padding: 40px;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: var(--body-color);
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .office-area .office-box .office-info {
    padding: 20px;
  }
}
.office-area .office-box .office-info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-color: var(--black-color);
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.office-area .office-box .office-info.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
}
.office-area .office-box .office-info.active .office-info-content h6 {
  color: var(--white-color);
}
.office-area .office-box .office-info.active .office-info-content ul li {
  color: var(--white-color);
}
.office-area .office-box .office-info.active .office-info-content ul li a {
  color: var(--white-color);
}
.office-area .office-box .office-info.active .office-info-content .office-btn-link .theme-button {
  color: var(--white-color);
}
.office-area .office-box .office-info.active .office-info-content .office-btn-link .theme-button::before, .office-area .office-box .office-info.active .office-info-content .office-btn-link .theme-button::after {
  background-color: var(--white-color);
}
.office-area .office-box .office-info .office-info-content {
  z-index: 2;
}
.office-area .office-box .office-info .office-info-content h6 {
  margin-bottom: 15px;
}
.office-area .office-box .office-info .office-info-content ul li {
  margin-bottom: 5px;
}
.office-area .office-box .office-info .office-info-content ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.office-area .office-box .office-info .office-info-content ul li a {
  color: var(--text-color);
  background-image: linear-gradient(var(--white-color), var(--white-color)), linear-gradient(var(--white-color), var(--white-color));
}
.office-area .office-box .office-info .office-info-content .office-btn-link {
  padding-top: 20px;
  display: inline-block;
}
.office-area .map-area {
  height: calc(100% - 30px);
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: var(--border-radius-2);
  -moz-border-radius: var(--border-radius-2);
  -ms-border-radius: var(--border-radius-2);
  -o-border-radius: var(--border-radius-2);
  border-radius: var(--border-radius-2);
}
@media (max-width: 991px) {
  .office-area .map-area {
    height: 420px;
  }
}
.office-area .map-area iframe {
  height: 100%;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
