/*Body start */
:root {
    --white-100: hsl(206, 5%, 100%);
    --white-200: hsl(206, 5%, 90%);
    --white-300: hsl(206, 5%, 80%);
    --white-400: hsl(206, 5%, 65%);
    --white-500: hsl(206, 5%, 45%);
    --black-100: hsl(210, 21%, 12%);
    --black-200: hsl(210, 21%, 9%);
    --black-300: hsl(210, 21%, 6%);
    --black-400: hsl(210, 21%, 3%);
    --black-500: hsl(210, 21%, 1%);
    --night-100: hsl(217, 27%, 20%);
    --night-200: hsl(217, 27%, 16%);
    --night-300: hsl(217, 27%, 12%);
    --night-400: hsl(215, 27%, 8%);
    --night-500: hsl(215, 27%, 4%);
    --pink-100: hsl(326, 85%, 90%);
    --pink-200: hsl(327, 87%, 80%);
    --pink-300: hsl(329, 86%, 70%);
    --pink-400: hsl(330, 81%, 60%);
    --pink-500: hsl(333, 71%, 50%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
       0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
       0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
       0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark-white {
    color: #fff;
    transition: 0.5s;
}
.light .dark-white {
    color: #223645;
    transition: 0.5s;
}

.light-dark-p {
    
    color: #243b57;
}
.dark .light-dark-p {
    color: #b9cce2;
}

.slick-slider {
    -webkit-user-select: unset;
    -moz-user-select: unset;
    -ms-user-select: unset;
    user-select: unset;
}
/*Body End */

/*Background start */

.over-hid {
    overflow: hidden;
}

.dark .gray-bg {
    background: #240110c9;
    transition: 0.5s;
}
.light .gray-bg {
    background: #9f9f9f59;
    transition: 0.5s;
}
#scrollUp:hover {
    background: #71666b;
}
body {
    background: black;
    transition: 0.5s;
}
body.light {
    background: #ef3a8421;
    transition: 0.5s;
}

body:before {
    content: '';
    position: fixed;
    z-index: -1;
    opacity: 40%;
    filter: blur(100px);
    background-image: linear-gradient(120deg, #ef3a84cf 0%, #0928f3 100%);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    width: 500px;
    height: 500px;
    animation: morph 3s linear infinite;
    transform-style: preserve-3d;
    outline: 1px solid transparent;
    will-change: border-radius;
    left: 35%;
    top: 20%;
}

@keyframes morph{
  0%,100%{
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  34%{
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform:  translate3d(0,5px,0) rotateZ(0.01deg);
  }
  50%{
    opacity: .59;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  67%{
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60% ;
    transform: translate3d(0,-3px,0) rotateZ(0.01deg);
  }
}

@keyframes fadeIn {
  100%{
    transform: scale(1.03);
    opacity: 0;
  }
}
    
/* Background end */

/** Loader Start **/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    overflow: hidden;
  }
  .no-js #loader-wrapper {
    display: none;
  }
  
  #loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--pink-500);
    animation: spin 1.7s linear infinite;
    z-index: 11;
  }
  #loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--white);
    animation: spin-reverse 0.6s linear infinite;
  }
  #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--pink-500);
    animation: spin 1s linear infinite;
  }

  #loader-wrapper img {
    position: absolute;
    animation: 0s;
    z-index: 9999999999;
    width: 120px;
    left: 50%;
    top: 50%;
    margin: -35px 0 0 -60px;
}
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @-moz-keyframes spin {
    0% {
      -moz-transform: rotate(0deg);
    }
    100% {
      -moz-transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes spin-reverse {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-360deg);
    }
  }
  @-moz-keyframes spin-reverse {
    0% {
      -moz-transform: rotate(0deg);
    }
    100% {
      -moz-transform: rotate(-360deg);
    }
  }
  @keyframes spin-reverse {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-360deg);
      -moz-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
      -o-transform: rotate(-360deg);
      transform: rotate(-360deg);
    }
  }
  #loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222;
    z-index: 10;
  }
  
  #loader-wrapper .loader-section.section-left {
    left: 0;
  }
  
  #loader-wrapper .loader-section.section-right {
    right: 0;
  }
  
  /* Loaded styles */
  .loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
  }
  
  .loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
  }
