/** Nav Start **/

.navbar {
    padding-top: 0;
    background: transparent;
    padding-bottom: 0;
    z-index: 99;
    top: 0;
    position: fixed;
    width: 100%;
    align-items: center;
    justify-content: center;
    /* height: 70px; */
    height: auto;
    left: 0;
    right: 0;
    background: #343434a3;
    height: 90px;
    backdrop-filter: blur(4px);
}
#menu.toggled + .navbar {
    background: transparent;
    backdrop-filter: unset;
}
.light .navbar-brand .logo-one {
    display: flex;
}
.light .navbar-brand .logo-two {
    display: none;
}
.dark .navbar-brand .logo-one {
    display: none;
}
.dark .navbar-brand .logo-two {
    display: flex;
}
.navbar-expand-md {
    justify-content: center;
}
.navbar-brand {
    white-space: nowrap;
    /* margin-top: 18px; */
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 30%) 25%, rgb(0 0 0 / 30%) 75%, rgb(0 0 0 / 0%) 100%);
    box-shadow: 0 0 25px rgb(0 0 0 / 10%), inset 0 0 1px rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    width: 180px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.light .navbar-brand {
    background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 50%) 25%, rgb(255 255 255 / 50%) 75%, rgb(255 255 255 / 0%) 100%);
    box-shadow: 0 0 25px rgb(255 255 255 / 10%), inset 0 0 1px rgba(255, 255, 255, 0.6);
}
.navbar-brand img {
    max-width: 150px;
    margin: 0 auto;
}
.nav #menu.toggled + .navbar .navbar-brand {
    display: none;
}
#menu.toggled a.logo-open {
    max-width: 210px;
    max-height: 90px;
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    top: 46px;
    left: 50%;
    z-index: 99;
    cursor: pointer;
}
#menu-toggle {
    background-color: white;
    border: none;
    border-radius: 50%;
    top: 0px;
    /* box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08); */
    box-shadow: 0.063em 0.35em 1.563em rgba(0, 0, 0, 0.38);

    cursor: pointer;
    height: 70px;
    left: 0px;
    margin: 10px;
    position: fixed;
    width: 70px;
    z-index: 99;
    left: unset;/*change x*/
    position: relative;/*change x*/
}
#menu-toggle i {
    color: #64b5f6;
    font-size: 2vh;
    height: 3vh;
    line-height: 3vh;
    text-align: center;
    width: 3vh;
}

