/*@Media Query Mixin*/
/*@Media Query Mixin End*/
* {
  margin: 0;
  padding: 0;
  font-family: var(--avenir);
}

:root {
  --theme-brown: #834516;
  --theme-yellow: #fdec96;
  --theme-light-brown: #e7dbc4;
  --avenir: "avenir";
  --blair: "blair";
}

@font-face {
  font-family: "avenir";
  src: url("../fonts/avenir.woff2") format("woff2"), url("../fonts/avenir.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "blair";
  src: url("../fonts/blair.woff2") format("woff2"), url("../fonts/blair.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 84%;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 90%;
  }
}

.desc {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 8px;
  margin-bottom: 0;
}

.overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.overlay.is-active {
  display: block;
}

.sub-heading {
  font-family: var(--avenir);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-brown);
  margin-bottom: 0;
}

.heading {
  font-size: 30px;
  line-height: 40px;
  font-family: var(--blair);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-brown);
}
@media screen and (max-width: 1440px) {
  .heading {
    font-size: 25px;
    line-height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .heading {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 600px) {
  .heading {
    font-size: 20px;
    line-height: 30px;
  }
}

.theme-btn {
  position: relative;
  background-color: var(--theme-brown);
  color: #fff;
  text-transform: uppercase;
  padding: 10px 30px;
  z-index: 1;
}
.theme-btn:hover {
  background-color: var(--theme-brown);
}
.theme-btn:hover:before {
  width: 100%;
}
.theme-btn:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--theme-yellow);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  border-radius: 5px;
  z-index: -1;
}

.text-yellow {
  color: var(--theme-yellow);
}

.owl-nav {
  text-align: center;
  margin-top: 20px;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  background-color: var(--theme-brown) !important;
  width: 40px;
  height: 40px;
  border: 1px solid #b1b1b1;
  border-radius: 50%;
  transition: all 0.6s ease;
  margin: 5px;
  z-index: 1;
}
.owl-nav .owl-prev.disabled, .owl-nav .owl-next.disabled {
  background-color: #b89377 !important;
}
.owl-nav .owl-prev i, .owl-nav .owl-next i {
  position: absolute;
  font-size: 14px;
  transform: translate(-50%, -50%);
  color: #fff;
}
.owl-nav .owl-prev {
  left: 100px;
}
@media screen and (max-width: 991px) {
  .owl-nav .owl-prev {
    left: 50px;
  }
}
.owl-nav .owl-next {
  right: 100px;
}
@media screen and (max-width: 991px) {
  .owl-nav .owl-next {
    right: 50px;
  }
}

.justify {
  text-align: justify;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: rgb(100, 100, 100) 0px 0 5px;
  z-index: 9999;
  transition: all 0.6s ease;
}
.navbar.scrolled {
  background: #000;
}
.navbar .container {
  align-items: end;
}
@media screen and (max-width: 991px) {
  .navbar .container {
    align-items: center;
    max-width: 100%;
    padding: 0;
  }
}
.navbar .navbar-brand {
  width: 8%;
  padding: 0;
}
@media screen and (max-width: 1680px) {
  .navbar .navbar-brand {
    width: 10%;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    width: 20%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-brand {
    width: 30%;
  }
}
.navbar .navbar-toggler {
  border: none;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    padding-right: 5%;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/icons/menu-bar.png);
}
.navbar .navbar-toggler .navbar-toggler-icon.on {
  background-image: url(../images/icons/menu-close.png);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    margin-top: 20px;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 10px;
  margin: 0 10px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: unset;
    padding: 10px 5%;
    margin: unset;
  }
}
.navbar .navbar-nav .nav-item .nav-link.last {
  margin-right: 0;
}
.navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--theme-yellow);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  transition: all 0.6s ease;
}
.navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-yellow);
}
.navbar .navbar-nav .nav-item .nav-link.active:before, .navbar .navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}

