body {
  font-family: 'anton';
}

.cursor-01 {
  position: fixed;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  transition: transform ease .1s;
  mix-blend-mode: overlay;
  top: -10rem;
  left: -10rem;
  height: 2rem;
  width: 2rem;
  z-index: 25;
}

.cursor-02 {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: transform .1s ease .2s;
  mix-blend-mode: overlay;
  transform: translate(12px, 12px);
  z-index: 25;
}

.cursor-01.anim {
  background: rgba(255,255,255, 100%);
  transform: scale(1.5);
  border: solid 1px rgba(255,255,255, 100%);
}

.cursor-02.anim {
  transform: scale(6) translate(2px, 2px);
}

@media (min-width: 992px) {
  header.home-header {
    height: 100vh;
  }
}

header.home-header {
  height: auto;
  position: relative;
  cursor: none;
}

.header-bg-wrap, .inner-header-bg-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: radial-gradient(circle at 85% 48%, #070742 5%, rgba(5,5,57,1) 55%, rgba(2,2,48,1) 100%);
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.inner-header-bg-wrap {
  display: none;
}

@media (min-width: 992px) {
  .inner-header-bg-wrap {
    background: #fff;
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
  }
}

.navbar.main-nav {
  position: fixed;
  z-index: 5;
  width: 100%;
  left: 0;
}

@media (min-width: 768px) {
  .navbar.main-nav {
    position: relative;
    width: auto;
    z-index: auto;
  }
}

@media (min-width: 768px) {
  .navbar {
    background: transparent !important;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-family: 'Montserrat';
    text-transform: capitalize;
    font-weight: 100;
    position: relative;
  }
}

.body-nav {
  transform: translateY(-10px);
  position: sticky;
  top: 0;
  z-index: 1;
  transition: all cubic-bezier(.9, 0, .33, 1) .35s;
  opacity: 0;
  background: rgb(255 255 255 / 0);
  z-index: -10;
}

.navbar.body-nav {
  display: none;
}

@media (min-width: 768px) {
  .navbar.body-nav {
    display: flex;
  }
}

.body-nav.show {
  transform: translateY(0);
  background: rgb(255 255 255 / 100%) !important;
  opacity: 100%;
  z-index: 10;
}

.body-nav.show {
  transform: translateY(0);
  background: rgb(255 255 255 / 100%) !important;
  opacity: 100%;
  z-index: 10;
}

.body-nav.inner-page {
  transform: translateY(0);
  background: rgb(255 255 255 / 100%) !important;
  opacity: 100%;
  z-index: 10;
  display: flex;
  width: 100%;
}

@media (min-width: 992px) {
  .body-nav.inner-page {
    transform: translateY(0);
    background: rgb(255 255 255 / 100%) !important;
    opacity: 100%;
    z-index: 10;
  }
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  display: none;
}

@media (min-width: 576px) {
  .swiper-container-horizontal > .swiper-pagination-bullets {
    display: flex;
    flex-direction: row;
    width: 100%;
    bottom: 20px;
  }
}

@media (min-width: 992px) {
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
    width: 40%;
  }
}

.swiper-pagination-bullet {
  height: 3px;
  width: auto;
  border-radius: 0;
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
  flex-grow: 1;
  left: 0;
  background: #0804c0;
}

.swiper-pagination-bullet-active {
  flex-grow: 2;
}

a.nav-link {
  transition: all cubic-bezier(.9, 0, .33, 1) .3s;
  color: #fff;
}

.nav-item:hover a.nav-link, .nav-link.active, .body-nav .nav-item a.dropdown-item:hover {
  color: #57B0E2 !important;
}

.body-nav .nav-item a.nav-link, .body-nav .nav-item a.dropdown-item {
  color: #010127 !important;
}

a.dropdown-item {
  transition: all cubic-bezier(.9, 0, .33, 1) .3s;
  background: transparent;
}

a.dropdown-item:hover {
  background: transparent;
  color: #57B0E2 !important;
  padding-left: 20px;
}

.navbar-collapse {
  justify-content: center;
  background: #fff;
}

