@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@200;300;400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
* {
    padding: 0;
    margin: 0;
}


.cookie-alert {
    position: fixed;
    top: 450px;
    left:820px;
    width: 450px;
    /* margin: 0 !important; */
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    /* background-color: red; */
    
  }
  
  .cookie-alert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
    /* background-color: red; */
  }

  .cookie-alert .card-body {
    /* background-color: rgba(0,0,0,0.4); */
    background-color: hsla(0,0%,100%,.9);
    /* background-color: red; */
    opacity: 0.8;
    border-radius: 25px;
   
  }

  .cookie-alert .card-body p{
    font-size: 13px;
    font-family: 'Prompt', sans-serif;
    padding: 10px 20px 20px 20px;
   
  }
  .cookie-alert .card-body a{
    font-size: 13px;
    font-family: 'Prompt', sans-serif;   
    color: black;
  }

  .cookie-alert .card-body .btn-link{
  margin-right: 120px;
  text-decoration: underline;
  }

  .cookie-alert .card-body .accept-cookies{
    color: white;
    background-color: black;
    border: 1px solid black;
    }


/* #pop .wrapper {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
#pop .wrapper .show {
    right: 20px;
  }
  #pop .wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
  }
  #pop .wrapper header i {
    color: #4070f4;
    font-size: 32px;
  }
  #pop .wrapper header h2 {
    color: #4070f4;
    font-weight: 500;
  }
  #pop .wrapper .data {
    margin-top: 16px;
  }
  #pop .wrapper .data p {
    color: #333;
    font-size: 16px;
  }
  #pop .wrapper .data p a {
    color: #4070f4;
    text-decoration: none;
  }
  #pop .wrapper .data p a:hover {
    text-decoration: underline;
  }
  #pop .wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #pop .wrapper .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  #pop .wrapper .buttons #acceptBtn:hover {
    background-color: #034bf1;
  }
  #pop .wrapper #declineBtn {
    border: 2px solid #4070f4;
    background-color: #fff;
    color: #4070f4;
  }
  #pop .wrapper #declineBtn:hover {
    background-color: #4070f4;
    color: #fff;
  }
   */











#background a {
    text-decoration: none;
    color: white;
}
#banner {
    position: relative;
    left: 0;
    top: 0;
    overflow: hidden;
    height: 100vh;
}
#banner .video video {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    height: 110vh;
    width: 100%;
}

/* nav */
/* #banner nav {
  width: 100vw;
  height: 100vh;
  background-color: transparent;

} */

#banner .logo,
.content {
    color: #fafafa;
}

#banner .navbar {
    width: 100%;
    /* background-color: transparent; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 3;
}
#nav #nav_bg.navbar.scroll{
    /* background-color: red; */
    background: rgba(0, 0, 0.5, 0.2);
    backdrop-filter: blur(5px);

    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    -ms-filter: blur(20px);
    /* filter: blur(20px); */
}
#banner .logo,
#hamburger {
    margin: 2%;
  z-index: 1;
    
}

#hamburger {
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.25s linear;
    width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
    height: clamp(2rem, 1.4vw + 1.7rem, 5rem);
    display: flex;
    align-items: center;
    color: white;
    right: 0;

}


#hamburger:hover {
    opacity: 1;
}

#hamburger div,
#hamburger div:after,
#hamburger div:before {
    background-color: #ffffff;
    border-radius: 10px;
    width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
    height: clamp(0.2rem, 0.3vw + 0.1rem, 0.8rem);
    transition: all 0.15s linear;
    
}
#hamburger.open div:after,
#hamburger.open div:before
{
    background-color: #9F3333;

}

#hamburger div:before,
#hamburger div:after {
    content: "";
    position: absolute;

}

#hamburger div:before {
    transform: translateY(-200%);
}

#hamburger div:after {
    transform: translateY(200%);
}

#hamburger.open div {
    background: transparent;
}

#hamburger.open div:before {
    transform: rotate(45deg);
}

#hamburger.open div:after {
    transform: rotate(-45deg);
}
/* overlay */

#overlay {
    position: fixed;
    width: 100%;

    min-height: 100%;
    background-color: white;
    z-index: 1;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
    /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}