#mainSlider .carousel-inner .carousel-item img {
  animation: zoom-in 10s;
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-inner .carousel-item img {
    animation: unset;
  }
}
#mainSlider .carousel-inner .carousel-item .carousel-caption {
  width: 100%;
  right: unset;
  bottom: 100px;
  padding-top: 0;
  padding-bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  animation: circle-full 1.5s ease-in-out forwards;
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-inner .carousel-item .carousel-caption {
    bottom: 50px;
  }
}
#mainSlider .carousel-inner .carousel-item .carousel-caption h5 {
  font-size: 40px;
  text-transform: uppercase;
  background: url(../images/bg-clip.jpg) no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-inner .carousel-item .carousel-caption h5 {
    font-size: 30px;
  }
}
#mainSlider .carousel-inner .carousel-item .carousel-caption p {
  font-size: 25px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-inner .carousel-item .carousel-caption p {
    font-size: 20px;
  }
}
#mainSlider .carousel-control-prev, #mainSlider .carousel-control-next {
  display: unset;
  align-items: unset;
  justify-content: unset;
  padding: unset;
  text-align: unset;
  opacity: 1;
  top: 50%;
  transform: translate(0, -50%);
  background-color: var(--theme-brown);
  width: 40px;
  height: 40px;
  border: 1px solid #b1b1b1;
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  #mainSlider .carousel-control-prev, #mainSlider .carousel-control-next {
    display: none;
  }
}
#mainSlider .carousel-control-prev:hover:before, #mainSlider .carousel-control-next:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
}
#mainSlider .carousel-control-prev:hover i, #mainSlider .carousel-control-next:hover i {
  color: #000;
}
#mainSlider .carousel-control-prev:before, #mainSlider .carousel-control-next:before {
  position: absolute;
  content: "";
  width: 150%;
  height: 150%;
  background-color: var(--theme-yellow);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  transition: all 0.6s ease;
  opacity: 0;
}
#mainSlider .carousel-control-prev i, #mainSlider .carousel-control-next i {
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mainSlider .carousel-control-prev {
  left: 100px;
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-control-prev {
    left: 50px;
  }
}
#mainSlider .carousel-control-next {
  right: 100px;
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-control-next {
    right: 50px;
  }
}

.sec01 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .sec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec01 {
    padding: 30px 0;
  }
}
.sec01 h2 {
  background: url(../images/bg-clip.jpg) no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec01 .txt {
  position: relative;
}
.sec01 .txt:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 150%;
  background-color: var(--theme-yellow);
  top: 50%;
  transform: translate(0, -50%);
  left: -40px;
}
@media screen and (max-width: 1440px) {
  .sec01 .txt:before {
    left: -70px;
  }
}
@media screen and (max-width: 991px) {
  .sec01 .txt:before {
    display: none;
  }
}

.sec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media screen and (max-width: 991px) {
  .sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec02 {
    padding: 30px 0;
  }
}
.sec02 .unique-carousel .owl-item {
  display: flex;
  justify-content: end;
  align-items: center;
}
.sec02 .unique-carousel .owl-item > div {
  cursor: pointer;
  transition: margin 0.4s ease;
}
.owl-item:not(.center) .sec02 .unique-carousel .owl-item > div:hover {
  opacity: 0.75;
}
.sec02 .unique-carousel .owl-item .item {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.sec02 .unique-carousel .owl-item.center > div {
  cursor: auto;
  margin: 0;
  transform: scale(1);
}
.sec02 .unique-carousel .owl-item.center .txt p {
  display: block;
}
.sec02 .unique-carousel .owl-item .txt {
  text-align: center;
  padding-top: 20px;
}
.sec02 .unique-carousel .owl-item .txt h5 {
  text-transform: uppercase;
  font-family: var(--blair);
}
.sec02 .unique-carousel .owl-item .txt p {
  display: none;
}

.sec03 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .sec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec03 {
    padding: 30px 0;
  }
}
.sec03:before {
  position: absolute;
  content: "";
  width: 105%;
  height: 180%;
  border: 0.1px solid #834516;
  top: 0;
  left: -2.5%;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .sec03:before {
    display: none;
  }
}
.sec03 .item {
  text-align: center;
}
.sec03 .item.vision {
  position: relative;
}
.sec03 .item.vision:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background-color: var(--theme-brown);
  top: 50%;
  transform: translate(0, -50%);
  left: -50px;
}
@media screen and (max-width: 991px) {
  .sec03 .item.vision:before {
    display: none;
  }
}

