html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* font family */
.noto {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* 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;
}

@mixin white-gradient {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
/*  Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  background: white;
  height: 300px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  &::before,
  &::after {
    @include white-gradient;
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  &::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  &::before {
    left: 0;
    top: 0;
  }
  .slide-track {
    animation: scroll linear infinite;
    animation-duration: 35s;
    display: flex;
    width: calc(250px * 14);
  }
}
.slide {
  margin-right: 15px !important;
}

/* 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;
  text-decoration: none;
}
.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: #3075B9;
}
.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 {
  -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;
  /* background-image: linear-gradient(45deg, black 30%, blue 70%); */
}
.navbar-nav a {
  margin-left: 10px;
  font-size: 22px;
  /* color: rgb(117, 113, 113); */
}
.nav-link img {
  width: 25px;
  height: 15px;
}
.navbar-nav a {
  text-decoration: none;
  padding: 10px;
  font-size: 21px;
  font-weight: 500;
  color: rgb(61, 59, 59);
  border-bottom: 1px solid transparent;
  position: relative;
}

.navbar-nav a:hover {
  color: #3075B9;
  /* border-bottom: 1px solid #000000; */
}
.navbar-nav a.active {
  /* border-bottom: 1px solid #000000; */
  color: #3075B9 !important;
}
.navbar-nav a::before {
  content: "";
  width: 0;
  height: 3px;
  border-radius: 2px;
  background-color: #3075B9;
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transition: width 0.4s, left 0.4s;
}
.navbar-nav a:hover::before {
  width: 100%;
  left: 0;
}

/*BUTTONS CLASS*/
#button,
#button::after {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

#button {
  background: #3075B9;
  border: 2px solid #3075B9 !important;
  border-radius: 5px;
  color: white !important;
  font-size: 15px;
  font-weight: bold;
  padding: 13px 25px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.6s ease-in-out;
  font-family: "Outfit", sans-serif;
  border-radius: 5px;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.2);
}

#button::before,
#button::after {
  background: white !important;
  content: "";
  position: absolute;
  z-index: -1;
}

#button:hover {
  color: #3075B9 !important;
  transform: scale(1);
  border: 2px solid #3075B9 !important;
}

.btn-3 {
  overflow: hidden;
}

.btn-3::after {
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  width: 0;
}

.btn-3:hover:after {
  height: 100%;
  width: 100%;
}

.btn-3::before {
  height: 100%;
  right: -35%;
  bottom: 0;
  transform: skew(50deg);
  transition: all 0.6s ease-in-out;

  width: 0;
}

.btn-3:hover:before {
  height: 100%;
  width: 100%;
}

/* index-home */
.index-dsc h2 {
  font-size: 22px;
  color: #3075B9;
  font-weight: 700;
}

.index-dsc h1 {
  font-size: 50px;
  font-weight: 700;
}

.index-dsc p {
 font-size: 18px;
 font-weight: 400;
 color: #666666;
}