#overlay hr {
    max-width: 1000px;
    margin: 60px auto 0;
    border-bottom: 1px solid black;
}
#overlay .list_menu {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(4, minmax(0rem, 1fr));
   
}

#overlay .list_menu a {
    color: black;
    font-size: 47px;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    font-weight: 400;
    padding-top: 20px;
}

#overlay .list_menu a:hover {
    /* color: #24b1e5; */
    color: #9F3333;
    
}

#overlay.menu {
    transform: translateY(0%);
}
#banner .navbar {
    max-width: 1200px;
    margin: 0 auto;
 
}
/* time */
#overlay .time {
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: left;
}

#overlay .time .row a {
    text-decoration: none;
    color: black;
}

#overlay .time .row h6 {
    font-size: 15px;
    padding-bottom: 15px;
    font-family: 'Prompt', sans-serif;
    margin-top: -65px;
}

#overlay .time .row h5 {
    font-size: 13px;
    line-height: 20px;
    font-family: 'Prompt', sans-serif;
}

#overlay .time .row .usa {
    width: 100%;
}

#overlay .time .row .singapore {
    width: 100%;
}

#overlay .time .row .qatar {
    width: 100%;
}

#overlay .time .row .uk {
    width: 100%;
}

/* social icon */

#overlay .social {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding-top: 50px;
 

}
#overlay .social  .col-lg-2 a {
    text-decoration: none;
    color: black;
   
    font-family: 'Prompt', sans-serif;
}
#overlay .social .col-lg-6 a {
    text-decoration: none;
    color: grey;
   
    font-family: 'Prompt', sans-serif;
}

#overlay .social .col-lg-6 a:hover {
    color: black;
}



#overlay .social .col-xl-4 p {
    float: right;
}

#overlay .social .col-xl-4 a {
    color: grey;
    text-decoration: none;
}

#overlay.menu {
    transform: translateY(0%);
}

/* bannercontent */
#banner .container-fluid {
    max-width: 1300px;
    align-items: center;
    margin: 0 auto;
}
#banner .container-fluid .row .col-lg-12 {
    /* padding-top: 470px; */
    bottom: 0;
    position: absolute;
}
#banner .container-fluid .row .col-lg-12 h1 {
    font-size:46px;
    width: 100%;
    font-weight: 600;
    /* font-family: 'Prompt', sans-serif; */
    font-family: 'Anton', sans-serif;
    color: white;
    max-width: 1200px;
    line-height: 32px;
    letter-spacing: 1px;
   

    /* padding-left: 18px; */
}

#banner .container-fluid .row .col-lg-12 h2 {
    font-size: 30px;
    width: 100%;
    font-weight: 500;
    /* font-family: 'Prompt', sans-serif; */
    font-family: 'Anton', sans-serif;
    color: white;
    max-width: 1200px;
    /* line-height: 20px; */
    letter-spacing: 4px;

    /* padding-left: 18px; */
}
/* .animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -125deg,
    #231557 0%,
    #44107a 29%,
    white 67%,
    #9F3333 108%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;

} */

/* @keyframes textclip {
  to {
    background-position: 200% center;
  }
} */
#banner .container-fluid .row .col-lg-12 h3 {
    font-size:28px;
    width: 100%;
    font-weight: 450;
    /* font-family: 'Prompt', sans-serif; */
    font-family: 'Anton', sans-serif;
    color: white;
    max-width: 1200px;
    line-height: 32px;
    letter-spacing: 1px;

    /* padding-left: 18px; */
}

#banner .container-fluid .row .col-lg-12 h4 {
    font-size:23px;
    width: 100%;
    font-weight:400;
    /* font-family: 'Prompt', sans-serif; */
    font-family: 'Anton', sans-serif;
    color: white;
    max-width: 1200px;
    line-height: 32px;
    letter-spacing: 1px;

    /* padding-left: 18px; */
}


#banner .container-fluid .row .col-lg-12 h5 {
    font-size:17px;
    width: 100%; 
    /* font-family: 'Prompt', sans-serif; */
    font-family: 'Anton', sans-serif;
    color: white;
    max-width: 1200px;
    line-height: 32px;
    letter-spacing: 1px;

    /* padding-left: 18px; */
}
/* xrsolution */
/* #background .container-fluid .row .col-lg-12 {
    background-color: #181821;
} */
#background .fa-ellipsis-h {
    border: 1px solid white;
    border-radius: 10px;
    padding: 3px 5px;
    font-size: 18px;
}
#background .fa-ellipsis-h:hover {
    background-color: white;
    color: black;
}
#xrsolution .container-fluid .col-lg-12 .row {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#xrsolution h6 {
    color: white;
    font-size: 25px;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}
