

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --hue-color: 200;

}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


button { cursor: pointer; }


body{
  background-color: black;
}


 .container {
  position: relative;
  /* margin-top: 100px; */
}

















nav {
  position: fixed;
  z-index: 1000000;
  left: 0;
  right: 0;
  top: 0;
  font-family: 'Montserrat', 'sans-serif';
  height: 100px;
  background-color: #141414;
  box-shadow: #585858;
  padding: 0 5%;

}
nav .headerlogo { 
  float: left;
  width: 100px;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
}

nav .headerlogo img{
  width: 100px;
}
nav .links {
  float: right;
  padding: 0;
  margin: 0;
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav .links li {
  list-style: none;
  text-shadow: 5px 5px 5px rgb(88, 87, 87);
}
nav .links a {
  display: block;
  padding: 0.7em;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  position: relative;
}
nav .links a:hover {
  color: white;
}
nav .links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
nav .links a:hover::before {
  visibility: visible;
  transform: scaleX(1);
  color: white;
}
#nav-toggle {
   position: absolute;
   top: -100px;
}
nav .icon-burger {
  display: none;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
nav .icon-burger .line {
  width: 30px;
  height: 5px;
  background-color: #fff;
  margin: 5px;
  border-radius: 3px;
  transition: all .5s ease-in-out;
}
@media screen and (max-width: 768px) {
  nav .headerlogo {
      float: none;
      width: auto;
      justify-content: center;
  }
  nav .links {
      float: none;
      position: fixed;
      z-index: 9;
      left: 0;
      right: 0;
      top: 100px;
      bottom: 100%;
      width: auto;
      height: auto;
      flex-direction: column;
      justify-content: space-evenly;
      background-color: rgba(0, 0, 0, .8);
      overflow: hidden;
      transition: all .5s ease-in-out;
  }
  nav .links a {
      font-size: 20px;
  }
  nav :checked ~ .links {
      bottom: 0;
  }
  nav .icon-burger {
      display: block;
  }
  nav :checked ~ .icon-burger .line:nth-child(1) {
      transform: translateY(10px) rotate(225deg);
  }
  nav :checked ~ .icon-burger .line:nth-child(3) {
      transform: translateY(-10px) rotate(-225deg);
  }
  nav :checked ~ .icon-burger .line:nth-child(2) {
      opacity: 0;
  }
}


@media  screen and (min-width:1700px) {
  nav .links a {
    font-size: 30px;
  
}
  
}

@media  screen and (min-width:2100px) {
  nav{
   height: 150px;
  }
   
 }

@media  screen and (min-width:2200px) {
  nav .links a {
    font-size: 40px;
  
}
  
}

@media  screen and (min-width:2900px) {
  nav{
   height: 200px;
  }

  nav .links a {
    font-size: 50px;
  
}
   
 }




 .containers {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  background-color: #000000;
}

.left-container {
  background-color: #222222;
  height: 100%;
  width: 30%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.right-container {
  position: relative;
  background-color: #000000;
  height: 100%;
  width: 70vw;
}

.center-container {
  position: absolute;
  top: 14vh;
  left: 37.5vw;
  height: 55vh;
  width: 25vw;
  background-image: url("images/VB full.png");
  background-size: cover;
  -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, transparent, rgba(0, 0, 0, 0.219));
}

.logo {
  position: absolute;
  padding: 3rem;
  font-size: 2rem;
  font-family: "helvetica";
  top: 11vh;
}

.logo img{
  width: 300px;
}

.intro{
  position: absolute;
  bottom: 14vh;
  left: 15vw;
  transform: rotate(-90deg);
  font-size: 2.5em;
}

.story {
  position: absolute;
  height: 20%;
  left: 50vw;
  bottom: 3vh;
  color: #ffffff;
}

.story img {
  position: relative;
  width: 200px;
}

.visit{
  position: absolute;
  padding: 14px 21px;
  border: none;
  background-color: #222222;
  border-radius: 7px;
  color: #ffffff;
  font-size: 1.0em;
  margin-bottom: 21px;
  font-weight: 700;
  font-family: "helvetica";
  cursor: pointer;
  bottom: 0;
  left: 17vw;
}

/* .story p {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  padding-right: 20rem;
  font-family: "Garamond";
} */

.story p:nth-child(3) {
  margin-top: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "helvetica";
}

.social-container {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: #ffffff;
}

.social {
  display: flex;
}

.social ul {
  margin-right: 1rem;
  font-weight: 700;
  font-family: "helvetica";
}

.first-block {
  position: absolute;
  width: 0%;
  height: 100vh;
  background: #222222;
  animation: go-left 4s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  left: 0;
}

@keyframes go-left {
  0% {
    left: 0;
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}

@media screen and (min-width: 1400px) {
  .center-container {
    position: absolute;
    top: 17vh;
    left: 37.5vw;
    height: 50vh;
    width: auto;
      aspect-ratio: 8 / 7;
  }
}


@media screen and (min-width: 2200px) {
  .center-container {
      height: 50vh;
      width: auto;
      aspect-ratio: 8 / 7;
  }
}

@media screen and (min-width: 2600px) {
  .center-container {
      height: 45vh;
      left: 34.5vw;
      width: auto;
      aspect-ratio: 8 / 7;
  }
}


@media screen and (max-width: 1300px) {
  .center-container {
    position: absolute;
    top: 17vh;
    left: 37.5vw;
    height: 49vh;
    width: auto;
    aspect-ratio: 8 / 7;
  }
}

@media screen and (max-width: 1150px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 25%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 75vw;
  }
  
  .center-container {
    position: absolute;
    top: 17vh;
    left: 37.5vw;
    height: 49vh;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 3rem;
    top: 11vh;
    z-index: 11;
  }
  
  .logo img{
    width: 300px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: 7vw;
    font-size: 2.5em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 55vw;
    bottom: 2vh;
  }
  
  .story img {
    position: relative;
    width: 150px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: 23vw;
  }
}

@media screen and (max-width: 1000px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 25%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 75vw;
  }
  
  .center-container {
    position: absolute;
    top: 17vh;
    left: 34.5vw;
    height: 49vh;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 1rem;
    top: 11vh;
    z-index: 11;
  }
  
  .logo img{
    width: 200px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: 7vw;
    font-size: 2.5em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 55vw;
    bottom: 2vh;
  }
  
  .story img {
    position: relative;
    width: 150px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: 23vw;
  }
}

