/** root **/
:root {
    --shiny-cta-bg: #272d2d;
    --shiny-cta-bg-subtle: #1a1818;
    --shiny-cta-fg: #ffffff;
    --shiny-cta-highlight: #ea504c;
    --shiny-cta-highlight-subtle: #ffffff;

    --size-header: 2.25rem;
	--size-accordion-title: 1.25rem;
	--size-accordion-content: 1rem;
	--animation-speed: 100;
	--slide-ease: cubic-bezier(0.86, 0, 0.07, 1);
	--slide-duration: calc(400ms * 100 / var(--animation-speed));
	--slide-delay: calc(450ms * 100 / var(--animation-speed));
	--circle-duration: calc(900ms * 100 / var(--animation-speed));
}
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  @property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  @property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
  }
  
  @property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false;
  }

.color-mix {
    color: #fff!important;
    mix-blend-mode: difference!important;
    font-style: normal;
    position: relative;
    z-index: 1;
    
}
.title-mainer {
    font-size: 70px;
    line-height: 70px;
}
.zindex-1 {
    z-index: 1;
}

.mb-30 {
    margin-bottom: 30px;
}
.over-hid {
    overflow: hidden;
}

.main-min {
    min-height: 430px;
}
.main .width-100 {
    width: 100%;
}
.max-w-480 {
    max-width: 480px;
}

.shake-bottom {
	-webkit-animation: shake-bottom 5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: shake-bottom 5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
.main-right img.shake-bottom {
    -webkit-animation: shake-bottom 5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both!important;
	        animation: shake-bottom 5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both!important;
}

/**
 * ----------------------------------------
 * animation shake-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes shake-bottom {
    0%,
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
    }
    10% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
      -webkit-transform: rotate(-4deg);
              transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
      -webkit-transform: rotate(4deg);
              transform: rotate(4deg);
    }
    80% {
      -webkit-transform: rotate(-2deg);
              transform: rotate(-2deg);
    }
    90% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
  }
  @keyframes shake-bottom {
    0%,
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
    }
    10% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
      -webkit-transform: rotate(-4deg);
              transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
      -webkit-transform: rotate(4deg);
              transform: rotate(4deg);
    }
    80% {
      -webkit-transform: rotate(-2deg);
              transform: rotate(-2deg);
    }
    90% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
  }

@media screen and (max-width: 1024px) {
    .main-min {
        padding: 120px 20px 50px;
    }
    .main-min .title-mainer {
        font-size: 2.5em;
        line-height: 2.5em;
    }
}
/** Root end **/

/** Button Start **/
.light .shiny-cta {
    --shiny-cta-bg: #ffffff;
    --shiny-cta-bg-subtle: #1a1818;
    --shiny-cta-fg: #000000;
    --shiny-cta-highlight: #ea504c;
    --shiny-cta-highlight-subtle: #1a1818;
    transition: 0.5s;
}
.shiny-cta {
    transition: 0.5s;
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    padding: 1.25rem 2.5rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 360px;
    color: var(--shiny-cta-fg);
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
        padding-box,
      conic-gradient(
          from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
          transparent,
          var(--shiny-cta-highlight) var(--gradient-percent),
          var(--gradient-shine) calc(var(--gradient-percent) * 2),
          var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
          transparent calc(var(--gradient-percent) * 4)
        )
        border-box;
    box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
  
    &::before,
    &::after,
    span::before {
      content: "";
      pointer-events: none;
      position: absolute;
      inset-inline-start: 50%;
      inset-block-start: 50%;
      translate: -50% -50%;
      z-index: -1;
    }
  
    &:active {
      translate: 0 1px;
    }
  }
  
  /* Dots pattern */
  .shiny-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(
        circle at var(--position) var(--position),
        white calc(var(--position) / 4),
        transparent 0
      )
      padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(
      from calc(var(--gradient-angle) + 45deg),
      black,
      transparent 10% 90%,
      black
    );
    border-radius: inherit;
    opacity: 0.4;
    z-index: -1;
  }
  
  /* Inner shimmer */
  .shiny-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(
      -50deg,
      transparent,
      var(--shiny-cta-highlight),
      transparent
    );
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
  }
  
  .shiny-cta span {
    z-index: 1;
  
    &::before {
      --size: calc(100% + 1rem);
      width: var(--size);
      height: var(--size);
      box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
      opacity: 0;
    }
  }
  
  /* Animate */
  .shiny-cta {
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent,
      --gradient-shine;
  
    &,
    &::before,
    &::after {
      animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
      animation-composition: add;
    }
  
    span::before {
      transition: opacity var(--transition);
      animation: calc(var(--duration) * 1.5) breathe linear infinite;
    }
  }
  
  .shiny-cta:is(:hover, :focus-visible) {
    --gradient-percent: 20%;
    --gradient-angle-offset: 95deg;
    --gradient-shine: var(--shiny-cta-highlight-subtle);
  
    &,
    &::before,
    &::after {
      animation-play-state: running;
    }
  
    span::before {
      opacity: 1;
    }
  }
  
  @keyframes gradient-angle {
    to {
      --gradient-angle: 360deg;
    }
  }
  
  @keyframes shimmer {
    to {
      rotate: 360deg;
    }
  }
  
  @keyframes breathe {
    from,
    to {
      scale: 1;
    }
    50% {
      scale: 1.2;
    }
  }