.sec04 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .sec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec04 {
    padding: 30px 0;
  }
}
.sec04 .vector {
  position: absolute;
  left: -200px;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
}
.sec04 .item {
  background-color: var(--theme-light-brown);
  height: 100%;
}
.sec04 .item .img {
  position: relative;
}
.sec04 .item .img:before {
  position: absolute;
  content: "";
  width: 95%;
  height: 95%;
  border: 1px solid var(--theme-brown);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec04 .item .txt {
  padding: 20px;
}

.sec05 {
  position: relative;
  padding: 100px 0;
  color: var(--theme-brown);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .sec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec05 {
    padding: 30px 0;
  }
}
.sec05 .nav-pills {
  position: relative;
  border-bottom: 2px solid var(--theme-light-brown);
}
.sec05 .nav-pills:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--theme-brown);
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 999;
}
.sec05 .nav-pills .nav-item {
  width: 50%;
}
.sec05 .nav-pills .nav-item .nav-link {
  position: relative;
  color: var(--theme-brown);
  border-radius: 0;
  width: 100%;
  font-family: var(--blair);
  text-transform: uppercase;
  padding: 20px;
  background-color: transparent;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .sec05 .nav-pills .nav-item .nav-link {
    font-size: 14px;
  }
}
.sec05 .nav-pills .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--theme-light-brown);
  top: 0;
  z-index: -1;
  transition: all 0.6s ease;
}
.sec05 .nav-pills .nav-item .nav-link.left:before {
  right: 0;
}
.sec05 .nav-pills .nav-item .nav-link.right:before {
  left: 0;
}
.sec05 .nav-pills .nav-item .nav-link.active:before, .sec05 .nav-pills .nav-item .nav-link:hover:before {
  width: 100%;
}
.sec05 .tab-content .item {
  background-color: var(--theme-light-brown);
}
.sec05 .tab-content .item .content {
  padding: 40px;
}
@media screen and (max-width: 1440px) {
  .sec05 .tab-content .item .content {
    padding: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .sec05 .tab-content .item .content {
    padding: 20px;
  }
}
.sec05 .tab-content .item .content h2 {
  font-family: var(--blair);
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 1680px) {
  .sec05 .tab-content .item .content h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1600px) {
  .sec05 .tab-content .item .content h2 {
    font-size: 15px;
  }
}
@media screen and (max-width: 1440px) {
  .sec05 .tab-content .item .content h2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .sec05 .tab-content .item .content p {
    font-size: 14px;
  }
}
.sec05 .tab-content .item .content .amenities {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 2px solid var(--theme-brown);
}
.sec05 .tab-content .item .content .amenities .img {
  display: flex;
  justify-content: center;
}
.sec05 .tab-content .item .content .amenities .img img {
  width: unset;
}

.sec06 {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media screen and (max-width: 991px) {
  .sec06 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec06 {
    padding: 30px 0;
  }
}
.sec06 .item .txt {
  position: relative;
  width: 90%;
  background-color: #fff;
  padding: 20px;
  margin: auto;
  margin-top: -60px;
  z-index: 999;
  text-align: center;
}
@media screen and (max-width: 1680px) {
  .sec06 .item .txt {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1600px) {
  .sec06 .item .txt {
    width: 95%;
  }
}
@media screen and (max-width: 1440px) {
  .sec06 .item .txt {
    padding: 20px 8px;
    width: 96%;
  }
}
@media screen and (max-width: 991px) {
  .sec06 .item .txt {
    margin-top: -50px;
    width: 90%;
  }
}
.sec06 .item .txt p {
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  .sec06 .item .txt p {
    font-size: 13px;
  }
}
@media screen and (max-width: 1280px) {
  .sec06 .item .txt p {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .sec06 .item .txt p {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .sec06 .item .txt p {
    font-size: 13px;
  }
}

.sec07 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .sec07 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec07 {
    padding: 30px 0;
  }
}
.sec07 label span {
  color: red;
}
.sec07 .input {
  background-color: #ebebeb;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
}
.sec07 .input:focus {
  box-shadow: none;
}
.sec07 .input::-moz-placeholder {
  font-size: 12px;
}
.sec07 .input::placeholder {
  font-size: 12px;
}

@media screen and (max-width: 600px) {
  footer {
    margin-bottom: 43px;
  }
}
footer .footer {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (max-width: 991px) {
  footer .footer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  footer .footer {
    padding: 30px 0;
  }
}
footer .footer .footer-head {
  color: var(--theme-yellow);
  font-size: 22px;
}
footer .footer ul {
  margin-bottom: 0;
  padding-left: 0;
}
footer .footer ul li {
  list-style-type: none;
  padding: 5px 0;
}
@media screen and (max-width: 1440px) {
  footer .footer ul li {
    font-size: 14px;
  }
}
footer .footer ul li a {
  text-decoration: none;
  color: #fff;
}
footer .footer ul li i {
  color: var(--theme-yellow);
}
footer .copyright {
  background-color: #333333;
  padding: 10px 0;
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer .copyright p {
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  footer .copyright p {
    font-size: 10px;
  }
}
footer .copyright a {
  color: var(--theme-yellow);
}

#thank-you {
  background-color: #000;
  height: 100vh;
  display: flex;
  align-items: center;
}
#thank-you h3 {
  font-size: 52px;
  color: #fff;
  font-weight: bold;
  color: #fff;
}
#thank-you p {
  color: #fff;
}

#float-icons {
  position: fixed;
  top: 200px;
  right: 5px;
  z-index: 999;
}
@media screen and (max-width: 600px) {
  #float-icons {
    display: flex;
    width: 100%;
    top: unset;
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 600px) {
  #float-icons .item {
    width: 33.33%;
    border: 1px solid #fff;
  }
}
#float-icons .item a {
  color: #fff;
  display: block;
  height: 40px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 40px;
  margin-bottom: 1px;
  z-index: 2;
  background-color: #000;
}
@media screen and (max-width: 600px) {
  #float-icons .item a {
    width: 100%;
  }
}
#float-icons .item a:hover {
  cursor: pointer;
}
#float-icons .item a:hover span {
  visibility: visible;
  right: 41px;
  opacity: 1;
}
#float-icons .item a span {
  line-height: 40px;
  right: 60px;
  position: absolute;
  text-align: center;
  width: 120px;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
  background-color: #000;
}
@media screen and (max-width: 600px) {
  #float-icons .item a span {
    display: none;
  }
}