@media screen and (max-width: 800px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 25%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 75vw;
  }
  
  .center-container {
    position: absolute;
    top: 17vh;
    left: 34.5vw;
    height: 43vh;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 1rem;
    top: 11vh;
    z-index: 11;
  }
  
  .logo img{
    width: 200px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: 7vw;
    font-size: 2.5em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 50vw;
    bottom: 2vh;
  }
  
  .story img {
    position: relative;
    width: 130px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: 19vw;
  }

  .social-container {
    position: absolute;
    bottom: 2rem;
    right: 0rem;
  }
  
  .social {
    display: flex;
  }
  
  .social ul {
    margin-right: 1rem;
  }
  
}

@media screen and (max-width: 650px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 30%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 70vw;
  }
  
  .center-container {
    position: absolute;
    top: 21vh;
    left: 25vw;
    height: 43vh;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 0.3rem;
    top: 11vh;
    z-index: 11;
  }
  
  .logo img{
    width: 150px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: 5vw;
    font-size: 2.0em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 45vw;
    bottom: 2vh;
  }
  
  .story img {
    position: relative;
    width: 130px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: 9vw;
  }

  .social-container {
    position: absolute;
    bottom: 2rem;
    right: 0rem;
  }
  
  .social {
    display: flex;
  }
  
  .social ul {
    margin-right: 1rem;
  }
  
}

@media screen and (max-width: 550px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 30%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 70vw;
  }
  
  .center-container {
    position: absolute;
    top: 29vh;
    left: 25vw;
    height: 33vh;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 0.3rem;
    top: 11vh;
    z-index: 11;
  }
  
  .logo img{
    width: 170px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: 2vw;
    font-size: 2.0em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 40vw;
    bottom: -3vh;
  }
  
  .story img {
    position: relative;
    width: 130px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: 7vw;
    bottom: 14vh;
  }

  .social-container {
    position: absolute;
    bottom: 2rem;
    right: 0rem;
  }
  
  .social {
    display: flex;
  }
  
  .social ul {
    margin-right: 1rem;
  }
  
}

@media screen and (max-width: 450px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 40%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 60vw;
  }
  
  .center-container {
    position: absolute;
    top: 27vh;
    left: 21vw;
    height: 31vh;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 0.3rem;
    top: 15vh;
    z-index: 11;
  }
  
  .logo img{
    width: 170px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: -3vw;
    font-size: 1.9em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 21vw;
    bottom: -3vh;
  }
  
  .story img {
    position: relative;
    width: 130px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: -3vw;
    bottom: 19vh;
  }

  .social-container {
    position: absolute;
    bottom: 2rem;
    right: 0rem;
  }
  
  .social {
    display: flex;
  }
  
  .social ul {
    margin-right: 1rem;
  }
  
}