/** Button End **/

/** Background Start **/

.pos-rel {
    position: relative;
}
.main .main-left div:nth-child(2) p {
    font-size: 24px;
    line-height: 32px;
}
.bg-pattern {
    position: absolute;
    /* bottom: -1px; */
    bottom: 0;
    left: 0;
}
.bg-pattern.bg-pattern-flip {
    bottom: unset;
    top: -1px;
    transform: rotate(180deg);
}
.bg-pattern.bg-cta {
    bottom: -1px;
}

.bg-dark-blue {
    background-color: #081620;
    transition: 0.5s;
}
.bg-dark-blue.bg-non-url {
    background: transparent;
    background-color: #081620;
    transition: 0.5s;
}
.third.bg-dark-blue {
    background-color: #081620;
    transition: 0.5s;
}
.light .bg-dark-blue  {
    background-color: #ddd8eb;
    transition: 0.5s;
}
.light .bg-dark-blue.bg-non-url {
    background: transparent;
    background-color: #ddd8eb;
    transition: 0.5s;
}
.light .third.bg-dark-blue  {
    background-color: #ddd8eb;
    transition: 0.5s;
}

.second, .third {
    max-width: unset;
    min-height: unset;
}

svg.wave.bg-pattern .b .c, 
svg.wave.bg-pattern .b .d {
    fill: #081620;
    transition: 0.5s;
}
.light svg.wave.bg-pattern .b .c, 
.light svg.wave.bg-pattern .b .d {
    fill: #ddd8eb;
    transition: 0.5s;
}

svg.wave.bg-pattern.bg-cta .b .c, 
svg.wave.bg-pattern.bg-cta .b .d {
    fill: #000712;
    transition: 0.5s;
}
.light svg.wave.bg-pattern.bg-cta .b .c, 
.light svg.wave.bg-pattern.bg-cta .b .d {
    /* fill: #272D2D; */
    fill: #424343;
    transition: 0.5s;
}

.bg-dragon-scale {
    background-image: url('../assets/decorations/dragon-scales-b.svg');
    background-attachment: fixed;
    background-size: contain;
    background-position: center center;
    position: relative;
    background-repeat: repeat;
    transition: 0.5s;
}
.light .bg-dragon-scale {
    background-image: url('../assets/decorations/dragon-scales-w.svg');
    background-attachment: fixed;
    background-size: contain;
    background-position: center center;
    position: relative;
    background-repeat: repeat;
    transition: 0.5s;
}

.light-black-text {
    color: white!important;
    transition: 0.5s;
}
.light .light-black-text {
    color: black!important;
    transition: 0.5s;
}

.max-wrap-flex {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    min-height: unset;
    align-items: center;
    margin: 0 auto;
}
.max-1600 {
    max-width: 1600px;
}
.max-800 {
    max-width: 800px;
}
.ma-0 {
    margin: 0 auto;
}


/** Background end **/

/** Background vid start **/


.bg-overlay-1 {
    height: 100%;
    width: 100% !important;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    z-index: 0;
}
.bg-overlay-1:before {
    position: absolute;
    content: "";
    display: block;
    /* background: #000000c2; */
    background: #041a29b5;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.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: #3e474cba;
    transition: 0.5s;
}
.light .cta.bg-overlay-1:before {
    /* background: #bbc2f5d6; */
    background: #213b4aba;
    transition: 0.5s;
}

.poz-rel {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .main .zindex-1 p {
        -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* background: linear-gradient(251deg, #0279bd66 -53%, rgb(0 0 0 / 85%) 65%); */
    }
    .main-left div:nth-child(1) h1 {
        margin-top: 20px;
    }
}

/** Background vid end **/

/** Nav Start **/

.wrap-nav {
    width: 100%;
    height: 99px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* background: #222222; */
    position: fixed;
    transition: 0.5s;
    align-items: center;
    left: 0;
    right: 0;
}
.poz-scroll .wrap-nav {
    /* background: #222222; */
    transition: 0.5s;
}

header {
    display: flex;
    justify-content: space-evenly;
    z-index: 999;
    transition: 0.5s;
}
header.poz-scroll {
    padding-top: 5px;
    transition: 0.5s;
}

.navigationWrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    background-color: #272d2d;
    box-shadow: 0 5px 15px 0 rgb(255 255 255 / 25%);
    color: white;
    text-transform: uppercase;
    overflow: hidden;
    /* width: 800px; */
    width: 960px;
    overflow: visible;
    position: fixed;
    border-radius: 50px;
    transition: 0.5s;
  }
.light .navigationWrapper {
    background-color: #e8e8e8;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}
  .navigationWrapper .logoWrapper {
    display: flex;
    overflow: visible;
    width: 200px;
    max-width: 200px;
  }
  .navigationWrapper .logoWrapper a {
    width: 200px;
    height: auto;
    max-width: 200px;
    margin: 0 auto;
    padding: 0;
  }
  .navigationWrapper .logoWrapper a img {
    width: 100%;
    margin-left: 25px;
  }
  .navigationWrapper .logoWrapper .stylish {
    font-weight: bold;
  }
  .navigationWrapper .logoWrapper .logo {
    padding-left: 4px;
    color: #ea4f4c;
  }
  .navigationWrapper .navigation {
    display: flex;
    list-style-type: none;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
  }
  .navigationWrapper .navigation li {
    opacity: 1;
    list-style-type: none;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  .navigationWrapper .navigation .parent {
    padding: 0 10px;
    cursor: pointer;
  }
  .navigationWrapper .navigation .parent:last-child {
    padding-right: 0;
  }
  .navigationWrapper .navigation .parent .link {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    color: white;
    font-size: 16px;
    transition: 0.5s;
  }
  .light .navigationWrapper .navigation .parent .link {
    color: #222;
    transition: 0.5s;
  }
  .navigationWrapper .navigation .parent.active .link {
    font-size: 14px;
    line-height: 14px;
  }
  .navigationWrapper .navigation .parent.active .subnavigation .link {
    font-size: 16px;
    line-height: 16px;
  }
  .navigationWrapper .navigation .parent .link:hover {
    color: #ea4f4c;
  }
  .navigationWrapper .navigation .parent .link .fa-minus {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: -16px;
    top: 0;
    
  }
  .navigationWrapper .navigation .parent .link .fa-minus:before {
    content: 'X';
  }
  .navigationWrapper .navigation .parent.active > .link:first-of-type {
    transform: translate(214px, 0);
    z-index: 2;
  }
  .navigationWrapper .navigation .parent .link .fa-plus {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  .navigationWrapper .navigation .parent .link .fas {
    color: #ea4f4c;
    margin: 0px 4px 0;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
  }

  .navigationWrapper .navigation .subnavigation {
    display: none;
    list-style-type: none;
    width: 600px;
    position: absolute;
    top: 40%;
    left: 0%;
    margin: auto;
    transition: all 0.3s ease-in-out;
    background-color: #272d2d;
  }
  .light .navigationWrapper .navigation .subnavigation {
    background-color: transparent;
  }
  .navigationWrapper .navigation .subnavigation li a {
    font-size: 16px;
    padding: 0 25px;
  }

  .navigationWrapper .navigation .subnavigation li:nth-of-type(1) a {
    padding-left: 0;
  }
  .navigationWrapper .navigation .subnavigation li:last-child a {
    padding-right: 0;
  }
  
  .active.parent {
    transform: translate(-40px, -28px);
  }
  .active.parent .link {
    font-size: 12px;
  }
  .active.parent .link .fa-minus {
    opacity: 1 !important;
    font-size: 8px;
  }
  .active.parent .link .fa-plus {
    opacity: 0 !important;
  }
  .active.parent .subnavigation {
    display: flex;
  }
  
  .active#clients .subnavigation {
    transform: translate(-250px, 22px);
  }
  
  
  .active#services .subnavigation {
    transform: translate(-250px, 22px);
  }
  
  .invisible {
    opacity: 0 !important;
    transform: translate(50px, 0);
  }

  .dark .logo-w {
    display: flex;
    transition: 0.5s;
  }
  .dark .logo-b {
    display: none;
    transition: 0.5s;
  }
  .light .logo-b {
    display: flex;
    transition: 0.5s;
  }
  .light .logo-w {
    display: none;
    transition: 0.5s;
  }
@media screen and (max-width: 992px) {
    header #desktop-menu.navigationWrapper {
        display: flex;
        width: 99%;
    }
    header .navigationWrapper .navigation {
        display: none;
    }
    header #mobile-menu {
        display: flex;
        right: 40px;
    }
    header #mobile-menu-btn {
        padding: 34px 20px;
        width: 50px;
        height: 50px;
    }
    header #mobile-menu.show {
        right: 5px;
    }
    header #mobile-menu.show #mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 50px;
        position: absolute;
        width: 100%;
    }
    header #mobile-menu.show #mobile-menu-btn i {
        top: 0;
        position: absolute;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ea504c;
        border-radius: 50%;
        z-index: 99;
        top: 45px;
    }
    header #mobile-menu.show #mobile-menu-container {
        top: 60px;
        position: relative;
        display: flex;
        height: 100vh;
        background-color: #f5f5f5e6;
    }
    .dark header #mobile-menu.show #mobile-menu-container {
        background-color: #272d2d;
        color: white;
    }
    #mobile-menu-container a {
        background-color: #c3c3c396;
        text-transform: none;
    }
    .dark #mobile-menu-container a {
        background-color: #7777779e;
        color: #ffffff;
    }
    header #mobile-menu.show .fa-solid {
        color: #000000;
    }
    .light #mobile-menu .fa-solid {
        color: #1a1818;
    }
    .dark #mobile-menu .fa-solid {
        color: #ffffff;
    }
    #mobile-menu .fa-solid {
        width: 50px;
        height: 50px;
        display: flex;
    }
    header #mobile-menu .nav-title {
        margin-top: 40px;
        margin-left: 20px;
        font-size: 28px;
    }
    header #mobile-menu .nav-title:first-of-type {
        opacity: 0;
    }
}
@media screen and (max-width: 768px) {
    header #desktop-menu.navigationWrapper {
        display: flex;
        width: 100%;
        border-radius: 0;
    }
    header .navigationWrapper .navigation {
        display: none;
    }
    header #mobile-menu {
        display: flex;
    }
    .poz-scroll .wrap-nav {
        top: 0;
        padding-top: 0;
    }
    .wrap-nav {
        top: 0;
    }
    .main-min {
        padding: 120px 20px 50px;
        display: flex;
        justify-content: center;
    }
    .main-min .title-mainer {
        font-size: 2em;
        line-height: unset;
        text-align: center;
    }
    
    
}
@media screen and (max-width: 425px) {
    .navigationWrapper {
        border-radius: 0;
    }
    .poz-scroll .wrap-nav {
        top: 0;
        padding-top: 0;
    }
    header #mobile-menu {
        right: 30px;
    }
}
@media screen and (max-width: 375px) {
    .navigationWrapper .logoWrapper a img {
        transform: scale(0.8);
        margin-left: 5px;
    }
}
/** Nav End **/
/** Theme change start **/
#back-top {
    bottom: 75px;
    z-index: 2;
}
#back-top i {
    width: 50px;
    height: 50px;
}
#theme-change {
    display: flex;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 2;
}
.os-theme-change {
    display: flex;
    justify-content: right;
    align-items: center;
  }
  
  .switch {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    margin-right: 0;
    /* 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: 0;
      border-radius: 50%;
      background: #ea4f4c;
      border: 1px dashed;
  }
  .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: white;
    transition: all 0.3s ease-out 0s;
  }
  .light .switch:hover span,
  .light .switch:focus span {
    color: hsl(215, 27%, 4%);
  }
  
  .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: 1px;
  }
  .dark .switch-light {
    font-size: 0rem;
    visibility: hidden;
  }
  .switch-dark {
    font-size: 0rem;
    visibility: hidden;
    color: white;
    margin-top: 1px;
  }
  .dark .switch-dark {
    font-size: 18px;
    visibility: visible;
  }
  .my_switcher ul {
    list-style-type: none;
  }
/** Theme channge end **/

/** Cards start **/
.light .forth-bottom .card {
    background-color: #c0e7ff78;
    color: #272D2D;
}
.forth-bottom .card {
    color: #ffffff;
    background-color: #1e50754f;
    justify-content: space-between;
}
.forth-bottom .card h3 {
    color: #00ddc2;
}
.light .forth-bottom .card h3 {
    color: #272D2D;
}

.dark .forth-bottom .card div img {
    filter: invert(59%) sepia(97%) saturate(1063%) hue-rotate(124deg) brightness(97%) contrast(103%);
}
.dark .forth-bottom .card.card-red-line div img:hover {
    filter: invert(1);
}
/** Cards end **/

/** Quality card start **/
/* .quality-card .checkmark-sign img { */
    /* filter: drop-shadow(0px 0px 5px black); */
/* } */
.quality-card .checkmark-sign img {
    width: 20px;
}

.quality-card>div span:not(.checkmark-sign) {
    padding-left: 45px;
    font-size: 25px;
    font-weight: 500;
    line-height: 1em;
}

.check-title .quality-card>div span:not(.checkmark-sign) {
    padding-left: 10px;
}
/** Quality card end **/

/** Accordion start **/
.third {
    background: url(../assets/decorations/vector-14.svg);
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
}
.max-wrap-flex.wrap-50 {
    gap: 10%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    /* max-width: unset; */
    min-height: unset;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
}
.max-wrap-flex.wrap-50 .third-left,
.max-wrap-flex.wrap-50 .third-right {
    width: 45%;
    margin: 0 auto;
}
.max-wrap-flex.wrap-50 .third-left {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 640px;
}
.max-wrap-flex.wrap-50 .third-right {
    justify-content: center;
    display: flex;
}
.max-wrap-flex.wrap-50 img {
    max-width: 600px;
}

input[type=radio] {
    display: none;
  }
  input[type=radio]:checked + .item .title {
    color: #fff;
    border-color: #0071BC;
    background-color: #0071BC;
  }
  input[type=radio]:checked + .item .title:after {
    transform: rotate(180deg);
  }
  input[type=radio]:checked + .item .content {
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s, opacity 0.7s;
  }
  
  .item {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .item .title {
    padding: 1rem 0.5rem;
    border-radius: 0.3rem;
    color: #0071BC;
    border: 1px solid;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8e8e8;
  }
  .dark .item .title {
    transition: all 0.2s;
    color: #ffffff;
    background: #272d2d;
  }
  .item .title:after {
    content: "▼";
    display: inline-block;
    font-size: 12px;
  }
  
  .item .content {
    width: 95%;
    margin: 0 auto;
    padding: 0 0.3rem;
    line-height: 1.6;
    color: #000;
    border: 1px solid;
    border-width: 0 1px;
    border: none;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
  }
  .dark .item .content {
    color: white;
  }

  @media screen and (max-width: 1240px) {
    .max-wrap-flex.wrap-50 {
        gap: unset;
        flex-direction: column;
    }
    .max-wrap-flex.wrap-50 .third-left {
        margin-bottom: 30px;
    }
    .max-wrap-flex.wrap-50 .third-left, 
    .max-wrap-flex.wrap-50 .third-right {
        width: 100%;
    }
    .max-wrap-flex.wrap-50 img {
        width: 100%;
    }
  }

/** Accordion end **/

/** New section start **/
@keyframes myAnim {
    0%,
    100% {
        transform: translateY(30px) rotate(0deg);
        transform-origin: 50% 50%;
    }

    10% {
        transform: translateY(30px) rotate(8deg);
    }

    20%,
    40%,
    60% {
        transform: translateY(30px) rotate(-10deg);
    }

    30%,
    50%,
    70% {
        transform: translateY(30px) rotate(10deg);
    }

    80% {
        transform: translateY(30px) rotate(-8deg);
    }

    90% {
        transform: translateY(30px) rotate(8deg);
    }
}

.card-os {
    padding: 20px;
    margin: 20px;
    max-width: 1600px;
}
.card.card-os {
    background-color: #c0e7ff78;
    border-radius: 50px;
}

.dark .card.card-os {
    background-color: #1e50754f;
}
.card.card-os.card-os-img {
    margin-top: 100px;
    align-items: center;
}
.card.card-os.card-os-img .top-img {
    width: 150px;
    transform: translateY(20px) rotate(-8deg);
    animation: myAnim 4s ease-in-out 0s infinite normal both;
    position: absolute;
    top: -140px;
 }

.forth {
    padding: 100px;
}
.row.card-os-wrap {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .forth {
        padding: 20px;
    }
    .card-os-wrap .d-flex {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
     }
}
/** New section end **/

/** Cta start **/
.col-blog {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
}
.pad-cta {
    max-width: 1600px;
    padding: 0 40px;
}
.work-with-us {
    min-height: 620px;
}
.work-with-us p {
    font-size: 18px;
}
.work-with-us .pad-cta {
    display: none;
}
.filter-heart {
    filter: hue-rotate(324deg);
}
/** Cta end **/

/** Contact start **/
.banner-contact {
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
/* Form */

.error {
    color: red;
    display: none;
}
form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.recaptch-cover{
border:1px solid #000000 !important;
padding:0px;
position: relative;
background-color:transparent;
/* margin-right: 15px;
    margin-left: 15px; */
    max-width: 1140px;
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
}
.recaptch-cover .recaptch-cover-header{
    padding:10px;
    text-align: left;
    display: block;
    border-bottom:1px solid #000000 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recaptch-cover .recaptch-cover-header button{
    background:#00000000;
    color: #000000;
    border-color:#00000000;
    border-radius:3px;
}
.recaptch-cover .recaptch-cover-header button:active{
     background:transparent;
    border-color:#000000;
}
.recaptch-cover .recaptch-cover-header button:hover{
  background:transparent;
    border-color:#000000;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
	border-color: #b7beff;
}
.form-control:focus{
  box-shadow: none;
  outline: none;
    background-color: #ece4e4 ;
    border-color: #b7beff;
    color:#000000;
}
.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}
form label {
	color: #000000;
}
.loading-overlay.active{
  display: flex;
}
#refreshCaptcha{
  cursor: pointer;
}
.form-control::placeholder {
  color:rgba(0, 0, 0,.5);
  opacity: 1; /* Firefox */
}
.form-control::-ms-input-placeholder { /* Edge 12 -18 */
   color:rgba(0, 0, 0,.5);
}

.math-captcha {
	text-align: center;
}

.math-expression {
	font-size:24px;
	font-weight: bold;
}

.answer-options {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 20px 0;
	flex-wrap: wrap;
}

.answer-option {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:18px;
	font-weight: bold;
	border:1px solid #000000;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
	background:#00000000;
	color:#000000;
}

.answer-option:hover {
	border-color:#3a74d4;
}

.answer-option.selected {
	background:#8eb8fd;
	color: white;
	border-color:#8eb8fd;
}

.error{
	color:red;
	display:none;
}

#submitBtn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.jconfirm {
    -webkit-perspective: 400px;
    perspective: 400px;
}
.jconfirm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    font-family: inherit;
    overflow: hidden;
}
.jconfirm.jconfirm-modern .jconfirm-bg {
    background-color: slategray;
    opacity: .6;
}
.jconfirm .jconfirm-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
}
.jconfirm .jconfirm-scrollpane {
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-perspective-origin: center;
    perspective-origin: center;
    display: table;
    width: 100%;
    height: 100%;
}
.jconfirm .jconfirm-row {
    display: table-row;
    width: 100%;
}
.jconfirm .jconfirm-cell {
    display: table-cell;
    vertical-align: middle;
}
.jconfirm .jconfirm-holder {
    max-height: 100%;
    padding: 50px 0;
}
@media (min-width: 992px) {
    .justify-content-lg-center {
        justify-content: center !important;
    }
}

@media screen and (max-width: 820px) {
    form .form-group.col-md-6 {
        width: 100%!important;
    }
    form#contactForm {
        flex: 1 1 100%;
        flex-direction: column;
        padding-top: 30px;
    }
    
}
@media (min-width: 768px) {
    .justify-content-md-center {
        justify-content: center !important;
    }
}
@media (min-width: 576px) {
    .justify-content-sm-center {
        justify-content: center !important;
    }
}

.jconfirm .jconfirm-box-container.jconfirm-no-transition {
    -webkit-transition: none !important;
    transition: none !important;
}
.jconfirm .jconfirm-box-container {
    -webkit-transition: -webkit-transform;
    transition: -webkit-transform;
    transition: transform;
    transition: transform, -webkit-transform;
}
.jconfirm.jconfirm-modern .jconfirm-box {
    background-color: white;
    -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
    padding: 30px 30px 15px;
}
.jconfirm .jconfirm-box.jconfirm-type-red {
    border-top: solid 7px #e74c3c;
    -webkit-animation-name: type-red;
    animation-name: type-red;
}
.jconfirm .jconfirm-box.jconfirm-type-animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.jconfirm .jconfirm-box {
    opacity: 1;
    -webkit-transition-property: all;
    transition-property: all;
}
.jconfirm .jconfirm-box {
    background: white;
    border-radius: 4px;
    position: relative;
    outline: 0;
    padding: 15px 15px 0;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon {
    color: rgba(0, 0, 0, 0.87);
    top: 15px;
    right: 15px;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: .6;
    text-align: center;
    font-size: 27px !important;
    line-height: 14px !important;
    display: none;
    z-index: 1;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
    display: block;
    font-size: 22px;
    line-height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    padding-bottom: 15px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: block;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 69px;
    color: #aaa;
}

.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: inherit;
    font-family: inherit;
    display: inline-block;
    vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 15px;
    height: auto;
    -webkit-transition: height .4s ease-in;
    transition: height .4s ease-in;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
    overflow-y: hidden;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
    overflow: auto;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
    text-align: center;
}
.jconfirm .jconfirm-box .jconfirm-buttons {
    padding-bottom: 11px;
}
.jconfirm .jconfirm-clear {
    clear: both;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    min-height: 1em;
    -webkit-transition: opacity .1s ease, background-color .1s ease, color .1s ease, background .1s ease, -webkit-box-shadow .1s ease;
    transition: opacity .1s ease, background-color .1s ease, color .1s ease, background .1s ease, -webkit-box-shadow .1s ease;
    transition: opacity .1s ease, background-color .1s ease, color .1s ease, box-shadow .1s ease, background .1s ease;
    transition: opacity .1s ease, background-color .1s ease, color .1s ease, box-shadow .1s ease, background .1s ease, -webkit-box-shadow .1s ease;
    -webkit-tap-highlight-color: transparent;
    border: 0;
    background-image: none;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: background .1s;
    transition: background .1s;
    padding: 10px 20px;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background-color: #ecf0f1;
    color: #000;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.mt-3 {
    margin-top: 1rem !important;
}
.math-captcha {
    text-align: center;
}
.math-captcha p {
    margin: 0 auto;
    display: block;
    text-align: center;
}

.form-section-right form #name, 
.form-section-right form #email, 
.form-section-right form #message {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0 auto;
}
.form-section {
    max-width: unset;
}
.form-section-right form {
    padding-left: 10px;
    padding-right: 10px;
}

button#submitBtn {
	background: #ea4f4c;
    border: 0 none;
    border-radius: 50px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) inset;
    color: #000 !important;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 300;
    height: 3.5em;
    line-height: 3.5em;
    padding: 0 2.25em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
    white-space: nowrap;
    margin: 20px 0 0 0;
    letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
    .form-section-right form #message {
        height: 120px;
    }
}
@media screen and (max-width: 1024px) {
    .form-section-right form #message {
        height: 120px;
    }
}
@media screen and (max-width: 480px) {
    .recaptch-cover .recaptch-cover-header {
        flex-direction: column;
        padding-top: 20px;
    }
    .form-section-right form {
        margin-bottom: 30px;
    }
}

.contact-info.box-style1 {
    padding: 10px;
    background: #1e50754f;
    border-radius: 10px;
}
.light .contact-info.box-style1  {
    background: #c0e7ff78;
 }
.contact-info i {
    font-size: 30px;
    margin-top: 2px;
    line-height: 1;
    float: left;
    color: #ea4f4c;
}
.contact-info .info-text {
    padding-left: 50px;
    font-weight: 500;
}
.contact-info h6 {
    font-size: 16px;
    margin-bottom: 5px;
}
.text-color-or {
    color: #ea4f4c;
}
.contact-info p {
    margin-bottom: 0;
}
.light .contact-info p.text-white ,
.light .contact-info a {
    color:#000!important;
    font-size: 18px;
}
/** Contact End **/

/** Terms start **/
.terms-sec {
    overflow: hidden;
}
.max-w-1600 {
    max-width: 1600px;
}
.w-100 {
    width: 100%!important;
}
.pb-100 {
    padding-bottom: 100px;
}
.pl-20 {
    padding-left: 20px;
}
/** Terms end **/

/** Footer Start **/
footer {
    background-color: #000712;
    transition: 0.5s;
    padding-bottom: 0;
}
.light footer {
    /* background-color: #272D2D; */
    background-color: #424343;
    transition: 0.5s;
}
footer .footer-top {
    flex-wrap: wrap;
}
.footer-top:after {
    content: "";
    width: 100%;
    height: 6rem;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 0;
    background: linear-gradient(to top, rgb(23 23 23) 50%, transparent);
}

footer  .footer-bottom {
    position: relative;
    z-index: 1;
}
footer .footer-top .footer-logo {
    padding-top: 0;
}
footer .footer-logo a {
    width: 100%;
    position: relative;
    display: flex;
    padding: 0 !important;
}
footer .footer-logo a img {
    width: 100%;
    height: auto;
    min-width: 200px;
}

footer .bottom-inner {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF99;
    text-align: center;
    font-size: 14px;
    padding: 30px 0;
}
.bottom-inner a {
    color: #fff;
}
.bottom-link p a:hover, .bottom-link p a:focus {
    color: #ea4f4c;
}
.bottom-inner .text-sm-end {
    text-align: right;
    display: flex;
    flex: 1 1 100%;
    justify-content: end;
    align-items: center;
    color: #00DDC2;
}
.footer-list .li-icon svg {
    width: .5em;
}
.footer-list .li-icon {
    margin-right: 10px;
}
footer ul.footer-links li a {
    color: #fff;
}
footer ul.footer-links li a:hover {
    color: #eb4f4d;
    text-decoration: none;
    transition: 0.5s;
}
footer .footer-top .col-links {
    align-items: flex-start;
}
.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-list li {
    padding: 0.25em 0;
}

footer ul.footer-links li {
    margin-bottom: 12px;
    width: 100%;
    margin-left: 20px;
    padding-right: 30px;
}
footer ul.footer-links {
    display: grid;
    grid-auto-columns: 50%;
    grid-auto-flow: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    width: 100%;
}
.footer-title {
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.25em;
}
footer ul.footer-links li:nth-child(n + 4) {
    grid-column: 2;
}

.contact-desc {
    display: flex;
    position: relative;
    justify-content: left;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0 !important;
}
.footer-contact i, .footer-contact span.flat {
    background-color: #ea4f4c;
    color: #ffffff;
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin: 0 15px 0 0;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}
footer .contact-desc p {
    text-align: left !important;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 14px;
}
.contact-desc p span {
    color: #ea4f4c;
    font-weight: 500;
    text-transform: uppercase;
}
footer .contact-desc p a {
    color: white;
    padding-left: 0;
    word-wrap: break-word;
    font-size: 14px;
}
footer .footer-contact {
    padding-top: 0!important;
}
span.footer-line {
    margin-left: 10px;
}

@media (max-width: 992px) {
    footer ul.footer-links {
        display: flex;
        flex-direction: column;
        width: auto;
    }
    footer .footer-top .col-links {
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    footer .bottom-inner {
        flex-direction: column;
    }

    footer .bottom-link {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    .footer-bottom p {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .footer-top:after {
        height: 16rem;
    }
}
@media (max-width: 768px) {
    footer .col-about {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    footer .col-about p {
        text-align: left;
    }
    footer .footer-top .col-links {
        width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
        justify-content: flex-start;
        align-items: baseline;
    }
    footer .col-info {
        width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
    footer ul.footer-links li {
        justify-content: flex-start;
        position: relative;
        display: flex;
        margin-left: 0;
    }
    footer .col-info .footer-contact {
        justify-content: start;
        display: flex;
        flex-direction: column;
        align-items: self-start;
    }
    footer .col-info .footer-contact .contact-desc {
        justify-content: left;
    }
    footer .footer-top .footer-logo {
            display: flex;
    justify-content: flex-start;
    width: auto;
    min-width: unset;
    }
    footer .footer-top .footer-logo a {
        width: auto;
    }
}
@media screen and (max-width: 500px) {
    footer {
        padding: 30px 5px;
    }
}
/** Footer End **/