#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}

#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #2473d9;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #2473d9;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }

  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }

  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }

  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}

a:hover,
a:active {
  color: #2473d9;
  text-decoration: none;
}

.h-100vh {
  height: 100vh;
}

.primary-overlay[data-overlay-dark]:before {
  background: #2473d9;
}

.secondary-overlay[data-overlay-dark]:before {
  background: #1f2732;
}

.left-overlay-secondary[data-overlay-dark]:before {
  background: rgba(31, 39, 50, 0.76);
  background: linear-gradient(-90deg, transparent, #1f2732 35%);
}

.text-primary,
.text-primary-hover:hover {
  color: #2473d9 !important;
}

.bg-primary {
  background-color: #2473d9 !important;
}

.text-secondary,
.text-secondary-hover:hover {
  color: #1f2732 !important;
}

.bg-secondary {
  background-color: #1f2732 !important;
}

.text-dark,
.text-dark-hover:hover {
  color: #1f2732 !important;
  font-size: 18px;
  line-height: 28px;
}

.border-primary-color {
  border-color: #2473d9 !important;
}

.border-secondary-color {
  border-color: #1f2732 !important;
}

.form-control {
  border-radius: 0;
}

.primary-shadow {
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
}

.text-white-hover:hover {
  color: #fff !important;
}

.text-white-hover-light:hover {
  color: rgba(255, 255, 255, 0.65) !important;
}

.min-vh-100 {
  min-height: 100vh;
}

.border-top-radius-10 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media screen and (min-width: 992px) {
  .vw-lg-50 {
    width: 50vw;
  }
}

.image-hover {
  position: relative;
  display: block;
  overflow: hidden;
}

.image-hover:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(255, 255, 255, 0)),
      to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.image-hover:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.ani-left-right {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: LeftRight;
  animation-timing-function: ease-in-out;
}

@keyframes LeftRight {
  0% {
    transform: translate(0px, 0px);
  }

  65% {
    transform: translate(30px, 0);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.ani-move {
  animation: ImageMove 4s infinite linear;
  animation-duration: 5s;
}

@keyframes ImageMove {
  0% {
    transform: translate(0px, 0px);
  }

  25% {
    transform: translate(10px, 20px);
  }

  50% {
    transform: translate(30px, 30px);
  }

  75% {
    transform: translate(20px, 10px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.ani-top-bottom {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom;
  animation-timing-function: ease-in-out;
}

@keyframes TopBottom {
  0% {
    transform: translate(0px, 0px);
  }

  65% {
    transform: translate(0, 30px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.round-shape-one {
  position: absolute;
  width: 225px;
  height: 225px;
  border-radius: 50%;
  border: 1px dashed rgba(225, 73, 124, 0.7);
  animation: rotated 10s infinite linear;
}

.round-shape-one:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -6px;
  background: #2473d9;
  border-radius: 50%;
}

@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #2473d9;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 9999;
  outline: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.scroll-to-top i {
  color: #fff;
}

.scroll-to-top:hover {
  color: #fff;
  background: #1f2732;
}

.scroll-to-top:hover i {
  color: #fff;
}

.scroll-to-top:visited {
  color: #fff;
  text-decoration: none;
}


.btn-style1 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  color: #ffffff;
  background: #2473d9;
  padding: 8px 20px !important;
  border-radius: 0;
  z-index: 1;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out 0s;

}

.btn-style1:hover {
  background: #1f2732;
}

.btn-style1 span {
  position: relative;
  z-index: 9;
  color: #ffffff;
}

.btn-style1.secondary {
  background: #1f2732;
}

.btn-style1.secondary:before {
  border-color: #2473d9;
}

.btn-style1.white-hover:hover,
.btn-style1.white-hover:active,
.btn-style1.white-hover:focus {
  background: #fff;
  transition: all 0.4s ease-in-out 0s;
}

.btn-style1.white-hover:hover span,
.btn-style1.white-hover:active span,
.btn-style1.white-hover:focus span {
  color: #1f2732;
  transition: all 0.4s ease-in-out 0s;
}

.btn-style1.white-border:before {
  border-color: #fff;
}

.btn-style1.medium {
  padding: 12px 36px !important;
}

.btn-style1.small {
  padding: 9px 27px !important;
  font-size: 15px;
}

@media screen and (min-width: 992px) {
  .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1 {
    color: #fff;
    border: 1px solid transparent;
  }

  .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:hover,
  .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:active,
  .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:focus {
    color: #2473d9;
    border: 1px solid #2473d9;
  }

  .scrollHeader .attr-nav>ul>li>a.btn-style1 {
    color: #fff;
    border: 1px solid transparent;
  }

}

.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}

.top-bar-info ul {
  margin-bottom: 0;
}

.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}

.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}

.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}

.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}

.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}