#xrsolution hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 20px auto;
}
#xrsolution h1 {
    margin-bottom: 5.2083333333rem;
    margin-top: 4.1666666667rem;
    color: white;
    font-size: 3.5rem;
    letter-spacing: -0.0520833333rem;
    font-weight: 200;
    line-height: 4.375rem;
    font-family: 'Prompt', sans-serif;
}
#xrsolution .accor {
    max-width: 1200px;
    width: 94%;
    margin: 50px auto;
}

#xrsolution .accordions {
    border-radius: 8px;
    overflow: hidden;
    font-size: 1.2em;
}

#xrsolution .accordion {
    width: 100%;
    color: white;
    overflow: hidden;

}

#xrsolution .acc-label {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0,0,0,0.4);
    /* background-color: transparent; */
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 1.0416666667rem;
    /* padding: 2rem 2.4375rem 1.8rem; */
    padding: 1rem 2.24375rem 1.2rem;
}

/* #xrsolution .acc-label:hover {
    background-color: #9e1caf;
} */
#xrsolution .acc-label::after {
    content: "";
    vertical-align: middle;
    display: inline-block;
    border-top: 7px solid #f5f5f5;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    float: left;
    transform: rotate(0);
    transition: all 0.5s;
    margin-top: 10px;
}
#xrsolution .acc-label::before {
    transform: rotate(-180deg);
}
/* #xrsolution .acc-label::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.4s ease;
} */

#xrsolution .acc-content {
    max-height: 0;
    padding: 0 1em;
    color: white;
    font-size: 0.9895833333rem;
    margin-top: 1.1em;
    line-height: 1.607rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
    transition: all 0.4s ease;
}

#xrsolution input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

#xrsolution input:checked + .acc-label::after {
    transform: rotate(-90deg);
}

#xrsolution input:checked ~ .acc-content {
    max-height: 100vh;
    padding: 1em;
}
#review .container-fluid .row .col-lg-12 {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#review hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 20px auto;
}
#review h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}
#review .imagecol {
    max-width: 1200px;
    margin: 30px 50px;
}
#award .container-fluid .row .col-lg-12 {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#award hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 20px auto;
}
#award h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}
#award .awardcol {
    max-width: 1200px;
    margin: 30px 0px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0rem, 1fr));
    grid-column: 1/ -1;
}

#award .awardcol .item {
    padding: 20px;
}

#award .awardcol .item h5 {
    font-size: 20px;
}

#award .awardcol .item h6 {
    font-size: 15px;
    font-family: 'Prompt', sans-serif;
    width: 100%;
    line-height: 30px;
}
#award .awardcol .item {
    border: 1px solid transparent;
    height:150px;
    width: 95%;

}
#award .awardcol .item:hover {
    border: 1px solid white;
    height:150px;
    width: 95%;
}
#partners .container-fluid .row .col-lg-12 {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#partners hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 80px auto 20px auto;
}
#partners h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}
#carrerss .partnerscol {
    max-width: 1200px;
    margin: 30px 50px;
}
#carrerss .container-fluid .row .col-lg-12 {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#carrerss hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 80px auto 20px auto;
}
#carrerss h6 {
    color: white;
    font-size: 25px;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
   
}
#carrerss h5 {
    color: white;
    font-size:18px;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
    margin-top: 20px;
    padding: 0px 10px;
  
}
#carrerss p {
    color: white;
    font-size:19px;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
    text-align: left;
    padding-bottom: 15px;
    padding: 0px 10px;
  
}
#carrerss .carrercol {
    max-width: 1200px;
    margin: 30px 50px;
}
#join .container-fluid .col-lg-12 .row {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 30px;
}
#join h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}
#join .container-fluid hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 20px auto;
}

#join .container-fluid .contain {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

#join .container-fluid .contain .item1 .col-xl-6 h5 {
    color: white;
    font-size: 17px;
    font-family: 'Prompt', sans-serif;
}