.bg-1 {
  background: url(img/img-2.jpg) rgba(0, 0, 0, 0.40);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.bg-1 h1 {
  font-size: 60px;
  color: white;
  font-weight: 500;
}

.bg-2 h1 {
  font-size: 60px;
  color: #a18549;
  font-weight: 600;
}

.bg-3 h1 {
  font-size: 60px;
  color: #a18549;
  font-weight: 600;
}

.bg-2 {
  background: url(img/img-8.jpg) rgba(0, 0, 0, 0.40);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.bg-3 {
  background: url(img/img-19.jpg) rgba(0, 0, 0, 0.40);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

/* rooms */
.rooms-dsc h2 {
  font-size: 22px;
  color: #3075B9;
  font-weight: 700;
}

.rooms-dsc h1 {
  font-size: 50px;
  font-weight: 700;
}

.rooms-dsc p {
 font-size: 18px;
 font-weight: 400;
 color: #666666;
}

/* facilities */
.facilities-ds h2 {
  font-size: 22px;
  color: #3075B9;
  font-weight: 700;
}

.facilities-ds h1 {
  font-size: 50px;
  font-weight: 700;
}

.faci-icon {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
}

.faci-icon img {
  padding: 30px;
  background-color: #3075B9;
  border-radius: 50%;
  margin: 20px 0;
  transition: 1s ease;
}

.faci-icon img:hover {
  transform: translateY(-20px);
  transition: 1s ease;
  cursor: pointer;
}

.faci-icon h2 {
  font-size: 22px;
  color: #222222;
  font-weight: 700;
  text-transform: capitalize;
}

.faci-icon p {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
}

/* gallery */
.gallery-dss h2 {
  font-size: 22px;
  color: #3075B9;
  font-weight: 700;
}

.gallery-dss h1 {
  font-size: 50px;
  font-weight: 700;
}

/* testimonials */
.testimonials-ds h2 {
  font-size: 22px;
  color: #3075B9;
  font-weight: 700;
}

.testimonials-ds h1 {
  font-size: 50px;
  font-weight: 700;
}

.testimonials-cards {
  margin: 15px 0;
  background-color: white;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
  transition: 1s ease;
}

.testimonials-cards:hover {
  transform: translateY(-20px);
  transition: 1s ease;
  cursor: pointer;
}

.stars i {
  color: #FFD33C;
}

.testimonials-p p{
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin: 25px 0;
}

.testimonials-head h2 {
  font-size: 22px;
  color: #3075B9;
  font-weight: 700;
}

.user-inicial h5 {
  margin: 20px auto;
  padding: 10px;
  width: 15%;
  color: white;
  border-radius: 50%;
  background-color: #3075B9;
  font-size: 30px;
}

/* about-html */
#about-about {
  background: url(img/img-13.jpg) rgba(0, 0, 0, 0.40);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.about-ds h1 {
  font-size: 60px;
  color: white;
  font-weight: 500;
}

.about-ds p {
  font-size: 18px;
  color: #ffffff;
  line-height: 29.88px;
  margin: 0px 0px 16px;
  font-weight: 400;
}


.about-ds ul {
  list-style: none;
}

.about-ds ul li {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

.about-ds ul li a {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

/* rooms-html */
#rooms-bck {
  background: url(img/img-10.jpg) rgba(0, 0, 0, 0.40);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.rooms-ds h1 {
  font-size: 60px;
  color: white;
  font-weight: 500;
}

.rooms-ds p {
  font-size: 18px;
  color: #ffffff;
  line-height: 29.88px;
  margin: 0px 0px 16px;
  font-weight: 400;
}


.rooms-ds ul {
  list-style: none;
}

.rooms-ds ul li {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

.rooms-ds ul li a {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

.rooms-header h2 {
  font-size: 38px;
  color: #222222;
  line-height: 43.7px;
  margin: 0px 0px 12px;
  font-weight: 700;
}

.rooms-header p {
  font-size: 16px;
  color: #666666;
  line-height: 27.2px;
  margin: 0px 0px 16px;
  font-weight: 400;
}

.details {
  display: flex;
  justify-content: space-between; 
}

.details h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  width: 100%;
  text-align: start;
}

.details h3 {
  width: 100%;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-align: start;
}

.rooms-header {
  margin: 25px 0;
}

.rooms-info {
  padding-left: 20px;
}

.room-i img {
  height: 500px;
  border-radius: 5px;
}

/* gallery-html */
#gallery-bck {
  background: url(img/img-20.jpg) rgba(0, 0, 0, 0.40);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.gallery-ds h1 {
  font-size: 60px;
  color: white;
  font-weight: 500;
}

.gallery-ds p {
  font-size: 18px;
  color: #ffffff;
  line-height: 29.88px;
  margin: 0px 0px 16px;
  font-weight: 400;
}


.gallery-ds ul {
  list-style: none;
}

.gallery-ds ul li {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

.gallery-ds ul li a {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

/* contact-html */
#contact-bck {
  background: url(img/img-11.jpg) rgba(0, 0, 0, 0.40);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.contact-ds h1 {
  font-size: 60px;
  color: white;
  font-weight: 500;
}

.contact-ds p {
  font-size: 18px;
  color: #ffffff;
  line-height: 29.88px;
  margin: 0px 0px 16px;
  font-weight: 400;
}


.contact-ds ul {
  list-style: none;
}

.contact-ds ul li {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

.contact-ds ul li a {
  text-decoration: none;
  margin-top: 50px;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}

.contact-form {
  text-align: center  ;
}

.contact-form i {
  font-size: 20px;
  padding: 30px;
  background-color: #3075B9;
  border-radius: 50%;
  margin-bottom: 30px;
  transition: 1s ease;
  color: white;
}

.contact-form i:hover {
  transform: translateY(-20px);
  transition: 1s ease;
  cursor: pointer;
}

.contact-form h4 {
  font-size: 21px;
  color: #222222;
  line-height: 25.2px;
  margin: 0px 0px 15px;
  font-weight: 700;
}

.contact-form p {
  color: #666666;
  font-size: 16px;
  line-height: 26.56px;
  font-weight: 400;
}

.border-r {
  border-right: 2px solid #666666;
}

@media (max-width:1000px) {
  #button {
    background: #3075B9;
    border: 2px solid #3075B9 !important;
    border-radius: 5px;
    color: white !important;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
    text-transform: uppercase;
    transition: all 0.6s ease-in-out;
    font-family: "Outfit", sans-serif;
    border-radius: 5px;
    box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.2);
  }

  /* heder */
  .bg-1 h1 {
    font-size: 45px;
    color: white;
    font-weight: 500;
  }
  
  .bg-2 h1 {
    font-size: 45px;
    color: #a18549;
    font-weight: 600;
  }
  
  .bg-3 h1 {
    font-size: 45px;
    color: #a18549;
    font-weight: 600;
  }

  /* about-index */
  .index-dsc h2 {
    font-size: 19px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .index-dsc h1 {
    font-size: 40px;
    font-weight: 700;
  }
  
  .index-dsc p {
   font-size: 15px;
   font-weight: 400;
   color: #666666;
  }


  /* facilities */
  .facilities-ds h2 {
    font-size: 19px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .facilities-ds h1 {
    font-size: 40px;
    font-weight: 700;
  }

  .faci-icon img {
    padding: 20px;
    background-color: #3075B9;
    border-radius: 50%;
    margin: 20px 0;
    transition: 1s ease;
  }
  
  .faci-icon img:hover {
    transform: translateY(-20px);
    transition: 1s ease;
    cursor: pointer;
  }

  .faci-icon h2 {
    font-size: 18px;
    color: #222222;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  .faci-icon p {
    font-size: 13px;
    font-weight: 400;
    color: #222222;
  }

  /* rooms */
  .rooms-dsc h2 {
    font-size: 18px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .rooms-dsc h1 {
    font-size: 40px;
    font-weight: 700;
  }
  
  .rooms-dsc p {
   font-size: 15px;
   font-weight: 400;
   color: #666666;
  }

  /* gallery */
  .gallery-dss h2 {
    font-size: 18px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .gallery-dss h1 {
    font-size: 40px;
    font-weight: 700;
  }  

  /* testimonials */
  .testimonials-ds h2 {
    font-size: 18px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .testimonials-ds h1 {
    font-size: 40px;
    font-weight: 700;
  }

  /* about-html */
  .about-ds h1 {
    font-size: 45px;
    color: white;
    font-weight: 500;
  }
  
  .about-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  /* rooms-html */
  .rooms-ds h1 {
    font-size: 45px;
    color: white;
    font-weight: 500;
  }
  
  .rooms-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  .rooms-header h2 {
    font-size: 30px;
    color: #222222;
    line-height: 43.7px;
    margin: 0px 0px 12px;
    font-weight: 700;
  }
  
  .rooms-header p {
    font-size: 13px;
    color: #666666;
    line-height: 27.2px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  /* gallery-html */
  .gallery-ds h1 {
    font-size: 40px;
    color: white;
    font-weight: 500;
  }
  
  .gallery-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  /* contact-html */
  .contact-ds h1 {
    font-size: 40px;
    color: white;
    font-weight: 500;
  }
  
  .contact-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }
}

@media (max-width:900px) {
  /* hedaer */
  .bg-1 h1 {
    font-size: 45px;
    color: white;
    font-weight: 500;
  }
  
  .bg-2 h1 {
    font-size: 45px;
    color: #a18549;
    font-weight: 600;
  }
  
  .bg-3 h1 {
    font-size: 45px;
    color: #a18549;
    font-weight: 600;
  }

  /* about-index */
  .index-dsc h2 {
    font-size: 17px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .index-dsc h1 {
    font-size: 35px;
    font-weight: 700;
  }
  
  .index-dsc p {
   font-size: 12px;
   font-weight: 400;
   color: #666666;
  }


  /* facilities */
  .facilities-ds h2 {
    font-size: 17px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .facilities-ds h1 {
    font-size: 35px;
    font-weight: 700;
  }

  .faci-icon img {
    padding: 20px;
    background-color: #3075B9;
    border-radius: 50%;
    margin: 20px 0;
    transition: 1s ease;
  }
  
  .faci-icon img:hover {
    transform: translateY(-20px);
    transition: 1s ease;
    cursor: pointer;
  }

  .faci-icon h2 {
    font-size: 18px;
    color: #222222;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  .faci-icon p {
    font-size: 13px;
    font-weight: 400;
    color: #222222;
  }

  /* rooms */
  .rooms-dsc h2 {
    font-size: 17px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .rooms-dsc h1 {
    font-size: 35px;
    font-weight: 700;
  }
  
  .rooms-dsc p {
   font-size: 12px;
   font-weight: 400;
   color: #666666;
  }

  /* gallery */
  .gallery-dss h2 {
    font-size: 18px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .gallery-dss h1 {
    font-size: 40px;
    font-weight: 700;
  }  

  /* testimonials */
  .testimonials-ds h2 {
    font-size: 18px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .testimonials-ds h1 {
    font-size: 40px;
    font-weight: 700;
  }

  /* about-html */
  .about-ds h1 {
    font-size: 45px;
    color: white;
    font-weight: 500;
  }
  
  .about-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  /* rooms-html */
  .rooms-ds h1 {
    font-size: 45px;
    color: white;
    font-weight: 500;
  }
  
  .rooms-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  .rooms-header h2 {
    font-size: 30px;
    color: #222222;
    line-height: 43.7px;
    margin: 0px 0px 12px;
    font-weight: 700;
  }
  
  .rooms-header p {
    font-size: 13px;
    color: #666666;
    line-height: 27.2px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  .room-index .item img {
    height: 300px;
  }

  /* gallery-html */
  .gallery-ds h1 {
    font-size: 40px;
    color: white;
    font-weight: 500;
  }
  
  .gallery-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  /* contact-html */
  .contact-ds h1 {
    font-size: 40px;
    color: white;
    font-weight: 500;
  }
  
  .contact-ds p {
    font-size: 15px;
    color: #ffffff;
    line-height: 29.88px;
    margin: 0px 0px 16px;
    font-weight: 400;
  }

  /* gallery */
  .gallery-dss h2 {
    font-size: 17px;
    color: #3075B9;
    font-weight: 700;
  }
  
  .gallery-dss h1 {
    font-size: 35px;
    font-weight: 700;
  }

  .testimonials-p p {
    font-size: 12px;
  }

  .testimonials-head h2 {
    font-size: 18px;
  }
}

@media (max-width:767px) {
  .border-r {
    border: none;
  }

  .index-img img {
    margin-top: 40px;
  }
}