.top-social-icon li:last-child {
  padding-right: 0;
}

.top-social-icon li:last-child a {
  padding-right: 0;
}

.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}

.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.navbar-nav li.current>a,
.navbar-nav li.active>a {
  color: #2473d9;
}

.attr-nav>ul>li>a.butn {
  color: #fff;
}

.navbar>ul>li.current>a:after {
  border-color: transparent #2473d9 #2473d9 transparent;
}

.menu_area-light .navbar-nav li.current>a,
.menu_area-light .navbar-nav li.active>a {
  color: #2473d9;
}

.menu_area-light .navbar>ul>li.current>a:after {
  border-color: transparent #2473d9 #2473d9 transparent;
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
  color: #2473d9;
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
  color: #2473d9;
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
  color: #2473d9;
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
  border-color: transparent #2473d9 #2473d9 transparent;
}

@media screen and (min-width: 992px) {

  .menu_area-light .navbar ul ul li.active>a,
  .menu_area-light .navbar-nav li.has-sub a:hover {
    color: #2473d9;
  }

  .menu_area-light .navbar>ul>li.has-sub>a:hover:after {
    border-color: #2473d9;
  }

  .menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
    color: #2473d9;
  }

}

@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #2473d9;
  }

  .header-style1 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .header-style1 .navbar-toggler:before {
    background: #fff;
  }

  .header-style1 .navbar-toggler.menu-opened:after,
  .header-style1 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
}


.slider-fade2 .bg-img {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}

.slider-fade2 .owl-item.active .bg-img {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.slider-fade2 .item {
  height: 100vh;
}

.slider-fade2 .item h1 {
  font-size: 65px;
  line-height: 80px;
  letter-spacing: -3px;
  font-weight: 900;
  text-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
}

.slider-fade2.owl-section .owl-nav {
  margin-top: 0;
}

.slider-fade2.owl-section .owl-nav.disabled+.owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 200px;
  bottom: 20px;
}

.slider-fade2 .owl-nav .owl-next {
  right: 15px;
  position: absolute;
  top: 45%;
  color: #fff !important;
  height: 55px;
  width: 55px;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.slider-fade2 .owl-nav .owl-prev {
  position: absolute;
  color: #fff !important;
  top: 45%;
  height: 55px;
  width: 55px;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.slider-fade2 .owl-nav i,
.slider-fade2 .owl-nav span {
  font-size: 17px;
  color: #fff;
}

.slider-fade2 .owl-nav .owl-next:hover {
  background: #2473d9 !important;
}

.slider-fade2 .owl-nav .owl-next:hover span {
  color: #fff;
}

.slider-fade2 .owl-nav .owl-next span {
  color: #2473d9;
  font-size: 24px;
  line-height: 55px;
  transition: all 0.3s ease;
}

.slider-fade2 .owl-nav .owl-prev {
  left: 15px;
}

.slider-fade2 .owl-nav .owl-prev:hover {
  background: #2473d9 !important;
}

.slider-fade2 .owl-nav .owl-prev span {
  color: #2473d9;
  font-size: 24px;
  line-height: 55px;
  transition: all 0.3s ease;
}

.slider-fade2 .owl-nav .owl-prev:hover span {
  color: #fff;
}

@media screen and (max-width: 1399px) {
  .slider-fade2 .item h1 {
    font-size: 65px;
    line-height: 70px;
    letter-spacing: -3px;
    font-weight: 700;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
  }
}

@media screen and (max-width: 1199px) {
  .slider-fade2 .item h1 {
    font-size: 90px;
    line-height: 90px;
    letter-spacing: -3px;
  }
}

@media screen and (max-width: 991px) {
  .slider-fade2 .item h1 {
    font-size: 70px;
    line-height: 65px;
    letter-spacing: -2px;
  }
}

@media screen and (max-width: 767px) {
  .slider-fade2 .item h1 {
    letter-spacing: -1px;
    font-size: 28px;
    line-height: 36px;
  }

  .cybernet-home {
    margin-top: 40px !important;
  }

  .slider-fade2 .item {
    height: 60vh;
  }

  .cybernet-home .info-wrapper {
    padding: 15px !important;
  }
}


.cybernet-home {
  position: relative;
  margin-top: -80px;
  padding: 0;
  z-index: 9;
  background: transparent;
}

.cybernet-home .info-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.section-title .sm-title {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  color: #2473d9;
  z-index: 9;
}

.section-title h2 {
  position: relative;
  z-index: 9;
}

.section-title .sm-title:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 80px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #dedede;
}

.section-title .sm-title:after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #2473d9;
  right: 0px;
  left: auto;
  bottom: -3px;
  animation: pulsex 5s ease infinite alternate;
}

