@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&family=Great+Vibes&display=swap");
:root {
  scroll-behavior: smooth;
  --gold: #c28b47;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #000000;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #1eff00;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  transform: scale(1.2);
  background: #ff920e;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid var(--gold);
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.2s ease;
  z-index: 997;
}
.logo-head {
  height: 70px;
  width: 8rem;
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.59);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(17.4px);
  -webkit-backdrop-filter: blur(17.4px);
}

/* #header.header-scrolled a {
  color: #ffffff;
  transition: all 0.5s ease-in-out;
} */

/* #header.header-scrolled a:hover {
  color: var(--gold);
}

#header.header-scrolled a.active {
  color: var(--gold);
} */

.logo {
  font-family: "Great Vibes", cursive;
  position: relative;
  color: var(--gold);
}
.logo:hover {
  color: #ffd95a;
}

.logo-sub {
  font-size: 15px;
  position: absolute;
  bottom: -7px;
  right: -5px;
}

.nav-book {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);

  padding: 6px 15px;
  font-size: 15px;
  border-radius: 50px;
}
.nav-book:hover {
  background-color: #fff;
  color: var(--gold);
  border: 1px solid var(--gold);
}

/*-------------- Navigation Menu -----------------*/
/* Desktop Navigation */

.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin-top: 15px;
  text-transform: uppercase;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(255, 255, 255, 0.5);
  transition: all 0.5s ease-in-out;
  letter-spacing: 1px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--gold);
}

.navbar .active {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.drop-ul {
 
  position: absolute;
  left: -34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.59);

  backdrop-filter: blur(17.4px);
  -webkit-backdrop-filter: blur(17.4px);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar .dropdown ul li {
  min-width: 230px;
}

.navbar .dropdown ul a {
  padding: 15px 25px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fdfdfd;
  font-weight: 500;
  text-decoration: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background: rgba(0, 0, 0, 0.59);

  backdrop-filter: blur(17.4px);
  -webkit-backdrop-filter: blur(17.4px);
  width: 230px;

  color: #ffffff !important;
  text-decoration: none;
}

.dropdown:hover .drop-ul {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar-mobile{
    overflow: hidden;
  }
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--gold);
  font-size: 33px;
  cursor: pointer;
  display: none;
  line-height: 0;
}

@media (max-width: 991px) {
  .navbar-mobile {
    overflow: visible;
  }
  .logo-head {
      height: 70px;
      width: 8rem;
    }
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.59);

  backdrop-filter: blur(17.4px);
  -webkit-backdrop-filter: blur(17.4px);

  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {

  position: absolute;
  top: 45px;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 99999;
  padding: 10px 0;
  background: rgba(0, 0, 0);
  backdrop-filter: blur(17.4px);
  -webkit-backdrop-filter: blur(17.4px);
  height: 100vh;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 23px 80px;
  font-size: 15px;
  color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
  background-color: var(--gold);
  display: flex;
  justify-content: center;
  width: 100vw;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: block;
  margin-left: 30%;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgb(255, 255, 255);
  box-shadow: none;
  margin-top: 0;
  padding-top: 0;
}

.navbar-mobile .dropdown ul li {
  min-width: 230px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
  font-weight: 500;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: var(--gold);
  color: #ffffff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.slide-11 {
  background-position: top;
  background-size: contain;
}
#hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../img/pattern.png);
  background: rgba(0, 0, 0, 0.1);
}

#hero .carousel-content {
  text-align: center;
}

.h-box {
  width: 70vw;
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

/* #hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {

  font-size: 20px;

  transition: all 0.3s ease-in-out;
  color: rgba(255, 255, 255, 0.5);

  display: flex;
  align-items: center;
  justify-content: center;

} */

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--gold);
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/deskbg.webp") top center;
  background-size: cover;

  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin-top: 100px;
  font-size: 6rem;
  font-weight: bolder;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Dancing Script", cursive;
  display: flex;
}

#hero span {
  display: flex;
  color: var(--gold);
  font-size: 6rem;

  letter-spacing: 2px;
  margin-left: 30px;
  font-family: "Great Vibes", cursive;
  position: relative;
}
#hero .name-in {
  color: var(--gold);
  font-size: 2rem;
  position: absolute;
  bottom: 0px;
  right: -1px;
  font-family: "Great Vibes", cursive;
}