@media screen and (max-width: 390px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 40%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 60vw;
  }
  
  .center-container {
    position: absolute;
    top: 27vh;
    left: 21vw;
    height: 210px;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 0.3rem;
    top: 15vh;
    z-index: 11;
  }
  
  .logo img{
    width: 170px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: -3vw;
    font-size: 1.9em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 21vw;
    bottom: -3vh;
  }
  
  .story img {
    position: relative;
    width: 130px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: -4vw;
    bottom: 19vh;
  }

  .social-container {
    position: absolute;
    bottom: 2rem;
    right: 0rem;
  }
  
  .social {
    display: flex;
  }
  
  .social ul {
    margin-right: 1rem;
  }
  
}

@media screen and (max-width: 370px) {
  .left-container {
    background-color: #222222;
    height: 100%;
    width: 40%;
  }
  
  .right-container {
    position: relative;
    background-color: #000000;
    height: 100%;
    width: 60vw;
  }
  
  .center-container {
    position: absolute;
    top: 27vh;
    left: 17vw;
    height: 210px;
    width: auto;
    aspect-ratio: 8 / 7;
  }
  
  .logo {
    position: absolute;
    padding: 0.3rem;
    top: 11vh;
    z-index: 11;
  }
  
  .logo img{
    width: 170px;
    z-index: 11;
  }
  
  .intro{
    position: absolute;
    bottom: 14vh;
    left: -5vw;
    font-size: 1.5em;
    z-index: 11;
  }
  
  .story {
    position: absolute;
    height: 20%;
    left: 14vw;
    bottom: -3vh;
  }
  
  .story img {
    position: relative;
    width: 130px;
  }

  .visit{
    position: absolute;
    padding: 14px 21px;
    font-size: 1.0em;
    margin-bottom: 21px;
    left: -9vw;
    bottom: 23vh;
  }

  .social-container {
    position: absolute;
    bottom: 2rem;
    right: 0rem;
  }
  
}






#about{
  background-color: black;
  padding-top: 100px;
  overflow: hidden;
}

.vblogotext{
  width: 25px;
}
































/*=============== REUSABLE CSS CLASSES ===============*/

.section__title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 1.1em;
}

