@import "https://unpkg.com/open-props@1.6.17/easings.min.css";

:root {
    /* --primary: #C21E56 ; */
    --primary: #FFA500;
    --secondary: #FFA500;
    /* --secondary: #ffae42; */
    --light: #EDF1FC;
    /*--dark: #912D17;*/
    --dark: #cd8400;
    /* --black: hsl(0, 0%, 13%); */
  /* --dark: hsl(12, 32%, 2%); */
  --gray: hsl(0, 0%, 70%);
  --bit:#FFA500(0, 0%, 70%)
  --white: hsl(0, 0%, 96%);
  --red: #FFA500;
  --red-shadow: #FFA500(12, 100%, 60%);
  --red-sheen: linear-gradient(
    to bottom,
    hsl(12, 90%, 43%),
    hsla(12, 40%, 70%, 0.5) 50%,
    hsl(12, 93%, 23%))
}





.fw-medium {
    font-weight: 600 !important;
}


.display-3 {
    font-size: 3rem;
}


.separator {
  display: block;
  width: 10%;
  height: 7px;
  margin: 15px auto 15px;
  background-color: #FFA500;
  position: relative;
  border: 1px solid #FFA500;
}



.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color:#fff !important
}

.bg-dark {
    background-color:black !important; 
 /* background-color: #600f0f !important; */ 
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary{
    color: #fff;
    background-image: linear-gradient(45deg, #ee0979 0%, #FFA500 100%);
    /* background-color: #D37913; */
    /* background-color: #600f0f; */
}

/* .btn.btn-primary, */
.btn.btn-secondary {
    color: #000;
    /* background-color: #C21E56; */
    background-color: var(--secondary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    background-color: #fff;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





/*** Navbar ***/
.top-bar {
    height: 75px;
    padding: 0 4rem;
}

.navbar {
    position: sticky;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 9999;
    /* padding: 20px; */
   
}

.nav-bar.sticky-top {
    position: sticky;
    /* padding: 20px; */
    
    z-index: 9999; 
}




.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-nav{
    margin-left: 0px; 
    align-items: center;
    text-align: center;
    justify-content: center;
   

}

.phone{
    margin-left:40px;
} 

/* .navbar-brand img{
     
    width: 200px;
    height: 80px;
  
  } */

  .navbar-brand img {
    width: 300px;
    height: 110px;
}

.btn-header{
  background-color: var(--secondary);
    border-radius: 5px;
    color: #fff;
    /*padding: 10px 10px;*/
}
.btn-header:hover{
  background-color: var(--dark);
    border-radius: 5px;
    /*border: var(--secondary);*/
    color:#fff ;
    /*padding: 10px 10px;*/
}

.heading-parent{
  position: relative;
}
.heading-parent .child::after{
  content: " ";
  position: absolute;
 bottom: 18%;
 background-color: var(--secondary);
  height: 5px;
  width: 8%;
  left: 46%;

}
.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
}
.dots .active {
  background-color: var(--secondary);
}

















  @keyframes shake {
    50% {
      transform: translate3d(20px, 0, 0);
    }
  }
  
  @keyframes flip {
    100% {
      transform: rotateY(180deg);
    }
  }
  
  @keyframes pulse {
    50% {
      transform: scale(1.5);
    }
  }
  
  @keyframes glitch {
    50% {
      transform: skew(180deg);
    }
  }
  
  @keyframes fill {
    50% {
      transform: translateX(-5%);
    }
  }
  
  @keyframes sheen {
    100% {
      transform: rotateZ(60deg) translate(1em, -9em);
    }
  }
  
  @keyframes glow {
    50% {
      box-shadow: 0 0 40px hsl(12, 100%, 60%);
    }
  }
  
  @keyframes tonyhawk {
    50%,
    100% {
      transform: rotate(900deg);
    }
  }
  
  @keyframes blur {
    50% {
      filter: blur(80px);
      transform: skew(45deg);
    }
  }
  
  [anim="shake"]:not(.toggled) {
    animation: shake var(--ease-elastic-in-1) 300ms infinite alternate;
  }
  
  [anim="pulse"]:not(.toggled) {
    animation: pulse var(--ease-elastic-in-1) 400ms infinite alternate;
  }
  
  [anim="glitch"]:not(.toggled) {
    animation: glitch var(--ease-elastic-in-1) 6ms infinite;
  }
  
  [anim="tonyhawk"]:not(.toggled) {
    animation: tonyhawk var(--ease-elastic-in-1) 600ms infinite;
  }
  
  [anim="flip"]:not(.toggled) {
    animation: flip var(--ease-elastic-in-1) 1200ms infinite alternate;
  }
  
  [anim="fill"]:not(.toggled)::after {
    animation: fill var(--ease-spring-1) 8000ms infinite;
  }
  
  [anim="sheen"]:not(.toggled)::after {
    animation: sheen var(--ease-elastic-in-1) 1.5s infinite;
  }
  
  [anim="glow"]:not(.toggled) {
    animation: glow var(--ease-elastic-in-1) 600ms infinite alternate;
  }
  
  [anim="blur"]:not(.toggled) {
    animation: blur var(--ease-elastic-in-1) 1s infinite alternate;
  }
  
  [anim="fill"]::after {
    content: "";
    color: var(--black);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    height: 100%;
    width: 200%;
    inset: 0;
    transform: translateX(-400px);
    background-color: hsl(12, 90%, 63%);
  }
  
  [anim="sheen"]::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: var(--red-sheen);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
  }
  
 
  hr {
    background-color: currentColor;
    min-width: 20%;
    height: 3px;
    border: none;
    margin: auto;
    position: relative;
  }
  hr:before {
    font-family: cursive;
    content: "❦❦❦❦❦❦";
    display: block;
    width: 20%;
    padding: 0.3em;
    font-size: 2em;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: #f2f2f2;
    transform: translate(-50%, -50%);
  }
 
  
 
  
  main {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
  
  article {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    position: relative;
    padding-block: 32px;
  
    &::after {
      content: "";
      width: 100%;
      position: absolute;
      height: 1px;
      bottom: 0;
      background-image: linear-gradient(45deg, var(--secondary), transparent 70%);
    }
  }
  
  section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-basis: 180px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
 
  
  button {
    all: unset;
    background-color: white;
    padding: 6px 12px;
    border-radius: 6px;
    margin-left: 18px;
    color: black;
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid #ffa500;
    box-shadow: 0 0 4px var(--red-shadow);
    cursor: pointer;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
  }
  
  .blurry {
    position: relative;
    transform-style: preserve-3d;
  }
  
  .blurry::before {
    content: "";
    position: absolute;
    inset: 0px;
    transform: translate3d(0px, 0px, -1px);
    background: var(--box-shadow);
    filter: blur(6px);
  }
  

.navbar .navbar-nav .nav-link {
    /* margin-right: 10px; */
    /* padding: 25px 0; */
    color: black;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
   float: center;
  
}

.nav-bar{
    background-color:white;
}
.navbar-light .navbar-nav .nav-link:hover
 {
   
    color:var(--dark);
}

.navbar-light .navbar-nav .dropdown-item:hover
 {
   background-color:var(--dark) ;
    color:white;
}

@media (max-width: 1024px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }


    /*.page{*/
    /*    margin-left:-80px;*/
    /*} */
}


@media (max-width: 450px){
    .navbar-brand img{
     
      width: 150px;
      height: 80px;
    }
    .phone{
        display: block;
        margin-left: 10px;
        justify-content: center;
    }
    
    .page{
        margin-left:-40px;
    } 
}



.bg-light {
    /* background-color:#fde9fe !important; */
    /* background-color:#fbeddc !important */
    /* background-color:rgb(232, 232, 255) #000080 !important; */
    background-color: #f5f5f5
    !important
}



.text-secondary {
    color:#D37913 !important
    
}

.text-primary {
    color: black !important;
    display: inline-block;
    
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* .header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
} */

/* .header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
} */

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    display: none;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}




.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
}