.section-title.left .sm-title:before {
  left: 0;
  transform: unset;
}

@keyframes pulsex {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100px);
  }
}

.page-title-section {
  padding: 180px 0 100px 0;
}

.page-title-section.style1 {
  padding: 150px 0;
}

.page-title-section h1 {
  font-size: 48px;
  line-height: 1;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 9;
  font-weight: 700;
}

.pagetitle-lg-title {
  display: block;
  font-size: 105px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  margin: 0 0 -58px 0;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.page-title-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  line-height: 1.2;
}

.page-title-section ul li {
  display: inline-block;
}

.page-title-section ul li:last-child {
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.page-title-section ul li:last-child a {
  color: #ffffff !important;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.page-title-section ul li:after {
  content: "";
  font-weight: 700;
  vertical-align: middle;
  background-color: #2473d9;
  width: 10px;
  padding: 0 5px 0 10px;
  height: 2px;
  display: inline-block;
  margin: 0 15px;
}

.page-title-section ul li:last-child:after {
  content: none;
}

.page-title-section ul li a {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.page-title-section .shape-1 {
  padding: 20px;
  background: #fff;
  z-index: 3;
  bottom: 73px;
  left: 52px;
}

@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 170px 0 90px 0;
  }

  .page-title-section h1 {
    font-size: 52px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 150px 0 90px 0;
  }

  .page-title-section.style1 {
    padding: 130px 0;
  }

  .page-title-section h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 130px 0 80px 0;
  }

  .page-title-section.style1 {
    padding: 100px 0;
  }

  .page-title-section h1 {
    font-size: 36px;
  }
}

.card-style14 {
  position: relative;
  transition: all 0.5s;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid #2473d9;
  height: 100%;
}