#join .container-fluid .contain .item1 .col-xl-6 h2 {
    color: white;
    font-size: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
}

#join .container-fluid .contain .item1 .col-xl-6 p {
    color: white;
    font-size: 19px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    width: 100;
    padding-top: 15px;
}

#join .container-fluid .contain .item1 .col-xl-6 h4 {
    color: white;
    font-size: 20px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    width: 100;
    padding-top: 23px;
}

/* item2 */
#join h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}

#join .container-fluid .contain {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

#join .container-fluid .contain .item2 .col-xl-6 h5 {
    color: white;
    font-size: 17px;
    font-family: 'Prompt', sans-serif;
}

#join .container-fluid .contain .item2 .col-xl-6 h2 {
    color: white;
    font-size: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
}

#join .container-fluid .contain .item2 .col-xl-6 p {
    color: white;
    font-size: 19px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    width: 100;
    padding-top: 15px;
}

#join .container-fluid .contain .item2 .col-xl-6 h4 {
    color: white;
    font-size: 20px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    width: 100;
    padding-top: 23px;
}

#join .container-fluid .contain .item2 .col-xl-6 #video2 {
    width: 100%;
    height: 100%;
}

#join h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}

#join .container-fluid .contain {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

#join .container-fluid .contain .item3 .col-xl-6 h5 {
    color: white;
    font-size: 17px;
    font-family: 'Prompt', sans-serif;
}

#join .container-fluid .contain .item3 .col-xl-6 h2 {
    color: white;
    font-size: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
}

#join .container-fluid .contain .item3 .col-xl-6 p {
    color: white;
    font-size: 19px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    width: 100;
    padding-top: 15px;
}

#join .container-fluid .contain .item3 .col-xl-6 h4 {
    color: white;
    font-size: 20px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    width: 100;
    padding-top: 23px;
}

#join .container-fluid .contain .item3 .col-xl-6 #video3 {
    width: 80%;
    height: 50%;
}

#join .container-fluid .contain .col-xl-6 h4 a {
    color: white;
    text-decoration: none;
}
#join .container-fluid .contain .col-xl-6 h4 i {
    color: black;
    background-color: white;
    height: 75px;
    width: 75px;
    border-radius: 20px;
    padding: 28px 15px 10px 28px;
    margin-left: 45px;
}
#lifestyle .container-fluid .col-lg-12 .row {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#lifestyle h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}
#lifestyle hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 80px auto 20px auto;
}
#lifestyle h1 {
    margin-bottom: 5.2083333333rem;
    margin-top: 4.1666666667rem;
    color: white;
    font-size: 3.5rem;
    letter-spacing: -0.0520833333rem;
    font-weight: 200;
    line-height: 4.375rem;
    font-family: 'Prompt', sans-serif;
}
#OwlCarousel .container-fluid .row .col-xl-12 {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#blogs .container-fluid .row .col-lg-12 {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#blogcontent .container-fluid .col-lg-12 .row {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}
#blogcontent h6 {
    color: white;
    font-size: 1.4583333333rem;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
}
#blogcontent hr.new1 {
    border-top: 1px solid white;
    max-width: 1200px;
    align-items: center;
    margin: 20px auto 20px auto;
}
#blogs span {
    font-size: 15px;
}
#blogs p {
    color: white;
    font-weight: 300;
    font-size: 2.75rem;
    line-height: 1.1;
    font-family: 'Prompt', sans-serif;
}
#blogs p:hover {
    color: #9F3333;
}
#blogs a {
    text-decoration: none;
}
/* Footer */

#footer .container-fluid {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    background-color: #fafafa;
    position: relative;
}

#footer .container-fluid .row .col-xl-12 {
    width: 100%;
    /* max-width: 1200px; */
    margin: 25px auto;
}

#footer .container-fluid .row .col-xl-12 h1 {
    /* max-width: 1290px; */
    font-size: 52px;
    text-align: left;
    color: black;
    font-family: 'Prompt', sans-serif;
    font-weight: 200;
    padding-top: 40px;
}

#footer .container-fluid .row .col-xl-12 h3 {
    /* max-width: 1290px;
    margin: 0 60px; */
    font-size: 25px;
    text-align: left;
    color: black;
    font-family: 'Prompt', sans-serif;
    font-weight: 200;
    padding-top: 50px;
}