.section__title-gradient {
  background: linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/*=============== LAYOUT ===============*/
.main {
  overflow: hidden;
}

.container {
  max-width: 968px;
  margin-left: 1.0em;
  margin-right: 1.0em;
}

.grid {
  display: grid;
}


/* container */
.responsive-two-columns {
  display:flex;
  flex-wrap:wrap;
  /* background-color:black;
  clip-path: polygon(0 0,100% 0, 100% 100%, 0 88%); */
}

/* columns */
.responsive-two-columns > * {
  width: 90%;
padding: 20px;
  font-size: 1.1em;
  margin: 0px auto;
}

.home__article{
  position: relative;
  display: flex;
  justify-content: center;
}

/* tablet breakpoint */
/* @media (min-width:768px) {
  .responsive-two-columns > * {
      width:50%;
  }
} */


/* container */
.responsive-three-column-grid {
  background-color: black;
  padding-top: 70px;
  display:block;
  overflow: hidden;
  /* height: 93%; */
  /* background-color:#2c2e31;
  clip-path: polygon(0 0,100% 0, 100% 100%, 0 88%); */
}

/* columns */
.responsive-three-column-grid > * {
  padding:1rem;
}

.div3{
  align-content: center;
  
}

.home__image{
  width: 300px;
}

/* tablet breakpoint */
@media (max-width:940px) {
  .responsive-three-column-grid {
      display: grid;
      /* grid-auto-rows: 1fr;
      grid-template-columns: 1fr 1fr 1fr; */
  }
}

@media (min-width:940px) {
  .responsive-three-column-grid {
      display: grid;
      grid-auto-rows: 1fr;
      grid-template-columns: 0.5fr 1.5fr 1fr;
  }
}

/* .map{
  justify-content: center;
} */





h1.test2 {
  left: 1rem;
  line-height: 1.5;

  background: linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  
  /* writing-mode: vertical-lr; 
  text-orientation: sideways; */
  font-size: 2.2em;
}

h1.test {
  left: 1rem;
  line-height: 6rem;
  background-color: white;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  
  /* writing-mode: vertical-lr; 
  text-orientation: sideways; */
  font-size: 4.2em;
}




.home__title {
  text-align: center;
  left: 1rem;
  line-height: 6rem;
  font-size: 4.1em;
  background: linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}


/* .home__container,
.home__data,
.home__content,
.home__images,
.home__info-content{
    display: grid;
} */

.home__container{
    padding-block: 3rem;
    row-gap: 3rem;
}

.home__data{
    text-align: center;
    /* row-gap: 3.5rem; */
}

.row__content{
    row-gap: .75rem;
}

.home__title{
    font-size: 3.2em;
    color: white;
}

.home__img{
    width: 400px;
    margin-inline: auto;
}

.home_-info{
    display: flex;
    align-items: center;
    column-gap: .75rem;
    margin-top: 2rem;
}

.home__info-img{
    width: 120px;

}

.home__info-content{
    row-gap: 1.5rem;
    color: white;
}

.home__info-description{
    font-size: 1.0em;
    padding: 10px;
    line-height: 1.5;
    text-align: center;
    align-content: center;
}

@media screen and (max-width: 375px){
    .home__info{
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
    }
}

@media screen and (min-width: 576px){
    .home__container{
        grid-template-columns: 400px;
        justify-content: center;
    }

    .home__info{
        text-align: center;
    }
}

@media screen and (min-width: 1023px) 
{
   .home__container{
    height: 100vh;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    column-gap: 4rem;
   }

   .home__data{
    text-align: initial;
   }

   .home__info{
    margin: 0;
    flex-direction: column;
    row-gap: 1.25rem;
    align-items: initial;
   }
    
}

@media  screen and (min-width: 940px) {
  .responsive-two-columns > * {
    width:50%;
}

  .home__info-description- {
      font-size: 1.2em;
  }

    .home__container{
        height: initial;
        grid-template-columns: repeat(3, 320px);
        justify-content: space-around;
    }

    .home__img{

        width: 450px;
    }
    .home__info-img{
        width: 150px;
    }
    /* .home__info-description{
        font-size: 1.1em;
    } */
    .home__info-content{
        row-gap: 7.5rem;
    }
    }


    @media  screen and (min-width: 1500px) {
      .home__image{
       width: 350px;
      }
  
     }
 
 
     @media  screen and (min-width: 1700px) {
       .home__info-description{
           font-size: 1.5em;
    
       }
       h1.test2 {
         font-size: 4.0em;
     }
     }
 
 
     @media  screen and (min-width: 1800px) {
       .home__image{
        width: 400px;
       }
      }
 
 
 
 
 
     @media screen and (min-width: 1900px){
       .home__container{
           height: 100vh;
           align-items: center;
       }
 
       .home__info-description{
         font-size: 1.5em;
  
     }
     .home__img{
 
       width: 600px;
   }
   h1.test2 {
     font-size: 6.2em;
 }
 
   }
 
 
     @media screen and (min-width: 2000px){
         .home__container{
             height: 100vh;
             align-items: center;
         }
 
         .home__info-description{
           font-size: 1.6em;
    
       }
 
       .home__image{
         width: 450px;
        }

        .vblogotext {
          width: 35px;
      }
    
     }
 
 
     @media screen and (min-width: 2200px){
   
       .home__info-description{
         font-size: 1.8em;
  
     }
  
   }
 
   @media screen and (min-width: 2400px){
 
     .home__info-description{
       font-size: 2.0em;
 
   }
   .home__img{
 
     width: 650px;
 }
 
 }
 
 
 
 @media screen and (min-width: 2500px){
 
 .home__image{
   width: 500px;
  }
 }
 
 @media screen and (min-width: 2700px){
 
   .home__image{
     width: 550px;
    }
   }
 
 
 @media screen and (min-width: 2800px){
 
   .home__info-description{
     font-size: 2.4em;
 
 }
 .home__img{
 
   width: 750px;
 }
 h1.test2 {
 font-size: 6.2em;
 }

 .vblogotext {
  width: 50px;
}
 
 }
 
 
 
 



  




/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .section__title {
    font-size: 2.5rem;
  }
 

}



/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid rgb(112,113,109);
  transform: rotate(45deg);
}



.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid rgb(112,113,109);
  transform: scaleX(0.2);
  opacity: 0;
  transition: 500ms ease;
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after { bottom: -5px; }

.text-center { text-align: center; }


.section-subtitle {
  position: relative;
  color: rgb(112,113,109);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-block-end: 12px;
}

.section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}


.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}



.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine { position: relative; }

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: 1000ms ease;
}



.btn-text {
  color: rgb(112,113,109);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
  transition: 250ms ease;
}

.btn-text:is(:hover, :focus-visible) { color: hsla(0, 0%, 100%, 1); }