.card-style14 .card-img {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.card-style14 .card-icons .show {
  display: none;
}

.card-style14 .card-icons img {
  width: 57px;
}

.card-style14:hover .card-img {
  opacity: 1;
}

.card-style14 .card-body {
  transition: all 0.5s;
  padding: 20px;
  position: relative;
  z-index: 9;
}


.card-style14 .card-body p {
  line-height: 26px !important;
}

.card-style14 h3 a {
  font-weight: 800;
}

.card-style14 h3 a:hover,
.card-style14 h3 a:active,
.card-style14 h3 a:focus {
  color: #2473d9;
}

.card-style14 a {
  font-weight: 700;
}

.card-style14:hover h3,
.card-style14:hover p {
  color: #fff;
}

.card-style14:active h3,
.card-style14:active p {
  color: #fff;
}

.card-style14:focus h3,
.card-style14:focus p {
  color: #fff;
}

.card-style14:hover .card-icons .show,
.card-style14:active .card-icons .show,
.card-style14:focus .card-icons .show {
  display: block;
}

.card-style14:hover .card-icons .hide,
.card-style14:active .card-icons .hide,
.card-style14:focus .card-icons .hide {
  display: none;
}

.card-style14:hover a,
.card-style14:active a,
.card-style14:focus a {
  color: #fff;
}

.card-style14:hover a:hover,
.card-style14:hover a:active,
.card-style14:hover a:focus {
  color: #2473d9;
}

.card-style14:active a:hover,
.card-style14:active a:active,
.card-style14:active a:focus {
  color: #2473d9;
}

.card-style14:focus a:hover,
.card-style14:focus a:active,
.card-style14:focus a:focus {
  color: #2473d9;
}

.lg-backdrop {
  z-index: 99999;
}

.lg-outer {
  z-index: 999999;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #2473d9;
}

.lg-progress-bar .lg-progress {
  background-color: #2473d9;
}

.lg-backdrop.in {
  opacity: 0.85;
}

.owl-section .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.owl-section .owl-dots .owl-dot span {
  border-radius: 0;
}

.owl-section .owl-dots .owl-dot.active span,
.owl-section .owl-dots .owl-dot:hover span {
  background-color: #2473d9;
}

.owl-nav i,
.owl-nav span {
  color: #232323;
  font-size: 28px;
}

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.owl-thumbs {
  z-index: 9;
  position: relative;
}

.owl-thumbs button {
  border: none;
}

.owl-thumbs button .title {
  transition: 0.5s;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  margin: 20px -100px 0;
}

.owl-thumbs button.active .title {
  opacity: 1;
  visibility: visible;
}

.owl-thumbs button img {
  opacity: 0.5;
}

.owl-thumbs button.active img {
  opacity: 1;
}

ul.resp-tabs-list {
  margin-bottom: 15px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  padding: 12px 20px;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  background: #fff;
  color: #2473d9;
  text-align: left;
  border-radius: 0;
}

.resp-tabs-list li:last-child {
  margin-right: 0;
}

.resp-tabs-list li i {
  font-size: 24px;
  padding-right: 10px;
  vertical-align: text-bottom;
}

.resp-tabs-container {
  padding: 0px;
  clear: left;
}

.resp-tab-content {
  display: none;
  padding: 40px;
}

.resp-tabs-list li.resp-tab-active {
  margin-bottom: -1px;
  background-color: #2473d9;
  color: #fff;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

.resp-tab-content {
  border: none;
  float: left;
  width: 100%;
  box-shadow: none;
  border-radius: 4px;
  background: transparent;
}

h2.resp-accordion {
  cursor: pointer;
  display: none;
  font-size: 18px;
  color: #fff;
  border-top: 0px solid #c1c1c1;
  margin-bottom: 5px;
  padding: 14px 15px;
  float: left;
  width: 100%;
  background: #1f2732 !important;
  border-radius: 0;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  background-color: #2473d9 !important;
  color: #fff;
  margin-bottom: 0;
  border-radius: 0px;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

.process-style-04 {
  position: relative;
  display: block;
  text-align: center;
}

.process-style-04:before {
  content: "";
  position: absolute;
  top: 38px;
  right: -68px;
  width: 109px;
  height: 44px;
  background: url(../img/icons/arrow-bottom.png);
  background-repeat: no-repeat;
}

.process-style-04.last:before {
  content: none;
}

.process-style-04.arrow-top:before {
  content: "";
  position: absolute;
  top: 30px;
  right: -68px;
  width: 109px;
  height: 44px;
  background: url(../img/icons/arrow-top.png);
  background-repeat: no-repeat;
}

.process-style-04 .icon-holder {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 25px;
  background: #2473d9;
  padding: 20px;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 25px;
}

.process-style-04 .icon-holder .count-box {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: #1f2732;
  transition: all 0.7s ease-in-out 0s;
  vertical-align: middle;
  text-align: center;
  border-radius: 10px;
}

.process-style-04 .icon-holder .count-box h4 {
  line-height: 30px;
  color: #ffffff;
}

.process-style-04 .text-holder {
  position: relative;
  display: block;
}

@media screen and (max-width: 991px) {

  .process-style-04:before,
  .process-style-04.arrow-top:before {
    content: none;
  }

  .process-style-04 .icon-holder {
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    padding: 15px;
  }
}

.testimonial-block {
  margin-bottom: -70px;
  position: relative;
  z-index: 9;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.5rem;
}

.form-control:focus {
  border-color: #2473d9;
}

.form-check-input:checked {
  border-color: #2473d9;
  background-color: #2473d9;
}

.quform-input {
  position: relative;
}

.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}

.quform-element>label {
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}

.quform-element>label .quform-required {
  color: #cc0101;
  font-size: 10px;
}

.quform-inner input {
  width: 100%;
}

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}

.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}

.quform-errors>.quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}

.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
  border-color: #f5543f;
}

.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-submit-inner {
  float: none;
}

.quform-loading-wrap {
  float: none;
}

.quform-loading-wrap .quform-loading {
  display: inline-block;
}

.quform-element {
  margin-bottom: 1rem;
}

.social-icon-style1 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
}

.social-icon-style1 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}

.social-icon-style1 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  height: 41px;
  line-height: 41px;
  width: 41px;
}

.social-icon-style1 li a:hover {
  background: #2473d9;
}

.social-icon-style1 li:last-child {
  margin-right: 0;
}



.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
}

.footer-logo {
  max-width: 214px;
  width: 100%;
  display: inline-block;
}

.footer-logo>a {
  display: inline-block;
}

.footer-section-title span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  color: #2473d9;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-section-title span:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #2473d9;
}

footer .email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-bottom: 3px;
}

footer .email a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all 0.8s ease;
}

footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
  width: 100%;
}