.slide-2,
.slide-3,
.slide-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero .slide-img-2 {
  width: 100%;
  height: 100vh;
  background: url("../img/slideimg-2.jpg") top center;
  background-size: cover;
  position: relative;
}

/* #hero .slide-img-2:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

#hero .slide-img-3 {
  width: 100%;
  height: 100vh;
  background: url("../img/slideimg-3.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero .slide-img-3:before {
  content: "";
  background: rgba(20, 20, 20, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .slide-img-4 {
  width: 100%;
  height: 100vh;
  background: url("../img/slideimg-4.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero .slide-img-4:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.slide-2 h4 {
  font-size: 3.2rem;
  font-weight: 600;
  width: 85%;
  line-height: 80px;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  opacity: 0.8;
  text-transform: uppercase;
}
.slide-2 p,
.slide-3 p,
.slide-4 p {
  font-weight: 600;
  font-size: 25px;
  line-height: 43px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0.6;
}

.slide-2-p {
  font-weight: 600;
  font-size: 22px;
  line-height: 43px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0.6;
}
#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #182068;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #182068;
}

#hero .icon-box:hover {
  border-color: #182068;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: max-content;
  }

  #hero h1 {
    font-size: 5rem;
    width: 100%;
    margin-top: 10px;
    display: block;
  }
  #hero span {
    font-size: 5rem;
    text-align: center;
    width: 100%;
    margin-top: 40px;
    position: relative;
  }
  #hero .name-in {
    font-size: 3rem;
    position: absolute;
    bottom: -15px;
    right: 50px;
    font-family: "Great Vibes", cursive;
  }
  .h-box {
    width: 65vw;
    margin-top: 10px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .slide-2 h4 {
    font-size: 1.5rem;
    font-weight: 500;
    width: 100%;
    line-height: 90px;
    letter-spacing: 1px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    opacity: 0.8;
    text-transform: uppercase;
  }
}

#hero .btn-get-started {
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  margin-top: 20px;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  border: 2px solid #007fe1;
  background: transparent;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.slide-2-btn {
  border: 2px solid #a51133 !important;
}
.slide-2-btn:hover {
  background: #a51133 !important;
}

.slide-3-btn {
  border: 2px solid #0a0a0a !important;
}
.slide-3-btn:hover {
  background: #000000 !important;
}
#hero .btn-get-started:hover {
  background: #007fe1;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

main {
  overflow: hidden;
}

.section-title {
  padding: 30px 0;
}

section {
  background: url(./Assets/Gallery/Back-2.jpg) center top no-repeat fixed;
  background-size: cover;

  z-index: 1;
  padding: 0;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;

  background: rgba(255, 255, 255, 0.8);
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1px;
  text-align: center;

  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
}

.section-title h2::before {
  content: "";
  width: 80px;
  height: 1px;
  display: inline-block;
  background: var(--gold);
  margin: 4px 10px;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 1px;
  display: inline-block;
  background: var(--gold);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-h1 {
  text-align: center;

  font-weight: 700;
  font-family: "Libre Baskerville", serif;
}

.about h2 {
  text-align: center;
}

.about p {
  font-size: 16px;
  padding: 10px 10px;
  text-align: justify;
  line-height: 40px;
  text-indent: 60px;
}

.btn-about {
  background-color: #fff;
  border: 1px solid var(--gold);
  font-size: 16px;
  padding: 10px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn-about:hover {
  background-color: var(--gold);
  color: #fff;
}

.about-img-holder {
  height: 475px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 90vh;

  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.about-img:hover {
  transform: scale(1.2);
  border-radius: 5px;
  overflow: hidden;
}
/* -----check room */
.check-img-holder {
  height: 470px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.check-img {
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.check-img:hover {
  transform: scale(1.2);
  border-radius: 5px;
  overflow: hidden;
}

/* ----rooms----- */

.room-img-holder {
  height: 300px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  border: 4px solid #fff;
  /* transition: all 0.4s linear; */
}

/* .room-img:hover {
  transform: scale(1.1);
  overflow: hidden;
} */

/* ---gallery */

.gallery-h1 {
  font-family: "Libre Baskerville", serif;
  text-align: center;
  padding-top: 62px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-img {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  overflow: hidden !important;
}

.gal-img {
  width: 400px;
  height: 300px;
  border-radius: 5px !important;
  transition: all 0.5s ease-in-out;
  touch-action: pan-x pan-y;
}
.gal-img-2 {
  width: 200px;
  height: 300px;
  border-radius: 5px !important;
  transition: all 0.5s ease-in-out;
  touch-action: pan-x pan-y;
}

.gal-img:hover {
  overflow: hidden;
  transform: scale(1.1);
  overflow: hidden;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.section-heading {
  font-family: "Libre Baskerville", serif;
  text-align: center;
  padding: 10px 0;
}

.form-group label {
  color: var(--gold);
  padding-bottom: 10px;
  margin-left: 10px;
}
.inpp {
  background: rgb(255, 255, 255, 0.3);
}
.distance {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: var(--gold);
}
.link-ho:hover {
  color: #182068;
  scale: 1.2;
  transition: all 0.4s ease-in-out;
}
.contact-form {
  border: 2px solid var(--gold);
  padding: 25px 30px;
}

.logo-footer {
  height: 10rem;
  width: 15rem;
}
.input-control {
  width: 100%;
  padding: 8px;
  outline: none !important;
  border: none;
  border-bottom: 1px solid var(--gold) !important;
}

.input-control-m {
  width: 100%;
  padding: 8px;
  outline: none !important;
  border: none;
  border: 1px solid var(--gold) !important;
}

.t-1 {
  height: 250px;
}
.card {
  height: 100%;
}

.card-text {
  text-align: justify;
}

.contact-btn {
  margin-top: 20px;
  padding: 8px 15px;
  font-size: 15px;
  color: #ffffff;
  background: var(--gold);
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
  border: 1px solid var(--gold);
  background-color: rgb(255, 255, 255);
  color: var(--gold);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #070707;
  color: #fff;
  font-size: 16px;
}
.logo2 {
  font-family: "Great Vibes", cursive;
  position: relative;
  color: var(--gold);
}
.logo2:hover {
  color: #fdfdfd;
}

.logo2-sub {
  font-size: 15px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  text-align: center;
}
.footer-link {
  display: flex;
  flex-direction: column;

  justify-content: center;
}
#footer .footer-top .footer-info h4 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info span {
  color: var(--gold);
  font-size: 20px;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 6px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links .twitter:hover {
  background: var(--gold);
  color: white;
}

#footer .footer-top .social-links .facebook:hover {
  background: #00ff0d;
  color: white;
}

#footer .footer-top .social-links .instagram:hover {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  color: white;
}

#footer .footer-top .social-links .skype:hover {
  background: #00aff0;
  color: white;
}

#footer .footer-top .social-links .linkedin:hover {
  background: #0077b5;
  color: white;
}

#footer .footer-link h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

#footer .footer-link ul i {
  padding-right: 2px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.5;
  margin-right: 10px;
  margin-top: 5px;
}

#footer .footer-link ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

#footer .footer-top .footer-link ul li:hover i {
  transform: scale(1.5);
}
#footer .footer-top .footer-link ul li:first-child {
  padding-top: 0;
}

#footer .footer-link ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 2;
  font-size: 14px;
}
.map-i {
  margin-top: -50px !important;
}
.add-a {
  font-size: 16px;
  text-transform: capitalize;
}
.foo-mail {
  text-transform: lowercase;
}
#footer .footer-top .footer-link ul a:hover {
  color: var(--gold);
}

#footer .footer-top .footer-links-address ul {
  list-style: none;
}

#footer .footer-top .footer-links .map {
  padding-right: 2px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.5;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 15px;
  padding-bottom: 10px;
  color: #fff;
}
@media (max-width: 768px) {
    


.section-title h2 {
  font-size: 20x;
 
}

.section-title h2::before {
  content: "";
  width: 40px;
 
}

.section-title h2::after {
  content: "";
  width: 40px;
 
}

  .footer-link {
    margin-left: 100px;
  }

  #footer .footer-link h4 {
    margin-top: 20px;
  }
}