.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}

.w-100 { width: 100%; }

.move-anim { animation: move 5s linear infinite; }

@keyframes move {
  0%,
  100% { transform: translateY(0); }

  50% { transform: translateY(30px); }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child { left: 15px; }

.icon-wrapper ion-icon:last-child { right: 10px; }



/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/
.body-3 { font-size: 1.2em; }



.headline-1 { 
  font-size: 3.2em;
  color: rgb(98, 97, 97);
  font-family: 'Forum', cursive;
  font-weight: 400;
  line-height: 1.2em; }

.testi {
  /* height: 93%;
  background-color:#2c2e31;
  clip-path: polygon(0 0,100% 0, 100% 100%, 0 88%); */
  padding-block-end: 400px;
  position: static;
}

.testi .quote {
  font-size: 7rem;
  font-family: 'Forum', cursive;
  line-height: 0.7em;
}

.testi .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 50px;
}

.testi .separator { animation: rotate360 15s linear infinite; }

.profile .img {
  margin-inline: auto;
  border-radius: 50%;
  margin-block-end: 15px;
}

.testi .profile-name {
  color: hsla(0, 0%, 65%, 1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}





/*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/

.reservation{
  background-color: #111111 ;
  position: relative;
 
}

.reservation-form { margin-block-start: -50px;
  background-color: hsla(30, 8%, 5%, 1); }

.form-text { margin-block-end: 40px; 
color: white; }

.form-text .link {
  display: inline;
  color: hsla(0, 0%, 65%, 1);
}

.form-right .headline-1 { margin-block-end: 40px; }

.form-right .contact-label { margin-block-end: 5px; }

.form-right .separator { margin: 20px auto; }

.form-right .body-4 {
  color: white;
  font-size: 1.2em;
  line-height: 1.5em;
}

.form-right .body-4:not(:last-child) { margin-block-end: 25px; }

.form-left,
.form-right { padding: 40px 20px 30px; }

.form-left{
background-color: black;
}


.input-field {
  background-color: hsla(210, 4%, 11%, 1);
  font-size: 0.9em;
  color: hsla(0, 0%, 100%, 1);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-block-end: 20px;
  outline: none;
  transition: border-color 500ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}


input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

.input-field::placeholder { color: inherit; }

.input-field:focus { border-color: rgb(112,113,109); }

textarea.input-field {
  resize: none;
  height: 140px;
  padding-block: 20px;
  font-size: 0.9em;
  line-height: 1em;
}

.form-left .btn {
  max-width: 100%;
  width: 100%;
}

.form-right {
  background-repeat: repeat;
  background-position: top left;
}

.contact-label { font-weight: 700;
  font-size: 1.5em;
color: rgb(155, 154, 154); }

.contact-number {
  font-size: 0.6em;
  color: rgb(112,113,109);
  max-width: max-content;
  margin-inline: auto;
}

.btn {
  position: relative;
  color: rgb(112,113,109);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: max-content;
  border: 2px solid rgb(112,113,109);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background-color: rgb(112,113,109);
  transition: 500ms ease;
  z-index: -1;
}

.btn .text { transition: 250ms ease; }

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: rgb(85, 85, 84);
}

.btn:is(:hover, :focus-visible)::before { bottom: -50%; }

.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); }



.btn-secondary {
  background-color:rgb(112,113,109);
  color: hsla(0, 0%, 0%, 1);
}

.btn-secondary::before { background-color: hsla(40, 12%, 5%, 1); } 

.btn-secondary .text-2 { color: hsla(0, 0%, 100%, 1); }


.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); 
font-size: 0.5em;}

.text-1 {
  font-size: 0.9em;}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number { font-size: 3rem; }

}


/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list { grid-template-columns: 1fr 1fr; }

  :is(.service, .event) .container { max-width: 820px; }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }


  /**
   * RESERVATION
   */

  .reservation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }



}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container { max-width: unset; }

  :is(.service, .event) .grid-list { grid-template-columns: repeat(3, 1fr); }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }


  /**
   * TESTIMONIALS
   */

  .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }



  /**
   * RESERVATION
   */

  .reservation-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }


}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }

  /**
   * TESTIMONIALS
   */

  .form-left,
  .form-right { padding: 75px 60px; }

  /**
   * FEATURES
   */

  .features .grid-list { grid-template-columns: repeat(4, 1fr); }

}

/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {
  /**
   * FEATURES
   */

  .features { overflow: visible; }

  .features .shape { display: block; }

  .features .shape-1 {
    top: -100px;
    right: 0;
  }

  .features .shape-2 {
    bottom: 80px;
    left: 0;
  }

}




