/*
<====================
1. HEADER AREA CSS
>=====================
*/
:root {
  --secondary-color: #fff8e1;
}
body {
  background: #0b0c12;
}
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff8e1;
  transition: all 0.2s;
}
.header-area {
  padding: 0px 0px 25px 0;
  transition: all 0.2s;
  width: 100%;
  z-index: 99;
  background: #fff8e1;
}
.logo-area {
  padding: 0 20px;
  z-index: 2;
  transition: 0.3s;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 200px;
  top: 100%;
}
.logo-area.active {
  transition: all 0.3s;
  display: inline-block;
  opacity: 1;
  visibility: visible;
  top: -69px;
}

.menu-btn {
  position: absolute;
  width: 100%;
  height: 70px;
  background: #ebf4f4;
  border-radius: 0 0 4px 4px;
  left: 0;
  bottom: -70px;
  cursor: pointer;
  z-index: 999;
}

.main-menu {
  z-index: 2;
  position: absolute;
  transition: all 0.3s;
  left: 0;
  right: 0;
  top: -100%;
  opacity: 0;
}
.main-menu.active {
  transition: all 0.3s;
  visibility: visible;
  opacity: 1;
  top: -40px;
}
.menu-btn img {
  padding-top: 20px;
}
.header-socials li {
  display: inline-block;
  margin-right: 4px;
}
#logo {
  width: 215px;
}
.header-socials li a {
  display: block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: #0b0c12;
  border-radius: 3px;
  font-size: 15px;
  color: #f9c200;
  border: 1px solid transparent;
}

.header-socials li a:hover {
  border-color: #0b0c12;
  color: #fff;
  background: #f9c200;
}

.header-socials li:last-child {
  margin-right: 0;
}

.header-socials li.social-contact-text {
  color: #0b0c12;
  font-size: 13px;
}

.header-socials li.social-contact-text span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 14px;
}
.header-socials {
  position: relative;
  z-index: 2;
  display: inline-block;
}
li.social-contact-text {
  position: absolute;
  top: -5px;
  right: -115px;
}
.close-btn {
  position: absolute;
  right: -50px;
  top: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  background: transparent;
  color: #f9c200;
  line-height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  border: 1px solid #f9c200;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s;
}
.close-btn i {
  transition: all 0.3s;
}
.close-btn:hover i {
  transform: rotate(45deg);
  transition: all 0.3s;
}

/*
<====================
1. 	WELCOME AREA CSS
>=====================
*/

.welcome-area {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.welcome-single {
  height: 700px;
  display: flex;
  align-items: center;
}

.welcome-single1 {
  background-image: url(../img/banner1.jpg);
  background-position: center;
  background-size: cover;
}
.welcome-single2 {
  background-image: url(../img/banner2.jpg);
  background-position: center;
  background-size: cover;
}

/*
<====================
1. 	ABOUT AREA CSS
>=====================
*/
.about-area p {
  font-size: 16px;
  line-height: 27px;
}

.row.about-wrap.br5 > div {
  margin: 0;
  padding: 0;
}

.about-text-box {
  padding: 70px 40px;
  height: 645px;
}

.about-text-box h6 {
  margin-bottom: 15px;
}

.about-text-box h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-text-box h2 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #000;
}
.single-about-right-slide img {
  height: 600px;
}
.about-wrap {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

/*
<====================
1. OFFER AREA CSS
>=====================
*/
.offer-area {
  position: relative;
  z-index: 2;
}
.offer-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.offer-img:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #222;
  opacity: 0.2;
  left: 0;
  top: 0;
  z-index: -1;
}

.offer-img:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -150%, 0);
  top: 0;
  content: "";
  left: 0;
  height: 100%;
  width: 100%;
  transition: transform 0.9s;
}

.offer-img:hover:before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, 150%, 0);
}

.offer-img.big-offer {
  height: 500px;
}

.offer-img.small-offer {
  height: 230px;
}

.offer-img.small-offer:first-child {
  margin-bottom: 40px;
}

.offer-img h4 {
  text-transform: uppercase;
}

.offer-img h4 span {
  font-style: italic;
}

/*
<====================
1. MENU AREA CSS
>=====================
*/
.menu-heading h2 {
  text-transform: uppercase;
  font-size: 34px;
  color: #fff;
}
.items-menu-area {
  overflow: hidden;
  width: 100%;
}
.single-menu-img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
}
.single-menu-img img {
  height: auto;
  width: 100%;
}
.single-menu-img span {
  position: absolute;
  top: 8%;
  z-index: 3;
  right: 0;
  background: #f9c200;
  padding: 5px 15px;
  color: #fff;
  font-weight: 500;
  border-radius: 10px 0 0 10px;
  font-size: 14px;
}

