html,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* annimation */
.fadeinleft {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}

.fadeinright {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}

.fadeindown {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-out;
}

.fadeinup {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s ease-out;
}

.fade-in {
  opacity: 0;
  transition: all 1.3s ease-in;
}

.active-left,
.active,
.active-right,
.active-down,
.active-up {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
}

.fadein {
  opacity: 0;
}

/* footer */
:root {
  /* Background Color */
  --primary-color: #212122b9;
  --secondary-color: #a3a190;
  --bg-color: #f4f4f4;
  --bg-white: #fff;
  --bg-black: #000;
  /* Text Style */
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Oswald", sans-serif;
  --tertiary-font: "Cinzel", serif;
  --primary-text: #212122b9;
  --secondary-text: #cea356;
  --text-white: #fff;
  --text-black: rgb(79, 79, 79);
  --text-gray: #e4e4e4;
}

.footer_wrapper {
  background-color: #1d1f25;
}
.footer_wrapper h5 {
  color: white;
  margin-bottom: 1.25rem;
}
.footer_wrapper ul li {
  margin-bottom: 0.5rem;
  list-style: none;
}
.footer_wrapper .contact-info li a {
  color: white;
}
.footer_wrapper .link-widget li a,
.footer_wrapper p {
  color: white;
  font-size: 14px;
  padding-left: 1.5rem;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer_wrapper .link-widget li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer_wrapper .link-widget li a:hover {
  margin-left: 0.625rem;
  color: #033a58;
}
.footer_wrapper .social-network a {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0.6rem;
  line-height: 2rem;
  font-size: 0.875rem;
  display: inline-block;
  border: 0.125rem solid var(--text-gray);
  color: var(--text-gray);
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer_wrapper .social-network a:hover {
  background-color: var(--secondary-text);
  border-color: var(--secondary-text);
  color: var(--text-white);
  box-shadow: 0 0.625rem 0.9375rem 0 rgb(0 0 0 / 10%);
  transform: translateY(-0.1875rem);
}
.footer_wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--secondary-color);
}
.footer_wrapper .copyright-section {
  background-color: #dddddd;
  padding: 1.25rem 0 0.3125rem;
  text-align: center;
}
.footer_wrapper .copyright-section a {
  color: var(--secondary-text);
}

/* navbar */
.navbar {
  -webkit-box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
  box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
  -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s,
    opacity 0s ease-in-out 0s;
  transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s,
    opacity 0s ease-in-out 0s;
  overflow-x: hidden;
  background-color: #ffffff;
}
.navbar-nav a {
  margin-left: 10px;
  font-size: 22px;
  font-weight: 500 !important;
}
.nav-link img {
  width: 25px;
  height: 15px;
}
.navbar-nav a {
  text-decoration: none;
  padding: 10px;
  font-size: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: rgb(61, 59, 59);
  border-bottom: 1px solid transparent;
  position: relative;
}
.navbar-nav a:hover {
  color: #1d1f25;
}
.navbar-nav a.active {
  color: #1d1f25 !important;
}
.navbar-nav a::before {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #1d1f25;
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transition: width 0.4s, left 0.4s;
}
.navbar-nav a:hover::before {
  width: 100%;
  left: 0;
}

/* button */

#button,
#button::after {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#button {
  background: #033a58;
  border: 3px solid #24416b !important;
  border-radius: 0px !important;
  color: white !important;
  font-size: 15px;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px 30px;
  position: relative;
  text-transform: uppercase;
  border-radius: 10px;
  font-family: "Lato", sans-serif;
}

#button::before,
#button::after {
  background: white !important;
  content: "";
  position: absolute;
  z-index: -1;
  color: white;
}

#button:hover {
  color: #24416b !important;
  transform: scale(1);
  cursor: pointer;
  color: white;
}

.btn-3 {
  overflow: hidden;
}
.btn-3::after {
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
}

.btn-3:hover:after {
  height: 100%;
  width: 135%;
}

/* font family */
.cormo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.cormo-i {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
}