@media (min-width: 1700px) {
  .container, :is(.service, .event) .container {
      max-width: 1400px;
      width: 100%;
      margin-inline: auto;
  }
}

@media (min-width: 1800px) {
 .body-4{
  font-size: 1.4em;
 }

 .form-text{
  font-size: 1.2em;
 }

 .contact-label {
  font-weight: 700;
  font-size: 2.5em;

}
.input-field {
 
  margin-block-end: 40px;
}


}

@media (min-width: 1900px) {
  .container, :is(.service, .event) .container {
      max-width: 1600px;
      width: 100%;
      margin-inline: auto;
  }
  .testi {
    padding-block-end: 550px;
    position: static;
}
.form-text {
  font-size: 1.6em;
}
.headline-1 {
  font-size: 4.0em;
}
}


@media (min-width: 2100px) {
.btn{
  font-size: 1.5em;
}

  .body-4{
   font-size: 1.7em;
  }
 
  .input-field {
    font-size: 1.5em;
    margin-block-end: 40px;
}

textarea.input-field {
  font-size: 1.5em;
}
 }


 @media (min-width: 2300px) {
  .container, :is(.service, .event) .container {
      max-width: 1800px;
      width: 100%;
      margin-inline: auto;
  }
}

@media (min-width: 2500px) {
  .container, :is(.service, .event) .container {
      max-width: 2000px;
      width: 100%;
      margin-inline: auto;
  }
  .form-left, .form-right {
    padding: 85px 70px;
  }
  .btn{
    font-size: 1.7em;
  }
}












@media (min-width: 2700px) {
  .container, :is(.service, .event) .container {
      max-width: 2200px;
      width: 100%;
      margin-inline: auto;
  }
  .form-left, .form-right {
    padding: 85px 70px;
  }
  .btn{
    font-size: 1.7em;
  }
  .body-4{
    font-size: 1.9em;
   }
  
   .input-field {
    height: 95px;
     font-size: 1.7em;
     margin-block-end: 40px;
 }
 
 textarea.input-field {
  height: 200px;
   font-size: 1.7em;
 }
}



/* Footer styling */
.footer-container-calendar {
  margin-top: 1em;
  border-top: 1px solid #dadada;
  padding: 10px 0;
}

.footer-container-calendar select {
  cursor: pointer;
  background: #ffffff;
  color: #585858;
  border: 1px solid #bfc5c5;
  border-radius: 3px;
  padding: 5px 1em;
}


























