html {
  margin:0;
  padding:0;
  overflow-x:hidden;
  scroll-behavior: smooth;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #ffffff;
}
nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 10px;
  height: 90px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo img {
  position: absolute;
  color: #f2f2f2;
  /* font-size: 50px;
font-weight: 600;
text-decoration: none;
margin-top: 60px;*/
  width: 240px;
  height: 90px;
}
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  /* padding: 10px 15px; */
  transition: color 0.3s ease;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
.nav-links li a {
  color: #4f2c3e;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 9px 15px;
  /*border-radius: 5px;*/
  transition: all 0.3s ease;
}
.nav-links li a:hover {
  color: #fff;
  background: #511c2f;
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: #2c5e9f;
  color: #fff;
  width: 300px;
  line-height: 30px;
  /*top: 100px;*/
  margin-top: 10px;
  opacity: 0.9;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links .drop-menu :hover {
  background: #434343;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 0.9;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  color: #fff;
  font-weight: 200;
  border-bottom: 1px solid rgb(255, 255, 255);
  font-size: 14px;
}

ol,
ul {
  padding-left: 0rem;
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  margin-top: 20px;
  top: 70px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content {
  background: linear-gradient(45deg, #764f8f, #da1f3e);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  opacity: 1;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
  width: calc(50% - 30px);
  line-height: 45px;
}
.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header a {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links {
  margin-left: -37.5px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.row .mega-links li {
  padding: 0 20px;
}
.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.row .mega-links li a:hover {
  color: #f2f2f2;
  /*background: #000000;*/
  /*border-radius: 5px;*/
}
.wrapper .btn {
  color: #000000;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 1024px) {
  .wrapper .btn {
    display: block;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #a6a6a6;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }
  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: fit-content;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #2c5e9f;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
    color: #ffffff;
    background: #2c5e9f;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    /*border-radius: 5px;*/
    font-size: 18px;
  }
  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: hidden;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row {
    width: 147%;
    /*margin-bottom: 15px;*/
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
  }
}
nav input {
  display: none;
}

.link-animated a {
  transition: 0.5s;
  color: blue;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
}

.link-animated a:hover {
  padding-left: 10px;
}

.whatsapp{
  position: fixed;
  cursor: pointer;
  padding: 1px;
  width: auto;
  text-align: left;
  outline: none;
  font-size: 18px;
  border-bottom: none;
  bottom: 20px;
  left: 25px;
  z-index: 2;
}

/*--------------------- about ----------------------*/
.about1{
  margin:50px;
}

.about-section33 {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 20px;
padding: 20px;
background-color: #FFF;
font-family: Arial, sans-serif;
}
.about-content33 {
flex: 1 1 400px;
max-width: 600px;
box-sizing: border-box;
}
.about-content33 h2 {
font-size: 2.5rem;
color: #333;
margin-bottom: 10px;
}
.about-content33 h2::after {
content: '';
display: block;
width: 150px;
height: 2.5px;
background: linear-gradient(45deg, #764f8f, #da1f3e);
margin-top: 8px;
}
.about-content33 p {
font-size: 1rem;
color: #666;
line-height: 1.6;
}
.about-video33 {
flex: 1 1 400px;
max-width: 600px;
position: relative;
text-align: center;
}
/* Main image */
.about-video33 img {
width: 90%;
height: auto;
border-radius: 8px;
cursor: pointer;
transition: transform 0.3s ease-in-out;
}
/* Hover effect */
/* .about-video33:hover img {
transform: scale(1.05);
} */
/* PNG overlay image */
.about-video33 .overlay33 {
opacity: 0;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('./assets/img/image_icon/newonelogo.png') center/contain no-repeat;
transition: opacity 0.3s ease-in-out;
pointer-events: none;
}
.about-video33:hover .overlay33 {
opacity: 1;
}
/* Video popup background overlay */
.video-popup-overlay33 {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 998;
backdrop-filter: blur(5px);
}
/* Video popup container */
.video-popup33 {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 999;
width: 90%;
max-width: 800px;
background-color: #FFF;
padding: 10px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
/* Responsive video iframe */
.video-popup33 iframe {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
border: none;
}
/* Close button styling */
.close-popup33 {
position: absolute;
top: 3px;
right: 1px;
font-size: 24px;
color: #ffffff;
cursor: pointer;
background-color: #141414;
padding: 5px 10px;
border-radius: 20%;
border: 2px solid #000000;
z-index: 1000;
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.close-popup33:hover {
background-color: #333;
color: #FFF;
}
/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .about-section33{
    padding: 0px;
  }
.about-content33 h2 {
font-size: 2rem;
}
.about-content33 p {
font-size: 0.9rem;
}
.video-popup33 {
width: 95%;
max-width: 600px;
}
.close-popup33 {
font-size: 20px;
padding: 5px;
}
}
@media (max-width: 480px) {
.about-content33 h2 {
font-size: 1.8rem;
}
.about-content33 p {
font-size: 0.85rem;
}
.video-popup33 {
width: 90%;
}
.close-popup33 {
font-size: 18px;
}
}
.lead{
  font-size: 1rem;
}

/* --------------------------------------------- */
/* General Styles */

.banner {
  position: relative;
  text-align: center;
}

.banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.banner .banner-text {
  position: absolute;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  top: 50%;
  right: 30%;
  text-align: left;
  background: linear-gradient(45deg, #764f8fa8, #da1f3ea6);
  /* transform: translate(-50%, -50%); */
  color: #fff;
  font-size: 2.5rem;
  padding-left: 40px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

main {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  margin-bottom: -50px;
}

.about {
  flex: 3;
}

.about h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
}

.about img {
  width: 60%;
  height: auto;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  /*.service-section {
      flex-direction: column;
      text-align: center;
  }*/

  .banner h5{
    font-size: 1rem;
  }
  
  .banner .banner-text{
    text-align: center;
    top: 30%;
    padding: 10px;
    right: 0;
  }

  .about img {
    width: 100%;
    height: auto;
  }
}

/* @media (max-width:640px){
  .banner img {
    height: auto;
    margin-top: 20%;
  }
} */

aside {
  flex: 1;
  padding-left: 2rem;
  text-decoration: none;
}

aside h3 {
  font-weight: bold;
  color: #582031;
}

aside ul {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #4a353b;
}

a:hover {
  color: #582031;
}

aside ul li {
  background: #f0f0f0;
  padding: 0.5rem;
  margin-bottom: 10px;
  border-left: 4px solid #582031;
}
/*aside ul li {
text-decoration: none;
}*/

/* .quote {
background-color: #f9f9f9;
text-align: center;
padding: 2rem;
} */

.quote h3 {
  margin-bottom: 1rem;
}

.quote .btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.quote .btn:hover {
  background-color: #0056b3;
}

/*---------------------- review ---------------------*/
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 40px 0;
  background-color: white;
}

.section-bg {
  background-color: white;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0;
  color: rgba(42, 41, 42, 0.8);
  text-transform: uppercase;
  /* font-family: var(--font-default); */
  margin-bottom: 15px;
  margin-top: -40px;
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
  margin-top: -90px;
}
.about-us {
  text-align: justify;
}
.about-us span {
  font-weight: 800;
  font-style: italic;
}

.section-header p span {
  color: var(--color-primary);
}
#zoom-in-out-box {
  margin: 24px;
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
}

/*---------------- gallery section -----------------*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&display=swap');

    /* *, *:before, *:after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        margin: 0;
    } */

    .wk-desk-199 { width: 8.333333%; }
    .wk-desk-299 { width: 16.666667%; }
    .wk-desk-399 { width: 25%; }
    .wk-desk-499 { width: 33.333333%; }
    .wk-desk-599 { width: 41.666667%; }
    .wk-desk-699 { width: 50%; }
    .wk-desk-799 { width: 58.333333%; }
    .wk-desk-899 { width: 66.666667%; }
    .wk-desk-999 { width: 75%; }
    .wk-desk-1099 { width: 83.333333%; }
    .wk-desk-1199 { width: 91.666667%; }
    .wk-desk-1299 { width: 100%; }

    @media (max-width: 1024px) {
        .wk-ipadp-199 { width: 8.333333%; }
        .wk-ipadp-299 { width: 16.666667%; }
        .wk-ipadp-399 { width: 25%; }
        .wk-ipadp-499 { width: 33.333333%; }
        .wk-ipadp-599 { width: 41.666667%; }
        .wk-ipadp-699 { width: 50%; }
        .wk-ipadp-799 { width: 58.333333%; }
        .wk-ipadp-899 { width: 66.666667%; }
        .wk-ipadp-999 { width: 75%; }
        .wk-ipadp-1099 { width: 83.333333%; }
        .wk-ipadp-1199 { width: 91.666667%; }
        .wk-ipadp-1299 { width: 100%; }
    }

    @media (max-width: 768px) {
        .wk-tab-199 { width: 8.333333%; }
        .wk-tab-299 { width: 16.666667%; }
        .wk-tab-399 { width: 25%; }
        .wk-tab-499 { width: 33.333333%; }
        .wk-tab-599 { width: 41.666667%; }
        .wk-tab-699 { width: 50%; }
        .wk-tab-799 { width: 58.333333%; }
        .wk-tab-899 { width: 66.666667%; }
        .wk-tab-999 { width: 75%; }
        .wk-tab-1099 { width: 83.333333%; }
        .wk-tab-1199 { width: 91.666667%; }
        .wk-tab-1299 { width: 100%; }
    }

    @media (max-width: 500px) {
        .wk-mobile-199 { width: 8.333333%; }
        .wk-mobile-299 { width: 16.666667%; }
        .wk-mobile-399 { width: 25%; }
        .wk-mobile-499 { width: 33.333333%; }
        .wk-mobile-599 { width: 41.666667%; }
        .wk-mobile-699 { width: 50%; }
        .wk-mobile-799 { width: 58.333333%; }
        .wk-mobile-899 { width: 66.666667%; }
        .wk-mobile-999 { width: 75%; }
        .wk-mobile-1099 { width: 83.333333%; }
        .wk-mobile-1199 { width: 91.666667%; }
        .wk-mobile-1299 { width: 100%; }
    }

    .album99 .responsive-container-block99 {
        min-height: 75px;
        height: fit-content;
        width: 100%;
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        justify-content: flex-start;
    }

    .album99 .responsive-container-block99.bg99 {
        max-width: 100%;
        justify-content: space-between;
        padding: 50px;
    }

    .album99 .img99 {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .album99 .responsive-container-block99.img-cont99 {
        flex-direction: column;
        max-width: 33.3%;
        height: 100%;
    }

    .album99 .img99.img-big99 {
        height: 50%;
        margin: 0 0 16px 0;
    }

    @media (max-width: 768px) {
        .album99 .responsive-container-block99.bg99 {
            flex-direction: column;
        }

        .album99 .responsive-container-block99.img-cont99 {
            max-width: 100%;
            flex-direction: row;
            justify-content: space-between;
        }

        .album99 .img99.img-big99 {
            max-width: 49%;
        }
    }

    @media (max-width: 500px) {
        .album99 .responsive-container-block99.img-cont99 {
            flex-direction: column;
            align-items: center;
            padding: 10px;
        }

        .album99 .img99.img-big99 {
            max-width: 94%;
            margin: 0 0 25px 0;
        }
    }

    /* Lightbox container */
    #lightbox99 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    /* Lightbox image */
    #lightbox-img99 {
        max-width: 90%;
        max-height: 90%;
    }

    /* Close button */
    #close-btn99 {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1100;
    }

    #close-btn99:hover {
        color: #ff4d4d;
        transform: scale(1.1);
    }


/* Scoped CSS for the contact form section 

.contactform {
background-color: #eee;
font-family: "Merriweather", serif;
}

.contactform .btn-lg {
margin: 20px;
}

.contactform button.close {
padding: 10px;
}

.contactform .close span {
font-weight: 100;
font-size: 30px;
}

.contactform img {
padding-bottom: 20px;
}

.contactform .modal-header {
border: none;
outline: 0;
}

.contactform .btn-dark {
border-radius: 6px;
background: #000 !important;
}

.contactform .btn-dark:focus {
box-shadow: none;
}

.contactform .close:focus {
outline: none !important;
}

.contactform .modal-content {
border: none;
border-radius: 7px;
}

.contactform .form-group {
margin-bottom: 50px;
}

.contactform .form-control {
border: none;
border-radius: 0;
border-bottom: 1.5px solid #dae0e5;
padding-left: 0px;
}

.contactform .form-control::placeholder {
opacity: 0.5;
letter-spacing: 1px;
font-size: 90%;
}

.contactform .form-control:focus {
color: #000 !important;
border-color: #fff;
border-bottom: 1.5px solid #000;
box-shadow: none;
opacity: 1;
letter-spacing: 1px;
}

.contactform input:focus::-webkit-input-placeholder {
color: #000 !important;
opacity: 2;
font-size: 90%;
}*/

/*------------------ New Contact Form --------------------*/

.contact-section ::-webkit-scrollbar {
width: 8px;
}

/* Track */
.contact-section ::-webkit-scrollbar-track {
background: #f1f1f1;
}

/* Handle */
.contact-section ::-webkit-scrollbar-thumb {
background: #888;
}

/* Handle on hover */
.contact-section ::-webkit-scrollbar-thumb:hover {
background: #555;
}

.contact-section body {
background: rgba(132, 155, 219, 0.5);
font-family: Arial, Helvetica, sans-serif;
}

.contact-section .container {
background: #fff;
margin-top: 50px;
padding: 20px 20px 20px 20px;
box-sizing: border-box;
border-radius: 20px;
/*width: 945px;*/
}

.contact-section img {
padding-left: 50px;
width: 90%;
}

.contact-section .text-muted {
font-size: 13px;
font-weight: bold;
}

.contact-section .form-title {
font-weight: bold;
}

.contact-section .form-group label {
font-size: 11px;
font-weight: bold;
padding-left: 5px;
color: #828282;
}

.contact-section .form-control {
border: none;
border-radius: 20px;
background: rgba(165, 147, 69, 0.075);
box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.contact-section .btn {
width: 100%;
font-size: 12px;
margin-top: 10px;
background-color: #4c2b46;
color: white;
text-align: center;
border-radius: 5px;
}

.contact-section .form-control:focus {
color: #495057;
border-color: #fff !important;
outline: 0;
box-shadow: 0 1px 1px 1px rgba(0, 123, 255, 0.25) !important;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Define and load custom font */
@font-face {
  font-family: 'Ethnocentric';
  src: url('/assets/img/Ethnocentric-Regular.woff') format('woff2'); /* Replace with the correct font path */
}
.footer h3{
  font-size: 26px;
  font-family: 'Ethnocentric', sans-serif; /* Fallback to sans-serif if font fails to load */
}

.footer {
font-size: 14px;
background-color: #1f1f24;
padding: 50px 0;
color: rgb(255 255 255);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  
}

.footer .footer-links ul a:hover {
  color: #fff;
  
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}
.copyright a {
  color: white;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

hr {
  border-color: #666;
}


/*--------------- Scroll-top -----------------*/
.scroll-top {
position: fixed;
visibility: hidden;
opacity: 0;
right:2px;
bottom: 15px;
z-index: 1099;
background:#834a8b;
width: 44px;
height: 44px;
border-radius: 50px;
transition: all 0.4s;
}

.scroll-top i {
font-size: 24px;
color: #ffffff;
line-height: 0;
}

.scroll-top:hover {
background: #933b6d;
color: #fff;
}

.scroll-top.active {
visibility: visible;
opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
inset: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
transition: all 0.6s ease-out;
width: 100%;
height: 100vh;
}

#preloader:before,
#preloader:after {
content: "";
position: absolute;
border: 4px solid #834a8b;
border-radius: 50%;
animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
animation-delay: -0.5s;
}

@keyframes animate-preloader {
0% {
width: 10px;
height: 10px;
top: calc(50% - 5px);
left: calc(50% - 5px);
opacity: 1;
}

100% {
width: 72px;
height: 72px;
top: calc(50% - 36px);
left: calc(50% - 36px);
opacity: 0;
}
}