#menu {
    height: 100vh;
    opacity: 0;
    position: absolute;
    /* transform: translateX(-50%); */
    transform: translateY(-50%);
    transition: opacity 250ms, transform 250ms;
    transition-delay: 300ms;
    width: 40vh;
    z-index: 99;
    top: 0;
    height: 330px;
    width: 100%;
    left: 0;
    position: fixed;
    transform: scale(0.01);
  }
  #menu.toggled {
    opacity: 1;
    /* transform: translateX(0%); */
    transform: translateY(0%);
    transition-delay: 0ms;
  }
  #menu.toggled #menu-quick-options .menu-quick-option {
    opacity: 1;
    /* transform: translateX(0%); */
    transform: translateX(0%) translateY(75px);
  }
  #menu.toggled #menu-quick-options .menu-quick-option:first-of-type, 
  #menu.toggled #menu-quick-options .menu-quick-option:last-of-type {
    /* transform: translateX(-50%); */
    transform: translateX(0%);
  }
  #menu.toggled #menu-full-options .menu-full-option {
    opacity: 1;
    transform: translateX(-0.5vh);
  }
  #menu.toggled #menu-full-options .menu-full-option:first-of-type, 
  #menu.toggled #menu-full-options .menu-full-option:last-of-type {
    /* transform: translateX(-4vh); */
    transform: translateX(0) translateY(-70px);
  }
  #menu.toggled #menu-full-options .menu-full-option:nth-of-type(2),
  #menu.toggled #menu-full-options .menu-full-option:nth-of-type(3) {
    /* transform: translateX(-2vh); */
    transform: translateX(0) translateY(50px);
  }
  #menu.toggled #menu-background-wrapper #menu-background:before {
    transform: translate(-50%, -50%);
    transition-delay: 200ms;
  }
  #menu #menu-background-wrapper {
    height: 100vh;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 40vh;
    z-index: 1;
    width: 100%;
    height: 50%;
  }
  #menu #menu-background-wrapper #menu-background {
    background-color: #64b5f6;
    background: radial-gradient(circle farthest-corner at center center, #091638cf 0%, #000000 100%);
    border-bottom-right-radius: 100%;
    border-top-right-radius: 100%;
    box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
    height: 200vh;
    position: absolute;
    right: 0px;
    top: -50vh;
    width: 200vh;
    height: 500px;
    width: 100%;
    top: -250px;
    border-radius: 50%;
  }
  .light #menu #menu-background-wrapper #menu-background {
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    transition-duration: 150ms;
    background: radial-gradient(circle farthest-corner at center center, #b0aaff6b 0%, #000000 100%);
  }
  #menu #menu-background-wrapper #menu-background:before {
    background-color: rgb(58 56 126 / 49%);
    background: radial-gradient(circle farthest-corner at center center, #1114639c 0%, #000000d9 100%);
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 181, 246, 0.2);
    border-bottom-right-radius: 100%;
    border-top-right-radius: 100%;
    content: "";
    height: 120%;
    left: 50%;
    position: absolute;
    top: 50%;
    /* transform: translate(-100%, -50%); */
    transform: translate(-50%, -70%);
    transition: transform 250ms;
    width: 120%;
    z-index: -1;
    border-radius: 50%;
    height: 200%;
  }
  .light  #menu #menu-background-wrapper #menu-background:before {
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    transition-duration: 150ms;
    background: radial-gradient(circle farthest-corner at center center, #adadf482 0%, #000000d9 100%);
  }
  #menu .menu-profile-img {
    /* border-radius: 500px; */
    /* box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.15); */
    display: block;
    /* height: 40vh; */
    /* left: 0px; */
    object-fit: unset;
    position: absolute;
    /* top: 50%; */
    transform: translate(-50%, -50%);
    /* width: 40vh; */
    z-index: 2;
    width: 100%;
    height: auto;
    top: 46px;
    left: 50%;
    border-radius: unset;
    max-width: 290px;
    max-height: 90px;
    box-shadow: unset;
  }
  #menu .menu-profile-image-light {
    display: none;
  }
  .dark #menu .menu-profile-image-dark {
    display: block;
  }
  .light #menu .menu-profile-image-dark {
    display: none;
  }
  .light #menu .menu-profile-image-light {
    display: block;
  }

  #menu.toggled:before {
    content: '';
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    background: #101a3bcc;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  #menu #menu-quick-options {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 40vh;
    justify-content: space-around;
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    width: 20vh;
    z-index: 3;
    height: 70px;
    /* width: 400px; */
    top: 100px;
    flex-direction: row;
    justify-content: space-evenly;
    /* left: 8.5%; */
    right: 0;
    width: 40%;
    left: -10%;
    justify-content: space-between;
  }
  #menu #menu-quick-options .menu-quick-option {
    align-items: center;
    background-color: white;
    border: none;
    border-radius: 8vh;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    justify-content: center;
    opacity: 0;
    padding: 0px;
    text-decoration: none;
    transform: translateX(-30%) scale(0.25);
    transition: opacity 150ms, transform 150ms;
    /* width: 8vh; */
    /* height: 8vh; */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    flex-direction: column;
  }
  #menu #menu-quick-options .menu-quick-option span.links__text {
    position: absolute;
    /* width: 100%;
    left: 0; */
    width: 140px;
    left: -50%;
    text-align: center;
    height: calc(8px* 2);
    font-size: calc(8px* 2);
    bottom: calc(-2px* 8);
    color: white;
  }
  
  #menu #menu-quick-options .menu-quick-option.active span.links__text {
    text-decoration: underline;
  }
  #menu #menu-full-options .menu-full-option.active span.links__text__2 {
    text-decoration: underline;
  }
  #menu #menu-quick-options .menu-quick-option:hover {
    background-color: #f0f0f0;
  }

  #menu #menu-quick-options a.menu-quick-option:after {
    content: "";
    background-color: transparent;
    width: 70px;
    height: 70px;
    border: 2px dashed white;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s cubic-bezier(.53,-.67,.73,.74);
    transform: none;
    opacity: 0;
    
  }
  #menu #menu-quick-options a.menu-quick-option:hover:after {
    transition: all .3s cubic-bezier(.37,.74,.15,1.65);
    transform: scale(1.1);
    opacity: 1;
  }

  #menu #menu-quick-options .menu-quick-option:hover .tooltip {
    opacity: 1;
    transform: translateX(100%);
  }
  #menu #menu-quick-options .menu-quick-option:first-of-type {
    transform: translate(-80%, 30%) scale(0.5);
  }
  #menu #menu-quick-options .menu-quick-option:last-of-type {
    transform: translate(-80%, -30%) scale(0.5);
  }
  #menu #menu-quick-options .menu-quick-option i {
    color: #293ca0;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    width: 24px;
  }
  #menu #menu-quick-options .menu-quick-option .tooltip {
    background-color: #1e1e1e;
    border-radius: 0.5vh;
    box-shadow: 0px 0px 1vh 0.25vh rgba(0, 0, 0, 0.08);
    color: white;
    font-size: 1em;
    opacity: 0;
    padding: 1vh;
    pointer-events: none;
    position: absolute;
    right: -1vh;
    transform: translateX(90%);
    transition: opacity 250ms, transform 250ms;
  }
  #menu #menu-full-options {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 60vh;
    justify-content: space-around;
    left: 44vh;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20vh;
    z-index: 2;
    flex-direction: row;
    top: 300px;
    width: 100%;
    height: 70px;
    left: 0;
  }
  #menu #menu-full-options .menu-full-option {
    align-items: center;
    /* background-color: transparent; */
    border: none;
    cursor: pointer;
    display: flex;
    gap: 1vh;
    opacity: 0;
    padding: 1vh;
    text-decoration: none;
    transform: translateX(-2vh);
    transition: opacity 150ms, transform 150ms;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08);
    justify-content: center;
    /* padding: 0px; */
    text-decoration: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    flex-direction: column;
  }
  #menu #menu-full-options .menu-full-option span.links__text__2 {
    position: absolute;
    width: 140px;
    left: -50%;
    text-align: center;
    height: calc(8px* 2);
    font-size: calc(8px* 2);
    bottom: calc(-2px* 8);
    color: white;
  }
  #menu #menu-full-options .menu-full-option:hover {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 10px 4px;
    background-color: #f0f0f0;
  }
  #menu #menu-full-options .menu-full-option:after {
    content: "";
    background-color: transparent;
    width: 70px;
    height: 70px;
    border: 2px dashed white;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s cubic-bezier(.53,-.67,.73,.74);
    transform: none;
    opacity: 0;
  }

  #menu #menu-full-options .menu-full-option:hover:after {
    transition: all .3s cubic-bezier(.37,.74,.15,1.65);
    transform: scale(1.1);
    opacity: 1;
  }

  #menu #menu-full-options .menu-full-option:first-of-type, 
  #menu #menu-full-options .menu-full-option:last-of-type {
    transform: translateX(-6vh);
  }
  #menu #menu-full-options .menu-full-option:nth-of-type(2), 
  #menu #menu-full-options .menu-full-option:nth-of-type(4) {
    transform: translateX(-4vh);
  }
  #menu #menu-full-options .menu-full-option i,
  #menu #menu-full-options .menu-full-option h3 {
    color: #293ca0;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
  }
  
  @media (max-width: 1200px) {
    #menu {
      /* width: 30vh; */
    }
    #menu #menu-background-wrapper {
      /* width: 30vh; */
    }
    #menu .menu-profile-img {
        max-width: 210px;
        max-height: 90px;
    }
    #menu #menu-quick-options {
        width: 45%;
        left: -18%;
    }
    #menu #menu-full-options {
      /* left: 34vh; */
    }
  }
  @media (max-width: 991px) {
    #menu {
      /* width: 25vh; */
    }
    #menu #menu-background-wrapper {
      /* width: 25vh; */
    }
    #menu .menu-profile-img {
        max-width: 160px;
        max-height: 90px;
    }
    #menu #menu-quick-options {
        width: 100%;
        left: -100%;
        flex-direction: column;
        height: auto;
        top: 205px;
    }
    #menu #menu-quick-options .menu-quick-option {
        width: 220px;
        height: 60px;
        border-radius: 60px;
        flex-direction: row;
        justify-content: flex-start;
        transform: translateX(0%) translateY(0px) !important;
        margin-bottom: 15px;
        gap: 1vh;
    }
    
    #menu #menu-full-options {
        left: 0;
        top: 470px;
        flex-direction: column;
        right: 0;
        height: auto;
        justify-content: center;
        align-items: center;
    }
    #menu #menu-quick-options .menu-quick-option i {
        margin: 15px;
    }
    #menu #menu-quick-options .menu-quick-option span.links__text {
        position: relative;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    height: auto;
    color: black;
    text-align: right;
    }
    #menu #menu-background-wrapper #menu-background {
        border-radius: 25%;
        height: 562px;
    }
    #menu #menu-background-wrapper #menu-background:before {
        height: 220%;
        border-radius: 25%;
    }
    #menu.toggled #menu-full-options .menu-full-option:first-of-type, 
    #menu.toggled #menu-full-options .menu-full-option:last-of-type {
        transform: translateX(0) translateY(0);
    }
    #menu.toggled #menu-full-options .menu-full-option:nth-of-type(2), 
    #menu.toggled #menu-full-options .menu-full-option:nth-of-type(3) {
        transform: translateX(0) translateY(0);
    }
    
    #menu #menu-full-options .menu-full-option {
        height: 60px;
    margin-bottom: 15px;
    border-radius: 60px;
    width: 220px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0;
    }
    #menu #menu-full-options .menu-full-option span.links__text__2 {
        position: relative;
        bottom: 0;
        top: 0;
        left: 0;
        height: auto;
        font-size: 16px;
        color: black;
        text-align: right;
    }
    #menu #menu-full-options .menu-full-option i, 
    #menu #menu-full-options .menu-full-option h3 {
        margin: 15px;
    }
    #menu #menu-quick-options a.menu-quick-option:after,
    #menu #menu-full-options .menu-full-option:after {
        display: none;
    }
    #menu #menu-quick-options a.menu-quick-option:hover:before,
    #menu #menu-full-options a.menu-full-option:hover:before {
        transition: all .3s cubic-bezier(.37,.74,.15,1.65);
        transform: scale(1.1);
        opacity: 1;
        content: "";
        background-color: transparent;
        width: 100%;
        height: 60px;
        border: 2px dashed white;
        border-color: transparent;
        display: block;
        border-radius: 60px;
        position: absolute;
    }
    #menu #menu-quick-options a.menu-quick-option:hover,
    #menu #menu-full-options a.menu-full-option:hover {
        background-color: #293ca0;
    }
    .light #menu #menu-quick-options a.menu-quick-option:hover,
    .light #menu #menu-full-options a.menu-full-option:hover {
        background-color: #5260ac;
    }
    #menu #menu-quick-options a.menu-quick-option:hover i,
    #menu #menu-full-options a.menu-full-option:hover i {
        color: #ffffff;
    }
    #menu #menu-quick-options a.menu-quick-option:hover i.bx:after,
    #menu #menu-full-options a.menu-full-option:hover i.bx:after {
        transition: all .3s cubic-bezier(.37,.74,.15,1.65);
        transform: scale(1.1);
        opacity: 1;
        content: "";
        background-color: transparent;
        width: 32px;
        height: 32px;
        border: 2px dashed white;
        display: block;
        border-radius: 60px;
        position: absolute;
        top: 14px;
        left: 11px;
    
    }
    #menu #menu-quick-options a.menu-quick-option:hover span.links__text,
    #menu #menu-full-options a.menu-full-option:hover span.links__text__2 {
        color: #ffffff;
    }
  }
  @media (prefers-reduced-motion) {
    #menu {
      transition: none;
    }
    #menu #menu-quick-options .menu-quick-option {
      transition: none;
    }
    #menu #menu-full-options .menu-full-option {
      transition: none;
    }
    #menu #menu-background-wrapper #menu-background:before {
      transition: none;
    }
  }
  @media (max-width: 425px) {
    #menu.toggled a.logo-open {
        max-width: 110px;
    }
  }
  @media (max-width: 400px) {
    .navbar-brand {
        margin-top: 26px;
        margin-left: auto;
        margin-right: auto;
        width: 125px;
        height: 40px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    .navbar-brand img {
        max-width: 110px;
        margin-top: 0px;
    }


  }

/*nav button start*/
  .icon-1,
.icon-2,
.icon-3 {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 32px;
  height: 3px;
  background-color: #293ca0;
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.icon-1 {
  transform: translateY(-8px);
  animation-delay: 100ms;
}

.icon-3 {
  transform: translateY(8px);
  animation-delay: 250ms;
}

.hamburger-icon {
  position: absolute;
  height: 60px;
  width: 60px;
  top: 10%;
  left: 3%;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
}
.hamburger-icon:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.icon-1.a {
  transform: rotate(40deg);
}

.icon-3.b {
  transform: rotate(-40deg);
}

.icon-2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

/** SWITCH Dark-light mode start **/
.os-theme-change {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .switch {
    display: block;
    user-select: none;
    box-sizing: border-box;
    color: #293ca0;
    transition: all 0.3s ease-in;
    background-color: white;
    border: none;
    border-radius: 50%;
    top: 0px;
    box-shadow: 0.063em 0.35em 1.563em rgba(0, 0, 0, 0.38);
    cursor: pointer;
    height: 70px;
    right: 0px;
    margin: 10px;
    position: fixed;
    width: 70px;
    z-index: 99;
    left: unset;/*change x*/
    float: right;/*change x*/
    position: relative;/*change x*/

  }
  .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-color: rgb(255 255 255 / 75%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    -webkit-backdrop-filter: blur(4px); 
    backdrop-filter: blur(4px);
    transform: scale(1.1);
  }
  .switch:hover span,
  .switch:focus span {
    color: black;
  }
  
  .bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: flex;
    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;
    display: flex;
  }
  .switch-light {
    font-size: 28px;
    visibility: visible;
    color: var(--black-300);
  }
  .light .switch-light {
    color: #293ca0;
  }
  .dark .switch-light {
    font-size: 0rem;
    visibility: hidden;
  }
  .switch-dark {
    font-size: 0rem;
    visibility: hidden;
    color: var(--white-100);
  }
  .dark .switch-dark {
    font-size: 28px;
    visibility: visible;
  }

  .dark .switch-dark .bx-moon {
    /* box-shadow: inset -44px -3px 14px 13px rgb(105 106 117 / 50%); */
    border-radius: 50%;
  }
  .dark header .header_toggle i.bx-menu:before {
    /* box-shadow: inset -44px -3px 14px 13px rgb(105 106 117 / 50%); */
    border-radius: 50%;
  }
/*----*/
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.switch:hover i {
    animation: rotation 1.5s linear forwards infinite;
}

/** SWITCH Dark-Light mode end **/

/*nav button end*/
/** Nav End **/

/**Buttons start**/
.default-btn {
    border: 2px dashed transparent;
    border-radius: 60px;
    transition: all .3s cubic-bezier(.37,.74,.15,1.65);
}
.banner-form .default-btn {
    border: 2px dashed transparent;
}
.default-btn:hover {
    border: 2px dashed white;

}
/**Buttons end**/
/** Styles start **/

.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;
}
.bg-overlay-1 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    z-index: 0;
}
.light .bg-overlay-1:before {
    background: #bbc2f5d6;
}