#footer .container-fluid .row .col-xl-12 h3 a {
    color: black;
    text-decoration: none;
}

#footer .container-fluid .row .col-xl-12 h3 i {
    color: white;
    background-color: black;
    height: 80px;
    width: 80px;
    border-radius: 20px;
    padding: 28px 15px 10px 28px;
    margin-left: 40px;
}

/* time */
#footer .container-fluid .row .col-xl-12 .time {
    /* max-width: 1180px; */
    margin: 10px auto 0;
    text-align: left;
}

#footer .container-fluid .row .col-xl-12 .time .row a {
    text-decoration: none;
    color: black;
}
#footer .container-fluid .row .col-xl-12 .time .row h6 {
    font-size: 15px;
    padding-bottom: 15px;
    font-family: 'Prompt', sans-serif;
    margin-top: -70px;
}

#footer .container-fluid .row .col-xl-12 .time .row h5 {
    font-size: 15px;
    line-height: 20px;
    font-family: 'Prompt', sans-serif;
}

#footer .container-fluid .row .col-xl-12 .time .row .usa {
    width: 100%;
}

#footer .container-fluid .row .col-xl-12 .time .row .singapore {
    width: 100%;
}

#footer .container-fluid .row .col-xl-12 .time .row .qatar {
    width: 100%;
}

#footer .container-fluid .row .col-xl-12 .time .row .uk {
    width: 100%;
}

/* social icon */

#footer .container-fluid .row .col-xl-12 .social {
    /* max-width: 1180px; */
    margin: 0 auto;
    text-align: left;
    padding-top: 100px;
}

#footer .container-fluid .row .col-xl-12 .social a {
    text-decoration: none;
    color: black;
    font-family: 'Prompt', sans-serif;
}
#footer .container-fluid .row .col-xl-12 .social .col-lg-6 a{
    text-decoration: none;
  
    font-family: 'Prompt', sans-serif;
    color: grey;
}
#footer .container-fluid .row .col-xl-12 .social .col-lg-6 a:hover {
    color: black;
}

#footer .container-fluid .row .col-xl-12 .social .col-xl-4 p {
    float: right;
}


/* card slider */

#gallery {
    width: 100%;
    padding-bottom: 80px;
    margin: 0 auto;
    max-width: 1200px;
}
#gallery .container-fluid .one {
    border: 1px solid white;
    border-radius: 20px;
    width: 55%;
    height: 240px;
    position: absolute;
    margin-top: 80px;
    max-width: 1200px;
}
#gallery .container-fluid .two {
    max-width: 1200px;
}

#gallery .container-fluid .row .col-xl-12 {
    /* max-width: 1290px; */
    align-items: center;
    margin: 0 auto;
}

#gallery .carousel {
    padding-top: 40px;
    position: relative;
    width: 100%;
}

#gallery .carousel > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#gallery .card {
    background-color: #181821;
    border-radius: 25px;
    border: 1px solid white;
}

#gallery a {
    text-decoration: none;
}

#gallery .card .row .head_img {
    width: 90%;
}

#gallery .card .row .right_con h6 {
    font-size: 13px;
    font-family: 'Prompt', sans-serif;
}

#gallery .card .star .fa {
    font-size: 30px;
    color: #70ff8f;
}

#gallery .card h5 {
    font-size: 13px;
    font-family: 'Prompt', sans-serif;
    color: grey;
    padding-top: 20px;
}

#gallery .card h4 {
    font-size: 25px;
    font-family: 'Prompt', sans-serif;
    color: white;
    width: 80%;
}

#gallery .card p {
    font-size: 13px;
    font-family: 'Prompt', sans-serif;
    color: grey;
    font-weight: 400;
    padding-top: 30px;
    float: left;
}

#gallery .card .foot_img {
    padding-top: 30px;
    float: right;
}

#gallery .slide {
    display: none;
}

#gallery .slide[data-active] {
    display: block;
}

#gallery .arrow {
    position: absolute;
    top: 50%;
    font-size: 32px;
    margin-top: -20px;
    display: flex;
    color: black;
    background-color: white;
    height: 70px;
    width: 70px;
    border-radius: 20px;
    padding: 18px 15px 20px 20px;
}