.zoom {
    animation: zoomInOut 10s infinite alternate;
    width: 100%;
    height: auto;
    display: block;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.card {
    --blur: 16px;
    margin-top:40px;
    --size: clamp(250px, 60vmax, 380px);
    width: var(--size);
    /*aspect-ratio: 4 / 3;*/
    aspect-ratio: auto;
    position: relative;
    border-radius: 10px;
    margin-left: 20px;
    overflow: hidden;
    color: #000;
   border: 1px solid #c9c4c4;
    transform: translateZ(0);
  }
  
  .card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(calc(1 + (var(--hover, 0) * 0.25))) rotate(calc(var(--hover, 0) * -5deg));
    transition: transform 0.2s;
  }
  
  .card__footer {
    padding: 0 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: grid;
    grid-template-row: auto auto;
    gap: 0.5ch;
    /*background-image: linear-gradient(45deg, #ee0979 0%, #FFA500 100%);*/
    /*background:var(--dark);*/
    background: hsl(0 0% 100% / 0.5);
    backdrop-filter: blur(var(--blur));
    height: 30%;
    align-content: center;
  }
  
  .card__action {
    position: absolute;
    aspect-ratio: 1;
    width: calc(var(--size) * 0.15);
    bottom: 30%;
    right: 1.5rem;
    transform: translateY(50%)
      translateY(
        calc(
          (var(--size) * 0.4)
        )
      )
      translateY(calc(var(--hover, 0) * (var(--size) * -0.4)));
    background: purple;
    display: grid;
    place-items: left;
    border-radius: 0.5rem;
    background: hsl(0 0% 100% / 0.5);
  /*   backdrop-filter: blur(calc(var(--blur) * 0.5)); */
    transition: transform 0.2s;
  }
  
  .card__action svg {
    aspect-ratio: 1;
    width: 50%;
  }
  
  .card__footer span:nth-of-type(1) {
    /* font-size: calc(var(--size) * 0.065); */
    font-size:18px;

    font-weight: bold;
  }
  
  .card__footer span:nth-of-type(2) {
    /* font-size: calc(var(--size) * 0.035); */
    font-weight: bold;
    font-size:18px;
  }
  
  
  
  .card__footer .bit:nth-of-type(1) {
    /* font-size: calc(var(--size) * 0.065); */
    font-size:18px;
    text-align:center;
    font-weight: bold;
  }
  
  .card__footer .bit:nth-of-type(2) {
    /* font-size: calc(var(--size) * 0.035); */
    font-weight: bold;
    font-size:18px;
  }
  
  .card:is(:hover, :focus-visible) {
    --hover: 1;
    /*overflow:hidden;*/
  }


  .card11{
    --blur: 16px;
    /* margin-top:40px; */
    --size: clamp(250px, 60vmax, 250px);
    width: var(--size);
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 10px;
    /* margin-left: 20px; */
    overflow: hidden;
    color: #000;
    transform: translateZ(0);
  }
  
  .card1__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(calc(1 + (var(--hover, 0) * 0.25))) rotate(calc(var(--hover, 0) * -5deg));
    transition: transform 0.2s;
  }
  
  .card1__footer {
    padding: 0 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: grid;
    grid-template-row: auto auto;
    gap: 0.5ch;
    /* background: hsl(0 0% 100% / 0.5);
    backdrop-filter: blur(var(--blur)); */
    height: 30%;
    align-content: center;
  }
  
  .card1__action {
    position: absolute;
    aspect-ratio: 1;
    width: calc(var(--size) * 0.15);
    bottom: 30%;
    right: 1.5rem;
    transform: translateY(50%)
      translateY(
        calc(
          (var(--size) * 0.4)
        )
      )
      translateY(calc(var(--hover, 0) * (var(--size) * -0.4)));
    background: purple;
    display: grid;
    place-items: left;
    border-radius: 0.5rem;
    background: hsl(0 0% 100% / 0.5);
  /*   backdrop-filter: blur(calc(var(--blur) * 0.5)); */
    transition: transform 0.2s;
  }
  
  .card1__action svg {
    aspect-ratio: 1;
    width: 50%;
  }
  
  .card1__footer span:nth-of-type(1) {
    /* font-size: calc(var(--size) * 0.065); */
    font-size:18px;

    font-weight: bold;
  }
  
  .card1__footer span:nth-of-type(2) {
    /* font-size: calc(var(--size) * 0.035); */
    font-weight: bold;
    font-size:18px;
  }
  
  .card1:is(:hover, :focus-visible) {
    --hover: 1;
  }

  .img-thumbnail{
    transition:.5s;
  }

  .img-thumbnail:hover{
    transform: scale(1.1);
  }

  .somesection {margin-top:150px!important;}