.bg-overlay-1:before {
    position: absolute;
    content: "";
    display: block;
    background: #000000c2;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.banner-form {
    
    background: radial-gradient(circle farthest-corner at center center, #bfbfd9b0 0%, #66789296 100%);
    -webkit-backdrop-filter: blur(25px); 
    backdrop-filter: blur(25px);
    -webkit-box-shadow: 0 0 15px #1B2132;
    box-shadow: 0 0 15px #1B2132;
    transition: all 0.3s ease-in;
}
.light .banner-form {
    transition: all 0.3s ease-in;
    background: radial-gradient(circle farthest-corner at center center, #0916389e 0%, #000000b3 100%);
}
.dark .banner-form h3 {
    color: white;
    transition: 0.5s;
}
.banner-form h3 {
    color: #ffffff;
    transition: 0.5s;
}

.banner-area::before {
    background-image: -webkit-gradient(linear, left top, right top, from(#0b172aeb), to(#0509347d));
    background-image: linear-gradient(to right, #0b172aeb, #0509347d);
}
.light .banner-area::before {
    background-image: -webkit-gradient(linear, left top, right top, from(#ffffff85), to(#ffffff00));
    background-image: linear-gradient(to right, #ffffff85, #ffffff00);
}
.dark .banner-content h1,
.dark .banner-content p {
    color: white;
    transition: 0.5s;
}
.light .banner-content h1,
.light .banner-content p {
    transition: 0.5s;
}
body {
    /* background: linear-gradient(45deg, #bfbfd9, #fff); */
    background: linear-gradient(180deg, #bfbfd9, #ededed);
    transition: 0.5s;
}
body.dark {
    /* background: radial-gradient(circle farthest-corner at center center, #000000 0%, #001a57 100%); */
    background: linear-gradient(180deg, #000000, #00094d);
}

.specialty-list .specialty-list-card {
    background: radial-gradient(100% 100% at 0% 0%, rgb(255 255 255 / 45%) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    -webkit-box-shadow: 1px 1px 43px #1b21323d;
    box-shadow: 1px 1px 43px #1b21323d;
    border: solid 1px #58edc3;
}
.specialty-list .specialty-list-card img {
    background: transparent;
}
.dark .specialty-list .specialty-list-card img {
    background: transparent;
    color: white;
    filter: grayscale(20) brightness(10.5);
}
.dark .specialty-list .specialty-list-card:hover img {
    filter: unset;
}
.dark .specialty-list .specialty-list-card {
    -webkit-box-shadow: 1px 1px 43px #f0f0f03d;
    box-shadow: 1px 1px 43px #f0f0f03d;
}
.dark .specialty-list .specialty-list-card h3,
.dark .specialty-list .specialty-list-card p {
    color: white;
}
.dark .specialty-list .specialty-list-card:hover h3,
.dark .specialty-list .specialty-list-card:hover p {
    color: black;
}


/** Styles end **/
/** Terms start **/
.dark .terms-sec h2,
.dark .terms-sec h4 {
    color: white;
}
.dark .terms-sec p {
    color: #cccccc;
}
.dark .terms-sec ul.list-items.boxy li {
    color: #cccccc;
}
.dark .terms-sec .list-items.list-items-layout2 {
    color: #cccccc;
}
/** Terms End **/
/** Special effects start **/

.mt-50 {
    margin-top: 50px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pt-50 {
    padding-top: 50px;
}
.pb-30 {
    padding-bottom: 30px;
}
.dark .dark-w {
    color: white;
    transition: 0.5s;
}
.dark .dark-teal {
    color: #58edc3;
    transition: 0.5s;
}
.light .light-blue {
    color: #183ca0;
    transition: 0.5s;
}
.light .light-w {
    color: white;
    transition: 0.5s;
}
.light .light-teal {
    color: #58edc3;
    transition: 0.5s;
}
.light .light-g {
    color: #555555;
    transition: 0.5s;
}
.light .light-black {
    color: #000;
    transition: 0.5s;
}
.poz-rel {
    position: relative;
}
.over-hid {
    overflow-x: hidden;
}
.cs-bubbles {
    z-index: -1;
    position: absolute;
    bottom: 3.875em;
    right: -16.25em;
    height: 26.6875em;
    width: 26.1875em;
    /* font-size: min(2.5vw, .7em); */
    font-size: min(2.5vw, 1em);
}
.cs-bubbles:before {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    opacity: 1;
    display: block;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    background: transparent;
    height: 20.625em;
    width: 20.625em;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}
.cs-bubbles:after {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.15;
    display: block;
    border-radius: 50%;
    background: #001f3f;
    height: 16.25em;
    width: 16.25em;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    transition: box-shadow 0.3s;
}

.dark .cs-bubbles:before {
    border-color: #ffffff;
    box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 44px, inset rgba(67, 183, 255, 0.2) 0px 0px 30px, inset rgba(67, 183, 255, 0.2) 0px 0px 55px, inset rgba(67, 183, 255, 0.4) 0px 0px 75px, rgba(67, 183, 255, 0.4) 0px 0px 105px;
}
.dark .cs-bubbles:after {
    background-color: #43b7ff;
}

.text-number.break {
    color: #173ca0;
    margin-left: 100px;
    display: none;
}
.dark .text-number.break {
    color: #58edc3;
}
span.section-divider {
    position: absolute;
    margin: -5px 0 0 -100px;
    transform-origin: top left;
    transform-style: preserve-3D;
}
.light .special-services .icon {
    filter: invert(16%) sepia(97%) saturate(2306%) hue-rotate(215deg) brightness(90%) contrast(88%);
}
.dark .special-services .icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(301deg) brightness(104%) contrast(105%);
}

.special-services .cs-bubbles {
    right: 0;
    left: -10em;
    border: 0;
    top: 30%;
}

@media (max-width: 767px) {
.special-services  .text-number {
    display: none;

}
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2rem);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatAnimation2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3rem);
    }

    100% {
        transform: translateY(0);
    }
}

div#toTop:before {
    content: "";
    background-color: transparent;
    width: 100%;
    height: 100%;
    border: 2px dashed white;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s cubic-bezier(.53,-.67,.73,.74);
    transform: none;
    opacity: 0;
}
div#toTop:hover:before {
    transition: all .3s cubic-bezier(.37,.74,.15,1.65);
    transform: scale(1.1);
    opacity: 1;
}


.img-mask {
    --_g: 10%/45% 45% no-repeat conic-gradient(#000 0 0);
    --_i: 0;
    mask: left var(--_i) top var(--_g), bottom var(--_i) left var(--_g),
      top var(--_i) right var(--_g), right var(--_i) bottom var(--_g);
    /* filter: grayscale(); */
    transition: 0.3s linear;
  }
.img-mask:hover {
    --_i: 10%;
    filter: grayscale();
    /* filter: grayscale(0); */
  }

  .glass.section-bg {
    background: radial-gradient(circle farthest-corner at center center, #bfbfd9b0 0%, #66789296 100%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
  }

  .light .inner-banner .inner-title h3.light-black {
    color: #000;
    transition: 0.5s;
  }

/** Special effect end **/


/** Cards style start **/
.choose-card {
    --s: 200px;
    --c1: #27282f;
    --c2: #2c333f;
    --c3: #242532;
    background: repeating-conic-gradient(from 30deg, #0000 0 120deg, var(--c3) 0 50%) calc(var(--s) / 2) calc(var(--s)* tan(30deg) / 2), repeating-conic-gradient(from 30deg, var(--c1) 0 60deg, var(--c2) 0 120deg, var(--c3) 0 50%);
    background-size: var(--s) calc(var(--s)* tan(30deg));
    box-shadow: 1px 1px 43px #f0f0f03d;
}
.light .choose-card {
    -webkit-box-shadow: 0 0 15px #1B2132;
    box-shadow: 0 0 15px #1B2132;
}
.choose-card h3 {
    color: white;
}
.choose-card p {
    color: white;
}
.choose-card:hover h3 {
    color: #292323;
    
}
.choose-card:hover p {
    color: #555555;
}


/** Cards 2 **/
.about-content ul.glassy li {
    display: block;
    padding-left: 80px;
    position: relative;
    margin-bottom: 25px;
    margin-right: 10px;
    margin-left: 10px;
    background: radial-gradient(circle farthest-corner at center center, #bfbfd9b0 0%, #66789296 100%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    -webkit-box-shadow: 0 0 15px #1B2132;
    box-shadow: 0 0 15px #1B2132;
    transition: all 0.3s ease-in;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.about-content ul.glassy li i {
    margin-left: 5px;
    margin-top: 10px;
}
/** Cards style end **/

/** CTA Start **/
.cta-area {
    position: relative;
    padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    padding-top: 0;
    z-index: 89;
}
.cta-area .cs-container, 
.cta-area .cs-wrapper {
    max-width: 67.5rem;
    position: relative;
    z-index: 1;
}
.cta-area  .cs-wrapper {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
}
.cta-area .cs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem;
    margin: auto;
    background-color: #0c1f3e;
    width: 100%;
    padding: clamp(3rem, 9vw, 6.25rem) clamp(2rem, 7vw, 6.25rem);
    gap: clamp(3rem, 6vw, 4rem);
}

.cta-area .cs-container:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #0c1f3e;
    opacity: 1;
    border-radius: 1rem;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    border: 5px solid rgba(255, 255, 255, 0.1);
}
.cta-area .cs-container:after, 
.cta-area .cs-wrapper:after {
    content: '';
    width: 60%;
    height: clamp(12rem, 25vw, 25rem);
    border-left: 1.25rem solid #0c1f3e;
    border-right: 1.25rem solid #0c1f3e;
    opacity: 1;
    position: absolute;
    display: block;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}
.cta-area .cs-content {
    z-index: 2;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
}
.cta-area .cs-title {
    margin: 0;
    max-width: 60%;
    color: #fff;
    position: relative;
    font-size: clamp(1.9375rem, 3.9vw, 2.55rem);
    line-height: 1.2em;
    font-weight: 900;
    text-align: inherit;
}
.cta-area .cs-lights-wrapper {
    width: 57.75em;
    font-size: min(1.9vw, 1rem);
    position: absolute;
    left: 50%;
    z-index: -1;
    pointer-events: none;
    transform: translateX(-50%) translateY(-100px);
    transition: transform 0.4s;
}
.cta-area .cs-lights {
    width: 57.75em;
    height: auto;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -10;
}
.cta-area .cs-lights-wrapper {
    font-size: min(1.9vw, 1rem);
    width: 44.5625em;
    position: absolute;
    left: 50%;
    z-index: -1;
    pointer-events: none;
    transform: translateX(-50%) translateY(-100px);
    transition: transform 0.4s;
}
.cta-area .cs-lights img {
    width: 100%;
    height: auto;
    overflow-clip-margin: content-box;
    overflow: clip;
}

.cta-area .cs-flare {
    width: 14.625em;
    height: 25.0625em;
    border-radius: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 46%, #ffffff 93%, #ffffff 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 78%, #ffffff 89%, #ffffff 93%, #ffffff 100%);
    filter: blur(1.25em);
    animation-delay: 0.7s;
    opacity: 0;
    position: absolute;
    bottom: -2.6875em;
}

.cta-area .cs-flare.light1 {
    /* left: -1.25em; */
    left: -7.25em;
    animation-delay: 3s;
}

.cta-area .cs-flare:before {
    content: '';
    width: 1.75em;
    height: 1em;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateY(-50%);
}

.cta-area .light2 {
    /* left: 9.9375em; */
    left: 3.9375em;
    animation-delay: 5s;
}
.cta-area .light3 {
    /* left: 21.1875em; */
    left: 15.1875em;
    animation-delay: 0.1s;
}
.cta-area .light4 {
    /* left: 32.9375em; */
    left: 26.9375em;
    animation-delay: 4s;
    display: block;
}
.cta-area .light5 {
    /* left: 44.125em; */
    left: 38em;
    animation-delay: 2.5s;
    display: block;
}
.cta-area .cs-bulb {
    width: 1.75em;
    height: 1em;
    background: #fff;
    border-radius: 50%;
    opacity: 0.3;
    position: absolute;
    display: block;
    bottom: -3.25em;
    z-index: -20;
    animation-delay: 0.7s;
}
.cta-area .cs-bulb1 {
    /* left: 4.875em; */
    left: -1.7em;
    animation-delay: 3s;
}
.cta-area .cs-bulb2 {
    /* left: 16.875em; */
    left: 10.3em;
    animation-delay: 5s;
}
.cta-area .cs-bulb3 {
    /* left: 28em; */
    left: 21.4em;
    animation-delay: 0.1s;
}
.cta-area .cs-bulb4 {
    display: block;
    /* left: 39.6875em; */
    left: 33.1em;
    animation-delay: 4s;
}
.cta-area .cs-bulb5 {
    display: block;
    /* left: 50.9375em; */
    left: 44.4em;
    animation-delay: 2.5s;
}
.dark .cta-area .cs-container {
    z-index: 1;
    position: relative;
    background-color: #001f3f;
}
.dark .cta-area .cs-container:before {
    box-sizing: border-box;
    border: 5px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(ellipse at center, #143f6d 0%, #01060a 78%);
}
.dark .cta-area .cs-container:after {
    border-color: #01060a;
}

.dark .cta-area .cs-lights-wrapper {
    transform: translateX(-50%) translateY(0);
    animation: wrapperZ 0.35s forwards;
    z-index: 2;
}

.dark .cta-area .cs-flare {
    animation: bilboardGlow 15.2s forwards infinite;
    animation-delay: 0.7s;
}

.dark .cta-area .light1 {
    animation-delay: 3s;
}
.dark .cta-area .light2 {
    animation-delay: 5s;
}
.dark .cta-area .light3 {
    animation-delay: 0.1s;
}
.dark .cta-area .light4 {
    animation-delay: 4s;
}
.dark .cta-area .light5 {
    animation-delay: 2.5s;
}
.dark .cta-area .cs-bulb {
    animation: bulbGlow 15.2s forwards infinite;
    animation-delay: 0.7s;
}
.dark .cta-area .cs-bulb1 {
    animation-delay: 3s;
}
.dark .cta-area .cs-bulb2 {
    animation-delay: 5s;
}
.dark .cta-area .cs-bulb3 {
    animation-delay: 0.1s;
}
.dark .cta-area .cs-bulb4 {
    animation-delay: 4s;
}
.dark .cta-area .cs-bulb5 {
    animation-delay: 2.5s;
}


@keyframes bilboardGlow {
    0% {
        opacity: 0.18;
    }

    19% {
        opacity: 0.18;
    }

    20% {
        opacity: 0;
    }

    21% {
        opacity: 0.3;
    }

    59% {
        opacity: 0.18;
    }

    60% {
        opacity: 0;
    }

    61% {
        opacity: 0.18;
    }

    62% {
        opacity: 0;
    }

    63% {
        opacity: 0.25;
    }

    100% {
        opacity: 0.18;
    }
}
@keyframes bulbGlow {
    0% {
        opacity: 1;
    }

    19% {
        opacity: 1;
    }

    20% {
        opacity: 0.3;
    }

    21% {
        opacity: 1;
    }

    59% {
        opacity: 1;
    }

    60% {
        opacity: 0.3;
    }

    61% {
        opacity: 1;
    }

    62% {
        opacity: 0.3;
    }

    63% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}
@media (max-width: 1023px) {
    .cta-area .cs-content {
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    .cta-area .cs-title {
        margin: 0 0 1rem 0;
        max-width: 43.75rem;
        color: #fff;
    }
    .cta-area .cs-lights-wrapper {
        width: 44.5625em;
    }
    .cta-area .cs-lights {
        width: 100%;
    }
    .cta-area .cs-flare.light1 {
        left: 4.375em;
        animation-delay: 3s;
    }
    .cta-area .light2 {
        left: 14.9375em;
        animation-delay: 5s;
    }
    .cta-area .light3 {
        left: 26.6875em;
        animation-delay: 0.1s;
    }
    .cta-area .light4 {
        display: none;
        left: 16.3125em;
    }
    .cta-area .light5 {
        display: none;
        left: 16.3125em;
    }
    .cta-area .cs-bulb1 {
        left: 10.375em;
        animation-delay: 3s;
    }
    .cta-area .cs-bulb2 {
        left: 21.4375em;
        animation-delay: 5s;
    }
    .cta-area .cs-bulb3 {
        left: 33.125em;
        animation-delay: 0.1s;
    }
    .cta-area .cs-bulb4 {
        display: none;
    }
    .cta-area .cs-bulb5 {
        display: none;
    }
}
@media (max-width: 768px) {
    .cta-area .cs-content {
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    .cta-area .cs-title {
        margin: 0 0 1rem 0;
        max-width: 43.75rem;
        color: #fff;
    }
    .cta-area .cs-lights-wrapper {
        width: 44.5625em;
    }
    .cta-area .cs-lights {
        width: 100%;
    }
    .cta-area .cs-flare.light1 {
        left: 4.375em;
        animation-delay: 3s;
    }
    .cta-area .light2 {
        left: 14.9375em;
        animation-delay: 5s;
    }
    .cta-area .light3 {
        left: 26.6875em;
        animation-delay: 0.1s;
    }
    .cta-area .light4 {
        display: none;
        left: 16.3125em;
    }
    .cta-area .light5 {
        display: none;
        left: 16.3125em;
    }
    .cta-area .cs-bulb1 {
        left: 10.375em;
        animation-delay: 3s;
    }
    .cta-area .cs-bulb2 {
        left: 21.4375em;
        animation-delay: 5s;
    }
    .cta-area .cs-bulb3 {
        left: 33.125em;
        animation-delay: 0.1s;
    }
    .cta-area .cs-bulb4 {
        display: none;
    }
    .cta-area .cs-bulb5 {
        display: none;
    }

}
/** CTA End **/

/** Contact Start **/
.flex-wrapper {
    flex-wrap: wrap;
}
.contact-item {
    background: radial-gradient(circle farthest-corner at center center, #bfbfd9b0 0%, #66789296 100%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    -webkit-box-shadow: 0 0 15px #1B2132;
    box-shadow: 0 0 15px #1B2132;
    transition: all 0.3s ease-in;
}
.light .contact-item {
    transition: all 0.3s ease-in;
    background: radial-gradient(circle farthest-corner at center center, #0916389e 0%, #000000b3 100%);
}
.contact-item ul li i {
    transition: all 0.3s ease-in;
    background: radial-gradient(circle farthest-corner at center center, #0916389e 0%, #000000b3 100%);
}
.light .contact-item ul li .content span a {
    color: white;
}
.dark .contact-item ul li .content span a {
    color: white;
}
.light .contact-item ul li .content span {
    color: white;
}
.dark .contact-item ul li .content span {
    color: white;
}

.contact-item ul li .content span a {
    word-break: break-word;
}

.contact-item ul li {
    display: flex;
    align-items: center;
    padding: 10px;
}
.contact-item ul li i {
    text-align: center;
    border-radius: 5px;
    bottom: 0;
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    min-width: 70px;
}
.contact-item ul li .content {
    margin-bottom: 10px;
    padding-bottom: 0;
    padding-top: 0;
    margin-top: 10px;
}
.contact-item ul li .content span {
    margin-left: 20px;
}
.contact-item {
    padding: 25px;
    margin-bottom: 30px;
}

.contact-form {
    background: radial-gradient(circle farthest-corner at center center, #bfbfd9b0 0%, #66789296 100%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}
form .card-body {
    backdrop-filter: blur(25px);
    background: radial-gradient(circle, rgba(191, 191, 217, 0.69) 0%, rgba(102, 120, 146, 0.59) 100%);
}

@media (max-width: 400px) {
    form .card-body {
        padding-left: 0;
        padding-right: 0;
    }
    .contact-form {
        padding: 35px 10px;
    }
}
/** Contact End **/

/** Footer Start **/
.footer-widget {
    margin-bottom: 30px;
    padding-top: 30px;
}
footer.footer-area {
    z-index: 10;
    position: relative;
    /* background-color: #040712; */
    background: radial-gradient(ellipse at bottom, #292d61 30%, #040712 80%);
    padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    padding-top: clamp(6.25rem, 20vw, 18.5rem);
    padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
}

footer.footer-area.no-banner {
    padding-top: clamp(6.25rem, 20vw, 10.5rem);
}
.copy-right-area {
    padding: 15px 0;
    border-top: 1px solid #58edc3;
}
.light footer.footer-area {
    background: radial-gradient(ellipse at bottom, #292d61 30%, #555968 80%);
}

footer .footer-glass {
    background: #747fa5b5;
    padding: 20px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 10px;
    margin-bottom: 20px;
}
.cs-footer-swoosh {
    --footerSwish: #09073d;
    position: absolute;
    top: -1px;
    left: 0;
    height: auto;
    pointer-events: none;
    width: 100%;
}
.dark footer.footer-area.no-banner .cs-footer-swoosh {
    --footerSwish: #00052e;
}
.light .cs-footer-swoosh {
    --footerSwish: #e3e3e8;
}
.light footer.footer-area.no-banner .cs-footer-swoosh {
    --footerSwish: #dadae5;
}
.footer-widget .footer-list li a:hover i {
    color: #58edc3;
}
.footer-widget .footer-list li a:hover {
    color: #e2e2e2;
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-decoration-color: #ffffff;
    text-underline-offset: 0.2em;
}
.footer-widget .footer-list-contact p {
    margin-bottom: 10px;
}
footer .break-w {
    word-break: break-word;
}
.footer-widget .footer-list-contact li a:hover,
.footer-widget .footer-list-contact li:hover a {
    color: #e2e2e2;
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-decoration-color: #ffffff;
    text-underline-offset: 0.2em;
}
.footer-widget .footer-list-contact li a:hover i,
.footer-widget .footer-list-contact li:hover i {
    color: #58edc3;
}

footer .copyright {
    color: #fff;
}
footer .symbol {
    color: #58edc3;
}
footer .footer-legals {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-top: 22px;
    margin-bottom: 0;
    line-height: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
footer .footer-legals a {
    color: #fff;
}
footer .footer-legals a:hover {
    color: #e2e2e2;
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-decoration-color: #ffffff;
    text-underline-offset: 0.2em;
}
@media only screen and (max-width: 550px) {
    footer .footer-legals span {
        display: none;
    }
    footer .footer-legals {
        flex-direction: column;
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }
    footer .footer-legals a {
        margin-top: 20px;
    }
}
/** Footer End **/