#gallery .arrow:hover {
    background: rgba(0, 0, 0, 0.1);
    color: white;
    cursor: pointer;
    opacity: 2;
}

#gallery .arrow.left {
    left: -10rem;
}

#gallery .arrow.right {
    right: -10rem;
}

#gallery .arrow > svg {
    width: 32px;
    height: 32px;
}

#gallery .fade {
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@media screen and (max-width: 1440px) {
    
     #blogs p{
        font-size: 24px;
    }
}
@media screen and (max-width: 992px) {
    
    #banner .video video{
        
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    height: 132vh;
    width: 100%;
    }
    #banner .container-fluid .row .col-lg-12 h2 {
    /* font-size: 19px; */
    }
    #overlay hr {
        max-width: 800px;
        margin: 60px auto 0;
        border: 1px solid black;
    }
    #overlay .list_menu {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
   
    }

    #overlay .list_menu a {
        color: black;
        font-size: 35px;
        font-family: 'Prompt', sans-serif;
        text-decoration: none;
        font-weight: 400;
    }

        #overlay .time  {
     padding-left: 90px;
    }
    #overlay .social {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
        padding-top: 130px;
    }
    #banner .col-lg-12 {
        width: 100%;
        background: #00000133;
        height: 100vh;
        padding-left: 70px;
    }
    #banner .video video {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        object-fit: cover;
        height: 150vh;
        width: 100%;
    }
    .blog_gallery_title p{
        font-size: 10px;
    }
    #banner .container-fluid .row .col-lg-12 {
        padding-top: 127px;
    }
    #banner .container-fluid .row .col-lg-12 h1 {
        font-size: 40px;
        width: 100%;
        max-width: 1200px;
    }
    #xrsolution h1 {
        line-height: 3rem;
        font-size: 3rem;
    }
    /* #OwlCarousel .container-fluid .row .col-xl-12{
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
} */
    /* #OwlCarousel .container-fluid .col-lg-12 .home-demo .owl-carousel{
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
  padding-bottom: 30px;
} */

    #lifestyle h1 {
        line-height: 3rem;
        font-size: 3rem;
    }
    #blogs {
        max-width: 1200px;
        align-items: center;
        margin: 0 auto;
    }
    #blogs p {
        font-size: 22px;
        line-height: 1.1;
    }
    #footer .container-fluid .row .col-xl-12 {

        /* max-width: 950px; */
        margin: 0 auto;
        align-items: center;
    }

    
    #footer .container-fluid .row .time{
       /* max-width: 1100px; */
       
    }
    #gallery .container-fluid .one {
        margin-top: 65px;
    }

    #gallery .container-fluid .row .card {
        width: 110%;
    }

    #gallery .container-fluid .row .card .head_img {
        width: 100%;
    }

    #gallery .container-fluid .row .card .right_con h6 {
        font-size: 11px;
        padding-left: 10px;
    }

    #gallery .container-fluid .row .card .star .fa {
        font-size: 20px;
    }

    #gallery .container-fluid .row .card h5 {
        font-size: 14px;
    }

    #gallery .container-fluid .row .card h4 {
        font-size: 20px;
        width: 85%;
    }

    #gallery .container-fluid .row .card p {
        font-size: 11px;
    }
    #footer .container-fluid .row .col-xl-12 h1{
        padding-top: 40px;
    }
}
@media screen and (max-width: 767px) {
    #overlay hr {
        display: none;
    }
    #overlay .list_menu {
        max-width: 700px;
        margin: 50px auto;
        text-align: left;
 
    }
     #footer .container-fluid .row .col-xl-12 h1{
        padding-top: 40px;
    }

    #overlay .list_menu a {
        color: black;
        font-size: 30px;
        font-family: 'Prompt', sans-serif;
        text-decoration: none;
        font-weight: 400;
    }
    #overlay .social .col-xl-4 p {
        float: left;
        padding-top: 50px;
    }

            #overlay .time  {
     padding-left: 40px;
    }
    
    #overlay .social {
        max-width: 700px;
        margin: 0 auto;
        text-align: left;
        padding-top: 50px;
    }
    #banner .container-fluid .row .col-lg-12 h1 {
        font-size: 30px;
        width: 100%;
    }
    #xrsolution h1 {
        line-height: 2rem;
        font-size: 2rem;
        margin-bottom: 0px;
    }
    #lifestyle h1 {
        line-height: 2rem;
        font-size: 2rem;
    }
    #award .awardcol {
        display: grid;
        grid-template-columns: repeat(2, minmax(0rem, 1fr));
        grid-column: 1/ -1;
    }
    #blogs p {
        font-size: 22px;
        line-height: 1.1;
    }
    #xrsolution h6 {
        font-size: 25px;
    }
    #review h6 {
        font-size: 1rem;
    }
    #award h6 {
        font-size: 25px;
    }
    #partners h6 {
        font-size: 25px;
    }
    #join h6 {
        font-size: 1rem;
    }
    #lifestyle h6 {
        font-size: 1rem;
    }
    #blogcontent h6 {
        font-size: 25px;
    }
    #join .container-fluid .contain .item1 .col-xl-6 h2 {
        font-size: 30px;
    }
    #join .container-fluid .contain .item2 .col-xl-6 h2 {
        font-size: 30px;
    }
    #join .container-fluid .contain .item3 .col-xl-6 h2 {
        font-size: 30px;
    }
    gallery .container-fluid .row .one {
        display: none;
    }

    #gallery .arrow.left {
        left: 8rem;
        margin-top: 170px;
    }

    #gallery .arrow.right {
        right: 8rem;
        margin-top: 170px;
    }
    #footer .container-fluid .row .col-xl-12 {

        /* max-width: 700px; */
        margin: 0 auto;
        align-items: center;
    }
 
}
@media only screen and (max-width: 576px) {
  
      
    #overlay .list_menu {
        max-width: 450px;
        margin: 50px auto;
        text-align: left;
            display: grid;
            grid-template-columns: repeat(3, minmax(0rem, 1fr));
   
    }

    #overlay .list_menu a {
        color: black;
        font-size: 20px;
        font-family: 'Prompt', sans-serif;
        text-decoration: none;
        font-weight: 400;
    }
    #overlay .social .col-xl-4 p {
        float: left;
        padding-top: 50px;
    }
    #overlay .social {
        max-width: 450px;
        margin: 0 auto;
        text-align: left;
        padding-top: 50px;
    }
    #join .container-fluid .contain .item1 .col-xl-6 h2 {
        font-size: 20px;
    }
    #join .container-fluid .contain .item2 .col-xl-6 h2 {
        font-size: 20px;
    }
    #join .container-fluid .contain .item3 .col-xl-6 h2 {
        font-size: 20px;
    }
    #review .imagecol {
        max-width: 1100px;
        margin: 30px 0px;
    }
    #award .awardcol {
        max-width: 1100px;
        margin: 30px 0px;
    }
 
    #partners .partnerscol {
        max-width: 1100px;
        margin: 30px 0px;
    }
    #banner .container-fluid .row .col-lg-12 h1 {
        font-size: 20px;
        padding-left: 0px;
    }
    #xrsolution h1 {
        line-height: 1.6rem;
        font-size: 1.5rem;
    }
    #lifestyle h1 {
        line-height: 1.6rem;
        font-size: 1.5rem;
    }
    #gallery .container-fluid .row .card p {
        font-size: 8px;
    }
    #gallery .container-fluid .row .card .foot_img {
        width: 18%;
    }

    #gallery .arrow.left {
        left: 5rem;
    }

    #gallery .arrow.right {
        right: 5rem;
    }
}
@media only screen and (max-width: 500px) {
          .white {
    padding-bottom: 80px;
  }
    #contact .container-fluid .row form h5 i{
        background-color: white;
        height: 48px;
        width: 51px;
        border-radius: 20px;
        padding: 18px 10px 15px 10px;
        margin-left: 20px;
      }
     .w24tz-time{
        font-size: 25px !important;
    }
    .w24tz-current-time {
    min-width: 182px;
    /* max-width: 0 !important; */
}
/* #stay .container-fluid .row h3{
    padding: 20px 20px;
} */
#footer .container-fluid .row .col-xl-12 .social{
    padding-top: 50px;
}
/* #footer .container-fluid .row .col-xl-12 .time{
        min-width: 0 !important;
    max-width: 0 !important;
} */

    #ban .container-fluid .row .col-xl-12 h1{
        text-align: center;
    }
    #acc .container-fluid .accor .row .col-lg-12 h1{
        text-align: center;
    }
    #overlay .list_menu {
        max-width: 400px;
        margin: 50px auto;
        text-align: left;
            
   
    }
    #overlay .social {
        max-width: 400px;
        margin: 0 auto;
        text-align: left;
        padding-top: 50px;
    }
 

    #footer .container-fluid .row .col-xl-12 h1{
        padding-top: 50px;
        padding-left: 5px;
        font-size:30px;
    }
     #footer .container-fluid .row .col-xl-12 h3 i{
        width: 49px;
        height: 50px;
        border-radius: 50%;
        margin-left: 10px;
        padding: 16px 10px 5px 17px;
    }
    #footer .container-fluid .row .col-xl-12 h3 {
    
    padding-top: 10px;
}
     #footer .container-fluid .row .col-xl-12 h3 a{
        font-size: 20px;
    }

}