@media (min-width: 992px) {
  .navbar-collapse {
    justify-content: center;
    background: transparent;
  }
}

.navbar .dropdown-menu {
  background: transparent;
  position: relative;
  background: #fff;
  top: 0 !important;
  border: solid 1px #57b1e3;
}

@media (min-width: 992px) {
  .navbar .dropdown-menu {
    padding-top: 0;
    border: solid 1px rgba(3,6,200,.25);
    top: 90% !important;
    background: rgba(3,3,191,.1);
    border-radius: 0;
  }
}

.navbar-brand {
  text-decoration: none;
}

.body-nav .logo-holder svg {
  fill: #57b1e3;
}

.dropdown-toggle::after {
  position: relative;
  left: 2%;
  bottom: 0;
  transition: all cubic-bezier(.9, 0, .33, 1) .25s;
  color: #57b1e3;
  transform: translateY(0px);
}

@media (min-width: 992px) {
  .dropdown-toggle::after {
    position: absolute;
    left: 42%;
    bottom: -2px;
    transition: all cubic-bezier(.9, 0, .33, 1) .25s;
    color: #fff;
    transform: translateY(0px);
  }
}

.body-nav .dropdown-toggle::after {
  color: #57b1e3;
}

.dropdown-toggle:hover:after {
  color: #57b1e3;
  transform: translateY(3px);
}

.body-nav .dropdown-menu {
  padding-top: 0;
  border: solid 1px #57b1e3;
  top: 0 !important;
  background: rgba(255,255,255,1);
  border-radius: 0;
}

@media (min-width: 992px) {
  .body-nav .dropdown-menu {
    top: 90% !important;
  }
}

.logo-holder {
  position: relative;
  width: 200px;
}

.logo.white .st0 {
  fill: rgba(87,177,227,1);
}

@media (min-width: 768px) {
  .logo.white .st0 {
    fill: rgba(255,255,255,1);
  }
}

.nav-item {
  position: relative;
  height: 50px;
  overflow: hidden;
  margin: auto 1.5rem;
}

@media (min-width: 992px) {
  .nav-item {
    height: 40px;
  }
}

.nav-item:before, .nav-item:after, .nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #031bf7;
  height: 1px;
  mix-blend-mode: overlay;
  transform-origin: left;
  transform: scaleX(0);
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
}

.body-nav.inner-page .nav-item:before {
  background: #57b0e2;
}

.nav-item:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item:after, .custom-ani:after, .nav-link.active:after {
  background: url("../../assets/img/lens-light.png") no-repeat center center / 100%;
  width: 100%;
  height: 11px;
  mix-blend-mode: screen;
  transform-origin: right;
  bottom: -4px;
  z-index: 2;
}

.body-nav .nav-item:after, .body-nav .nav-link.active:after {
  display: none;
}

.custom-ani:after {
  bottom: -6px;
}

.nav-item:hover:after, .custom-ani:hover:after, .nav-link.active:after {
  transform: scaleX(1);
  transform-origin: right;
}

.nav-item.dropdown {
  overflow: visible;
}

.nav-link {
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-item a {
  color: #010127 !important;
  text-align: center;
}

@media (min-width: 992px) {
  .nav-item a {
    color: #fff !important;
    text-align: left;
  }
}

a.dropdown-item {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  a.dropdown-item {
    justify-content: flex-start;
  }
}

a.dropdown-item:before {
  content: "";
  background: url("../../assets/img/sub-menu-item.png") no-repeat center center / 100%;
  width: 14px;
  height: 16px;
  position: absolute;
  left: -7px;
  transform: scale(0);
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
}

a.dropdown-item:hover:before {
  transform: scale(1);
}

.banner-holder {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: auto;
}

@media (min-width: 992px) {
  .banner-holder {
    min-height: calc( 100vh - 100px );
  }
}

.txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
  .txt-wrap {
    align-items: self-start;
  }
}

.img-block {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  height: auto;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .img-block {
    justify-content: center;
    padding: 1rem;
  }
}

.img-block.inner-page-banner {
  overflow: visible;
}