.menu-text-box a:hover {
  color: #f9c200;
}
.menu-text-box {
  padding: 30px;
}

.single-menu {
  background: #242424;
  border-radius: 10px;
  margin-bottom: 30px;
}

.menu-text-box a {
  font-size: 21px;
  color: #fff;
  font-weight: 500;
  line-height: 21px;
  text-transform: uppercase;
}

.menu-text-box span {
  display: block;
  margin-top: 15px;
}
.owl-carousel .owl-item .single-menu-img img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.items-menu-area .owl-nav div {
  background: #f9c200;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 70px;
  font-size: 24px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  margin-top: -40px;
  left: -40px;
  border: 8px solid #0b0c12;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.items-menu-area:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.items-menu-area .owl-nav div.owl-next {
  left: auto;
  right: -40px;
  transition: all 0.3s;
}

.items-menu-area .owl-nav div i {
  color: #0b0c12;
  font-size: 28px;
}

.items-menu-area .owl-nav div:hover {
  border-color: #f9c200;
  background: #0b0c12;
  transition: all 0.3s;
}

.items-menu-area .owl-nav div:hover i {
  color: #f9c200;
  transition: all 0.3s;
}

.menu-tabs {
  float: right;
}

.menu-tabs li a {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  z-index: 2;
}

.menu-tabs li a.active {
  color: #f9c200;
}

.menu-tabs li a:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/logo/hoverlogo.png);
  background-repeat: no-repeat;
  left: 30%;
  bottom: -50%;
  visibility: hidden;
  opacity: 0;
}

.menu-tabs li a.active:after {
  opacity: 1;
  visibility: visible;
}

/*
<====================
1. VIDEO AREA CSS
>=====================
*/
.video-area {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  background: url(../img/scroll-image.jpg);
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px;
  background-attachment: fixed;
}
.video-area2 {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  background: url(../img/senior-citizen-bg.jpg);
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px;
  background-attachment: fixed;
}
.video-area3 {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  background: url(../img/scroll-image2.jpg);
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px;
  background-attachment: fixed;
}

.video-area:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #0b0c12;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.3s;
}
.video-btn {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  transition: all 0.3s;
}

.video-btn a {
  display: block;
  background: #f9c200;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  font-size: 24px;
  color: #0b0c12;
  transition: all 0.3s;
}