.post-qm-somos-img {
  max-width:80%;
  height: 40vh;;
  border-radius: 10px;
 
}

.img-post-qm-somos {
  float:right;
  width:55%; 
  margin-top: 8%;
  /*important*/
  height: 85%;
  /* bottom:21vw; important */
  
}
.texto-post-qm-somos {
  background:#fff;
  z-index: 1;
  height:380px;
  padding: 120px;
  border: solid 1px #ccc;
  border-radius: 10px;
  margin-left:  -240px;;
 
  /* -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; */
}
/* .cards-list {
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .card {
    margin: 10px auto;
    width: 170px;
    height: 170px;
    border-radius: 40px;
  box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
    cursor: pointer;
    transition: 0.4s;
  }
  
  .card .card_image {
    width: inherit;
    height: inherit;
    border-radius: 40px;
  }
  
  .card .card_image img {
    width: inherit;
    height: inherit;
    border-radius: 40px;
    object-fit: cover;
  }
  
  .card .card_title {
    text-align: center;
    border-radius: 0px 0px 40px 40px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-top: -60px;
    color:#F66700;
    height: 40px;
    text-shadow: 5px 5px 5px black;
  }
  
  .card:hover {
    transform: scale(0.9, 0.9);
    box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
      -5px -5px 30px 15px rgba(0,0,0,0.22);
  }
  
  .title-white {
    color: white;
  }
  
  .title-black {
    color: black;
  }
  
  @media all and (max-width: 500px) {
    .card-list { */
      /* On small screens, we are no longer using row direction but column */
      /* flex-direction: column;
    }
  } */
  
  
  /*
  .card {
    margin: 30px auto;
    width: 300px;
    height: 300px;
    border-radius: 40px;
    background-image: url('https://i.redd.it/b3esnz5ra34y.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-repeat: no-repeat;
  box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
    transition: 0.4s;
  }
  */