.img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  height: auto;
  padding: 1rem;
  position: relative;
  min-width: 200px;
}

.img-wrap:before {
  content: "";
  position: absolute;
  width: 97.5%;
  height: 97.5%;
  left: auto;
  top: auto;
  background: rgba(3,3,212,.40);
  mix-blend-mode: overlay;
  bottom: auto;
  right: auto;
}

.swiper-slide .img-wrap {
  transform: scale(1.5);
  opacity: 0;
  transition: all .25s cubic-bezier(.9, 0, .33, 1) .2s;
}

.swiper-slide.swiper-slide-active .img-wrap {
  transform: scale(1);
  opacity: 100%;
}

.img-wrap.banner.inner-page {
  background: #57b0e2;
  padding: .2rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .img-wrap.banner.inner-page {
    background: #57b0e2;
    padding: .2rem;
  }
}

.img-wrap > img {
  width: 100%;
  object-fit: cover;
  max-height: 225px;
  /*z-index: 1;*/
  /*position: relative;*/
}

@media (min-width: 768px) {
  .img-wrap > img {
    max-height: 300px;
  }
}

@media (min-width: 992px) {
  .img-wrap > img {
    max-height: 325px;
  }
}

.crossed-border {
  position: absolute;
  width: 90px;
  background: #57b0e2;
  height: .5px;
  right: -50px;
  top: -30px;
}

.img-wrap.banner:after, .img-wrap.banner:before, .crossed-border:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 90px;
  left: -30px;
  top: auto;
  background: #57b0e2;
  bottom: -50px;
  right: auto;
}

.crossed-border:after {
  left: auto;
  right: 20px;
  top: -20px;
  width: .5px;
}

.img-wrap.banner:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  bottom: -30px;
  left: -50px;
  mix-blend-mode: unset;
}

.img-wrap.about-us {
  height: 100%;
  min-height: 400px;
}

.img-wrap.about-us > img {
  height: 100%;
  max-height: 100%;
}

.title-holder {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .title-holder {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    margin: 0;
  }
}

.title-holder.inner-page {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}

@media (min-width: 992px) {
  .title-holder.inner-page {
    align-items: flex-start;
    padding-left: 4rem;
  }
}

.title-holder-for-bg {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  top: 20%;
  right: 18%;
  mix-blend-mode: overlay;
}

.main-title {
  font-weight: bolder;
  color: #fff;
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
}

.main-title-for-bg {
  font-weight: bolder;
  color: rgba(255,255,255,.35);
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
  /*-webkit-text-stroke: .01px rgba(255,255,255,.15);*/
  /*-moz-text-stroke: .01px rgba(255,255,255,.15);*/
  /*text-stroke: .01px rgba(255,255,255,.15);*/
}

.slide-title, .header-title {
  font-weight: bolder;
  color: #fff;
  font-size: 45px;
  text-transform: capitalize;
  letter-spacing: 5px;
  position: relative;
  margin: 1rem 0;
  text-align: center;
}

.slide-title, .header-subtitle, .swiper-slide .cta-holder {
  transform: rotate(45deg) translateY(150px);
  transition: all .45s cubic-bezier(.9, 0, .33, 1);
  transform-origin: left;
  opacity: 1;
}

.header-subtitle {
  transform: rotate(0deg) translateY(0px);
  transition-delay: .1s;
}

.swiper-slide .cta-holder {
  transform: rotate(5deg) translateY(50px);
  transition-delay: .2s;
}

.swiper-slide.swiper-slide-active .slide-title, .swiper-slide.swiper-slide-active .header-subtitle, .swiper-slide.swiper-slide-active .cta-holder {
  transform: rotate(0deg) translateY(0);
  opacity: 100%;
}

.header-title {
  color: #57b1e3;
  font-size: 40px;
}

@media (min-width: 992px) {
  .slide-title, .header-title {
    text-align: left;
  }
}

.slide-title.glitch, .slide-title.glitch:before, .slide-title.glitch:after {
  animation: none;
}

.swiper-slide.swiper-slide-active .slide-title.glitch {
  animation: glitch-skew 1s 5 ease-in-out alternate-reverse .5s;
}