/** Loader End **/

/*NAV start*/
header {
    display: flex;
    align-items: center;
    transition: 0.3s ease-out;
    /* backdrop-filter: blur(8px) brightness(1.2);
    -webkit-backdrop-filter: blur(8px) brightness(1.2); */
    position: fixed;
    z-index: 99999;
    width: 100%;
}
header:before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(0 0 0 / 25%); */
    background: rgb(37 35 42 / 80%);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: -1;
    transition: 0.5s;
}
.header-menu-area {
    width: 100%;
    display: flex;
    flex: 1 1 100%;
}

.os-theme-change {
    display: flex;
    justify-content: right;
    align-items: center;
  }
  
  .switch {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    margin-right: 0.5rem;
    /* width: 40px;
    height: 40px; */
    
    box-sizing: border-box;
      /* box-shadow: 0 15px 25px rgba(0, 0, 0, .6); */
      height: 50px;
      width: 50px;
      color: white;
      margin-left: 15px;
      border-radius: 10px;
      background: #ef3a84;
  }
  .switch:before {
    background: #e7e7e7 none repeat scroll 0 0;
      content: "";
      height: 30px;
      left: -5px;
      margin-top: -15px;
      position: absolute;
      top: 50%;
      width: 1px;
      opacity: 0;
  }
  .switch:hover,
  .switch:focus {
    /* background: #ef3a84; */
    background: #000000;
    transition: all 0.3s ease-out 0s;
  }
  .light .switch:hover,
  .light .switch:focus {
    background: #d8d8e9;
  }
  .switch:hover span,
  .switch:focus span {
    color: var(--white-100);
    transition: all 0.3s ease-out 0s;
  }
  .light .switch:hover span,
  .light .switch:focus span {
    color: var(--night-500);
  }
  
  .bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .bx-sun:before {
    content: "\ec34";
  }
  .bx-moon:before {
    content: "\eb94";
  }
  
  .switch-light, .switch-dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in;
  }
  .switch-light {
    font-size: 18px;
    visibility: visible;
    color: white;
    margin-top: 2px;
  }
  .dark .switch-light {
    font-size: 0rem;
    visibility: hidden;
  }
  .switch-dark {
    font-size: 0rem;
    visibility: hidden;
    color: var(--white-100);
  }
  .dark .switch-dark {
    font-size: 18px;
    visibility: visible;
    margin-top: 2px;
  }

.right-side {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mean-container .mean-nav {
    background: transparent;
    margin-bottom: 15px;
}
.mean-container .mean-nav ul li {
    /* background: rgb(255 255 255 / 20%); */
    background: rgb(0 0 0 / 75%);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}
.mean-container .mean-nav ul li a {
    background: transparent;
    color: white;
    border-top: 1px solid rgb(206 208 244 / 50%);
}
.header__menu ul li a {
    color: #ffffff;
}

.header__menu ul li ul.submenu {
    background: transparent;
}
.header__menu ul li ul.submenu:before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: -1;
    background: rgb(0 0 0 / 25%);
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: rgb(239 58 132);
}

a.bt-btn {
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 15px 15px;
    min-width: 150px;
    border-radius: 10px;
    padding: 5px;
    outline: 0 !important;
    outline-offset: 0;
}
a.bt-btn:before, a.bt-btn:after {
    position: absolute;
    content: "";
    border-radius: 10px;
    background: transparent;
    z-index: 2;
    width: 10%;
    height: 25%;
    transition: 0.35s;
}

a.bt-btn:before {
    bottom: 0;
    left: 0;
    /* border-left: 1px solid rgb(28, 31, 30);
    border-bottom: 1px solid rgb(28, 31, 30); */
    border-left: 1px solid rgb(255 255 255);
    border-bottom: 1px solid rgb(255 255 255);
}