/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/generative.jpg) center center no-repeat;
    background-size: cover;
}

.column {
    float: left;
    width: 42%;
    padding: 10px;
    height: 480px;
    cursor: pointer; /* Should be removed. Only for demonstration */
  }

 
  /* .para{
    display: none;
  }

  .para:hover{
    display: inline-block;
  } */

  
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot{
    position: relative;
    display: inline-block;
    margin: 5px 5px;
    width: 15px;
    height: 15px;
    background: #D37913;
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}




.
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}

.bg-primary {
    background-color: #D37913 !important;
    color:white;
    font-size: 20px;
    font-weight: bold;
}

/*** Team ***/
.col-lg-4 .col-md-6 .pat{
    margin-top: -200px;
}

.team-item{
    margin-top: -220px;
}

.team-item img {
    transition: .5s;
    width: 450px;
    height: 350px;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
    background-color: #D37913;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
    background-image: linear-gradient(45deg, #ee0979 0%, #FFA500 100%); 
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background-image: linear-gradient(45deg, #ee0979 0%, #FFA500 100%); 
}
@media (max-width: 768px) {

    .team-item{
        margin-top: 20px;
    }


}


@media (max-width: 414px) {

    .team-item{
        margin-top: 20px;
    }


}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
    margin-top: 50px;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background-image: linear-gradient(45deg, #ee0979 0%, #FFA500 100%);
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}







#proparallax {
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 20.5rem;
    margin-top: 13%;
    left: 10%;
	/* border: 10px solid black;
	box-shadow: 0px 8px 10px 8px grey; */
}	

#proparallax img {
	position: absolute;
	width: 50rem;
	height: 45.5rem;
	overflow: hidden;
	object-fit: cover;
}

@keyframes parallax_one { /* controls img.one movement */
	0% { /* .imageloaded */
		height: 37.5rem;
		width: 50rem;
		left: 0rem;
		opacity: 1;
	}
	/* .imagehold runs from 0 to 27.77% */
	27.77% { /* .imageloaded */
		width: 50rem;
		left: 0rem;
	}
	27.78% { /* .imagepreunload */
		width: 50rem;
		left: 0rem;
		right: 50rem;
	}
	33.33% { /* .imageunloaded */
		height: 37.5rem;
		width: 0rem;
		left: 0rem;
		right: 0rem;
		opacity: 1;
	}
	33.34% { /* imageoff */
		opacity: 0;	
	}
	94.43% { /* .imageon */
		left: 0rem;
		opacity: 0;
	}
	94.44% { /* .imageinitial */
		height: 37.5rem;
		width: 0rem;
		left: 50rem;
		opacity: 1;
	}
	100% { /* .imageloaded */
		width: 50rem;
		left: 0rem;
		opacity: 1;		
	}
}