.video-btn a:hover {
  color: #fff;
  transition: all 0.3s;
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.video-btn-link {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.video-btn-link:before {
  content: "";
  position: absolute;
  border: #f9c200 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.video-btn-link:hover:before,
.video-btn-link:focus:before,
.video-btn-link:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

/*
<====================
1. CLIENT AREA CSS
>=====================
*/

.clinets-area {
  background: #fff;
  padding: 50px 60px;
  border-radius: 5px;
  margin-top: -320px;
  z-index: 9;
}

.author {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  font-size: 15px;
  line-height: 1.6;
}
.author__img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -30px;
  height: 60px;
  width: 60px;
  text-align: center;
}
.author span {
  display: block;
  font-size: 14px;
  opacity: 0.7;
}
.client-img {
  position: relative;
  z-index: 2;
}

.client-img h5 {
  position: absolute;
  bottom: 20%;
  left: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.client-img h5 span {
  font-size: 26px;
  color: #0b0c12;
  display: block;
  font-weight: 700;
  margin-top: 5px;
}
/*
<====================
1. APPS AREA CSS
>=====================
*/
.apps-text {
  background: #242424;
  color: #fff;
  height: 100%;
  padding: 60px 50px;
}

.apps-img {
  height: 100%;
  overflow: hidden;
}

.apps-text h6 {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

.apps-text h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

a.apps-btn,
a.apps-btn span {
  color: #fff;
  line-height: 1.7;
}

a.apps-btn {
  font-size: 13px;
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 10px 25px 10px 60px;
  text-transform: capitalize;
}

a.apps-btn span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}

a.apps-btn i {
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 36px;
  top: 50%;
  left: 10px;
  margin-top: -20px;
}

a.apps-btn:first-child {
  margin-right: 15px;
}

a.apps-btn.appstore:hover {
  background: #4266b3;
  border-color: #4266b3;
  color: #fff;
}
a.apps-btn.playstore:hover {
  background: #f33444;
  border-color: #f33444;
  color: #fff;
}
.row.apps-warap > div {
  margin: 0;
  padding: 0;
}
.apps-img img {
  width: 100%;
}
/*
<====================
1. CALL TO ACTION AREA CSS
>=====================
*/
.call-to-action-area {
  background: linear-gradient(to left, #f9c200, #ffbd7b);
}
.call-to-action-area h2 {
  text-transform: uppercase;
}
.cta-form input {
  background: #242424;
  border: none;
  padding: 16px;
  border-radius: 5px;
  color: #fff;
}

.cta-form {
  position: relative;
  z-index: 2;
}

a.submit-btn {
  display: inline-block;
  background: #f9c200;
  padding: 8px 30px;
  border-radius: 5px;
  position: absolute;
  right: 8px;
  color: #0b0c12;
  top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
}
a.submit-btn:hover {
  color: #0b0c12;
  background: #fff;
}
/*
<====================
1. FOOTER AREA CSS
>=====================
*/

.single-intagram {
  display: inline-block;
  width: 40%;
  margin: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.single-intagram img {
  width: 100%;
}

.footer-area h3 {
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 40px;
  color: #42210b;
}

.single-footer li {
  list-style: none;
}

.single-footer li a {
  color: #42210b;
  margin: 3px 0;
}

.footer-logo-area {
  height: 100%;
}
.single-footer-cta {
  color: #42210b;
  font-size: 13px;
  text-transform: uppercase;
}

.single-footer-cta h6 {
  color: #42210b;
  font-size: 16px;
  font-weight: 500;
}

.single-footer-cta {
  padding-left: 55px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #242424;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.single-footer-cta:last-child {
  border-bottom: none;
}

.single-footer-cta i {
  position: absolute;
  left: 0;
  top: 50%;
  height: 40px;
  width: 40px;
  background: #42210b;
  color: #fbc030;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  border-radius: 5px;
  margin-top: -30px;
}

.footer-logo-area {
  padding: 100px 50px;
  padding-bottom: 0;
  position: relative;
}
.footer-logo-area:after {
  position: absolute;
  height: 100%;
  width: 1000%;
  right: -1000%;
  top: 0;
  content: "";
}
.footer-social li {
  display: inline-block;
}
.footer-social li a {
  height: 40px;
  width: 40px;
  background: #42210b;
  color: #f9c200;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid transparent;
  margin-right: 3px;
}
.footer-social li a:hover {
  background: #0b0c12;
  border-color: #f9c200;
}

.back-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #191a1c;
}

.back-top-btn {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.back-top-btn:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1000%;
  background: #191a1c;
  top: 0;
  right: -1000%;
}

.back-top-btn a {
  font-size: 14px;
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}

.back-top-btn a:hover {
  color: #f9c200;
}

.back-top-btn a i {
  margin-left: 3px;
  background: #707070;
  border-radius: 50%;
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.copyright {
  color: #fff;
  opacity: 0.5;
  padding: 20px 0;
}
.single-footer li a:hover {
  color: #000;
  padding-left: 3px;
}

/*=======================================================================================
HOME PAGE 2 CSS
==========================================================================================*/

/*
<====================
1. 	HEADER AREA CSS
>=====================
*/

.main-menu-area2 {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.main-menu-area2.active {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}
.side-btn-time-icon {
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 3%;
  right: 10%;
  cursor: pointer;
  transition: all 0.3s;
}

.side-btn-time-icon:hover {
  transform: rotate(36deg);
  transition: all 0.3s;
}
.main-menu-area2:after {
  position: absolute;
  content: "";
  background: #222222;
  height: 100%;
  width: 0;
  z-index: -1;
  opacity: 0.8;
  transition: all 0.3s;
}

.main-menu-area2.active:after {
  width: 100%;
}

.header-area2 {
  position: absolute;
  width: 100%;
  z-index: 9;
  top: -15px;
  padding: 0 80px;
}

.menu2 a {
  background: #fff;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 57px;
  border-radius: 50%;
}
.menu2social {
  color: #fff;
}

.menu2social li {
  display: inline-block;
}

.menu2social li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #de2b36;
  border-radius: 4px;
  color: #0b0c12;
  margin-right: 8px;
  border: 1px solid transparent;
}

.menu2social li a:hover {
  background: transparent;
  border-color: #de2b36;
  color: #fff;
}
.menu2social h6 {
  text-transform: capitalize;
  color: #fff;
}
/*
<====================
1.  WELCOM AREA CSS
>=====================
*/
.welcome-area2 {
  padding: 280px 0;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  background-image: url(../img/welcome/home2.jpg);
  background-position: center;
  background-size: cover;
}
.welcome2wrap {
  padding: 60px 40px 0 40px;
  background: linear-gradient(to top, #fff, #ecf0f4);
  position: relative;
}

/*
<====================
1.  SERVICE AREA CSS
>=====================
*/
.text-box h1 {
  font-weight: 700;
}

.text-box2 h2 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #0b0c12;
}

.text-box2 h2 {
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.text-box2 h2 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #0b0c12;
}

.service-list li {
  position: relative;
  z-index: 2;
  padding-left: 30px;
}

.service-list li:after {
  position: absolute;
  content: "\f00c";
  height: 30px;
  width: 30px;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  top: 50%;
  margin-top: -15px;
  font-size: 16px;
  color: #de2b36;
}

.clients li span {
  display: block;
  color: #de2b36;
  font-size: 18px;
  font-weight: 500;
}

.clients li {
  display: inline-block;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.clients li:first-child {
  margin-right: 20px;
}

.service-right img {
  border: 20px solid #fff;
  border-radius: 10px;
  z-index: 1;
}

.service-right img:nth-child(3) {
  top: 20%;
  position: absolute;
  right: -34%;
  z-index: 3;
}
.service-right img:nth-child(2) {
  position: absolute;
  bottom: -50%;
  left: 16%;
  z-index: 2;
}

.service-right {
  position: relative;
}
.service-right .video-btn2 {
  position: absolute;
  right: -85px;
  top: 0;
}
span.circle-service {
  position: absolute;
  height: 100px;
  width: 100px;
  background: #de2b36;
  top: 54%;
  z-index: 99;
  border-radius: 50%;
  left: 57%;
  border: 20px solid #fff;
}
.service-pattarn {
  position: absolute;
  right: -200px;
}
.service-right img:first-child {
  border: none;
}
/*
<====================
1.  MENU ITEMS AREA CSS
>=====================
*/

.items-menu-area2 {
  background: linear-gradient(to top, #fafafa, #ecf0f4);
}
.menu-items-text-box h2 {
  color: #0b0c12;
}
.menu-tabs2 li a {
  color: #0b0c12;
}
.menu-tabs2 li a.active {
  color: #de2b36;
}
.menu-tabs2 li a:after {
  background: url(../img/icon/hoverlogo2.png);
  background-repeat: no-repeat;
  left: 20%;
  bottom: -30%;
}

.single-menu2 {
  background: #242424;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s;
  margin-bottom: 30px;
}
.single-menu2:hover {
  transform: translateY(-5px);
  transition: all 0.3s;
  box-shadow: 0 8px 16px rgba(0, 0, 0 0, 1);
}
.single-menu2 p {
  color: #0b0c12;
  opacity: 0.6;
}

.menu-text-box2 {
  padding: 30px;
}
.menu-text-box2 a {
  font-size: 22px;
  color: #242424;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
}

.menu-text-box2 a:hover {
  color: #de2b36;
}
.menu-text-box2 span {
  display: block;
  margin-top: 15px;
}
.menu-text-box2 p {
  margin: 15px 0;
}
.menu-text-box2 h4 {
  color: #de2b36;
  display: block;
  position: relative;
  margin-bottom: 0;
}
.menu-text-box2 h4 span {
  position: absolute;
  top: 50%;
  height: 40px;
  width: 40px;
  background: #fdeeef;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  right: 0;
  margin-top: -20px;
  color: #de2b36;
  transition: all 0.3s;
}
.menu-text-box2 h4 span:hover {
  cursor: pointer;
  background: #de2b36;
  color: #fff;
  transition: all 0.3s;
}
.menu-text-box2 h4:hover {
  text-decoration: underline;
}
.single-menu2 img {
  height: 320px;
  width: 100%;
}
.single-menu-img2 span {
  position: absolute;
  top: 8%;
  z-index: 3;
  right: 0;
  background: #de2b36;
  padding: 5px 15px;
  color: #fff;
  font-weight: 500;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
}

/*
<====================
1.  CLIENT AREA CSS
>=====================
*/

.clinets-area2 {
  background: #ecf0f4;
}
.single-client-logo {
  width: 44%;
  display: inline-block;
  text-align: center;
  margin: 15px;
}
/*
<====================
1.  APPS AREA CSS
>=====================
*/

.apps-area2 {
  background: #242424;
  position: relative;
  z-index: 2;
}

.apps-area2:after {
  position: absolute;
  height: 100%;
  width: 50%;
  background: url(../img/apps/apps2.jpg);
  top: 0;
  left: 0;
  content: "";
}

.call-to-action-area2 {
  background: #de2b36;
  color: #fff;
}
.call-to-action-area2 h2 {
  color: #fff;
}
.cta-form2 input {
  background: #fff;
  border: none;
  padding: 16px;
  border-radius: 5px;
  color: #fff;
}

/*
<====================
1.  EVENT AREA CSS
>=====================
*/

.event-area div.eventbg {
  position: relative;
  z-index: 2;
}
.event-area div.eventbg:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  right: 0;
  top: 0;
  background: url(../img/about/about1.jpg);
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  z-index: -1;
}
.events .row > div {
  margin: 0;
  padding: 0;
  border: 1px solid #eaeaea;
  transition: all 0.3s;
  background: #fff;
}
.events .row > div:hover {
  transition: all 0.3s;
  cursor: zoom-in;
  background: #de2b36;
  color: #fff;
  border-color: #de2b36;
}
.events .row > div:hover img {
  filter: brightness(20);
}

.events .row.row3 > div:first-child:hover {
  transform: none;
  transition: all 0.3s;
  box-shadow: none;
  cursor: inherit;
}

.single-event {
  padding: 40px;
}

.events .row.row3 > div:first-child {
  border: none;
  background: none;
}
.single-event img {
  margin-bottom: 20px;
}
.row.row1 > div:last-child {
  border-radius: 0 30px 0 0;
}

.row.row1 > div:first-child {
  border-radius: 30px 0 0 30px;
}

.row.row2 > div:last-child {
  border-radius: 0 30px 30px 0;
}

.row.row2 > div:first-child {
  border-radius: 0 0 0 30px;
}

.row.row3 > div {
  border-radius: 0 0 30px 30px;
}

/*
<====================
1.  BLOG AREA CSS
>=====================
*/
.blog-area {
  background: linear-gradient(to top, #fafafa, #ecf0f4);
}
.heading h3 {
  color: #242424;
  text-transform: capitalize;
}
.single-blog {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-text-wrap {
  padding: 30px;
}
.blog-grid-area .single-blog a:hover {
  color: #f9c200;
}

.single-blog a:hover {
  color: #de2b36;
}

.single-blog-article-area .single-blog a:hover {
  color: #f9c200;
}

.blog-text-box2 a {
  font-size: 24px;
  color: #242424;
  font-weight: 500;
}

.blog-text-box2 p {
  margin: 20px 0;
  line-height: 27px;
}
.single-blog-img {
  position: relative;
  z-index: 2;
  height: 300px;
  overflow: hidden;
}
.single-blog-img span {
  position: absolute;
  left: 0;
  top: 13%;
  background: #de2b36;
  padding: 5px 15px;
  border-radius: 0 30px 30px 0;
  color: #fff;
  font-weight: 500;
}

.blog-area .owl-nav div {
  background: #de2b36;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 70px;
  font-size: 24px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  margin-top: -40px;
  left: -40px;
  border: 8px solid #fff;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.blog-area:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.blog-area .owl-nav div.owl-next {
  left: auto;
  right: -40px;
  transition: all 0.3s;
}

.blog-area .owl-nav div i {
  color: #fff;
  font-size: 28px;
}

.blog-area .owl-nav div:hover {
  border-color: #de2b36;
  background: #fff;
  transition: all 0.3s;
}

.blog-area .owl-nav div:hover i {
  color: #de2b36;
  transition: all 0.3s;
}

.single-blog-img img {
  height: auto;
  width: 100%;
}

/*
<====================
1.  FOOTER AREA CSS
>=====================
*/
.footer-area {
  overflow: hidden;
  width: 100%;
}
.single-footer2 li a:hover {
  color: #de2b36;
  padding-left: 3px;
}
.single-footer-cta2 {
  color: #fff;
  position: relative;
  z-index: 2;
  padding-left: 60px;
  margin-bottom: 20px;
}

.single-footer-cta2 i {
  position: absolute;
  left: 0;
  top: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: red;
  border-radius: 50px;
  margin-top: -25px;
}

.single-footer-cta2 h6 {
  color: #fff;
}

.back-top-btn2 {
  background: #0b0c12;
}
.back-top-btn2 a:hover {
  color: #de2b36;
}

/*
<====================
1.  COMMAN CSS
>=====================
*/

.text-box span {
  color: #f9c200;
}
.text-box2 span {
  color: #de2b36;
}

/* menu css */
#menu h2 {
  color: #f9c200;
  text-align: center;
  margin-top: 65px;
}
.item-wrapper {
  width: 50%;
  margin: 0 auto;
  .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    .title {
      font-family: "Playfair Display", serif;
      flex-grow: 1;
      font-size: 18px;
      color: #fff;
                  text-transform: capitalize;
    }
    .space {
      flex-basis: 1;
      overflow: hidden;
      flex: 20;
      flex-shrink: 4;
      align-self: felx-end;
      text-align: right;
      margin-right: 10px;
      margin-top: 16px;
      border-bottom: 1px dotted rgb(255, 255, 255);
      font-size: 0px;
    }
    .price {
      font-size: 18px;
      font-family: "Playfair Display", serif;
      min-width: 60px;
      align-self: felx-end;
      color: #f9c200;
    }
  }
  .description {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    width: 80%;
    color: #fff;
                text-transform: capitalize;
  }
}

/* booking form css */

/* calendar css */

.bg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 400px;
  background: #f5f5f5;
  box-shadow: 0px 5px 5px #ccc;
  border-radius: 10px;
  padding: 20px;
}

.cal-head {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.cal-head h3 {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  background: #fff;
  padding: 13px 25px;
  border-radius: 10px;
}

.cal-head #prev,
.cal-head #next {
  position: absolute;
  top: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.cal-head #prev:hover,
.cal-head #next:hover,
.cal-head #prev:focus,
.cal-head #next:focus {
  opacity: 0.8;
  box-shadow: 3px 0px 3px #ccc;
}

.cal-head #prev:before,
.cal-head #next:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #141414;
  border-width: 2px 2px 0 0;
}

.cal-head #prev {
  left: 20px;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.cal-head #next {
  right: -20px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.days,
.dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.days li,
.dates li {
  width: calc(100% / 7);
  text-align: center;
  font-size: 18px;
}

.days {
  margin-bottom: 15px;
}

.days li {
  font-weight: 500;
  color: #219653;
  text-transform: uppercase;
}

.dates li span {
  background: #fff;
  width: 100%;
  height: 50px;
  display: inline-block;
  padding-top: 15px;
  border-radius: 10px;
  border: 2px solid #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.dates li span:hover {
  color: #219653;
}

.dates li.old span {
  background: transparent;
  color: #bdbdbd;
}

.dates li.today span {
  background: #219653;
  color: #fff;
}

/* calendar css endd */
.pets-area {
  margin-top: 150px;
}
/* ================= BURGER MENU CSSS=================== */

/* Responsive Adjustments */
@media (min-width: 768px) {
  .nav-menu {
    width: 750px;
  }
}
/*Medium Screens */
@media (min-width: 922px) {
  .nav-menu {
    width: 970px;
  }
}
/*Large Screens */
@media (min-width: 1200px) {
  .nav-menu {
    width: 1170px;
  }
}

/* Burger Icon Container */
.burger-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  width: 45px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 8px;
  border-radius: 5px;
  background: #42210b;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px #0000001a;
  z-index: 99999999;
}

/* Burger Icon Lines */
.burger-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  background: #fff8e1;
}

/* Checkbox Hack */
#burger-toggle {
  display: none;
}

/* Navigation Styles */
.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #42210b;
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: -4px 0 15px #00000033;
  overflow-y: auto;
  padding-top: 100px;
  z-index: 9999;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff0d;
  /* backdrop-filter: blur(10px); */
}

.nav-menu ul {
  list-style-type: none;
}

.nav-menu ul li {
  margin: 0 15px;
  border-bottom: 1px solid #ffffff1a;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 15px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: left 0.3s ease;
}

.nav-menu ul li a:hover::after {
  left: 0;
}

/* Burger Icon Animation on Checkbox Checked */
#burger-toggle:checked ~ .burger-container .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#burger-toggle:checked ~ .burger-container .burger-line:nth-child(2) {
  opacity: 0;
}

#burger-toggle:checked ~ .burger-container .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Slide In */
#burger-toggle:checked ~ .nav-menu {
  right: 0;
}

/* ================================= */
.ig-adder {
  z-index: 9;
  margin-top: -310px;
  position: relative;
}
/*-===================--------------=================*/

#insta-frame {
    transform: translateY(-318px);
    z-index: 90999;
    position: relative;
    border-radius: 10px;
}