a.bt-btn:after {
    top: 0;
    right: 0;
    /* border-right: 1px solid rgb(28, 31, 30);
    border-top: 1px solid rgb(28, 31, 30); */
    border-right: 1px solid rgb(255 255 255);
    border-top: 1px solid rgb(255 255 255);
}

a.bt-btn span {
    color: rgb(255, 255, 255);
    background-color: rgb(239 58 132);
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
    border-radius: 10px;
    line-height: normal;
}

a.bt-btn:hover {
    background: transparent;
}

a.bt-btn:hover:before, 
a.bt-btn:hover:after {
    width: 99%;
    height: 99%;
}

a.bt-btn:hover span {
    background-color: rgb(0 0 0);
}

.mean-container a.meanmenu-reveal {
    top: 4px;
}
.mean-container a.meanmenu-reveal.meanclose {
    top: 9px;
}
.mean-container .mean-bar {
    height: 15px;
}

.light header:before {
    /* background: rgb(206 146 171 / 29%); */
    /* background: rgb(206 146 171 / 43%); */
    background: #664a64e8;
    transition: 0.5s;
}

@media only screen and (max-width: 992px) {
    header .d-lg-block {
        display: none !important;
    }
    .header-menu-area {
        padding-top: 15px;
    }
    .mean-container .mean-nav ul li a:hover {
        background: rgb(239 58 132);
    }
}
@media only screen and (min-width: 993px) {
    .header__menu ul li.d-md-up {
        display: none;
    }
    .header__menu ul li a:before {
        position: absolute;
        top: 60%;
        left: 50%;
        color: transparent;
        content: '•';
        text-shadow: 0 0 transparent;
        font-size: 13pt;
        -webkit-transition: text-shadow 0.3s, color 0.3s;
        -moz-transition: text-shadow 0.3s, color 0.3s;
        transition: text-shadow 0.3s, color 0.3s;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
        pointer-events: none;
    }
    .header__menu ul li a.active:before {
        color: #fff;
        text-shadow: 10px 0 #fff, -10px 0 #fff;
    }
    .header__menu ul li a:hover:before {
        color: #fff;
        text-shadow: 10px 0 #fff, -10px 0 #fff;
    }
    .header__menu ul li ul.submenu li {
        text-align: center;
    }
    
}

@media only screen and (max-width: 767px) {
    .mob-hide {
        display: none;
    }
    .menu-logo-contain {
        flex: 1 1 30%;
        width: 30%;
    }
    .logo img {
        max-height: 70px;
        max-width: 165px;
        width: auto;
    }
    .right-side {
        position: absolute;
        align-items: end;
        top: 30px;
    }
    .os-theme-change {
        justify-content: right;
    }
    .mean-container a.meanmenu-reveal {
        top: 13px;
    }
    .mean-container a.meanmenu-reveal.meanclose {
        top: 15px;
    }
}
@media only screen and (max-width: 767px) and (min-width: 576px) {
    .right-side {
        position: absolute;
        align-items: end;
        /* right: 55px; */
        right: auto;
        left: -20%;
    }
}
@media only screen and (max-width: 575px) {
    .right-side {
        position: absolute;
        align-items: end;
        /* right: 55px; */
        right: 60px;
        top: 30px;
    }
}
/*NAV End*/

/*Breadcrumb start*/
.breadcrumb-bg .page-title {
    margin-top: 90px;
}
.breadcrumb-bg {
    height: 100vh;
}
/*Breadcrumb end*/

/* Servicebox start*/
.service-box {
    border-radius: 10px;
}
.service-box .service-thumb i {
    animation: morph 3s linear infinite;
}
.dark .service-box {
    background: rgb(164 25 83 / 40%);
    transition: 0.5s;
}
.light .service-box {
    background: rgb(140 140 140 / 40%);
    transition: 0.5s;
}
.dark .service-box .service-content h3 a {
    color: white;
}
.dark .service-box .service-content h3 a:hover {
    color: #ef3a84;
}
.dark .service-box .service-content p {
    color: #cee4ff;
    transition: 0.5s;
}
.light .service-box .service-content p {
    color: black;
    transition: 0.5s;
}
/* Servicebox end*/