@keyframes parallax_two { /* controls img.two movement */
	0% { /* .imageoff */
		opacity: 0;
	}
	27.77% { /* .imageon */
		left: 0rem;
		opacity: 0;
	}
	27.78% { /* .imageinitial */
		width: 0rem;
		height: 37.5rem;
		left: 50rem;
		opacity: 1;
	}
	33.33% { /* .imageloaded */
		width: 50rem;
		left: 0rem;
	}
	/* .imagehold runs from 33.34% - 61.10% */
	61.10%{ /* .imageloaded */
		width: 50rem;
		left: 0rem;
	}
	61.11% { /* .imagepreunload */
		width: 50rem;
		left: 0rem;
		right: 50rem;
	}
	66.67% { /* .imageunloaded */
		width: 0rem;
		right: 0rem;
		left: 0rem;
		height: 37.5rem;
		opacity: 1;
	}
	66.68% { /* .imageoff */
		opacity: 0;
	}
	100% { /* .imageoff */
		opacity: 0;
	}
}

/*@keyframes parallax_three { */
/*	0% { */
/*		opacity: 0;*/
/*	}*/
/*	61.10%{ */
/*		opacity: 0;*/
/*	}*/
/*	61.11% { */
/*		width: 0rem;*/
/*		height: 37.5rem;*/
/*		left: 50rem;*/
/*		opacity: 1;		*/
/*	}*/
/*	66.67% { */
/*		width: 50rem;*/
/*		left: 0rem;*/
/*	}*/

/*	94.43% { */
/*		width: 50rem;*/
/*		left: 0rem;*/
/*	}*/
/*	94.44% { */
/*		width: 50rem;*/
/*		left: 0rem;*/
/*		right: 50rem;*/
/*	}*/
/*	100% { */
/*		width: 0rem;*/
/*		right: 0rem;*/
/*		left: 0rem;*/
/*		height: 37.5rem;*/
/*		opacity: 1;*/
/*	}*/
/*}*/

#proparallax img.one{
	animation-name: parallax_one; /* controls img.one movement */
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 8s;
	animation-direction: forwards;
	object-fit: cover;
}

#proparallax img.two {
	animation-name: parallax_two; /* controls img.two movement */
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 8s;
	animation-direction: forwards;
	object-fit: cover;
}

/*#proparallax img.three {*/
/*	animation-name: parallax_three; */
/*	animation-timing-function: linear;*/
/*	animation-iteration-count: infinite;*/
/*	animation-duration: 18s;*/
/*	animation-direction: forwards;*/
/*	object-fit: cover;*/
/*}*/


@media (max-width: 991px) {
    #proparallax {
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 20.5rem;
    margin-top: 13%;
    left: 0%;
	/* border: 10px solid black;
	box-shadow: 0px 8px 10px 8px grey; */
}

    
}


@media (max-width: 450px) {
    #proparallax {
        display: block;
        position: relative;
        overflow: hidden;
        min-height: 20.5rem;
        margin-top: 13%;
        left: 2%;
        /* border: 10px solid black;
        box-shadow: 0px 8px 10px 8px grey; */
    }

    
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}







.gallery-area .single-gallery {
    margin-bottom: 30px
}

.gallery-area .single-gallery .content {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden
}

.gallery-area .single-gallery .content .primary-btn {
    border-radius: 0px
}

@media (max-width: 414px) {
    .gallery-area .single-gallery .content .primary-btn {
        font-size:10px
    }

    
}

.gallery-area .single-gallery .content .content-overlay {
    background-color: #373642;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border-radius: 10px;
    border: 1px solid #c6b069;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s
}

.gallery-area .single-gallery .content-overlay {
    margin: 20px
}

@media (max-width: 414px) {
    .gallery-area .single-gallery .content-overlay {
        margin:0px
    }
}

.gallery-area .single-gallery .content:hover .content-overlay {
    opacity: .8
}

.gallery-area .single-gallery .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

.gallery-area .single-gallery .content-title {
    width: 60%;
    border-bottom: 1px solid #c6b069;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 20px 0px
}

@media (max-width: 414px) {
    .gallery-area .single-gallery .content-title {
        width:92%;
        font-size: 15px
    }
}

.gallery-area .single-gallery .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1
}

.gallery-area .single-gallery .content-image {
    width: 100%
}

.gallery-area .single-gallery .content-details p {
    color: #fff;
    font-size: 0.8em
}

.gallery-area .single-gallery .fadeIn-bottom {
    top: 80%
}



#translation-container {
  margin-bottom: 10px;
}