.swiper-slide.swiper-slide-active .slide-title.glitch:after {
  animation: glitch-anim2 4s 1.1 forwards linear alternate-reverse .5s;
}

.swiper-slide.swiper-slide-active .slide-title.glitch:before {
  animation: glitch-anim 4s 1.2 forwards linear alternate-reverse .5s;
}

.section-title.inner-page {
  color: #010127;
  margin: 4rem 0 0 0;
}

.cards-title, .form-title {
  color: #010127;
  margin: 4rem auto 2rem;
  font-size: 40px;
}

.form-title {
  margin: 4rem 0;
}

.slide-no-wrap {
  width: 45px;
  height: 45px;
  display: none;
  justify-content: center;
  align-items: center;
  color: rgb(31 108 200 / 65%);
  font-size: 30px;
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0%;
  transition: all .25s cubic-bezier(.9, 0, .33, 1) .45s;
  transform: scale(0);
  opacity: 0;
}

.swiper-slide.swiper-slide-active .slide-no-wrap {
  transform: scale(1);
  opacity: 100%;
}

@media (min-width: 576px) {
  .slide-no-wrap {
    display: flex;
  }
}

@media (min-width: 992px) {
  .slide-no-wrap {
    position: absolute;
    bottom: 75px;
    left: 0;
    top: auto;
  }
}

.title-special-txt {
  color: #fff;
  display: inline-block;
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-weight: bold;
  font-size: 48px;
  position: relative;
  left: 1rem;
  bottom: .3rem;
}

.header-subtitle {
  color: #fff;
  font-family: 'Montserrat';
  text-transform: none;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 1rem auto;
  max-width: 90%;
  text-align: center;
}

@media (min-width: 992px) {
  .header-subtitle {
    text-align: left;
    margin-left: 0;
  }
}

.header-subtitle.inner-page {
  color: #010127;
}

.cta-holder {
  position: relative;
  height: 50px;
  overflow: hidden;
  min-width: 200px;
  margin: 1rem 0;
}

.cta-holder:before, .cta-holder:after, .border-anim:before, .border-anim:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  background: #fff;
  height: 1px;
  mix-blend-mode: overlay;
  transform-origin: left;
  transform: scaleX(0);
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
  z-index: 1;
}

.cta-holder.inner-page {
  width: 200px;
}

.border-anim:before {
  top: auto;
  bottom: 0;
  right: 0;
  transform-origin: right;
  left: auto;
  background: #0804c0;
  mix-blend-mode: normal;
}

.cta-holder:before {
  mix-blend-mode: normal;
  background: #0804c0;
}

.cta-holder:after {
  width: 1px;
  transform-origin: top;
  transform: scaleY(0);
  height: 100%;
  mix-blend-mode: normal;
  background: #0804c0;
}

.border-anim:after {
  width: 1px;
  transform-origin: top;
  transform: scaleY(0);
  height: 100%;
  left: auto;
  right: 0;
  mix-blend-mode: normal;
  background: #0804c0;
}

.cta-holder:hover:before, .cta-holder:hover .border-anim:before {
  transform: scaleX(1);
}

.cta-holder:hover:after, .cta-holder:hover .border-anim:after {
  transform: scaleY(1);
}