.form-sec .vector {
  position: absolute;
  right: -15%;
  bottom: 0;
  width: 50%;
  opacity: 0.4;
  z-index: -1;
}
.form-sec .modal-content {
  border-radius: 0;
  overflow: hidden;
}
.form-sec .modal-content .modal-header {
  background-color: var(--theme-brown);
  border-radius: 0;
  color: #fff;
  padding: 15px 30px;
}
.form-sec .modal-content .modal-header .theme-btn-close {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 30px;
  top: 20px;
  color: #fff;
}
.form-sec .modal-content .modal-header .modal-title {
  font-size: 20px;
}
.form-sec .modal-content .modal-body {
  padding: 30px;
  z-index: 1;
}
.form-sec .modal-content .modal-body input {
  border-radius: 0;
  padding: 10px;
  border: 1px solid #787878;
  background-color: transparent;
}
.form-sec .modal-content .modal-body input:focus {
  box-shadow: none;
}
.form-sec .modal-content .modal-body input::-moz-placeholder {
  font-size: 12px;
}
.form-sec .modal-content .modal-body input::placeholder {
  font-size: 12px;
}

.m-backtotop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--theme-brown);
  border-radius: 25px;
  text-align: center;
  border: 1px solid #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: shadow-pulse 1s infinite;
}
@media screen and (max-width: 1440px) {
  .m-backtotop {
    height: 40px;
    width: 40px;
  }
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .m-backtotop.active {
    bottom: 60px;
  }
}
.m-backtotop > div {
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.m-backtotop > div.text {
  text-transform: uppercase;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}
.m-backtotop:hover {
  bottom: 20px;
  cursor: pointer;
  background-color: var(--theme-brown);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1440px) {
  .m-backtotop:hover {
    bottom: 65px;
  }
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

@keyframes zoom-in {
  100% {
    transform: scale(1.2);
  }
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}
@keyframes circle-full {
  from {
    clip-path: circle(0% at 50% 50%);
  }
  to {
    clip-path: circle(100% at 50%);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */