/****** Body start *******/

@-webkit-keyframes color-shift {
    0%, 100% {
      background: #ccc;
      fill: #ccc;
    }
    33% {
      background: #383838;
      fill: #383838;
    }
    66% {
      background: whitesmoke;
      fill: whitesmoke;
    }
  }
  @-moz-keyframes color-shift {
    0%, 100% {
      background: #ccc;
      fill: #ccc;
    }
    33% {
      background: #383838;
      fill: #383838;
    }
    66% {
      background: whitesmoke;
      fill: whitesmoke;
    }
  }
  @keyframes color-shift {
    0%, 100% {
      background: #ccc;
      fill: #ccc;
    }
    33% {
      background: #383838;
      fill: #383838;
    }
    66% {
      background: whitesmoke;
      fill: whitesmoke;
    }
  }

  svg.cuber path {
    -webkit-animation: color-shift 1.2s infinite;
    -moz-animation: color-shift 1.2s infinite;
    animation: color-shift 1.2s infinite;
  }
  svg.cuber path:nth-child(2) {
    -webkit-animation-delay: -0.8s;
    -moz-animation-delay: -0.8s;
    animation-delay: -0.8s;
  }
  svg.cuber path:nth-child(3) {
    -webkit-animation-delay: -0.4s;
    -moz-animation-delay: -0.4s;
    animation-delay: -0.4s;
  }
  
  .ag-speedometer_needle {
    -webkit-animation: .5s infinite alternate an-speedometer;
    -moz-animation: .5s infinite alternate an-speedometer;
    -o-animation: .5s infinite alternate an-speedometer;
    animation: .5s infinite alternate an-speedometer;
  
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  
    -webkit-transform-origin: 45px 45px;
    -moz-transform-origin: 45px 45px;
    -ms-transform-origin: 45px 45px;
    -o-transform-origin: 45px 45px;
    transform-origin: 45px 45px;
  }
  
  @-webkit-keyframes an-speedometer {
    0%, 100%, 80% {
      -webkit-transform: rotate(-1deg);
      transform: rotate(-1deg)
    }
    10%, 40%, 70% {
      -webkit-transform: rotate(1deg);
      transform: rotate(1deg)
    }
    20%, 90% {
      -webkit-transform: rotate(-2deg);
      transform: rotate(-2deg)
    }
    30% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }
    50% {
      -webkit-transform: rotate(-3deg);
      transform: rotate(-3deg)
    }
    60% {
      -webkit-transform: rotate(2deg);
      transform: rotate(2deg)
    }
  }
  
  @-moz-keyframes an-speedometer {
    0%, 100%, 80% {
      -moz-transform: rotate(-1deg);
      transform: rotate(-1deg)
    }
    10%, 40%, 70% {
      -moz-transform: rotate(1deg);
      transform: rotate(1deg)
    }
    20%, 90% {
      -moz-transform: rotate(-2deg);
      transform: rotate(-2deg)
    }
    30% {
      -moz-transform: rotate(0);
      transform: rotate(0)
    }
    50% {
      -moz-transform: rotate(-3deg);
      transform: rotate(-3deg)
    }
    60% {
      -moz-transform: rotate(2deg);
      transform: rotate(2deg)
    }
  }
  
  @-o-keyframes an-speedometer {
    0%, 100%, 80% {
      -o-transform: rotate(-1deg);
      transform: rotate(-1deg)
    }
    10%, 40%, 70% {
      -o-transform: rotate(1deg);
      transform: rotate(1deg)
    }
    20%, 90% {
      -o-transform: rotate(-2deg);
      transform: rotate(-2deg)
    }
    30% {
      -o-transform: rotate(0);
      transform: rotate(0)
    }
    50% {
      -o-transform: rotate(-3deg);
      transform: rotate(-3deg)
    }
    60% {
      -o-transform: rotate(2deg);
      transform: rotate(2deg)
    }
  }
  
  @keyframes an-speedometer {
    0%, 100%, 80% {
      -webkit-transform: rotate(-1deg);
      -moz-transform: rotate(-1deg);
      -o-transform: rotate(-1deg);
      transform: rotate(-1deg)
    }
    10%, 40%, 70% {
      -webkit-transform: rotate(1deg);
      -moz-transform: rotate(1deg);
      -o-transform: rotate(1deg);
      transform: rotate(1deg);
    }
    20%, 90% {
      -webkit-transform: rotate(-2deg);
      -moz-transform: rotate(-2deg);
      -o-transform: rotate(-2deg);
      transform: rotate(-2deg);
    }
    30% {
      -webkit-transform: rotate(0);
      -moz-transform: rotate(0);
      -o-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      -webkit-transform: rotate(-3deg);
      -moz-transform: rotate(-3deg);
      -o-transform: rotate(-3deg);
      transform: rotate(-3deg);
    }
    60% {
      -webkit-transform: rotate(2deg);
      -moz-transform: rotate(2deg);
      -o-transform: rotate(2deg);
      transform: rotate(2deg);
    }
  }

  svg.hands path {
    stroke-dashoffset:110;
    stroke-dasharray:110;
    animation:draw 3s forwards infinite;
  }
  svg.hands circle {
    stroke-dashoffset:65;
    stroke-dasharray:65;
    animation:spin 3s forwards infinite;
  }
  @keyframes draw {
    to {
      stroke-dashoffset:0;
    }
  }
  
  @keyframes spin {
    from{
      stroke-dashoffset:65;
    }
    50% {
      stroke-dashoffset:65;
    }
    80% {
      stroke-dashoffset:0;
    }
    to {
      stroke-dashoffset:0;
    }
  }
  svg.hands polyline {
    animation:move 3s forwards infinite ease-in;
  }

@keyframes move {
    from {
      transform: rotate(40deg);
      transform-origin: center;
      opacity: 0;
        }
    50% {
      transform: rotate(40deg);
      transform-origin: center;
      opacity: 0;
        }
    70% {
      transform: rotate(0deg);
      transform-origin: center;
      opacity: 1;
        }
    to {
      transform: rotate(0deg);
      transform-origin: center;
      opacity: 1;
        }
    
  }

/****** Body End *******/
/****** Nav start *******/

/** SWITCH Dark-light mode start **/
.d-none {
    display: none;
}
.os-theme-change {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .switch {
    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: 5px;
      border-radius: 3px;
      border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgb(255 255 255 / 40%);
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in;
    /* position: fixed; */
    z-index: 99;
    /* right: 20px;
    bottom: unset;
    top: 20px; */
    position: fixed;
    top: 25px;
    right: 5px;
  }
  .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);
    backdrop-filter: blur(4px);
  }
  .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: #080d30;
  }
  .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;
  }
  
  .fixing .switch {
    top: unset;
    bottom: 80px;
  }
  
  @media  only screen and (max-width: 1140px) {
    .switch {
      top: unset;
      bottom: 80px;
    }
    .nav-desc-mob {
      z-index: 11111;
      position: relative;
      top: 385px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
    a.mob-slide {
      z-index: 0;
      position: absolute;
      margin: 0 auto;
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 70px;
      max-width: 100px;
      margin-left: 65px;
    }
    .mm-navbar .mmenu-custom-close {
      color: white;
    z-index: 1111;
    position: absolute;
    transform: scale(1.5);
    margin-left: -35px;
    margin-top: -20px;
    }
  }
  
  /** SWITCH Dark-Light mode end **/

  .g-min-h {
    min-height: 100vh;
  }
  
  .g-center-flex {
    display: flex;
    align-items: center;
  }

.new-block {
    display: block;
}

.light .onepagepro-navigation .sf-vertical > li > a {
    color: #0A0633;
}

.onepagepro-navigation .sf-vertical > li:first-child {
    padding-top: 12px;
    padding-bottom: 12px;
}
.onepagepro-navigation .sf-vertical > li {
    padding-top: 12px;
    padding-bottom: 12px;
}
.sf-vertical > li > a:before, 
.sf-vertical > li > a span:before,
.sf-vertical > li > a:after, 
.sf-vertical > li > a span:after {
    content: "";
    position: absolute;
}
.sf-vertical > li > a:before, 
.sf-vertical > li > a span:before {
    top: -webkit-calc(50% - .3em);
	top: calc(50% - .3em);
	left: -.25em;
	width: .5em;
	height: .5em;
	opacity: 0;
	-webkit-transform: translate3d(-.6em, 0, 0) rotate(45deg);
	transform: translate3d(-.6em, 0, 0) rotate(45deg);
}
.sf-vertical > li > a:after, 
.sf-vertical > li > a span:after {
    bottom: -webkit-calc(50% - .2em);
	bottom: calc(50% - .2em);
	right: -.25em;
	width: .5em;
	height: .5em;
	opacity: 0;
	-webkit-transform: translate3d(.6em, 0, 0) rotate(45deg);
	transform: translate3d(.6em, 0, 0) rotate(45deg);
}

.sf-vertical > li > a:after, 
.sf-vertical > li > a:before {
    -webkit-transition: -webkit-transform .3s ease-out, opacity .3s;
	transition: transform .3s ease-out, opacity .3s;
}

.sf-vertical > li > a span:before,
.sf-vertical > li > a span:after {
    -webkit-transition: -webkit-transform .3s ease-out .15s, opacity 0s .05s;
	transition: transform .3s ease-out .15s, opacity 0s .05s;
}
.sf-vertical > li > a:hover,
.sf-vertical > li.current-menu-item > a {
    overflow: visible;
}

.sf-vertical > li > a:hover:before, 
.sf-vertical > li > a:hover span:before,
.sf-vertical > li.current-menu-item > a:before,
.sf-vertical > li.current-menu-item > a span:before {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
	opacity: 1
}

.sf-vertical > li > a:hover:after, 
.sf-vertical > li > a:hover span:after,
.sf-vertical > li.current-menu-item > a:after,
.sf-vertical > li.current-menu-item > a span:after {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
	opacity: 1
}

.light .sf-vertical > li > a:hover,
.light .sf-vertical > li.current-menu-item > a {
    color: #fff;
}
.dark .sf-vertical > li > a:hover,
.dark .sf-vertical > li.current-menu-item > a {
    color: #87CEEB;
}

.sf-vertical > li > a:before, 
.sf-vertical > li > a span:before {
    border-right: .15em solid rgba(255, 255, 255, 0.4);
	border-top: .15em solid rgba(255, 255, 255, 0.4);
}
.sf-vertical > li > a:after, 
.sf-vertical > li > a span:after {
    border-left: .15em solid rgba(255, 255, 255, 0.4);
	border-bottom: .15em solid rgba(255, 255, 255, 0.4);
}

.nav-desc {
    transition: all 0.3s ease-in;
}
.light .nav-desc {
    color: #0A0633;
    transition: all 0.3s ease-in;
}

@media only screen and (max-width: 1140px) {
    .onepagepro-mobile-header-wrap {
        display: block;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    .onepagepro-mm-menu-wrap.onepagepro-navigation-font.mm-menu {
        z-index: 10000;
    }
}

.onepagepro-mobile-header-wrap.onepagepro-with-top-notice-bar .onepagepro-mobile-header {
    padding-right: 0;
}
.onepagepro-body .onepagepro-top-notice-bar-button-mobile {
    display: none;
}

.onepagepro-style-side .onepagepro-header-side-nav-background {
    /* opacity: 0.64; */
    opacity: 1;
    /* background-image: linear-gradient(205deg, #313346 0%, #15161D 76%); */
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.3);
    background-color: rgb(10 6 52 / 60%);
    transition: all 0.3s ease-in;
}
.light .onepagepro-style-side .onepagepro-header-side-nav-background {
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 70%);
    background-color: rgb(188 216 255 / 67%);
    /* background-color: rgb(27 3 116 / 30%); */
}
.onepagepro-style-side .onepagepro-header-side-nav-background:before {
    content: '';
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    position: absolute;
}




/****** Nav end *******/
/****** Other start ******/

/*Vid start*/
.bg-overlay-1 {
    height: 100%!important;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    z-index: 0;
  }
  video#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;

    /* mask-mode: match-source;
    mask-image: linear-gradient(to right, transparent 0%, #fff 20%, #fff 80%, transparent 100%), linear-gradient(to bottom, transparent 0%, #fff 10%), radial-gradient(80.35% 93.4% at 50% 0%, #000 80%, #0000 100%);
    -webkit-mask-composite: source-in;
    mask-composite: subtract; */
  }
  .bg-overlay-1:before {
    position: absolute;
    content: "";
    display: block;
    /* background: #00000066; */
    background: #00000096;
    z-index: 2;
    width: 100%;
    height: 100%;
  }
  .light .bg-overlay-1:before {
    /* background: #080d305c; */
    background: #434a7a9c;
  }
  /*Vid end */

  .color-switch {
    color: #87CEEB;
  }

  .color-switch.hero-text {
    color: #fff;
    font-size: 22px;
    max-width: 80%;
    margin-top: 50px;
  }

  .mm-panels>.mm-panel.mm-hasnavbar {
    background-image: linear-gradient(205deg, #313346 0%, #15161D 76%);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in;
  }
  .light .mm-panels>.mm-panel.mm-hasnavbar {
    background-image: linear-gradient(205deg, #3d405b 0%, #87ceeb 76%);
    transition: all 0.3s ease-in;
  }
  .onepagepro-mobile-header-wrap.onepagepro-with-top-notice-bar .onepagepro-mobile-header {
    background-image: linear-gradient(205deg, #313346 0%, #15161D 76%);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in;
  }
  .light .onepagepro-mobile-header-wrap.onepagepro-with-top-notice-bar .onepagepro-mobile-header {
    background-image: linear-gradient(205deg, #3d405b 0%, #87ceeb 76%);
    transition: all 0.3s ease-in;
  }

  .light ul.mm-listview li > a {
    color: #000000;
  }
  .mm-navbar .mmenu-custom-close {
    color: white;
  }
  ul.mm-listview li {
    text-align: center;
  }

  .gdlr-core-title-item-title.gdlr-core-skin-title {
    font-size: 6rem;
  }

  .effect-blur {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.3);
    background-color: rgb(10 6 52 / 60%);
    transition: all 0.3s ease-in;
    backdrop-filter: blur(5px);
    padding: 15px;
    color: white;
  }
  .light .effect-blur {
    background-color: rgb(164 202 255 / 50%);
    color: #0a0633;
    transition: all 0.3s ease-in;
  }
  .font-style-about {
    font-size: 18px;
    
  }

  .mb-50 {
    margin-bottom: 50px!important;
  }
  .z-ind-2 {
    z-index: 2;
  }
  .max-height-90 {
    max-height: 90px;
  }

  .gdlr-core-pbf-background.gdlr-core-parallax.bg-2-effect:before {
    position: absolute;
    content: "";
    display: block;
    /* background: #00000066; */
    background: #00000096;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in;
  }
  .light .gdlr-core-pbf-background.gdlr-core-parallax.bg-2-effect:before {
    background: #00000066;
  }


.gdlr-core-column-service-title.color-switch {
    color: #87CEEB!important;
}

.light .onepagepro-bullet-anchor[data-anchor-section="services"] a:before {
    background-color: #87ceeb;
}

.bg-theme-card {
    /* box-shadow: 0 2px 48px 0 rgb(255 255 255 / 70%); */
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.3);
    background-color: rgb(164 202 255 / 90%);
    transition: all 0.3s ease-in;
}

.onepagepro-bullet-anchor[data-anchor-section="works"] a:before,
.light .onepagepro-bullet-anchor a:before {
    background-color: #9abae9;
}

.dark .bg-theme-card-effect h3 {
    color: white;
}
.dark .bg-theme-card-effect p {
    color: white;
}

.box-theme {
    border-radius: 10px;
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 70%);
    background-color: rgb(3 5 8 / 67%);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease-in;
}
.dark .box-theme {
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 70%);
    background-color: rgb(13 12 37 / 76%);
}

.ag-speedometer {
    transition: all 0.3s ease-in;
}
.dark .ag-speedometer {
    filter: invert(4);
}

.dark .bg-theme-card {
    box-shadow: 0 2px 48px 0 rgb(255 255 255 / 70%);
    /* box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.3); */
    background-color: rgb(10 6 52 / 60%);
    transition: all 0.3s ease-in;

}



  @media  only screen and (max-width: 768px) {
    .gdlr-core-title-item-title.gdlr-core-skin-title {
        font-size: 4rem!important;
    }
  }
  @media  only screen and (max-width: 767px) {
      .gdlr-core-item-box {
        margin-bottom: 20px;
      }
  }
  @media  only screen and (max-width: 425px) { 
    .gdlr-core-title-item-title.gdlr-core-skin-title {
        font-size: 2.5rem!important;
    }
    .new-block-footer {
      display: block;
    }
  }
  @media  only screen and (max-width: 374px) { 
    .gdlr-core-title-item-title.gdlr-core-skin-title {
        font-size: 2rem!important;
    }
  }
/****** Other End *******/

/****** Contact Start ******/
/* CONTACT FORM START **********/

.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:#91a2c6c7;
  /* margin-right: 15px;
    margin-left: 15px; */
    max-width: 1140px;
    width: 100%;
    border-radius: 1.25rem;
  }
  .dark .recaptch-cover {
    background-color: #647db1c7;
  }
  .dark .recaptch-cover .recaptch-cover-header label {
    color: white;
  }
  .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;
  }
  .dark .recaptch-cover .recaptch-cover-header button {
    color: #ffffff;

  }
  .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:var(--first-brand-color);
  }
  
  .answer-option.selected {
    background: var(--first-brand-color);
    color: white;
    border-color: var(--bs-pink);
  }
  
  .error{
  color:red;
  display:none;
  border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgb(255 255 255 / 70%);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
  }
  
  #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;
    }
    
  }
  @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: #2A7FDE;
  }
  
  .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;
    color: white;
  }
  
  .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.jconfirm-type-animated {
    background: #0c233b;
  }
  
  .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: #dedede;
    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;
    border-radius: 50px;
  }
  
  .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: #2A7FDE;
    border: 0 none;
    /* border-radius: 50px; */
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) inset;
    color: #fff !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;
    padding: 10px;
  }
  button#submitBtn:hover,
  button#submitBtn:focus {
    background: #000;
  }
  button#submitBtn p {
    color: white;
    margin-bottom: 0px;

  }

  #contactForm .form-group {
    width: 50%;
    padding: 0 10px;
  }
  #contactForm .wrap-former {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #contactForm .recaptch-cover {
    width: 50%;
  }
  @media screen and (max-width: 820px) {
    #contactForm .recaptch-cover {
      width: 100%;
    }
    #contactForm .wrap-former {
      padding-top: 20px;
    }
    #contactForm .form-group {
      padding: 0;
    }
  }
  @media screen and (max-width: 480px) {
    .recaptch-cover .recaptch-cover-header {
        flex-direction: column;
        padding-top: 20px;
    }
    
  }

  .w-100 {
    width: 100%;
  }
  .onepagepro-body input, 
  .onepagepro-body textarea {
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: #0a0a0a;
  }
  .onepagepro-body input:hover, 
  .onepagepro-body input:focus, 
  .onepagepro-body textarea:hover,
  .onepagepro-body textarea:focus {
    color: #838383;
  }
  .gdlr-core-page-builder-body [data-skin="Contact"] input:not([type="button"]):not([type="submit"]):not([type="reset"]), .gdlr-core-page-builder-body [data-skin="Contact"] textarea {
    color: #838383;
  }

  .onepagepro-body textarea {
    height: auto;
    min-height: 265px;
    margin-bottom: 0px;
  }
  
  /* CONTACT FORM END ************/
/****** Contact End ********/

/****** Footer start *******/
span.footer-terms a {
    color: white;
}
span.footer-rights {
    color: white;
    font-weight: 700;
}
.column-footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
    width: 100%;
}
.footer-box {
    display: flex;
    justify-content: space-between;
}
.footer-box-copy {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: end;
}
@media  only screen and (max-width: 768px) { 
    .column-footer {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }
    .footer-box {
        flex-direction: column;
        justify-content: center;
    }
    span.footer-rights {
        margin-top: 30px;
    }
    .footer-box-copy {
        justify-content: center;
    }
}
/****** Footer End *******/