footer .email a:hover,
footer .email a:active,
footer .email a:focus {
  color: #2473d9;
}

footer .email a:after {
  border-bottom: 1px solid #fff;
  transition: all 0.8s ease;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
}

footer .phone {
  padding-bottom: 0;
  margin-bottom: 0;
}

footer .phone a {
  padding-bottom: 0;
  letter-spacing: -0.05rem;
  color: #fff;
  font-size: 18px;
  color: #ffffffb3;
}

footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
  color: #2473d9;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 60px;
  }
}

.footer-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.footer-para {
  font-size: 18px !important;
  color: #ffffffb3 !important;
}

.footer_address {
  font-size: 18px !important;
  color: #ffffffb3 !important;
}

.email_1 {
  border: none !important;
}

.copyrite {
  font-size: 16px !important;
  color: #ffffffb3 !important;
  display: flex;
  align-items: center;
}

.plan_main {
  background-color: #f4f5fe;
}

.card-header {
  background: #000;
  color: #fff;
  text-align: center;
  position: relative;
  border-bottom: 0;
}

.active .card-header {
  background-color: #3475d7;
}

.active .card-header:after {
  border-top-color: #3475d7;
}

.card.active {
  border: 1px solid rgb(0 0 0 / 13%);
  height: 100%;
}

.card-header:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #000;
}

.card-header .price {
  font-size: 50px;
  font-weight: 200;
}

.card-header .time {
  font-size: 14px;
  font-weight: 300;
}

.card-header .unit {
  position: relative;
  top: -17px;
  font-size: 22px;
  font-weight: 300;
}

*/ ul {
  padding: 0;
}

ul li {
  list-style-type: none;
  line-height: 26px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  padding: 6px 0px;

}

.btn-primary {
  background-color: #3475d7;
}


.price_icon i {
  padding-top: 13px;
  font-size: 12px;
  color: #3f77d5;
}



/* Contact Us */

.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.contact-info-icon {
  margin-bottom: 15px;
}

.contact-info-item {
  background: white;
  padding: 30px 0px;
  border-top: 5px solid #3f77d5;
}

.contact-page-sec {
  background-color: #f5f5f5;
}


.contact-page-sec .contact-page-form h2 {
  color: #141e35;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}

.contact-info-icon i {
  font-size: 48px;
  color: #fda40b;
}

.contact-info-text p {
  margin-bottom: 0px;
}

.contact-info-text span a{
  color: #42545e;
}
.contact-info-text
.contact-info-text h2 {
  color: black;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-page-form input {
  background: white none repeat scroll 0 0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}

.single-input-field textarea {
  background: white none repeat scroll 0 0;
  border: 1px solid #b7b7b7;
  width: 100%;
  height: 170px;
  padding: 12px 16px;
  border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
  background: #3f77d5 none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  border: none;
  font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
  background: #141e35;
  transition: all 0.4s ease-in-out 0s;
  border-color: #141e35
}

.single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}

.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}

.contact-page-form form {
  padding: 20px 15px 0;
}

.contact_icon {
  color: #2473d9 !important;
}

.contact-info-item-2 {
  background-color: #3475d7 !important;

}

.contact-info-item-2 i {
  color: white !important;
}

.contact-info-item-2 h2 {
  color: white !important;
}

.contact-info-item-2 span {
  color: white !important;
}

.contact-info-text-mail span a {
  color: white !important;
}







/* About Us */

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a,
a:active,
a:focus {
  color: #6f6f6f;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 60px 0;
  /* min-height: 100vh;*/
}

@media (max-width:767px) {
  section {
    padding: 25px 0px;
  }

  .section-title h2 {
    line-height: 35px !important;
    font-size: 25px !important;
  }
}

.sec-title {
  position: relative;
  z-index: 1;

}

.sec-title .title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #3f77d5;
  font-weight: 900;
  margin-bottom: 15px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom: 18px;
}

.sec-title h2:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: #d1d2d6;
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #222222;
  padding-left: 26px;
  color: #42545e;
  font-weight: 500;
  font-family: 'Mulish', sans-serif;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 6px;
  display: block;
  font-size: 15px;
  padding: 0px;
  color: #20497a;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #44bce2;
}

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover {
  background-color: #001e57;
  color: #ffffff;
}

.about-section {
  position: relative;
  padding: 70px 0px;
}

.about-section .sec-title {
  margin-bottom: 45px;
}

.about-section .content-column {
  position: relative;

}

.about-section .content-column .inner-column {
  position: relative;

}

.about-section .text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #42545e;
  font-weight: 500;
  margin-top: -20px;
  text-align: justify;
  font-family: 'Mulish', sans-serif;
}

.about-section .list-style-one {
  margin-bottom: 30px;
}

.about-section .btn-box {
  position: relative;
}

.about-section .btn-box a {
  padding: 7px 25px;
  background-color: #3475d7;
  border-radius: 7px;
}

.about-section .btn-box a:hover {
  background-color: #0a2951 !important;
}

.image-2 img {
  border-radius: 12px;
}



/*-------------------------------------------------------*/
/* section */
/*-------------------------------------------------------*/
.section {
  padding: 70px 0;
}

.grey-bg {
  background-color: #f3f3f3;
}

.container {
  max-width: 100%;
  width: 1170px;
}


/*-------------------------------------------------------*/
/* Section Title */
/*-------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
}

.section-title.left {
  text-align: left;
}

.section-title.left h2:after {
  right: auto;
}

.section-title.right {
  text-align: right;
}

.section-title.right h2:after {
  left: auto;
}

.section-title h2 {

  text-transform: capitalize;
  line-height: 45px;
  font-size: 35px;
  position: relative;
  margin: 0;
  font-weight: 800;
  font-family: 'Mulish', sans-serif;
  color: #1f2732;
  letter-spacing: -0.02em;
}

.section-title h2:after {
  width: 60px;
  height: 3px;
  background: #000;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -10px;
}

.section-title-01 {
  text-align: center;
  padding-bottom: 50px;
}

.section-title-01 h2 {
  margin: 0;
  padding: 0 0 15px 0;
  font-weight: 800;
  color: #333;
  font-size: 48px;
}

.section-title-01 p {
  margin: 0;
  width: 600px;
  max-width: 100%;
  display: inline-block;
}

/*-------------------------------------------------------*/
/* Service Box*/
/*-------------------------------------------------------*/
.service-box {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: rgba(58, 78, 95, 0.2) 0 0px 6px, rgba(58, 78, 95, 0.05) 0 -5px 16px;
  width: 100%;
  float: left;
}

.service-box .sb-icon {
  width: 80px;
  height: 80px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
}

.service-box .sb-icon i {
  font-size: 40px;
  line-height: 80px;
  color: #fff;
}

.service-box h4 {
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  padding: 25px 0 10px;
}

.service-box p {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
  color: #42545e;
  font-weight: 500;
}

@media (max-width: 767px) {
  .service-box {
    margin: 15px 0;
  }
}


.section-title h2 span {
  color: #3f77d5;
}

.service-box .sb-icon {
  background-color: #3f77d5;
}

.portfolio-img.overflow-hidden {
  height: 250px;
}

.portfolio-img.overflow-hidden img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.portfolio-content h5 {
  font-weight: 700;
  font-size: 20px;
}

.portfolio-content span {
  color: #214d87 !important;
}


/* ----Services---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2c3145;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section_all {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;

}

.section-title {
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-subtitle {
  letter-spacing: 0.4px;
  line-height: 28px;
  max-width: 550px;
}

.section-title-border {
  background-color: #000;
  height: 1 3px;
  width: 44px;
}

.section-title-border-white {
  background-color: #fff;
  height: 2px;
  width: 100px;
}

.text_custom {
  color: #00bd2a;
}

.about_icon i {
  font-size: 27px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  display: inline-block;
  background: #fff;
  border-radius: 35px;
  color: #4879d3;
  box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
  max-width: 450px;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
}

.about_icon span {
  position: relative;
  top: -10px;
}

.img_about {
  height: 100%;
}

.img_about img {
  height: 100%;
  border-radius: 10px;
}

.about_header_main p {
  margin: 0px;
  padding: 0px;
  color: #42545e !important;
}

.about_detail {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;

  row-gap: 6px;
}

.about_detail h5 {
  font-size: 20px;
  font-weight: 600;
}

.privacy-main-ul {
  display: flex;
  justify-content: space-between;
}

.privacy-main-ul li,
a {
  font-size: 16px;
  color: #ffffffb3;
}

@media (max-width:767px) {

  .privacy-main-ul li,
  a {
    font-size: 13px !important;
  }

  .copyrite {
    font-size: 12px !important;
    text-align: center !important;
  }

  .about-section img {
    height: 290px;
    width: 100%;
    object-fit: cover;
  }

  .about-section {
    padding: 35px 0px;
  }

  .section {
    padding: 35px 0;
  }

  .section_all {
    padding: 35px 0px;
  }
}