@media only screen and (max-width: 450px) {
        #footer .container-fluid .row .col-xl-12 h1{
        padding-left: 30px;
        padding-top: 90px;
        font-size:22px;
        width: 100%;
    }
    #footer .container-fluid .row .col-xl-12 h3{
        padding-top: 10px;
    }
    #footer .container-fluid .row .col-xl-12 h3 a{
        font-size: 18px;
    }
    #footer .container-fluid .row .col-xl-12 h3 i{
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin-left: 10px;
        padding: 13px 10px 5px 15px;
    }

            #footer .container-fluid .row .time{
        padding-left: 20px;
       
    }

                #footer .container-fluid .row .col-xl-12 h3{
        padding-left: 20px;
       
    }
    #blogs p {
        font-size: 18px;
    }

    #footer .container-fluid {

    /* width: 120%; */
 
    background-color: #fafafa;

}

}
@media only screen and (max-width: 400px) {
    #overlay .list_menu {
        max-width: 330px;
        margin: 50px auto;
        text-align: left;
            
   
    }
        #footer .container-fluid {

    /* width: 130%; */
 
    background-color: #fafafa;

}
    #overlay .social {
        max-width: 330px;
        margin: 0 auto;
        text-align: left;
        padding-top: 50px;
    }
    #gallery .container-fluid .row .card .right_con h6 {
        font-size: 8px;
    }
    #gallery .container-fluid .row .card h4 {
        font-size: 14px;
        width: 100%;
    }

    #gallery .container-fluid .row .card p {
        font-size: 7px;
    }
    #gallery .container-fluid .row .card .foot_img {
        width: 18%;
    }
    #award .awardcol {
        display: grid;
        grid-template-columns: repeat(1, minmax(0rem, 1fr));
        grid-column: 1/ -1;
    }