/* section about start */
.about-exp {
    background: rgb(255 224 237 / 55%);
    transition: 0.5s;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 10px;
    box-shadow: none;
}
.light .about-exp {
    border: 1px solid;
}
.dark .about-exp {
    background: rgb(164 25 83 / 35%);
}
.dark .exp-content h2 {
    color: #ffffff;
    transition: 0.5s;
}
.dark .exp-content p {
    color: #ededed;
    transition: 0.5s;
}
@media (max-width: 767px) {
    .about-exp {
        bottom: 0;
        left: unset;
        right: -10px;
        top: -30px;
        position: relative;
    }
}
/* Section about end */

/* Accordion start */
.accordion {
    margin: 40px 0;
  }
  .accordion .item {
    border: none;
    margin-bottom: 20px;
    background: none;
  }
  .t-p {
    color: #b9cce2;
    padding: 20px 30px 0px 30px;
  }
  .light .t-p {
    color: #243b57;
  }
  .accordion .item .item-header h2 button.btn.btn-link {
    background: #333435;
    color: white;
    border-radius: 0px;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 2.5;
    text-decoration: none;
    background: rgb(164 25 83 / 40%);
    transition: 0.5s;
  }
  .light .accordion .item .item-header h2 button.btn.btn-link {
    background: rgb(72 62 62 / 32%);
    transition: 0.5s;
    color: #000000;
  }
  .accordion .item .item-header {
    border-bottom: none;
    background: transparent;
    padding: 0px;
    margin: 2px;
  }
  
  .accordion .item .item-header h2 button {
    color: white;
    font-size: 20px;
    padding: 15px;
    display: block;
    width: 100%;
    text-align: left;
  }
  
  .accordion .item .item-header h2 i {
    float: right;
    font-size: 30px;
    color: #ef3a84;
    background-color: black;
    transition: 0.5s;
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
  }
  .light .accordion .item .item-header h2 i {
    color: white;
    background-color: #ef3a84;
    transition: 0.5s;
  }
  
  button.btn.btn-link.collapsed i {
    transform: rotate(0deg);
  }
  
  button.btn.btn-link i {
    transform: rotate(180deg);
    transition: 0.5s;
  }

  .card-vid {
    border-radius: 10px;
  }
/* Accordion end */

/*Hero Start*/
.extra-filter-1 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.single-slider.slick-slide {
    height: 100vh;
}
.slick-track .hero-text {
    margin-top: 90px;
}