#footertext{
    text-align: center;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 25px;
    letter-spacing: 1.6px;
    word-spacing: -0.8px;
    color: #f2ecec;
    font-weight: 400;
    font-style: italic;
    font-variant: normal;
    text-transform: capitalize;
  }

  .footertexts{
    font-size: 1.2em;
   }
 


  .wrapper {
    display: grid;
    grid-template-areas: 'overlap';
    place-content: center;
    text-transform: uppercase;
  }
  .wrapper > div {
    background-clip: text;  
    -webkit-background-clip: text;
    color: #747472;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 25px;
    grid-area: overlap;
    letter-spacing: 1px;
    -webkit-text-stroke: 4px transparent;
  }
  div.bg {
    background-image: repeating-linear-gradient( 105deg, 
      #747472 0% , 
      #747472 5%,
      #747472 12%);
    color: transparent;
    filter: drop-shadow(5px 15px 15px rgb(39, 39, 39));
    transform: scaleY(1.05);
    transform-origin: top;
  }
  div.fg{
    background-image: repeating-linear-gradient( 5deg,  
      #747472 0% , 
      #747472 23%, 
      #747472 31%);
    color: #1e2127;
    transform: scale(1);
  }

  
  footer {
    width: 100%;
    height: 280px;
    /* background: rgb(227,65,111);
    background: linear-gradient(90deg, rgba(227,65,111,1) 0%, rgba(163,182,110,1) 35%, rgba(97,155,190,1) 100%); */
    background: rgb(22, 22, 22);
background: linear-gradient(90deg, rgb(19, 19, 19) 35%, rgb(20, 21, 21) 100%);
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    position: relative;
  }
  
  footer .card {
    width: 310px;
    height: 100%;
    position: relative;
  }
  
  footer .card img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    position: absolute;
    top: -25%;
   

  }
  
  footer .content {
    width: calc(100% - 360px);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 0px 40px;
  }


  
  footer .content .inputBox input::placeholder {
    color: #fffafa;
    font-size: 16px;
    font-weight: 700;
  }
  
  footer .content .inputBox label {
    position: absolute;
    top: -50px;
    margin-left: 180px;
    justify-content: center;
    background: #f9e2e3;
    width: 45%;
    height: 100%;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #660746;
  }
  
  footer .content .liTags {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 10px;
  }
  
  footer .content .liTags ul li {
    color: rgb(109, 106, 106);
    list-style: none;
    margin: 15px 0;
  }
  
  footer .content .liTags ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 1px;
  }

  
  footer .content .liTags ul li:first-child a {
    color: #f9e2e3;
    font-weight: 900;
  }
  
  footer .content .line {
    width: 100%;
    height: 1px;
    background: #6b6b6b;
  }
  
  footer .content .copyRights {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  
  footer .content .copyRights p {
    font-size: 18px;
    font-weight: 600;
    color: #f6f4f4;
  }
  
  footer .content .copyRights .socialMedia i {
    margin: 10px 15px;
    color: #f9e2e3;
    cursor: pointer;
    font-size: 40px;
  }
  
  footer .content .copyRights .socialMedia i:hover {
    transform: scale(1.5);
    transition: all 0.3s ease-in-out;
  }
  
  footer .content .copyRights .socialMedia i:last-child {
    margin-right: 0;
  }




  @media screen and (min-width:2100px) {
  
    footer .content .liTags {
      justify-content: space-between;
   
  }
  
  .footertexts {
    font-size: 1.5em;
  }
  
  footer .content .liTags ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 28px;
    /* letter-spacing: 1px; */
  }
  footer .content .copyRights p {
    font-size: 21px;
    font-weight: 600;
    color: #f6f4f4;
}
  }





  @media screen and (max-width: 1055px) {
    footer .content {
        padding: 0px 0px;
      }

      
    
    }

    @media screen and (max-width: 916px) {
        footer{
            height: auto;
        }
        footer .content {
            padding: 0px 0px;
          }
          footer .content .liTags {
            display: block;
            text-align: center;
    
          }
          
        
        }


  
  @media screen and (max-width: 769px) {
    footer {
      flex-direction: column;
      height: auto;
    
    }

    footer .card {
        display: block;
      height: 200px;
      width: 100%;
      text-align: center;
     
    }
  
    footer .card img {
      position: relative;
      height: 250px;
      width: 250px;
      top:-30%;
     /* left: 0; */
    
     margin: 0 50px;
     
     
    }

    footer .content .liTags {
        display: block;
        text-align: center;
      padding: 0px 0px;


      }

      /* footer .content .copyRights .socialMedia i {
     display: block;
      } */

      footer .content .copyRights {
        display: block;
      text-align: center;
      }
  
 
  
    footer .content {
      width: 100%;
    }
  
    footer .content .line {
      margin-bottom: 15px;
    }
  }


  .footer-copyright {
    position: relative;
	background-color: #222;
	color: #fff;
	padding: 5px;
  text-align: center;
}

.footer-copyright-wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	margin-bottom: 0;
	margin-top: 0;
}

.footer-copyright-link {
	color: #fff;
	text-decoration: none;
}