#banner .container-fluid .row .col-lg-12 h1 {
    font-size:24px;
    font-weight: 500;
    line-height: 23px;
    margin-top: -55px;
}


#banner .container-fluid .row .col-lg-12 h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 23px;
    margin-top: -10px;
}


#banner .container-fluid .row .col-lg-12 h3 {
    font-size:20px;
    font-weight: 450;
     line-height: 23px;
}

#banner .container-fluid .row .col-lg-12 h4 {
    font-size:18px;
    font-weight:400;
     line-height: 23px;
}


#banner .container-fluid .row .col-lg-12 h5 {
    font-size:15px;
    line-height: 23px;
}

}

#button {
    display: inline-block;
    background-color: hsla(0,0%,100%,.9);
    /* background: rgba(0, 0, 0.5, 0.2); */
    width: 125px;
    height: 40px;
    text-align: center;
    padding-bottom: 15px;
    padding-top: 5px;
    border-radius:10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}
#button::after {
    content: "Contact Us";
    font-size: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
    padding-top: 10px;
    /* line-height: 50px; */
    color:black;
    font-weight: 300;
}
#button:hover {
    cursor: pointer;
    background-color: white;
}
#button:active {
    background-color: white;
}
#button.show {
    opacity: 1;
    visibility: visible;
}

/* 
#button {
    display: inline-block;
    background-color: white;
   
    width: 5px;
    height: 55px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 10px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}
#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
    padding-top: 10px;

    color: #9F3333;
    font-weight: 300;
}
#button:hover {
    cursor: pointer;
    background-color: white;
}
#button:active {
    background-color: white;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
 */