.bg-overlay-1 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    z-index: 0;
}
.bg-overlay-1:before {
    position: absolute;
    content: "";
    display: block;
    /* background: #000000c2; */
    background: #45041e99;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.video-bg {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}
.light .bg-overlay-1:before {
    /* background: #bbc2f5d6; */
    background: #64294a80;
}
/*Hero end*/

/*Icons Start*/
.single-item .mv-icon i {
    min-width: 40px;
    display: flex;
    justify-content: center;
}
/*Icons End*/

/*CTA start*/
.cta-area::before {
    position: absolute;
    content: "";
    background-color: rgb(0 0 0 / 70%);
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.light .cta-area::before {
    background-color: rgb(22 16 45 / 80%);
}
.cta-text p {
    color: #b9cce2;
}
/* CTA End */

/** Contact Start **/
.myForm .form-group.form-6 {
    float: left;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    width: 50%;
}
.myForm .form-group.form-12 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.myForm .input,
.myForm .textarea {
    position: relative;
    display: block;
}

.myForm .icon-append, 
.myForm .icon-prepend {
    position: absolute;
    top: 5px;
    width: 29px;
    height: 29px;
    font-size: 15px;
    line-height: 29px;
    text-align: center;
}

.myForm .icon-append, 
.myForm .icon-prepend {
    color: #d5d5e9;
    z-index: 1;
}
.light .myForm .icon-append, 
.light .myForm .icon-prepend {
    color: #252527;
}

.myForm .icon-append {
    right: 5px;
    padding-left: 3px;
    border-left-width: 1px;
    border-left-style: solid;
}

.myForm .input .icon-append + input, 
.myForm .textarea .icon-append + textarea {
    padding-right: 46px;
    background: hsl(220deg 17.06% 40.08% / 36%);
    backdrop-filter: blur(10px);
    color: white;
}

.dark .myForm .input .icon-append + input, 
.dark .myForm .textarea .icon-append + textarea {
    background: black;
}

.light .myForm label {
    color: black;
}
.dark .myForm label {
    color: #fff;
}

.myForm .btn-primary.submit-button {
    color: #fff;
    background-color: #ef3a84;
    border-color: #e4e4f3;
    border-radius: 10px !important;
}
.myForm .btn-primary.submit-button:hover {
    background-color: #11103f;
}

.myForm .input input,
.myForm .select select, 
.myForm .textarea textarea{
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 39px;
    padding: 6px 10px;
    outline: none;
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
    background: #fff;
    text-transform: none;
}

.myForm .textarea textarea {
    height: auto;
    resize: none;
}

.myForm .slidercaptcha.card {
    border-radius: 10px;
    background-color: hsl(220deg 17.06% 40.08% / 36%);
    border-width: 1px;
    border-style: solid;
    border-color: white;
}
.dark .myForm .slidercaptcha.card {
    background-color:black;
}
.myForm .slidercaptcha.card .card-header span {
    color: #ffffff;
}
.light .myForm .slidercaptcha.card .card-header span {
    color: #0c0b0c;
}
.myForm .refreshIcon {
    color: rgb(90 90 255 / 87%);
}

ul.contact-list .contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    background: rgb(164 25 83 / 40%);
    transition: 0.5s;
    padding-top: 15px;
    padding-left: 10px;
    border-radius: 10px;
    padding-bottom: 15px;
}
.light ul.contact-list .contact-list-item  {
    background: rgb(140 140 140 / 40%);
    transition: 0.5s;
}
ul.contact-list .contact-item-icon {
    font-size: 25px;
    color: #223645;
    transition: 0.5s;
}
.dark ul.contact-list .contact-item-icon{
    color: #fff;
    transition: 0.5s;
}

ul.contact-list .contact-item-title {
    margin-bottom: 10px;
}
.dark ul.contact-list .contact-item-title {
    color: white;
}
.light .contact-list-item .contact-info {
    color: black;
}
.contact-list-item .contact-info {
    color: #b9cce2;
    font-size: normal;
    line-height: 1.6;
    transition: 0.25s ease-in-out;
    margin-bottom: 0;
}
.contact-list-item a.contact-info {
    margin-bottom: 15px;
}
ul.contact-list {
    margin-bottom: 30px;
}
@media (max-width: 600px) {
    .myForm .form-group.form-6 {
        width: 100%;
    }
}
@media (max-width: 400px) {
    .myForm .form-group.form-6,
    .myForm .form-group.form-12,
    .myForm .form-sec {
        padding-right: 0;
        padding-left: 0;
    }
    .myForm .slidercaptcha.card .card-body {
        padding-left: 0;
        padding-right: 0;
    }
}
/** Contact End **/

/*Footer Start*/

footer.footer-bg {
    transition: 0.5s;
    background: linear-gradient(170deg, rgba(49, 57, 73, 0.8) 20%, rgba(49, 57, 73, 0.5) 20%, rgba(49, 57, 73, 0.5) 35%, rgba(41, 48, 61, 0.6) 35%, rgba(41, 48, 61, 0.8) 45%, rgba(31, 36, 46, 0.5) 45%, rgba(31, 36, 46, 0.8) 75%, rgba(49, 57, 73, 0.5) 75%), linear-gradient(45deg, rgba(20, 24, 31, 0.8) 0%, rgba(41, 48, 61, 0.8) 50%, rgba(82, 95, 122, 0.8) 50%, rgba(133, 146, 173, 0.8) 100%) #313949;
}
.dark footer.footer-bg {
    transition: 0.5s;
    background: linear-gradient(170deg, rgb(13 21 38 / 80%) 20%, rgb(4 6 8 / 50%) 20%, rgb(26 32 44 / 50%) 35%, #1e2634eb 35%, rgb(28 36 52 / 80%) 45%, rgba(31, 36, 46, 0.5) 45%, rgba(31, 36, 46, 0.8) 75%, rgba(49, 57, 73, 0.5) 75%), linear-gradient(45deg, rgba(20, 24, 31, 0.8) 0%, rgb(8 12 20 / 80%) 50%, rgb(31 26 45 / 81%) 50%, rgb(60 68 84 / 80%) 100%) #313949;
}

.footer-menu-2 {
    display: grid;
    grid-auto-flow: column;
    -webkit-box-direction: normal;
    width: 100%;
}
.footer-menu-2 ul {
    overflow: hidden;
    display: grid;
    grid-auto-columns: 50%;
    grid-auto-flow: column;
    -webkit-box-direction: normal;
    width: 100%;
}
.footer-menu-2 ul li {
    float: left;
    margin-bottom: 12px;
    width: 100%;
    margin-left: 20px;
    list-style: circle;
}

footer .break-w {
    word-break: break-word;
}
.footer-menu-2 ul li::marker {
    color: #ef3a84;
}
.footer-menu-2 ul li:nth-child(n + 4) {
    grid-column: 2;
}
.footer-menu-2 ul.footer-list-contact {
    display: flex;
    flex-direction: column;
}
.footer-menu-2 ul.footer-list-contact li {
    float: unset;
    margin-bottom: 0;
    width: 100%;
    margin-left: 0;
    display: block;
    color: #ffffff;
    /* margin-bottom: 10px; */
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
}
.footer-menu-2 ul.footer-list-contact li i {
    color: #ffffff;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
}
.footer-text p {
    color: #ffffff;
}
.footer-menu-2 ul li a {
    /* color: white; */
    color: #b9cce2;
    width: 100%;
    display: grid;
    padding-right: 30px;
    font-size: 15px;
  line-height: 26px;
}
.footer-menu-2 ul li a:hover {
    color: #ef3a84;
}
.footer-menu-2 ul li:hover::marker {
    color: white;
}
.footer-menu-2 ul.footer-list-contact li a {
    display: block;
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 26px;
}
.footer-menu-2 ul.footer-list-contact li p {
    color: white;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
}

.copyright-area ul.footer-menu {
    text-align: right;
    list-style: none;
    margin: 0;
    padding: 0;
}
.copyright-area ul.footer-menu li {
    margin-left: 1.1em;
    display: inline-block;
}
.copyright-area ul.footer-menu li:first-child {
    margin-left: 0;
}
.copyright-area ul.footer-menu li a {
    color: #b9cce2;
}

.copyright-area ul.footer-menu li a:hover {
    color: #ef3a84;
}
.copyright-area {
    background: rgb(0 0 0 / 25%);
    transition: 0.5s;

}
.light .copyright-area {
    transition: 0.5s;
    background: rgb(206 146 171 / 43%);
}
@media (max-width: 991px) {
    .copyright-area ul.footer-menu li {
            display: flex;
        margin-bottom: 10px;
        margin-top: 5px;
        justify-content: center;
        margin-left: auto;
    }
}
@media (max-width: 767px) { 
    .footer-menu-2 ul {
        display: flex;
        flex-direction: column;
    }
    .copyright-area .footer-copyright {
        justify-content: center;
        display: flex;
        margin-bottom: 15px;
    }
    .copyright-area ul.footer-menu li {
        margin-bottom: 15px;
    }
}
/*Footer End*/