.border-anim {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.cta-link {
  height: 100%;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: 'Montserrat';
  text-transform: capitalize;
  color: #fff;
  font-size: 16px;
  border: solid 1px rgba(3,6,200,.65);
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
  background: #57b1e3;
}

@media (min-width: 992px) {
  .cta-link {
    height: 100%;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Montserrat';
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    border: solid 1px rgba(3,6,200,.65);
    transition: all cubic-bezier(.9, 0, .33, 1) .2s;
    background: transparent;
  }
}

.cta-holder.inner-page .cta-link {
  color: #fff;
  background: rgb(87 176 226 / 100%);
}

.cta-link:hover {
  border: solid 1px rgba(3,6,200,.25);
  color: #57B0E2;
}

.cta-holder.inner-page .cta-link:hover {
  border: solid 1px rgba(3,6,200,.25);
  color: #0804c0;
  background: rgb(87 176 226 / 0);
}

.social-holder {
  width: 50px;
  height: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: auto;
  bottom: 15%;
  right: -2%;
  top: auto;
}

@media (min-width: 992px) {
  .social-holder {
    width: 50px;
    height: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: -7%;
    bottom: 5%;
  }
}

.social-holder.for-footer {
  width: auto;
  left: auto;
  bottom: auto;
  flex-direction: row;
  position: relative;
  justify-content: flex-start;
  padding: 1rem 0;
}

a.social-item {
  color: #fff;
  text-decoration: none;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  margin: 0;
}

@media (min-width: 992px) {
  a.social-item {
    margin: 0 1rem 0 0;
  }
}

.header-bg-img-01 {
  width: 600px;
  position: absolute;
  right: 20%;
  mix-blend-mode: color-dodge;
}

.header-bg-img-02 {
  width: 250px;
  position: absolute;
  mix-blend-mode: color-dodge;
  right: 8%;
}

.header-bg-img-03 {
  width: 600px;
  position: absolute;
  right: auto;
  mix-blend-mode: color-dodge;
  left: 17%;
}

.header-bg-img-04 {
  width: 880px;
  position: absolute;
  right: auto;
  mix-blend-mode: overlay;
  right: 0;
  bottom: 0;
}

.header-bg-img-05 {
  width: 900px;
  position: absolute;
  right: auto;
  mix-blend-mode: hard-light;
  left: -15%;
  bottom: -50%;
}

.header-bg-img-05-b {
  width: 422px;
  position: absolute;
  left: auto;
  mix-blend-mode: hard-light;
  right: -4%;
  top: -7%;
}

.bg-column {
  position: relative;
  height: 100%;
  width: 1px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.line-track {
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(rgba(255,255,255,.55) 30% , rgba(255,255,255,0) 55%);
  z-index: -1;
}

.flare-line {
  width: 3px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  height: 35%;
  z-index: 0;
  mix-blend-mode: overlay;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  animation: line-light 3s infinite forwards cubic-bezier(.9, 0, .33, 1);
  position: absolute;
  top: 50%;
  border-top-right-radius: 100%;
  border-top-left-radius: 100%;
  transform-origin: top;
  transform: scaleY(0);
}

.flare-line.line-2 {
  animation-delay: .25s;
}

.flare-line.line-3 {
  animation-delay: .5s;
}

.banner-slider {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.swiper-container {
  height: 100%;
}

.swiper-slide {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
}

@media (min-width: 992px) {
  .swiper-slide {
    flex-wrap: nowrap;
    padding: 0;
  }
}

.arrows-wrap {
  position: absolute;
  display: none;
  flex-direction: row;
  width: 30%;
  height: 50px;
  right: 0;
  bottom: 5%;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .arrows-wrap {
    width: 15%;
    display: flex;
  }
}

@media (min-width: 992px) {
  .arrows-wrap {
    width: 15%;
  }
}

.arrows-breaker {
  width: 1px;
  background: rgb(255 255 255 /65%);
  height: 50%;
  margin: 0 auto;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  z-index: 1;
  text-decoration: none;
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: "PREV";
  font-family: 'Montserrat';
  font-size: 16px;
  color: rgb(255 255 255 /65%);
  font-weight: 700;
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
}

.swiper-button-next:after {
  content: "NEXT";
}

.swiper-button-prev:hover:after, .swiper-button-next:hover:after {
  color: rgb(255 255 255 /100%);
}

.img-test {
  width: 200px;
  display: block;
  position: relative;
  z-index: 99999;
  height: 500px;
}

.brief, .our-values {
  height: auto;
  min-height: auto;
}

@media (min-width: 992px) {
  .brief, .our-values {
    height: auto;
    min-height: 100vh;
  }
}

.contact-us {
  height: auto;
  padding: 2rem 0;
}

.content-wrap, .form-wrap {
  padding: 2em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .content-wrap, .form-wrap {
    padding: 4em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.form-wrap {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem;
  border-top: solid 1px #e5e5e5;
}

form {
  width: 100%;
}

.field-holder {
  font-family: 'Montserrat';
  margin: .5rem 0;
}

.field-holder .form-label {
  font-weight: bold;
  text-transform: capitalize;
  font-size: 16px;
}

.field-holder .btn {
  width: 150px;
  background: #57b1e3;
  margin: 1rem 0;
}

.content-wrap.contact {
  align-items: flex-start;
  padding: 4rem;
  justify-content: flex-start;
  border-top: solid 1px #e5e5e5;
  border-right: solid 1px #e5e5e5;
}

.content-wrap.about-us {
  padding: 2rem 2rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .content-wrap.about-us {
    padding: 5rem 4rem;
    justify-content: center;
    align-items: flex-start;
  }
}

.section-title {
  font-weight: bolder;
  color: #57b1e3;
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
  text-align: center;
}

.section-title.side-title {
  text-align: center;
  margin: 1rem auto;
}

@media (min-width: 992px) {
  .section-title.side-title {
    text-align: left;
    margin: 0;
  }
}

.section-subtitle {
  font-weight: bolder;
  color: #010127;
  font-size: 30px;
  text-transform: initial;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  font-family: 'Montserrat';
  margin: 1rem 0;
  width: 65%;
}

p.content-par {
  color: #010127;
  font-size: 16px;
  text-transform: none;
  position: relative;
  text-align: center;
  font-family: 'Montserrat';
  width: 85%;
  margin: 1rem 0;
}

@media (min-width: 992px) {
  p.content-par {
    width: 50%;
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

@media (min-width: 992px) {
  .contact-list.for-footer {
    margin: 2rem 0;
  }
}

.contact-list.for-footer {
  margin: 0;
}

@media (min-width: 992px) {
  .copy-rights-mob {
    margin: 1rem auto;
    display: none;
  }
}

.contact-holder {
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  font-family: 'Montserrat';
}

.contact-holder.for-footer > span, .contact-holder.for-footer > .contact-link {
  color: #fff;
}

.contact-list > li {
  margin: 1rem 0;
}

.contact-list .icon {
  color: #57b1e3;
}

.contact-link {
  text-decoration: none;
  color: #010127;
}

.content-par.about-us {
  width: 85%;
  text-align: center;
}

@media (min-width: 992px) {
  .content-par.about-us {
    width: 85%;
    text-align: left;
  }
}

.map-holder {
  width: 100%;
  height: auto;
  min-height: 200px;
  background: #dbdbdb;
  margin: 3rem 0 0 0;
  display: none;
}

.cards-wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: auto;
  margin: 1rem 0;
  flex-wrap: wrap;
  height: auto;
}

@media (min-width: 992px) {
  .cards-wrap {
    min-height: 250px;
  }
}

.cards-wrap.team {
  width: 80%;
}

.card-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  flex-shrink: 0;
  flex-grow: 1;
  padding: 1rem;
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .card-holder {
    flex-basis: 50%;
  }
}

@media (min-width: 992px) {
  .card-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    flex-grow: 1;
    padding: 1rem;
    flex-basis: 33.3%;
  }
}

.card-holder.quarter-size {
  flex-basis: 100%;
  height: auto;
  height: 250px;
}

.card-holder.team {
  flex-basis: 50%;
  height: 250px;
  padding: 5px;
}

.card-holder.team.ri-si {
  justify-content: flex-end;
}

.card-holder.team.le-si {
  justify-content: flex-start;
}

.more-info {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #57B1E3;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: #fff;
  position: absolute;
  right: 25px;
  top: 25px;
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
  transform: scale(.5);
}

.card-holder:hover .more-info {
  transform: scale(1);
}

@media (min-width: 576px) {
  .card-holder.quarter-size {
    flex-basis: 50%;
  }
}

@media (min-width: 992px) {
  .card-holder.quarter-size {
    flex-basis: 25%;
  }
}

.single-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #070742;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Montserrat';
  padding: 1rem;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

@media (min-width: 992px) {
  .single-card {
    width: 85%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #070742;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat';
    padding: 1rem;
    overflow: hidden;
    position: relative;
  }
}

.single-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(2,1,48,0.35);
  transition: all cubic-bezier(.9, 0, .33, 1) .3s;
  left: 0;
}

.single-card:hover:after {
  background: rgba(2,1,48,0.75);
}

.single-card > img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
  transition: all cubic-bezier(.9, 0, .33, 1) .3s;
  transform: scale(1);
}

.single-card:hover > img {
  transform: scale(1.2);
}

.single-card > h4 {
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  transition: all cubic-bezier(.9, 0, .33, 1) .3s;
  transform: translateY(100px);
  text-align: center;
}

.single-card > h4.member-name {
  font-size: 22px;
  transform: translateY(170px);
}

.single-card:hover > h4 {
  transform: translateY(0);
}

.single-card > p.card-p, .single-card > ul.member-details, .single-card > .team-subtitle {
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 16px;
  transition: all cubic-bezier(.9, 0, .33, 1) .2s;
  opacity: 0;
  transform: translateY(150%);
  text-transform: none;
}

.single-card > ul.member-details {
  transition-delay: .15s;
}

.single-card > .team-subtitle {
  font-size: 14px;
  font-weight: bold;
  transition-delay: .1s;
}

.single-card > .member-name.special-pos {
  transform: translateY(150px);
}

.single-card:hover > p.card-p, .single-card:hover > ul.member-details, .single-card:hover > .team-subtitle, .single-card:hover > .member-name.special-pos {
  transform: translateY(0);
  opacity: 100;
}

.single-card > ul.member-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 14px;
}

.single-card.team-holder {
  align-items: flex-start;
}

.O-V-title-holder {
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}

@media (min-width: 992px) {
  .O-V-title-holder {
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 5rem 0 0 3rem;
  }
}

.O-V-grids-holder {
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .O-V-grids-holder {
    height: calc( 100vh - 100px );
    justify-content: center;
  }
}

.O-V-grids {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1px;
  row-gap: 1px;
  padding: 2rem 0;
}

@media (min-width: 992px) {
  .O-V-grids {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 5px;
    padding: 0;
  }
}

.O-V-card {
  flex-basis: 100%;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #efefef;
  padding: 1rem;
  transition: all cubic-bezier(.9, 0, .33, 1) .35s;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .O-V-card {
    flex-basis: 25%;
  }
}

@media (min-width: 992px) {
  .O-V-card {
    flex-basis: 23.5%;
  }
}

.O-V-card > span {
  font-family: 'Montserrat';
  font-weight: bolder;
  font-size: 24px;
  text-align: center;
  text-transform: capitalize;
  transition: all cubic-bezier(.9, 0, .33, 1) .35s;
}

.O-V-card > .icon {
  font-size: 35px;
  transition: all cubic-bezier(.9, 0, .33, 1) .35s;
}

.O-V-card:hover {
  background: #57b1e3;
}

.O-V-card:hover > .icon, .O-V-card:hover > span {
  color: #fff;
  transform: translateY(-25%);
}

.O-V-card:hover > span {
  transition-delay: .1s;
}

footer {
  background: #020130;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .footer-col {
    min-height: 200px;
  }
}

.footer-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: auto;
  padding: 1rem 0;
}

footer:before {
  content: "";
  background: url("../../assets/img/footer-bg.png") no-repeat left center / 100%;
  position: absolute;
  width: 55%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: hard-light;
  left: -130px;
  opacity: .55;
  z-index: 0;
}

.copy-rights {
  color: #fff;
  font-family: 'Montserrat';
  font-size: 14px;
  margin: 0;
  text-align: center;
  text-transform: initial;
}

.inner-header {
  position: relative;
  height: auto;
  min-height: 450px;
  padding: 2rem 0;
  top: 0;
}

.inner-header-bg-wrap > img {
  position: relative;
  top: 0;
  right: 0;
  width: 56%;
}

/* start animations */

@keyframes line-light {
  from {
    top: -100%;
    transform: scaleY(0);
  }
  to {
    top: 100%;
    transform: scaleY(1);
  }
}