.csh{
    font-size: 18px;
	background: -webkit-linear-gradient(#4f67ca, #a76cb5);
  background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	text-shadow: 0 0 0 transparent, 
	0 0 10px transparent, 
	0 0 20px #a76cb5 , 
	0 0 40px #a76cb5, 
	0 0 100px #a76cb5, 
	0 0 200px #4f67ca, 
	0 0 300px #4f67ca, 
	0 0 500px #4f67ca, 
	0 0 1000px #4f67ca;
	
  }
  .copyright{
	color: #656565;;
  }


  




  .blog-slider {
    width: 100%;
    position: relative;
    max-width: 2000px;
    margin: auto;
  
    color: black;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 20px;
    /* border-radius: 25px; */
    height: 400px;
    transition: all 0.3s;
  }







  .main{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 85px;
}










.outro{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 121px 0;
  background: transparent;
}

.outro2{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 121px 0;
  background: transparent;
  overflow: hidden;
}

.backgroundoutro{
  position: fixed;
  width: 100%;
  height: 100vh;
  background-position: center bottom;
  background-image: url(images/3.jpg);
  top: 90px;
  z-index: -1;
}

.outroback{
  position: relative;
  color: white;
  background-color: rgba(0, 0, 0, 0.815);
  width: 80%;
  height: auto;
  text-align: center;
  padding: 20px;
  font-size: 1.0em;
  margin: 0px auto;
}

.outro1{
  background: black;
  opacity: 0.4;
  color: white;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}




@media screen and (min-width: 2400px) {
  .outroback {
      width:80%;
      padding: 20px;
      font-size: 2.2em;
   
  
  }
  }
  
  
  @media screen and (min-width: 2200px) {
  .outroback {
    
      font-size: 1.8em;
   
  
  }
  }
  
  @media screen and (min-width: 1900px) {
  .outroback {
    
      font-size: 1.5em;
   
  }
  }
  
  @media screen and (min-width: 2400px) {
    .home__info-description- {
        width:80%;
        padding: 20px;
        font-size: 2.2em;
     
    
    }
    }
    
    
    
    @media screen and (min-width: 940px) {

    .outroback {
        font-size: 1.0em;
    
    }
    }
    








.map{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #111111;
    padding: 21px 0px;
}

.map iframe{
    position: relative;
    width: 80%;
    height: 250px;
    border: 7px solid #222222;
    margin-left: 10%;
}

.visitus{
    position: relative;
    width: 100%;
    font-size: 1.5em;
    margin-bottom: 21px;
    color: #ffffff;
    text-align: center;
}

.visitus hr{
    position: relative;
    width: 21px;
    margin: auto;
}


@media screen and (max-width:700px) {

  .map iframe{
    width: 90%;
}
.wrapper > div {
  font-size: 18px;
}
}

.contact-info{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #000000;
    padding: 35px 0px;
    margin-top: 350px;
}

.contact-container{
    position: relative;
    width: 70%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.contact-container .details{
    position: relative;
    width: 30%;
}

.contact-container .details:nth-child(1), 
.contact-container .details:nth-child(2){
    border-right: 2px solid #222222;
}

.contact-container .details hr{
    position: relative;
    width: 30%;
    margin: auto;
    margin-bottom: 11px;
}

.contact-container .details .icon{
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 21px;
}

.contact-container .details .icon i{
    color: #ffffff;
    font-size: 2.0rem;
    text-shadow: -1.0px -1.0px 1.0px #333333,
    -0.5px -0.5px 0.5px #333222, 
    0.5px 0.5px 0.5px #222222, 
    1.0px 1.0px 1.0px #222222, 
    1.5px 1.5px 1.5px #222222, 
    2.0px 2.0px 2.0px #cccccc;
}

.contact-container .details .text{
    position: relative;
    width: 100%;
    text-align: center;
    color: #ffffff;
}










  /* .mapheadtext{
    font-weight: 700;
    font-size: 2.2em;
    color: rgb(155, 154, 154);
    text-align: center;
}

.maptext{
  text-align: center;
  color: rgb(155, 154, 154);
  font-size: 1.2em;
} */

  @media screen and (max-width: 992px) {
    .blog-slider {
      max-width: 680px;
      height: 400px;
    }
  }
  @media screen and (max-width: 768px) {
    .blog-slider {
      min-height: 500px;
      height: auto;
      margin: 180px auto;
    }
  }
  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
      height: 350px;
    }
  }
  .blog-slider__item {
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__item {
      flex-direction: column;
    }
  }
 

  .blog-slider__img {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    background-image: linear-gradient(147deg, #fffffe 0%, #f7f5f5 74%);
    box-shadow: 4px 13px 30px 1px rgba(16, 15, 15, 0.2);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
  }
  .blog-slider__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.8;
  }
  .blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__img {
      transform: translateY(-50%);
      width: 90%;
    }
  }
  @media screen and (max-width: 576px) {
    .blog-slider__img {
      width: 95%;
    }
  }
  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
      height: 270px;
    }
  }
  .blog-slider__content {
    /* padding-right: 25px; */
  }
  @media screen and (max-width: 768px) {
    .blog-slider__content {
      margin-top: -80px;
      text-align: center;
      padding: 0 30px;
    }
  }
  @media screen and (max-width: 576px) {
    .blog-slider__content {
      padding: 0;
    }
  }
  .blog-slider__content > * {
  
    transform: translateY(25px);
    transition: all 0.4s;
  }
  .blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
  }
  .blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
  }
  .blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
  }
  .blog-slider__button {
    display: inline-flex;
    background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
  }
  @media screen and (max-width: 576px) {
    .blog-slider__button {
      width: 100%;
    }
  }
  .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  .blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination {
      transform: translateX(-50%);
      left: 50% !important;
      top: 205px;
      width: 100% !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 0 5px;
    }
  }
  .blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
  }
  .blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fd3838;
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
  }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
      height: 11px;
      width: 30px;
    }
  }