#translate-button {
  padding: 8px 8px;
float:right;
  font-size: 14px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#translated-text {
  margin-top: 0px;
  font-size: 18px;
}


.main{
  width: 75%;
  height: fit-content;
}

.mai1{
  width: 75%;
  /* height: fit-content; */
}
.sidebar{
  width: 20%;
  height: 200px;
}
/* .five{
  color: #EB6D2F;
  font-size: 18px;
} */


.navbar-light .navbar-toggler {
color: #fff;
    /* border-color: rgba(0, 0, 0, 0.1); */
    background: orange;
    padding: 15px;
}


.sidebar .content-wrapper1{
  margin-top:-10%;
  margin-bottom: 0px;
         padding: 60px 0px 55px 0px;

}
.sidebar .content-wrapper{
  margin-top: -195px;
         margin-bottom: 0px;
         padding: 60px 0px 55px 0px;
}

.side{
  width: 25%;
}



.column:hover div{
  width: 440px;
  padding: 85px 85px;
  visibility: visible;
  opacity: 0.7; 
}
.col-lg-6 .dip{
  padding-top:25px;
}

@media (max-width: 768px) {
  .main{
  width: 65%;
  height: fit-content;
}

.mai1{
  width: 65%;
  /* height: fit-content; */
}
.sidebar{
  width: 35%;
  justify-content: center;
 
}

.sidebar .content-wrapper{
  width: 100%;
  justify-content: center;
  /* margin-top: 20px;
  margin-left: 45px; */
  margin-bottom: 0px;
  /* padding: 60px 0px 55px 0px; */
}




.side{
  width: 35%;
  justify-content: center;
}
/* .side .content-wrapper{
  margin-top: 20px;
  margin-left: 45px;
}   */
  
  .card{
      width: 200px;
  }

  .col-lg-6 .dip{
  padding-top:60px;
}

.col-lg-6 .dip p{
  margin-bottom: 0px;
}
  
  .column{
     margin-left: 25px;
      width: 85%;
      padding: 50px;
      height: 500px;
      margin-top: 10px;
      }

      .column div{
  position: absolute;
  bottom: 0;
  right: 0;
  background: black;
  color: white;
  margin-bottom: 0px;
  font-family: sans-serif;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.5s linear; 
  transition: visibility 0s, opacity 0.5s linear;
}

      .column:hover div{
  width: 280px;
  padding: 55px 55px;
  visibility: visible;
  opacity: 0.7; 
}





  }


  @media (max-width: 360px) {
  .column{
     margin-left: 25px;
      width: 85%;
      padding: 50px;
      height: 500px;
      margin-top: 10px;
      }

      .column div{
  position: absolute;
  bottom: 0;
  right: 0;
  background: black;
  color: white;
  margin-bottom: 0px;
  font-family: sans-serif;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.5s linear; 
  transition: visibility 0s, opacity 0.5s linear;
}

      .column:hover div{
  width: 250px;
  padding: 50px 50px;
  visibility: visible;
  opacity: 0.7; 
}





  }

@media (max-width: 450px) {
  .main{
  width: 100%;
  height: fit-content;
}

.card{
      width: 160px;
  }
  
 .card__footer .bit:nth-of-type(1) {
  /* font-size: calc(var(--size) * 0.065); */
  font-size:12px;

  font-weight: bold;
}

.card__footer .bit:nth-of-type(2) {
  /* font-size: calc(var(--size) * 0.035); */
  font-weight: bold;
  font-size:12px;
}

.img-thumbnail{
  height:250px;
  border: 1px solid grey;
  margin-top: 20px;
}

.mai1{
  width: 100%;
  /* height: fit-content; */
}
.sidebar{
  width: 100%;
  justify-content: center;
 
}

.sidebar .content-wrapper{
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  margin-left: 45px;
  margin-bottom: 0px;
  /* padding: 60px 0px 55px 0px; */
}




.side{
  width: 100%;
  justify-content: center;
}
.side .content-wrapper{
  margin-top: 20px;
  margin-left: 45px;
}  
  
  
.col-lg-6 .dip{
  padding-top:40px;
} 



.col-lg-6 .dip p{
  margin-bottom: 0px;
}
  .column{
     margin-left: 25px;
      width: 85%;
      padding: 50px;
      height: 500px;
      margin-top: 10px;
      }

      .column div{
  position: absolute;
  bottom: 0;
  right: 0;
  background: black;
  color: white;
  margin-bottom: 0px;
  font-family: sans-serif;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.5s linear; 
  transition: visibility 0s, opacity 0.5s linear;
}

      .column:hover div{
  width: 280px;
  padding: 55px 55px;
  visibility: visible;
  opacity: 0.7; 
}





  }