.ibm {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* index-bg */
#index-bg {
  background: url(img/img-1.jfif) rgba(0, 0, 0, 0.4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

.index-ds h1 {
  color: #ffffff;
  font-size: 60px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.index-ds h2 {
  color: #ffffff;
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* about */
#about {
  background-color: #e9f5ff;
  padding: 70px 0;
}

#about-2 {
  padding: 70px 0;
}

.about-ds h2 {
  color: #033a58;
  font-size: 40px;
  text-align: center;
}

.about-dsc h2 {
  color: #315779;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-dsc h3 {
  color: #033a58;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.about-dsc p {
  font-size: 17px;
  color: black;
  font-weight: 400;
}

/* facilities */
.faci-card {
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #eee;
  border-width: 1px 1px 1px 1px;
  background-color: white;
  position: relative;
}

.fa-cards {
  text-align: left;
  background-color: #e9f5ff;
  padding: 15px 20px 5px 20px;
  border-style: none;
  border-radius: 0px 0px 0px 0px;
  transition: all 1s ease;
}

.fa-cards:hover {
  background-color: white;
  transition: all 1s ease;
  cursor: pointer;
}

.fa-cards:hover img {
  background-color: #e9f5ff;
  transition: all 1s ease;
  color: white;
}
.fa-cards img {
  width: 70px;
  transition: all 1s ease;
  background-color: white;
  padding: 10px;
}

.fa-cards h2 {
  font-size: 30px;
  text-transform: capitalize;
  margin: 10px 0;
  color: #033a58;
}

/* gallery */
#gallery {
  padding: 70px 0;
  background-color: #e9f5ff;
}

.gallery-ds {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-ds h2 {
  color: #315779;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.gallery-ds h3 {
  color: #033a58;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

/* menu */
#menu {
  padding: 70px 0;
}

#menu-1 {
    padding-bottom: 70px;
}

#menu-bg {
  background: url(img/shpella-e-pellumbave-16.jpg) rgba(0, 0, 0, 0.4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

.menu-ds {
  text-align: center;
  margin-bottom: 50px;
}

.menu-ds h2 {
  color: #315779;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.menu-ds h3 {
  color: #033a58;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.menu-img {
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #033a58;
  background-color: white;
  transition: transform 0.3s ease;
  transform: perspective(500px) translateZ(0);
}

.menu-img:hover {
  transform: perspective(500px) translateZ(20px);
  cursor: pointer;
}

.me-img img {
  border-radius: 50%;
}

.menu .text h2 {
  text-align: center;
  font-size: 25px;
  color: #033a58;
  margin-top: 20px;
  text-transform: capitalize;
}


.menu-card {
    border: 2px solid #e4e4e4;
    margin: 15px 0;
}

.menu-card .header {
    background-color: #315779;
    padding: 20px;
    color: white;
}

.menu-card .header h2 {
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
}

.menu-card .text {
    padding: 20px;
}


.menu-card .text .items {
    display: flex;
    justify-content: space-between;
    padding:10px;
    border-bottom: 2px dashed #033a58;
}

.menu-card .text .items .product h3 {
    font-size: 25px;
    text-transform: capitalize;
    color: #033a58;
    font-weight: 500;
}

.menu-card .text .items .price p{
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
}

/* testimonials */
#testimonials {
  padding: 70px 0;
}

.testimonials-ds {
  margin-bottom: 50px;
  text-align: center;
}

.testimonials-ds h2 {
  color: #315779;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.testimonials-ds h3 {
  color: #033a58;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.testi-card {
  position: relative;
  background-color: #e9f5ff;
  text-align: center;
  margin: 15px 0;
  border: 2px solid #e4e4e4;
}

.testi-card p {
  font-size: 18px;
  padding: 20px;
}

.testi-card .profile-card  {
  background-color: white;
  padding: 20px 0;
}

.testi-card .profile-card img {
  background-color: #eee;
  padding: 10px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.testi-card .profile-card .text h2 {
  font-size: 25px;
  text-transform: capitalize;
  color: #033a58;
  margin-top: 15px;
}

.testi-card .profile-card .text p {
  font-size: 18px;
  color: #033a58;
  text-transform: capitalize;
  letter-spacing: 1.2px;
  margin-top: -15px;
}

.tes {
  padding: 10px;
  border: 2px solid #e9f5ff;
}

/* about */
#about-bg {
  background: url(img/img-2.jfif) rgba(0, 0, 0, 0.4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

/* contact */
#contact-bg {
  background: url(img/stairs.jpg) rgba(0, 0, 0, 0.4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

#contact {
  padding: 70px 0;
}

.contact-ds {
  margin-bottom: 50px;
}

.contact-ds h3 {
  color: #033a58;
  font-size: 40px;
  text-align: center;
  text-transform: capitalize;
}

.contact-ds h2 {
  text-align: center;
  color: #315779;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-card {
  border: 3px solid #e9f5ff;
  padding: 20px;
  margin: 15px 0;
}

.cont {
  background-color: #e9f5ff;
  text-align: center;
  padding: 20px;
}

.cont img {
  background-color: white;
  padding: 15px;
  width: 80px;
}

.cont h2 {
  text-transform: capitalize;
  color: #033a58;
  margin: 15px 0;
  font-size: 30px;
}

.cont p {
  font-size: 17px;
  color: #24416b;
}

.cont p a {
  text-decoration: none;
  color: #24416b;
  font-size: 17px;
}

/* responsive */
@media (max-width:1100px) {
  .about-ds h2 {
    font-size: 30px;
  }

  .about-dsc h2 {
    font-size: 16px;
  }

  .about-dsc h3 {
    font-size: 35px;
  }

  .about-dsc p {
    font-size: 15px;
  }

  .fa-cards h2 {
    font-size: 25px;
  }

  .fa-cards p {
    font-size: 15px;
  }

  .gallery-ds h2 {
    font-size: 16px;
  }

  .gallery-ds h3 {
    font-size: 35px;
  }

  .menu-ds h2 {
    font-size: 16px;
  }

  .menu-ds h3 {
    font-size: 35px;
  }

  .menu .text h2 {
    font-size: 25px;
  }

  .menu-card .header h2 {
    font-size: 25px;
  }

  .menu-card .text .items .product h3 {
    font-size: 23px;
  }

  .menu-card .text .items .price p {
    font-size: 22px;
  }

  .testimonials-ds h2 {
    font-size: 16px;
  }

  .testimonials-ds h3 {
    font-size: 35px;
  }

  .contact-ds h2 {
    font-size: 16px;
  }

  .contact-ds h3 {
    font-size: 35px;
  }

  .contact-card .cont h2 {
    font-size: 25px;
  }

  .contact-card .cont p {
    font-size: 15px;
  }

  .contact-card .cont a {
    font-size: 15px;
  }
}

@media (max-width:900px) {
  .navbar-nav a {
    font-size: 17px;
  }

  
#button {
  background: #033a58;
  border: 3px solid #24416b !important;
  border-radius: 0px !important;
  color: white !important;
  font-size: 10px;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  text-transform: uppercase;
  border-radius: 10px;
  font-family: "Lato", sans-serif;
}

.gallery-img {
  margin: 15px 0;
}

.mob {
  display: flex;
  flex-direction: column;
}

.index-ds h1 {
  font-size: 45px;
}

.index-ds h2 {
  font-size: 30px;
}

.about-dsc {
  margin-top: 15px;
}
}