.col-2 img{
  transition: 0.2s;
}

.col-2 img:hover{
  transform: scale(1.5);
}


@media (max-width: 450px) {
.col-2{
  width:200px;
  height:200px;
  align-items: center;
  margin-left: 55px; 
  margin-top: 15px;
}

.col-2.img-fluid{
  width:350px;
  height:350px;
      font-size: 15px
  }
  
  
  
  .testimonial-slider {
width: 60%;
margin: 50px auto;
overflow: hidden;
border: 5px solid rgb(176, 39, 79);
border-radius: 50px 5px 50px 5px;
}

.testimonial-box {
width: 100%;
height: 500px;
padding: 20px;
margin-top:0%;
text-align:center;
box-sizing: border-box;
display: none;
}

.testimonial {
font-size: 12px;
line-height: 1.5;
margin-top:10px;
}

.author {
font-style: italic;
text-align: right;
margin-top: 5px;
}

 


}


h3,.h3 {
  /* margin-top: 350px; */
  margin-bottom: .5rem;
  font-family: "Roboto",sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: black;
}


.slider-container {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
/* height: 100vh; */
height: 82vh;
width: 100%;
}

.slider-container h1 {
color: #fff;
font-size: 100px;
letter-spacing: 5px;
position: relative;
z-index: 100;
text-align: center;
}

.slider-container::after {
background-color: #000;
content: '';
position: absolute;
opacity: 0.3;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 1;
}

.slide {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
position: absolute;
top: 0;
left: 0;
opacity: 0;
/* height: 100%; */
height: 82vh;
width: 100%;
transform: scale(1.15);
transition: opacity .6s ease;
}

.slide.active {
/*animation: grow 4s linear forwards;*/
opacity: 1;
}

@keyframes grows {
0%, 20% {
  transform: scale(1);
}

75%, 100% {
  transform: scale(1.15);
}
}

.controls-container {
position: absolute;
top: 50%;
right: 10px;
display: flex;
flex-direction: column;
transform: translateY(-50%);
z-index: 2;
}

.control {
background-color: #fff;
cursor: pointer;
opacity: 0.5;
margin: 6px;
height: 40px;
width: 5px;
transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.control.active, .control:hover {
background-color: #fff;
opacity: 1;
transform: scale(1.2);
}


.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}

.popup-content {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  text-align: center;
  width:400px;
}

.popup-content img{
  height:220px;
  width:220px;
}

.close {
  position: absolute;
  top: 0px;
  right: 2px;
  font-size: 20px;
  cursor: pointer;
}

.close:hover {
  color: red;
}


.testimonial-slider {
width: 60%;
margin: 50px auto;
overflow: hidden;
border: 5px solid rgb(176, 39, 79);
border-radius: 50px 5px 50px 5px;
}

.testimonial-box {
width: 100%;
height: 400px;
padding: 30px;
margin-top:0%;
text-align:center;
box-sizing: border-box;
display: none;
}

.testimonial {
font-size: 16px;
line-height: 1.5;
margin-top:20px;
}

.author {
font-style: italic;
text-align: right;
margin-top: 10px;
}


.cit{
  margin-top:180px;
}


.pit{
  width:480px;
  height:305px;
}


@media (max-width: 450px) {
.col-2{
  width:200px;
  height:200px;
  align-items: center;
  margin-left: 55px; 
  margin-top: 15px;
}

.col-2.img-fluid{
  width:350px;
  height:350px;
      font-size: 15px
  }
  
  
  
  .testimonial-slider {
width: 80%;
margin: 10px auto;
overflow: hidden;
border: 5px solid rgb(176, 39, 79);
border-radius: 50px 5px 50px 5px;
}

.testimonial-box {
width: 100%;
height: 500px;
padding: 20px;
margin-top:0%;
text-align:center;
box-sizing: border-box;
display: none;
}

.testimonial {
font-size: 12px;
line-height: 1.5;
margin-top:10px;
}

.author {
font-style: italic;
text-align: right;
margin-top: 5px;
}

.cit{
  margin-top:0px;
}  


}
