/**************************************
***************************************
Theme Name: TuBroker CSS
Theme URI: https://websitebolivia.com/
Description: Tu Broker, Sudamericana SRL 
Version: 1.0.0
Author: Website Bolivia
***************************************
***************************************/

@charset "UTF-8";
/*=======  COMMON CSS  =======*/

@font-face {
    font-family: 'Haltto-Light';
    src: url('../fonts/Haltto-Light.ttf') format('truetype');
    /* Agrega aquí otros formatos de fuente si los tienes disponibles */
}

@font-face {
    font-family: 'Haltto-Bold';
    src: url('../fonts/Haltto-Bold.ttf') format('truetype');
    /* Agrega aquí otros formatos de fuente si los tienes disponibles */
}

body {
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000f49;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.8;
}
.bold-text {
    font-family: 'Haltto-Bold', Arial, sans-serif;
    font-weight: bold; /* Asegúrate de establecer el peso de la fuente como negrita */
}
@media (max-width: 575px) {
  body {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.slick-initialized .slick-slide:focus,
.btn:focus,
select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input,
textarea,
button,
select {
  border: none;
}

.gateway-details input {
  border: 1px solid #e5e5e5;
}


input[type='radio'] {
  width: 12%;
  height: initial;
}

.form-check-input {
  width: 0;
  height: 20px;
  padding: 0;

}

textarea {
  height: 140px;
  padding-top: 20px;
  resize: none;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-webkit-scrollbar {
  background-color: #ccc;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea,
.input-group select {
  padding-right: 50px;
}

.input-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-group select::-ms-expand {
  display: none;
}

.input-group .icon {
  position: absolute;
  right: 25px;
  font-size: 14px;
  color: var(--main-color);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-group.select .icon {
  top: 68%;
}

.input-group.textarea .icon {
  top: 20px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.slick-slide img {
  display: inline-block;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 700;
  margin: 0px;
}

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  color: #000f49;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  margin: 0px;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:hover {
  color: var(--main-color);
}

/*=======  Common Classes  =======*/
.main-btn {
  line-height: 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  padding: 0 50px;
  background-color: var(--main-color);
  border: 1px solid transparent;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  z-index: 2;
}

@media (max-width: 1199px) {
  .main-btn {
    padding: 0 40px;
    font-size: 16px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .main-btn {
    padding: 0 35px;
    font-size: 14px;
    line-height: 60px;
  }
}

.main-btn::after {
  position: absolute;
  right: 15px;
  top: 4px;
  bottom: 4px;
  background-color: var(--hover-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  content: "";
  z-index: -1;
  width: 85px;
  border-radius: 30px;
}

.main-btn:hover {
  color: #fff;
  border-color: var(--main-color);
}

.main-btn:hover::after {
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
}

.main-btn.main-btn-2 {
  background-color: var(--main-color);
  color: #ffffff;
}

.main-btn.main-btn-2::after {
  background-color: var(--hover-color);
}

.main-btn.main-btn-2:hover {
  color: #fff;
}

.main-btn.main-btn-3 {
  background-color: var(--main-color);
  color: #fff;
}

.main-btn.main-btn-3::after {
  background-color: var(--hover-color);
}

.main-btn.main-btn-4:hover {
  color: var(--hover-color);
}

.main-btn.main-btn-4:hover::after {
  background-color: #fff;
}

@media (max-width: 1199px) {
  .view-moore-btn .main-btn {
    padding: 0 35px;
  }
}

.bg-img-c {
  background-size: cover;
  background-position: center;
  background-color: #979797;
  min-height: 450px;
}

.section-title .title-tag {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .section-title .title-tag {
    font-size: 18px;
  }
}

.section-title .title-tag::before,
.section-title .title-tag::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--main-color);
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.section-title .title-tag::after {
  left: auto;
  right: 0;
}

.section-title.left-border .title-tag {
  padding-left: 45px;
}

.section-title.left-border .title-tag::before {
  display: block;
}

.section-title.both-border .title-tag {
  padding: 0 45px;
}

.section-title.both-border .title-tag::before,
.section-title.both-border .title-tag::after {
  display: block;
}

.section-title .title {
  font-size: 50px;
  line-height: 1.1;
}

@media (max-width: 1199px) {
  .section-title .title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .section-title .title {
    font-size: 28px;
  }
}

@media (max-width: 399px) {
  .section-title .title {
    font-size: 24px;
  }
}

.section-gap {
  padding-top: 130px;
  padding-bottom: 130px;
}

.inner-section-gap {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .section-gap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section-gap-bottom {
  padding-bottom: 130px;
}

@media (max-width: 991px) {
  .section-gap-bottom {
    padding-bottom: 100px;
  }
}

.section-gap-top {
  padding-top: 130px;
}

@media (max-width: 991px) {
  .section-gap-top {
    padding-top: 100px;
  }
}

.grey-bg {
  background-color: #f5f5f5;
}

@media (min-width: 1600px) {
  .container-1600 {
    max-width: 1390px;
  }
}

@media (min-width: 1600px) {
  .container-fluid.p-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 399px) {
  .row .col-tiny-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.line-bottom {
  border-bottom: 2px solid #e9e9e9;
}

.line-top {
  border-top: 2px solid #e9e9e9;
}

.client-slider .slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*======= Preloader =======*/
div#preloader {
  margin: auto;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

div#preloader .loader-cubes {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
  position: absolute;
}

div#preloader .loader-cubes .loader-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

div#preloader .loader-cubes .loader-cube::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  background: var(--main-color);
}

div#preloader .loader-cubes .loader-cube.loader-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

div#preloader .loader-cubes .loader-cube.loader-cube2::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

div#preloader .loader-cubes .loader-cube .loader-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

div#preloader .loader-cubes .loader-cube .loader-cube4::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

div#preloader .loader-cubes .loader-cube .loader-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

div#preloader .loader-cubes .loader-cube .loader-cube3::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

/*=======  Utilitis =======*/
.mt-30 {
  margin-top: 30px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 60px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.sq-16 {
  height: 16px !important;
  width: 16px !important;
}

/*=======  Animations  =======*/
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

@keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

@-webkit-keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0);
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }

  100%,
  90% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0);
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }

  100%,
  90% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/*======= Header =======*/
header .header-nav {
  position: relative;
  background-color: #000f49;
}

@media (max-width: 575px) {
  header .header-nav {
    top: 0;
  }
}

header .header-nav .nav-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .header-nav .nav-container .navbar-toggler {
  border: 1px solid var(--main-color);
  background-color: transparent;
  cursor: pointer;
  display: none;
  padding: 15px;
  margin-left: 30px;
}

header .header-nav .nav-container .navbar-toggler span {
  position: relative;
  background-color: var(--main-color);
  border-radius: 0;
  display: block;
  height: 3px;
  margin-top: 5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}

header .header-nav .nav-container .navbar-toggler span:first-child {
  margin-top: 0;
}

header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}

header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}

header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}

header .header-nav .nav-container .navbar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
  display: none;
}

header .header-nav .nav-container .navbar-close .cross-wrap {
  width: 26px;
  height: 26px;
  cursor: pointer;
  position: relative;
}

header .header-nav .nav-container .navbar-close .cross-wrap span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background: #fff;
}

header .header-nav .nav-container .navbar-close .cross-wrap span:first-child {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .header-nav .nav-container .navbar-close .cross-wrap span:last-child {
  bottom: 12px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .header-nav .nav-container .menu-items ul li {
  display: inline-block;
}

header .header-nav .nav-container .menu-items ul li.has-submemu {
  position: relative;
}

header .header-nav .nav-container .menu-items ul li.has-submemu::after {
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 400;
  content: "";
  position: absolute;
  right: 5px;
  top: 51%;
  font-size: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1599px) {
  header .header-nav .nav-container .menu-items ul li.has-submemu::after {
    right: 0;
  }
}

header .header-nav .nav-container .menu-items ul li a {
  color: #f8f6f6;;
  padding: 0 15px;
  margin: 0 10px;
  line-height: 70px;
  position: relative;
  font-weight: 400;
  font-family: 'Haltto-Light', Arial, sans-serif;
}

header.header-three .header-nav .nav-container .menu-items ul li a {
  line-height: 100px;
}

@media (max-width: 1599px) {
  header .header-nav .nav-container .menu-items ul li a {
    padding: 0 10px;
    margin: 0 5px;
  }
}

@media (max-width: 1199px) {
  header .header-nav .nav-container .menu-items ul li a {
    margin: 0 5px;
    padding: 0 6px;
    font-size: 16px;
  }
}

header .header-nav .nav-container .menu-items ul li a:hover {
  color: var(--main-color);
}

header .header-nav .nav-container .menu-items ul li .submenu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 200px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  height: auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

header .header-nav .nav-container .menu-items ul li .submenu li {
  display: block;
  position: relative;
}

header .header-nav .nav-container .menu-items ul li .submenu li a {
  display: block;
  padding: 8px 30px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  line-height: 30px !important;
  color: #000f49;
}

header .header-nav .nav-container .menu-items ul li .submenu li a:hover {
  background-color: var(--main-color);
  color: #fff !important;
}

header .header-nav .nav-container .menu-items ul li .submenu li .submenu {
  left: 100%;
  top: 50%;
}

header .header-nav .nav-container .menu-items ul li .submenu li:hover .submenu {
  top: 0%;
}

header .header-nav .nav-container .menu-items ul li .submenu li:hover>a {
  background-color: var(--main-color);
  color: #fff;
}

header .header-nav .nav-container .menu-items ul li:hover>.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

header .header-nav .nav-container .menu-items ul li .dd-trigger {
  display: none;
}

header .header-nav .nav-container .offcanvas-toggler {
  background-color: var(--main-color);
  cursor: pointer;
  border-radius: 5px;
  height: 65px;
  width: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .header-nav .nav-container .offcanvas-toggler span span {
  background-color: #fff;
  border-radius: 0;
  display: block;
  height: 3px;
  margin-top: 10px;
  padding: 0;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  width: 40px;
  cursor: pointer;
}

header .header-nav .nav-container .offcanvas-toggler span span:first-child {
  margin-top: 0;
}

@media (max-width: 991px) {
  header .header-nav .nav-container .offcanvas-toggler {
    display: none;
  }
}

header .header-nav .nav-container .language-selection {
  position: relative;
  margin-right: 15px;
}

header .header-nav .nav-container .language-selection.language-selection-two .language-btn {
  color: #000;
}

header.header-two .header-nav .nav-container .language-selection.language-selection-two .language-btn {
  color: #fff;
}

.site-logo img {
  max-width: 210px;
  max-height: 80px;
}

@media only screen and (max-width: 575px) {
  .site-logo img {
    max-width: 115px;
    max-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  header .header-nav .nav-container .language-selection {
    margin-right: 0;
  }
}

header .header-nav .nav-container .language-selection .language-btn {
  height: 35px;
  display: block;
  border: 1px solid #e1e1e1;
  line-height: 30px;
  width: auto;
  text-align: center;
  color: #fff;
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 700;
  padding: 0 10px;
}

@media only screen and (max-width: 991px) {
  header .header-nav .nav-container .language-selection .language-btn {
    height: 40px;
    line-height: 37px;
    font-size: 14px;
  }
}

header .header-nav .nav-container .language-selection .language-btn i {
  position: relative;
  top: 2px;
  margin-left: 8px;
}

header .header-nav .nav-container .language-selection .language-list {
  position: absolute;
  background-color: #fff;
  width: 100px;
  left: 0;
  top: 120%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  height: auto;
  box-shadow: 0px 0px 30px 0px rgba(0,0,0, 0.15);
}

header .header-nav .nav-container .language-selection .language-list li {
  display: block;
}

header .header-nav .nav-container .language-selection .language-list li a {
  display: block;
  padding: 5px 0 5px 15px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  color: #000f49;
  font-size: 16px;
}

header .header-nav .nav-container .language-selection .language-list li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

header .header-nav .nav-container .language-selection:hover .language-list {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

header .header-nav .nav-container .menu-social-link {
  margin-right: 30px;
}

@media (max-width: 1199px) {
  header .header-nav .nav-container .menu-social-link {
    margin-right: 15px;
  }
}

header .header-nav .nav-container .menu-social-link a {
  color: #000f49;
  padding: 8px;
}

@media (max-width: 1199px) {
  header .header-nav .nav-container .menu-social-link a {
    padding: 5px;
  }
}

header .header-nav .nav-container .menu-social-link a:hover {
  color: var(--main-color);
}

header .header-nav .nav-container.breakpoint-on {
  padding: 15px 0;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items {
  flex: auto;
}

header .header-nav .nav-container.breakpoint-on .nav-menu {
  background-color: #000f49;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 9999;
  width: 300px;
  height: 100%;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 70px;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li {
  display: block;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li::after {
  display: none;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff !important;
  line-height: 45px !important;
  font-size: 15px;
  margin: 0 0;
  padding: 0px 15px;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  visibility: visible;
  opacity: 1;
  display: none;
  -webkit-transition: none;
  transition: none;
  box-shadow: none;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu li a {
  color: #fff;
  padding: 0px 20px 0 40px;
  line-height: 45px !important;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu li a:hover {
  background-color: transparent;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu li .submenu li a {
  padding: 0px 20px 0 50px;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .dd-trigger {
  display: block;
  position: absolute;
  right: 0;
  height: 45px;
  width: 45px;
  top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
  background: transparent;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}

header .header-nav .nav-container.breakpoint-on .nav-menu.menu-on {
  left: 0;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item,
header .header-nav .nav-container.breakpoint-on .navbar-close,
header .header-nav .nav-container.breakpoint-on .navbar-toggler {
  display: block;
}

@media only screen and (max-width: 991px) {
  header .header-nav .nav-container .navbar-toggler {
    padding: 9px;
    margin-left: 7px;
  }
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item {
  text-align: center;
  margin-top: 40px;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn {
  background-color: #fff;
  color: #000f49;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn::after {
  background-color: var(--main-color);
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn:hover {
  color: #fff;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .menu-social-link a {
  color: #fff;
  padding: 10px;
}

header .header-nav::before {
  content: "";
  left: 0;
  top: 0;
  background-color: #000f49; /*var(--main-color);*/
  width: 445px;
  height: 100%;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
}

@media (max-width: 1599px) {
  header .header-nav::before {
    width: 265px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
  }
}

@media (max-width: 1199px) {
  header .header-nav::before {
    width: 245px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
  }
}

@media (max-width: 991px) {
  header .header-nav::before {
    width: 220px;
  }
}

header.sticky-header.sticky-on .header-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
  background-color: #fff;
  display: none;
}

header.sticky-header.sticky-on .header-nav .nav-container .menu-items ul li a {
  line-height: 100px;
}

header.sticky-header.header-two.sticky-on .header-nav {
  background-color: #000f49;
}

@media (max-width: 767px) {
  header .header-topbar {
    display: none;
  }
}

header .header-topbar .header-topbar-inner {
  border-bottom: 2px solid #526676;
  padding: 20px 0;
}

@media (max-width: 767px) {

  header .header-topbar .contact-info,
  header .header-topbar .social-links {
    text-align: center;
  }
}

header .header-topbar .contact-info li,
header .header-topbar .social-links li {
  display: inline-block;
}

header .header-topbar .contact-info li,
header .header-topbar .contact-info li a,
header .header-topbar .social-links li,
header .header-topbar .social-links li a {
  color: #000f49;
}

header .header-topbar .contact-info li a:hover,
header .header-topbar .social-links li a:hover {
  color: var(--main-color);
}

header .header-topbar .contact-info li {
  margin-right: 50px;
}

@media (max-width: 1199px) {
  header .header-topbar .contact-info li {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  header .header-topbar .contact-info li {
    margin-right: 10px;
    font-size: 15px;
  }
}

header .header-topbar .contact-info li i {
  margin-right: 15px;
  color: var(--main-color);
}

header .header-topbar .social-links li {
  margin-left: 15px;
  font-size: 15px;
}

header.header-two {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

header.header-two .header-nav {
  background-color: transparent;
}

header.header-two .header-nav::before {
  display: none;
}

header.header-two .header-nav .nav-container .menu-items ul li a,
header.header-two .header-nav .nav-container .menu-items ul li.has-submemu::after {
  color: #fff;
}

header.header-two .header-nav .nav-container .menu-items ul li .submenu li a:hover {
  background-color: #000f49;
}

header.header-two .header-topbar .contact-info li,
header.header-two .header-topbar .contact-info li a,
header.header-two .header-topbar .social-links li,
header.header-two .header-topbar .social-links li a {
  color: #fff;
}

header.header-two .header-topbar .contact-info li a:hover,
header.header-two .header-topbar .social-links li a:hover {
  color: var(--main-color);
}

header.header-two .header-topbar .social-links li a {
  color: #7d91a0;
}

header.header-two .info {
  margin-inline-start: 15px;
}

header.header-three {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

@media (min-width: 1800px) {
  header.header-three .container-fluid {
    max-width: 1780px;
  }
}

header.header-three .header-nav {
  background-color: transparent;
}

header.header-three .header-nav::before {
  display: none;
}

header .main-btn {
  line-height: 50px;
  font-size: 16px;
  padding: 0 20px;
}

header .header-nav .nav-container .navbar-btn {
  margin-inline-end: 15px;
}

header .info a:last-child {
  position: relative;
  margin-inline-start: 8px;
}

header .info a:last-child::after {
  position: absolute;
  content: '';
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
  height: calc(100% - 15px);
  width: 1px;
  background: #aeaeae;
}

/*======= Off Canvas  =======*/
.offcanvas-wrapper {
  position: fixed;
  width: 450px;
  top: 0;
  min-height: 100vh;
  right: -450px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-wrapper.show-offcanvas {
  right: -10px;
  visibility: visible;
  opacity: 1;
}

.offcanvas-wrapper .offcanvas-overly {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 98;
  background-color: #1e1e1e;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-wrapper .offcanvas-overly.show-overly {
  visibility: visible;
  opacity: 0.5;
}

.offcanvas-wrapper .offcanvas-widget {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  padding: 70px 40px;
  position: relative;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: scroll;
}

.offcanvas-wrapper .offcanvas-widget a.offcanvas-close {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 28px;
  color: var(--main-color);
}

.offcanvas-wrapper .offcanvas-widget .widget {
  margin-bottom: 40px;
  font-size: 16px;
}

.offcanvas-wrapper .offcanvas-widget .widget .widget-title {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.offcanvas-wrapper .offcanvas-widget .widget .widget-title::before,
.offcanvas-wrapper .offcanvas-widget .widget .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 10px;
  background-color: var(--main-color);
}

.offcanvas-wrapper .offcanvas-widget .widget .widget-title::after {
  width: 30px;
  left: 15px;
}

.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li {
  display: inline-block;
  margin-right: 5px;
}

.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 15px;
  color: #000f49;
  border: 1px solid #ededed;
}

.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li a:hover {
  background-color: #000f49;
  color: #fff;
}

.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li:not(:last-child),
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li:not(:last-child) {
  margin-bottom: 10px;
}

.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li i,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li i {
  color: var(--main-color);
  position: relative;
  top: 2px;
  margin-right: 10px;
  font-size: 18px;
}

.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li a,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li a {
  color: #000f49;
}

.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li a span,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li a span {
  font-weight: 600;
}


/*======= Banner =======*/
.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-section .single-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  padding: 225px 0;
}

@media (max-width: 991px) {
  .banner-section .single-banner {
    padding: 200px 0;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner {
    padding: 150px 0;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner {
    padding: 130px 0;
  }
}

.banner-section .single-banner::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #00000000;
  opacity: 0.65;
  z-index: -2;
}

.banner-section .single-banner .banner-content h1 {
  color: #fff;
  font-size: 95px;
  line-height: 1.1;
}

@media (max-width: 1199px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 28px;
  }
}

.banner-section .single-banner .banner-content .promo-text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 12px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 45px;
}

.banner-section .single-banner .banner-content .promo-text::before {
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: rotate(-25deg) translateY(-50%);
  transform: rotate(-25deg) translateY(-50%);
  content: "";
  background-color: #fff;
  height: 20px;
  width: 20px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-content .promo-text {
    font-size: 16px;
    letter-spacing: 10px;
  }
}

@media (max-width: 767px) {
  .banner-section .single-banner .banner-content .promo-text {
    font-size: 15px;
    letter-spacing: 8px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-content .promo-text {
    font-size: 14px;
    letter-spacing: 4px;
    padding-left: 30px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-content .promo-text {
    letter-spacing: 2px;
  }
}

.banner-section .single-banner .banner-content .btn-wrap {
  margin-top: 40px;
}

.banner-section .single-banner .banner-content .btn-wrap li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-content .btn-wrap li {
    margin-right: 5px;
  }
}

.banner-section .single-banner .banner-content p {
  margin-top: 35px;
}

.banner-section .single-banner .banner-shapes>div {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: -1;
}

.banner-section .single-banner .banner-shapes .one {
  width: 430px;/*345px;*/
  height: 425px;
  opacity: 0.57;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .one {
    width: 185px;
    height: 265px;
  }
}

@media (max-width: 1199px) {
  .banner-section .single-banner .banner-shapes .one {
    width: 165px;
    height: 245px;
  }
}

.banner-section .single-banner .banner-shapes .two {
  width: 645px;/*605px;520px;*/
  height: 650px;
  opacity: 0.37;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .two {
    width: 320px;
    height: 450px;
  }
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-shapes .two {
    width: 270px;
    height: 390px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-shapes .two {
    display: none;
  }
}

.banner-section .single-banner .banner-shapes .three {
  width: 830px;/*745px;*/
  height: 835px;
  opacity: 0.25;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .three {
    width: 450px;
    height: 615px;
  }
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-shapes .three {
    width: 365px;
    height: 540px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-shapes .three {
    display: none;
  }
}

.banner-section .single-banner .banner-shapes .four {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  height: 265px;/*280*/
  width: 270px;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.65;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .four {
    height: 230px;
    width: 220px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-shapes .four {
    height: 130px;
    width: 155px;
  }
}

.banner-section .search-wrap {
  position: absolute;
  right: 45px;
  z-index: 2;
  bottom: -35px;
}

@media (max-width: 575px) {
  .banner-section .search-wrap {
    right: 20px;
    bottom: -25px;
  }
}

.banner-section .search-wrap .search-icon {
  position: relative;
  width: 90px;
  height: 90px;
  line-height: 90px;
  color: #000f49;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 575px) {
  .banner-section .search-wrap .search-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

.banner-section .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 70px;
  background-color: transparent;
  color: #fff;
  font-size: 50px;
  opacity: 0.3;
  line-height: 1;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
}

@media (max-width: 1199px) {
  .banner-section .slick-arrow {
    font-size: 40px;
    left: 40px;
  }
}

@media (max-width: 767px) {
  .banner-section .slick-arrow {
    font-size: 35px;
    left: 15px;
  }
}

.banner-section .slick-arrow.next-arrow {
  left: auto;
  right: 70px;
}

@media (max-width: 1199px) {
  .banner-section .slick-arrow.next-arrow {
    right: 40px;
  }
}

@media (max-width: 767px) {
  .banner-section .slick-arrow.next-arrow {
    right: 15px;
  }
}

.banner-section .slick-arrow:hover {
  opacity: 1;
}

.banner-section.banner-section-two .single-banner {
  padding-bottom: 220px;
  padding-top: 314px;
}

@media (max-width: 767px) {
  .banner-section.banner-section-two .single-banner {
    padding-top: 220px;
    padding-bottom: 150px;
  }
}

.banner-section.banner-section-two .single-banner::before {
  background: radial-gradient(circle, rgba(1, 12, 21, 0.5) 0%, rgba(1, 12, 21, 0.9) 88%);
  background: -webkit-radial-gradient(circle, rgba(1, 12, 21, 0.5) 0%, rgba(1, 12, 21, 0.9) 88%);
  opacity: 1;
}

.banner-section.banner-section-two .single-banner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/lines/09.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}

@media (max-width: 575px) {
  .banner-section.banner-section-two .single-banner::after {
    background-size: 300px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-two .single-banner p br {
    display: none;
  }
}

.banner-section.banner-section-two .slick-arrow {
  visibility: visible;
}

.banner-section.banner-section-three .single-banner {
  padding-top: 185px;
  padding-bottom: 100px;
  background-color: #f5f5f5;
  color: #000f49;
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner {
    padding-top: 190px;
  }
}

.banner-section.banner-section-three .single-banner::before {
  display: none;
}

.banner-section.banner-section-three .single-banner .banner-content h1 {
  color: #000f49;
}

@media (max-width: 1599px) {
  .banner-section.banner-section-three .single-banner .banner-content h1 {
    font-size: 66px;
  }
}

@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li {
    margin-right: 5px;
  }
}

@media (max-width: 1599px) {
  .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
    padding: 0 45px;
  }
}

@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
    padding: 0 20px;
    font-size: 14px;
  }
}

.banner-section.banner-section-three .single-banner .banner-content .promo-text {
  color: var(--main-color);
  letter-spacing: 0;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Haltto-Light', Arial, sans-serif;
  text-transform: capitalize;
  padding-left: 60px;
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-content .promo-text {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.banner-section.banner-section-three .single-banner .banner-content .promo-text::before {
  -webkit-clip-path: none;
  clip-path: none;
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  width: 40px;
  height: 3px;
  background-color: var(--main-color);
}

.banner-section.banner-section-three .single-banner .banner-shapes>div {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  background-color: var(--main-color);
  -webkit-clip-path: none;
  clip-path: none;
  z-index: -1;
  height: 1030px;
  width: 1030px;
  border-radius: 50%;
  opacity: 0.08;
}

@media (max-width: 1599px) {
  .banner-section.banner-section-three .single-banner .banner-shapes>div {
    width: 900px;
    height: 900px;
  }
}

@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-shapes>div {
    height: 750px;
    width: 750px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-shapes>div {
    height: 650px;
    width: 650px;
  }
}

@media (max-width: 767px) {
  .banner-section.banner-section-three .single-banner .banner-shapes>div {
    height: 500px;
    width: 500px;
  }
}

.banner-section.banner-section-three .single-banner .banner-shapes .one {
  top: -147px;
  right: -34px;
}

.banner-section.banner-section-three .single-banner .banner-shapes .two {
  top: -134px;
  right: -174px;
}

.banner-section.banner-section-three .single-banner .banner-shapes .three {
  top: -185px;
  right: -335px;
}

.banner-section.banner-section-three .single-banner .banner-line {
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-line {
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .banner-section.banner-section-three .single-banner .banner-line {
    left: auto;
    right: 0;
  }
}

@media (max-width: 767px) {
  .banner-section.banner-section-three .single-banner .banner-line img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}

/*=======  About CSS  =======*/
.about-text {
  padding-left: 80px;
}

@media (max-width: 1199px) {
  .about-text {
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .about-text {
    padding-left: 0;
  }
}

.about-text .about-list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-text .about-list li {
  color: #000f49;
}

.about-text .about-list li i {
  color: var(--main-color);
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.about-text-two {
  padding-left: 45px;
}

@media (max-width: 991px) {
  .about-text-two {
    padding-left: 0;
    margin-top: 50px;
  }
}

.about-text-two .about-list {
  margin-bottom: 40px;
}

.about-text-two .about-list li {
  padding-left: 70px;
  margin-top: 30px;
  position: relative;
}

.about-text-two .about-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 50%;
}

.about-text-three {
  color: #c2d9eb;
  padding-left: 0;
  padding-right: 60px;
}

@media (max-width: 1199px) {
  .about-text-three {
    padding-right: 0;
  }
}

.about-text-three .section-title .title {
  color: #fff;
}

.about-text-three .about-list {
  margin-bottom: 50px;
}

.about-text-three .about-list li {
  color: #c2d9eb;
  font-weight: 600;
}

.about-illustration-img {
  position: relative;
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-illustration-img .illustration-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 50%;
  max-width: 655px;
}

@media (max-width: 991px) {
  .about-illustration-img .illustration-img {
    position: unset;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    margin: 0 auto 50px;
    max-width: 550px;
  }
}

@media (max-width: 767px) {
  .about-illustration-img .illustration-img {
    max-width: 450px;
  }
}

.about-video {
  position: relative;
  width: 100%;
  min-height: 680px;
}

.about-video .video-poster-two,
.about-video .video-poster-one,
.about-video .video-poster-two::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 470px;
  height: 565px;
  background-position: center;
  background-size: cover;
  background-color: #000f49;
  z-index: 1;
}

@media (max-width: 575px) {

  .about-video .video-poster-two,
  .about-video .video-poster-one,
  .about-video .video-poster-two::before {
    width: 300px;
    height: 380px;
  }
}

.about-video .video-poster-two {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .about-video .video-poster-two {
    height: 400px;
  }
}

.about-video .video-poster-two::before {
  content: "";
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  height: 500px;
  opacity: 0.7;
  z-index: -1;
}

@media (max-width: 575px) {
  .about-video .video-poster-two::before {
    height: 400px;
  }
}

.about-video .video-poster-two .video-play-icon {
  font-size: 22px;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  background-color: #fff;
  color: var(--main-color);
  border-radius: 50%;
}

.about-video .video-poster-two .video-play-icon:hover {
  background-color: #000f49;
  color: #fff;
}

.about-tile-gallery {
  position: relative;
  -webkit-transform: translateX(110px);
  transform: translateX(110px);
  text-align: center;
}

@media (max-width: 1199px) {
  .about-tile-gallery {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
}

@media (max-width: 991px) {
  .about-tile-gallery {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .about-tile-gallery .image-one {
    max-width: 80%;
  }
}

.about-tile-gallery .image-two {
  position: absolute;
  left: -100px;
  bottom: 85px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .about-tile-gallery .image-two {
    left: -50px;
  }
}

@media (max-width: 991px) {
  .about-tile-gallery .image-two {
    bottom: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .about-tile-gallery .image-two {
    max-width: 200px;
  }
}

.about-section-three {
  background-color: #000f49;
  position: relative;
  z-index: 1;
}

.about-section-three::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 25%;
  background-color: #f5f5f5;
}

@media (max-width: 991px) {
  .about-section-three::before {
    width: 100%;
    height: 25%;
  }
}

.about-section-three::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 500px;
  width: 530px;
  background-image: url(../img/lines/11.png);
  z-index: -1;
}

@media (max-width: 991px) {
  .about-section-three::after {
    height: 390px;
    width: 420px;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .about-section-three::after {
    height: 210px;
    width: 250px;
  }
}



/*=======  Feature Boxes  =======*/
.feature-boxes .feature-box {
  height: 450px;
  margin-top: 30px;
  position: relative;
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .feature-boxes .feature-box {
    padding: 25px 20px;
  }
}

@media (max-width: 575px) {
  .feature-boxes .feature-box {
    height: 400px;
  }
}

.feature-boxes .feature-box .feature-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 575px) {
  .feature-boxes .feature-box .feature-bg {
    background-position: center top;
  }
}

.feature-boxes .feature-box .feature-desc a,
.feature-boxes .feature-box .feature-desc h4,
.feature-boxes .feature-box .feature-desc p {
  color: #fff;
}

.feature-boxes .feature-box .feature-desc h4 {
  font-size: 24px;
  letter-spacing: -1px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .feature-boxes .feature-box .feature-desc h4 {
    font-size: 22px;
  }
}

.feature-boxes .feature-box .feature-desc .feature-link {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
}

.feature-boxes .feature-box::before,
.feature-boxes .feature-box::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 80px);
  height: 300px;
  background-color: var(--main-color);
  opacity: 0.4;
  content: "";
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: -2;
}

.feature-boxes .feature-box::after {
  opacity: 0.8;
  height: 250px;
  z-index: -1;
  width: 100%;
}

.feature-boxes .feature-box:hover .feature-bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*======= Why Choose Us =======*/
.wcu-section .wcu-text {
  color: #c2d9eb;
}

@media (max-width: 991px) {
  .wcu-section .wcu-text {
    margin-top: 40px;
  }
}

.wcu-section .wcu-text ul {
  margin: 40px 0;
}

.wcu-section .wcu-text ul li:not(:last-child) {
  margin-bottom: 10px;
}

.wcu-section .wcu-text ul li i {
  margin-right: 10px;
}

.wcu-section .wcu-text .section-title h2 {
  color: #fff;
}

.wcu-section .wcu-text-two {
  padding-left: 45px;
}

@media (max-width: 1199px) {
  .wcu-section .wcu-text-two {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .wcu-section .wcu-text-two {
    padding-left: 0;
    margin-top: 50px;
  }
}

.wcu-section .wcu-text-two ul {
  margin: 40px 0;
}

.wcu-section .wcu-text-two ul::before {
  content: "";
  display: block;
  clear: both;
}

.wcu-section .wcu-text-two ul li {
  font-weight: 600;
  margin-bottom: 10px;
  float: left;
  width: 50%;
}

.wcu-section .wcu-text-two ul li:not(:last-child) {
  margin-bottom: 10px;
}

.wcu-section .wcu-text-two ul li i {
  margin-right: 10px;
  color: var(--main-color);
}

.wcu-section .wcu-text-two ul li::before {
  content: "";
  display: block;
  clear: both;
}

.wcu-section .wcu-video {
  position: relative;
  min-height: 690px;
}

@media (max-width: 1199px) {
  .wcu-section .wcu-video {
    min-height: 620px;
  }
}

@media (max-width: 991px) {
  .wcu-section .wcu-video {
    min-height: 580px;
  }
}

@media (max-width: 767px) {
  .wcu-section .wcu-video {
    min-height: 480px;
  }
}

@media (max-width: 399px) {
  .wcu-section .wcu-video {
    min-height: 400px;
  }
}

.wcu-section .wcu-video .video-poster-one,
.wcu-section .wcu-video::before {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: absolute;
  left: -45px;
  top: 0;
}

@media (max-width: 1199px) {

  .wcu-section .wcu-video .video-poster-one,
  .wcu-section .wcu-video::before {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 767px) {

  .wcu-section .wcu-video .video-poster-one,
  .wcu-section .wcu-video::before {
    left: 0;
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 575px) {

  .wcu-section .wcu-video .video-poster-one,
  .wcu-section .wcu-video::before {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 399px) {

  .wcu-section .wcu-video .video-poster-one,
  .wcu-section .wcu-video::before {
    width: 280px;
    height: 280px;
  }
}

.wcu-section .wcu-video::before {
  content: "";
  background-image: url(../img/lines/11.png);
  z-index: 1;
  background-position: 0 -45%;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .wcu-section .wcu-video::before {
    background-size: cover;
  }
}

.wcu-section .wcu-video .video-poster-two,
.wcu-section .wcu-video::after {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 305px;
  height: 305px;
  border-radius: 50%;
  border: 20px solid #fff;
}

@media (max-width: 1199px) {

  .wcu-section .wcu-video .video-poster-two,
  .wcu-section .wcu-video::after {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 991px) {

  .wcu-section .wcu-video .video-poster-two,
  .wcu-section .wcu-video::after {
    width: 220px;
    height: 220px;
    border-width: 10px;
    right: 10px;
  }
}

@media (max-width: 399px) {

  .wcu-section .wcu-video .video-poster-two,
  .wcu-section .wcu-video::after {
    width: 200px;
    height: 200px;
    border-width: 5px;
    right: 0;
  }
}

.wcu-section .wcu-video::after {
  background-color: #000f49;
  opacity: 0.36;
  content: "";
}

.wcu-section .wcu-video .video-poster-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wcu-section .wcu-video .video-poster-two a {
  font-size: 30px;
  color: var(--main-color);
  position: relative;
  z-index: 2;
}

.wcu-section.box-style .wcu-inner {
  position: relative;
  background-color: #000f49;
  padding: 110px 100px;
  z-index: 2;
}

@media (max-width: 1199px) {
  .wcu-section.box-style .wcu-inner {
    padding: 90px 60px;
  }
}

@media (max-width: 575px) {
  .wcu-section.box-style .wcu-inner {
    padding: 60px 30px;
  }
}

.wcu-section.box-style .wcu-inner::before,
.wcu-section.box-style .wcu-inner::after {
  position: absolute;
  background-color: #000f49;
  z-index: -2;
  content: "";
  opacity: 0.07;
}

.wcu-section.box-style .wcu-inner::before {
  left: -20px;
  right: -20px;
  bottom: -20px;
  top: 20px;
}

.wcu-section.box-style .wcu-inner::after {
  left: -40px;
  right: -40px;
  bottom: -40px;
  top: 40px;
}

.wcu-section.box-style .wcu-inner .line-shape-one {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.wcu-section.box-style .wcu-inner .line-shape-two {
  position: absolute;
  z-index: -1;
  right: 60px;
  bottom: 50px;
}

/*======= Fact Boxes =======*/
.fact-section {
  padding-top: 550px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
  margin-top: -450px;
}

.fact-section::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/lines/05.png);
  background-position: left top;
  background-size: auto;
  background-repeat: no-repeat;
}

.fact-boxes .fact-box .icon {
  color: var(--main-color);
  line-height: 1;
  margin-bottom: 20px;
  font-size: 55px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.fact-boxes .fact-box .counter {
  font-size: 55px;
  font-weight: 600;
  letter-spacing: -1px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 575px) {
  .fact-boxes .fact-box .counter {
    font-size: 40px;
  }
}

.fact-boxes .fact-box p.title {
  line-height: 1.2;
  margin-top: 5px;
}

.fact-boxes .fact-box.fact-box-two .counter {
  color: #fff;
}

.fact-boxes .fact-box.fact-box-two .title {
  color: #6f8697;
}

.fact-boxes .fact-box.fact-box-three {
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 50px 20px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
}

@media (max-width: 575px) {
  .fact-boxes .fact-box.fact-box-three {
    padding: 40px 15px;
  }
}

@media (max-width: 1199px) {
  .fact-boxes .fact-box.fact-box-three .counter {
    font-size: 46px;
  }
}

@media (max-width: 575px) {
  .fact-boxes .fact-box.fact-box-three .counter {
    font-size: 35px;
  }
}

.fact-boxes .fact-box.fact-box-three::before {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/lines/15.png);
  background-size: cover;
  content: "";
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.fact-boxes .fact-box.fact-box-three:hover {
  background-color: var(--main-color);
}

.fact-boxes .fact-box.fact-box-three:hover,
.fact-boxes .fact-box.fact-box-three:hover .icon,
.fact-boxes .fact-box.fact-box-three:hover .counter {
  color: #fff;
}

.fact-boxes .fact-box.fact-box-three:hover::before {
  visibility: visible;
  opacity: 1;
}

.fact-section-two {
  position: relative;
  z-index: 5;
}

.fact-section-two .fact-two-inner {
  background-color: #000f49;
  padding: 115px 165px 75px;
  margin: 0 -165px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1599px) {
  .fact-section-two .fact-two-inner {
    padding: 115px 40px 75px;
    margin: 0 -40px;
  }
}

@media (max-width: 991px) {
  .fact-section-two .fact-two-inner {
    padding: 100px 30px 50px;
    margin: 0;
  }
}

.fact-section-two .fact-two-inner::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-image: url(../img/lines/13.png);
  background-size: cover;
  background-position: center;
}

.fact-text {
  padding-right: 50px;
}

@media (max-width: 1199px) {
  .fact-text {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .fact-text {
    margin-top: 50px;
  }
}

.fact-text .fact-list {
  margin-bottom: 40px;
}

.fact-text .fact-list li {
  padding-left: 70px;
  margin-top: 30px;
  position: relative;
}

@media (max-width: 575px) {
  .fact-text .fact-list li {
    padding-left: 60px;
  }
}

.fact-text .fact-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 50%;
}

@media (max-width: 575px) {
  .fact-text .fact-list li i {
    height: 40px;
    width: 40px;
    line-height: 38px;
    font-size: 14px;
  }
}

.fact-section-three {
  position: relative;
  z-index: 1;
}

.fact-section-three::before {
  position: absolute;
  left: 100px;
  bottom: -45px;
  width: 385px;
  height: 385px;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background-color: var(--main-color);
  opacity: 0.05;
}

@media (max-width: 1199px) {
  .fact-section-three::before {
    left: 1%;
    bottom: -30px;
  }
}

@media (max-width: 575px) {
  .fact-section-three::before {
    width: 280px;
    height: 280px;
    bottom: -10px;
  }
}

/*======= Team Members =======*/
.team-members .team-member {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.team-members .team-member .member-picture-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
}

.team-members .team-member .member-picture-wrap .member-picture {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.team-members .team-member .member-picture-wrap .member-picture::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: #000f49;
  width: 90px;
  height: 80px;
  -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
  clip-path: polygon(100% 0, 0 100%, 0 0);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  content: "";
  opacity: 1;
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons {
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-align: center;
  direction: ltr;
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons::before {
  position: absolute;
  content: "";
  left: -15px;
  top: -5px;
  width: 105px;
  height: 95px;
  z-index: -1;
  background-color: #000f49;
  -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
  clip-path: polygon(100% 0, 0 100%, 0 0);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons a {
  color: #fff;
  font-size: 20px;
  padding: 5px;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 575px) {
  .team-members .team-member .member-picture-wrap .member-picture .social-icons a {
    font-size: 16px;
  }
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons a:first-child {
  opacity: 1;
  visibility: visible;
}

.team-members .team-member .member-picture-wrap::after {
  position: absolute;
  content: "";
  right: -10px;
  bottom: -10px;
  width: 80px;
  height: 70px;
  background-color: #000f49;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: -1;
}

.team-members .team-member .member-desc .name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
}

@media (max-width: 1199px) {
  .team-members .team-member .member-desc .name {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .team-members .team-member .member-desc .name {
    font-size: 22px;
  }
}

.team-members .team-member .member-desc .pro {
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .team-members .team-member .member-desc .pro {
    font-size: 14px;
  }
}

.team-members .team-member:hover .member-picture::before {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -webkit-clip-path: none;
  clip-path: none;
}

.team-members .team-member:hover .member-picture .social-icons {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team-members .team-member:hover .member-picture .social-icons a {
  visibility: visible;
  opacity: 1;
  margin: 5px;
}

.team-members-two .team-member {
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-members-two .team-member .member-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 35px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 2;
}

@media (max-width: 1199px) {
  .team-members-two .team-member .member-desc {
    padding: 20px;
  }
}

.team-members-two .team-member .member-desc .name {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.team-members-two .team-member .member-desc .name a {
  color: #fff;
}

@media (max-width: 1199px) {
  .team-members-two .team-member .member-desc .name {
    font-size: 22px;
  }
}

.team-members-two .team-member .member-desc .pro {
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1199px) {
  .team-members-two .team-member .member-desc .pro {
    font-size: 15px;
  }
}

.team-members-two .team-member .member-desc .social-icons {
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .team-members-two .team-member .member-desc .social-icons {
    margin-top: 5px;
  }
}

.team-members-two .team-member .member-desc .social-icons li {
  display: inline-block;
  margin-right: 15px;
}

.team-members-two .team-member .member-desc .social-icons li a {
  font-size: 15px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-members-two .team-member .member-desc .social-icons li a:hover {
  color: var(--main-color);
}

.team-members-two .team-member .member-picture {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-members-two .team-member .member-picture img {
  width: 100%;
}

.team-members-two .team-member::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  content: "";
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: linear-gradient(15deg, #000f49 0%, rgba(9, 21, 30, 0.5) 58%, rgba(1, 12, 21, 0.01) 99%, #010c15 100%);
}

.team-members-two .team-member::after {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 60px;
  bottom: 60px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  content: "";
  background-image: url(../img/lines/14.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1199px) {
  .team-members-two .team-member::after {
    left: 5px;
    top: 5px;
  }
}

.team-members-two .team-member:hover {
  padding: 10px;
}

@media (max-width: 1199px) {
  .team-members-two .team-member:hover {
    padding: 5px;
  }
}

.team-members-two .team-member:hover .member-desc {
  visibility: visible;
  opacity: 1;
}

.team-members-two .team-member:hover::before {
  opacity: 1;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  visibility: visible;
}

@media (max-width: 1199px) {
  .team-members-two .team-member:hover::before {
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
  }
}

.team-members-two .team-member:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1599px) {
  .team-members-two.row {
    margin-left: -10px;
    padding-right: -10px;
  }
}

@media (max-width: 1599px) {
  .team-members-two.row .col {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*======= Skill Section =======*/
.skill-section {
  position: relative;
  padding-bottom: 80px;
}

.skill-section::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 940px;
  width: 940px;
  border-radius: 50%;
  background-color: #f5f5f5;
  z-index: -1;
  -webkit-transform: translate(-285px, -50%);
  transform: translate(-285px, -50%);
}

@media (max-width: 991px) {
  .skill-section::before {
    height: 600px;
    width: 600px;
  }
}

@media (max-width: 767px) {
  .skill-section::before {
    height: 500px;
    width: 500px;
  }
}

.skill-section .skill-text {
  padding-right: 55px;
}

@media (max-width: 1199px) {
  .skill-section .skill-text {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .skill-section .skill-text {
    margin-bottom: 50px;
  }
}

.skill-section .skill-text p {
  margin-bottom: 20px;
}

.skill-section .skill-text .main-btn {
  margin-top: 10px;
}

.skill-section .piechart-boxes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 575px) {
  .skill-section .piechart-boxes {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 399px) {
  .skill-section .piechart-boxes {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.skill-section .piechart-boxes .chart-box {
  text-align: center;
  margin-bottom: 50px;
}

.skill-section .piechart-boxes .chart-box .chart {
  position: relative;
  max-width: 220px;
  margin: auto;
}

/* @media (max-width: 1199px) {
  .skill-section .piechart-boxes .chart-box .chart {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .skill-section .piechart-boxes .chart-box .chart {
    max-width: 150px;
  }
} */

@media (max-width: 1199px) {
  .skill-section .piechart-boxes .chart-box .chart canvas {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .skill-section .piechart-boxes .chart-box .chart canvas {
    width: 150px;
    height: 150px;
  }
}

.skill-section .piechart-boxes .chart-box .chart i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #000f49;
}

@media (max-width: 767px) {
  .skill-section .piechart-boxes .chart-box .chart i {
    font-size: 40px;
  }
}

.skill-section .piechart-boxes .chart-box .title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
}

@media (max-width: 575px) {
  .skill-section .piechart-boxes .chart-box .title {
    font-size: 18px;
  }
}

.skill-section.skill-section-two {
  padding: 130px 0;
}

.skill-section.skill-section-two::before {
  display: none;
}

.skill-section .skill-progress-bars .skill-progress {
  margin-bottom: 30px;
}

.skill-section .skill-progress-bars .skill-progress:last-child {
  margin-bottom: 0;
}

.skill-section .skill-progress-bars .skill-progress .title {
  font-size: 20px;
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000f49;
}

.skill-section .skill-progress-bars .skill-progress .progressbar-wrap {
  width: 100%;
  height: 5px;
  background-color: #e7e8e9;
  position: relative;
}

.skill-section .skill-progress-bars .skill-progress .progressbar-wrap .progressbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--main-color);
  -webkit-transition: width 2s ease-in-out;
  transition: width 2s ease-in-out;
}

/*=======  Testimonial One  =======*/
.testimonial-section {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 160px;
  overflow: hidden;
}

@media (max-width: 1800px) {
  .testimonial-section {
    padding-bottom: 130px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .testimonial-section {
    padding-top: 500px;
  }
}

@media (max-width: 575px) {
  .testimonial-section {
    padding-top: 100px;
  }
}

@media (max-width: 1599px) {
  .testimonial-section .offset-lg-5 {
    margin-left: 50%;
  }
}

@media (max-width: 991px) {
  .testimonial-section .offset-lg-5 {
    margin-left: 0;
  }
}

.testimonial-section::before {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-size: auto;
  content: "";
  background-position: right bottom;
  background-image: url(../img/lines/06.png);
  background-repeat: no-repeat;
  z-index: -1;
}

@media (max-width: 1199px) {
  .testimonial-section::before {
    background-size: 35%;
  }
}

.testimonial-section .testimonial-items {
  margin-top: 80px;
}

@media (max-width: 991px) {
  .testimonial-section .testimonial-items {
    margin-top: 60px;
  }
}

.testimonial-section .testimonial-items .testimonial-item {
  font-size: 20px;
  color: #000f49;
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-items .testimonial-item {
    font-size: 18px;
  }
}

.testimonial-section .testimonial-items .testimonial-item p {
  margin-bottom: 10px;
}

.testimonial-section .testimonial-items .testimonial-item .quote-top,
.testimonial-section .testimonial-items .testimonial-item .quote-bottom {
  color: var(--main-color);
  font-size: 16px;
  position: relative;
}

.testimonial-section .testimonial-items .testimonial-item .quote-top {
  margin-right: 10px;
  top: -5px;
}

.testimonial-section .testimonial-items .testimonial-item .quote-bottom {
  margin-left: 10px;
  bottom: -5px;
}

.testimonial-section .testimonial-items .testimonial-item .author {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
}

.testimonial-section .testimonial-items .testimonial-item .author .thumb {
  min-width: 75px;
}

.testimonial-section .testimonial-items .testimonial-item .author .thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-section .testimonial-items .testimonial-item .author h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
}

.testimonial-section .testimonial-items .testimonial-item .author span {
  font-weight: 600;
  color: var(--main-color);
  font-size: 16px;
}

.testimonial-section .testimonial-arrows {
  margin-top: 60px;
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-arrows {
    margin-top: 40px;
  }
}

.testimonial-section .testimonial-arrows .slick-arrow {
  font-size: 50px;
  background: transparent;
  color: var(--main-color);
  line-height: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.testimonial-section .testimonial-arrows .slick-arrow.next-arrow {
  margin-left: 40px;
}

.testimonial-section .testimonial-arrows .slick-arrow.prev-arrow {
  opacity: 0.3;
  color: #000f49;
}

.testimonial-section .testimonial-arrows .slick-arrow.prev-arrow:hover {
  opacity: 1;
  color: var(--main-color);
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-arrows .slick-arrow {
    font-size: 40px;
  }
}

.testimonial-section .testimonial-img {
  position: absolute;
  top: 0;
  left: 50px;
  max-width: 750px;
}

@media (max-width: 1800px) {
  .testimonial-section .testimonial-img {
    max-width: 630px;
  }
}

@media (max-width: 1400px) {
  .testimonial-section .testimonial-img {
    max-width: 530px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-img {
    max-width: 430px;
  }
}

@media (max-width: 991px) {
  .testimonial-section .testimonial-img {
    max-height: 460px;
  }
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-img {
    left: 30px;
    max-width: 320px;
    max-height: 340px;
  }
}

/*=======  Testimonial Two  =======*/
.testimonial-section-two {
  position: relative;
}

.testimonial-section-two .testimonial-quote-icon {
  position: absolute;
  left: 190px;
  top: 170px;
}

.testimonial-section-two .testimonial-quote-icon {
  position: absolute;
  left: 190px;
  top: 170px;
}

@media (max-width: 1599px) {
  .testimonial-section-two .testimonial-quote-icon {
    left: 140px;
    max-width: 250px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-two .testimonial-quote-icon {
    left: 100px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-two .testimonial-quote-icon {
    max-width: 180px;
    left: 80px;
  }
}

.testimonial-section-two .testimonial-items .testimonial-item {
  font-size: 24px;
  line-height: 1.583;
  text-align: center;
}

@media (max-width: 991px) {
  .testimonial-section-two .testimonial-items .testimonial-item {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-two .testimonial-items .testimonial-item {
    font-size: 18px;
  }
}

.testimonial-section-two .testimonial-items .testimonial-item .quote-top,
.testimonial-section-two .testimonial-items .testimonial-item .quote-bottom {
  color: var(--main-color);
  font-size: 16px;
  position: relative;
}

.testimonial-section-two .testimonial-items .testimonial-item .quote-top {
  margin-right: 10px;
  top: -5px;
}

.testimonial-section-two .testimonial-items .testimonial-item .quote-bottom {
  margin-left: 10px;
  bottom: -5px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-img {
  margin-bottom: 50px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-img img {
  border-radius: 15px;
  height: 100px;
  width: 100px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(20, 33, 43, 0.32);
  box-shadow: 0px 10px 30px 0px rgba(20, 33, 43, 0.32);
}

.testimonial-section-two .testimonial-items .testimonial-item .author-name {
  margin-top: 40px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-name h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-name span {
  font-weight: 600;
  color: var(--main-color);
  font-size: 16px;
}

.testimonial-section-two .testimonial-items .slick-arrow {
  position: absolute;
  left: -18%;
  top: 50%;
  font-size: 50px;
  line-height: 1;
  background-color: transparent;
  color: #000f49;
  z-index: 2;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1599px) {
  .testimonial-section-two .testimonial-items .slick-arrow {
    left: -15%;
  }
}

@media (max-width: 991px) {
  .testimonial-section-two .testimonial-items .slick-arrow {
    left: -8%;
    font-size: 35px;
  }
}

.testimonial-section-two .testimonial-items .slick-arrow.next-arrow {
  left: auto;
  right: -18%;
}

@media (max-width: 1599px) {
  .testimonial-section-two .testimonial-items .slick-arrow.next-arrow {
    right: -15%;
  }
}

@media (max-width: 991px) {
  .testimonial-section-two .testimonial-items .slick-arrow.next-arrow {
    right: -8%;
  }
}

.testimonial-section-two .testimonial-items .slick-arrow:hover {
  opacity: 1;
  color: var(--main-color);
}

.testimonial-section-two .testimonial-dots {
  text-align: center;
  margin-top: 55px;
}

@media (max-width: 575px) {
  .testimonial-section-two .testimonial-dots {
    display: none;
  }
}

.testimonial-section-two .testimonial-dots li {
  display: inline-block;
  margin: 0 10px;
}

.testimonial-section-two .testimonial-dots li img {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/*=======  Testimonial Three  =======*/
.testimonial-section-three {
  padding: 130px 0 250px;
  position: relative;
}

@media (max-width: 991px) {
  .testimonial-section-three {
    padding: 100px 0 200px;
  }
}

.testimonial-section-three::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000f49;
  opacity: 0.9;
}

.testimonial-section-three .testimonial-items .testimonial-item .content {
  color: #fff;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -1px;
}

@media (max-width: 1199px) {
  .testimonial-section-three .testimonial-items .testimonial-item .content {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-three .testimonial-items .testimonial-item .content {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-three .testimonial-items .testimonial-item .content {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-three .testimonial-items .testimonial-item .content {
    font-size: 20px;
  }
}

.testimonial-section-three .testimonial-items .testimonial-item .quote-top,
.testimonial-section-three .testimonial-items .testimonial-item .quote-bottom {
  color: var(--main-color);
  font-size: 35px;
  position: relative;
}

@media (max-width: 767px) {

  .testimonial-section-three .testimonial-items .testimonial-item .quote-top,
  .testimonial-section-three .testimonial-items .testimonial-item .quote-bottom {
    font-size: 25px;
  }
}

.testimonial-section-three .testimonial-items .testimonial-item .quote-top {
  margin-right: 10px;
  top: -10px;
}

.testimonial-section-three .testimonial-items .testimonial-item .quote-bottom {
  margin-left: 10px;
  bottom: -10px;
}

.testimonial-section-three .testimonial-items .testimonial-item .author {
  margin-top: 40px;
}

.testimonial-section-three .testimonial-items .testimonial-item .author h4 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 575px) {
  .testimonial-section-three .testimonial-items .testimonial-item .author h4 {
    font-size: 22px;
  }
}

.testimonial-section-three .testimonial-items .testimonial-item .author span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}

@media (max-width: 575px) {
  .testimonial-section-three .testimonial-items .testimonial-item .author span {
    font-size: 14px;
  }
}

.testimonial-section-three .testimonial-items .testimonial-item .author-thumb {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonial-section-three .testimonial-items .testimonial-item .author-thumb img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid #fff;
}

@media (max-width: 575px) {
  .testimonial-section-three .testimonial-items .testimonial-item .author-thumb img {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }
}

.testimonial-section-three .testimonial-items .testimonial-item .author-thumb::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -20px;
  width: 50px;
  height: 30px;
  content: "";
  background-image: url(../img/icons/down-arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.testimonial-section-three .testimonial-items .slick-arrow {
  position: absolute;
  left: -22%;
  top: 50%;
  font-size: 50px;
  line-height: 1;
  background-color: transparent;
  color: #fff;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1599px) {
  .testimonial-section-three .testimonial-items .slick-arrow {
    left: -10%;
  }
}

@media (max-width: 991px) {
  .testimonial-section-three .testimonial-items .slick-arrow {
    left: -6%;
    font-size: 35px;
    top: 60%;
  }
}

.testimonial-section-three .testimonial-items .slick-arrow.next-arrow {
  left: auto;
  right: -22%;
}

@media (max-width: 1599px) {
  .testimonial-section-three .testimonial-items .slick-arrow.next-arrow {
    right: -10%;
  }
}

@media (max-width: 991px) {
  .testimonial-section-three .testimonial-items .slick-arrow.next-arrow {
    right: -6%;
  }
}

.testimonial-section-three .testimonial-items .slick-arrow:hover {
  color: var(--main-color);
}

.testimonial-section-three.no-bg {
  padding: 130px 0;
  background: none;
}

@media (max-width: 991px) {
  .testimonial-section-three.no-bg {
    padding: 100px 0;
  }
}

.testimonial-section-three.no-bg::before {
  display: none;
}

.testimonial-section-three.no-bg .testimonial-items .testimonial-item .content,
.testimonial-section-three.no-bg .testimonial-items .testimonial-item .author h4,
.testimonial-section-three.no-bg .testimonial-items .testimonial-item .author span {
  color: #000f49;
}

.testimonial-section-three.no-bg .testimonial-items .testimonial-item .author-thumb img {
  border-color: var(--main-color);
}

.testimonial-section-three.no-bg .testimonial-items .testimonial-item .author-thumb::before {
  background-image: url(../img/icons/down-arrow-2.png);
}

.testimonial-section-three.no-bg .testimonial-items .slick-arrow {
  color: #000f49;
}

.testimonial-section-three.no-bg .testimonial-items .slick-arrow:hover {
  color: var(--main-color);
}

/*======= Latest Post =======*/
.latest-post-loop .latest-post-box {
  margin-top: 30px;
}

.latest-post-loop .latest-post-box .post-thumb-wrap {
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.latest-post-loop .latest-post-box .post-thumb-wrap .post-thumb {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.latest-post-loop .latest-post-box .post-desc {
  background-color: #f5f5f5;
  padding: 40px 35px;
  border-bottom: 4px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  word-break: break-word;
}

@media (max-width: 1199px) {
  .latest-post-loop .latest-post-box .post-desc {
    padding: 30px 20px;
  }
}

.latest-post-loop .latest-post-box .post-desc .post-date {
  color: var(--main-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .latest-post-loop .latest-post-box .post-desc .post-date {
    font-size: 16px;
  }
}

.latest-post-loop .latest-post-box .post-desc .post-date i {
  margin-right: 10px;
}

.latest-post-loop .latest-post-box .post-desc .title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .latest-post-loop .latest-post-box .post-desc .title {
    font-size: 22px;
  }
}

.latest-post-loop .latest-post-box .post-desc .post-link {
  font-weight: 700;
  color: #000f49;
  margin-top: 25px;
}

.latest-post-loop .latest-post-box .post-desc .post-link i {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.latest-post-loop .latest-post-box .post-desc .post-link:hover {
  color: var(--main-color);
}

.latest-post-loop .latest-post-box:hover .post-thumb {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.latest-post-loop .latest-post-box:hover .post-desc {
  border-color: var(--main-color);
}

.latest-post-loop.loop-two {
  margin-top: 80px;
  margin-bottom: -30px;
}

.latest-post-loop .latest-post-box-two {
  margin-bottom: 30px;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap {
  width: 100%;
  height: 270px;
  overflow: hidden;
  position: relative;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap .post-thumb {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap .post-date {
  position: absolute;
  left: 30px;
  bottom: 30px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 30px;
  background-color: var(--main-color);
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 15px;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap .post-date i {
  margin-right: 10px;
}

.latest-post-loop .latest-post-box-two .post-desc {
  background-color: #f5f5f5;
  padding: 40px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199px) {
  .latest-post-loop .latest-post-box-two .post-desc {
    padding: 35px 25px;
  }
}

.latest-post-loop .latest-post-box-two .post-desc .title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 33px;
}

@media (max-width: 1199px) {
  .latest-post-loop .latest-post-box-two .post-desc .title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .latest-post-loop .latest-post-box-two .post-desc .title {
    font-size: 20px;
  }
}

.latest-post-loop .latest-post-box-two .post-desc .post-link {
  font-weight: 700;
  color: #000f49;
}

.latest-post-loop .latest-post-box-two .post-desc .post-link i {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.latest-post-loop .latest-post-box-two .post-desc .post-link:hover {
  color: var(--main-color);
}

.latest-post-loop .latest-post-box-two:hover .post-thumb {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.latest-post-loop .latest-post-box-two:hover .post-desc {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(203, 203, 203, 0.3);
  box-shadow: 0px 10px 30px 0px rgba(203, 203, 203, 0.3);
}

/*======= Blog Standard =======*/
.blog-loop.standard-blog .single-post-box {
  margin-bottom: 65px;
}

.blog-loop.standard-blog .single-post-box .post-thumb {
  margin-bottom: 30px;
}

.blog-loop.standard-blog .single-post-box .post-meta {
  margin-bottom: 10px;
}

.blog-loop.standard-blog .single-post-box .post-meta ul li {
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .blog-loop.standard-blog .single-post-box .post-meta ul li {
    margin-right: 15px;
  }
}

.blog-loop.standard-blog .single-post-box .post-meta ul li,
.blog-loop.standard-blog .single-post-box .post-meta ul li a {
  color: #000f49;
}

.blog-loop.standard-blog .single-post-box .post-meta ul li:hover,
.blog-loop.standard-blog .single-post-box .post-meta ul li a:hover {
  color: var(--main-color);
}

.blog-loop.standard-blog .single-post-box .post-meta ul li i {
  color: var(--main-color);
  margin-right: 10px;
}

.blog-loop.standard-blog .single-post-box .post-content {
  font-size: 15px;
}

@media (max-width: 1199px) {
  .blog-loop.standard-blog .single-post-box .post-content .title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .blog-loop.standard-blog .single-post-box .post-content .title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .blog-loop.standard-blog .single-post-box .post-content .title {
    font-size: 20px;
  }
}

.blog-loop.standard-blog .single-post-box .post-content .main-btn {
  margin-top: 30px;
}

.blog-loop.standard-blog .single-post-box.video-post .post-video {
  position: relative;
  margin-bottom: 40px;
}

.blog-loop.standard-blog .single-post-box.video-post .post-video .popup-video {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 130px;
  width: 130px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--main-color);
  font-size: 18px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 130px;
}

@media (max-width: 767px) {
  .blog-loop.standard-blog .single-post-box.video-post .post-video .popup-video {
    height: 80px;
    width: 80px;
    line-height: 80px;
  }
}

.blog-loop.standard-blog .single-post-box.no-thumb {
  padding: 40px;
  border: 2px solid #eeeeee;
}

@media (max-width: 575px) {
  .blog-loop.standard-blog .single-post-box.no-thumb {
    padding: 35px 20px;
  }
}

.blog-loop.standard-blog .single-post-box.quote-post {
  padding: 50px 40px;
  background-color: #000f49;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .blog-loop.standard-blog .single-post-box.quote-post {
    padding: 40px 20px;
  }
}

.blog-loop.standard-blog .single-post-box.quote-post::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-image: url(../img/icons/quote-line.png);
  opacity: 0.06;
  background-size: auto;
  background-position: 38% 50%;
  background-repeat: no-repeat;
}

.blog-loop.standard-blog .single-post-box.quote-post .post-meta ul li a {
  color: #8394a2;
}

.blog-loop.standard-blog .single-post-box.quote-post .post-content .title {
  margin-bottom: 0;
}

.blog-loop.standard-blog .single-post-box.quote-post .post-content .title a {
  color: #fff;
}

.blog-loop.grid-blog .single-post-box {
  margin-bottom: 30px;
}

.blog-loop.grid-blog .single-post-box .post-thumb {
  overflow: hidden;
}

@media (max-width: 767px) {
  .blog-loop.grid-blog .single-post-box .post-thumb img {
    width: 100%;
  }
}

.blog-loop.grid-blog .single-post-box .post-content {
  background-color: #f5f5f5;
  padding: 40px 35px;
  border-bottom: 4px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199px) {
  .blog-loop.grid-blog .single-post-box .post-content {
    padding: 30px 20px;
  }
}

.blog-loop.grid-blog .single-post-box .post-content .post-date {
  color: var(--main-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .blog-loop.grid-blog .single-post-box .post-content .post-date {
    font-size: 16px;
  }
}

.blog-loop.grid-blog .single-post-box .post-content .post-date i {
  margin-right: 10px;
}

.blog-loop.grid-blog .single-post-box .post-content .title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .blog-loop.grid-blog .single-post-box .post-content .title {
    font-size: 22px;
  }
}

.blog-loop.grid-blog .single-post-box .post-content .post-link {
  font-weight: 700;
  color: #000f49;
  margin-top: 25px;
}

.blog-loop.grid-blog .single-post-box .post-content .post-link i {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.blog-loop.grid-blog .single-post-box .post-content .post-link:hover {
  color: var(--main-color);
}

.blog-loop.grid-blog .single-post-box:hover .post-thumb img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-loop.grid-blog .single-post-box:hover .post-content {
  border-color: var(--main-color);
}

/*======= Pagination =======*/
.pagination-wrap {
  margin-top: 30px;
}

.pagination-wrap li {
  display: inline-block;
  margin-right: 5px;
}

/* .pagination-wrap li a {
  height: 60px;
  width: 60px;
  display: block;
  line-height: 60px;
  border: 1px solid #ededed;
  text-align: center;
  border-radius: 50%;
  color: #000f49;
  font-weight: 600;
  font-size: 16px;
} */

@media (max-width: 575px) {
  .pagination-wrap li a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 15px;
  }
}

.pagination-wrap li.active a,
.pagination-wrap li:hover a {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

/*======= Sidebar =======*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 60px;
  }
}

.sidebar .widget {
  border: 1px solid #ededed;
  padding: 30px 40px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .sidebar .widget {
    padding: 40px 30px;
  }
}

.sidebar .widget .widget-title {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ededed;
}

.sidebar .widget.search-widget {
  padding: 0;
  border: none;
}

.sidebar .widget.search-widget form {
  position: relative;
}

.sidebar .widget.search-widget form input {
  border: 1px solid #ededed;
  width: 100%;
  padding-left: 40px;
  padding-right: 100px;
  height: 80px;
  color: #000f49;
}

.sidebar .widget.search-widget form button {
  position: absolute;
  right: 0;
  height: 80px;
  width: 80px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar .widget.search-widget form button:hover {
  background-color: #000f49;
}

.sidebar .widget.cat-widget ul li {
  border-bottom: 1px solid #ededed;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.sidebar .widget.cat-widget ul li a {
  color: #000f49;
  font-weight: 700;
  font-family: 'Haltto-Light', Arial, sans-serif;
  display: block;
}

.sidebar .widget.cat-widget ul li a span {
  float: right;
}

.sidebar .widget.cat-widget ul li a:hover {
  color: var(--main-color);
}

.sidebar .widget.cat-widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.sidebar .widget.recent-post-widget .single-post {
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 75px 15px 1fr;
  grid-template-columns: 75px 1fr;
  grid-column-gap: 15px;
}

.sidebar .widget.recent-post-widget .single-post a {
  font-size: 18px;
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 600;
  color: #000f49;
  line-height: 1.2;
}

.sidebar .widget.recent-post-widget .single-post .date {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.sidebar .widget.recent-post-widget .single-post .date i {
  color: var(--main-color);
  margin-right: 10px;
}

.sidebar .widget.recent-post-widget .single-post:last-child {
  margin-bottom: 0;
}

.sidebar .widget.popular-tag-widget .tags-loop {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.sidebar .widget.popular-tag-widget .tags-loop a {
  background-color: #f5f5f5;
  font-size: 15px;
  color: #000f49;
  display: block;
  padding: 5px;
  text-align: center;
}

.sidebar .widget.popular-tag-widget .tags-loop a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.sidebar .widget.author-widget {
  text-align: center;
}

.sidebar .widget.author-widget img.author-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 25px;
}

.sidebar .widget.author-widget .name {
  font-size: 24px;
}

.sidebar .widget.author-widget .role {
  margin-bottom: 20px;
  line-height: 1;
}

.sidebar .widget.author-widget .social-icons {
  margin-top: 20px;
}

.sidebar .widget.author-widget .social-icons li {
  display: inline-block;
}

.sidebar .widget.author-widget .social-icons li a {
  color: #000f49;
  font-size: 15px;
  padding: 5px;
}

.sidebar .widget.author-widget .social-icons li a:hover {
  color: var(--main-color);
}

.sidebar .widget.cta-widget {
  position: relative;
  z-index: 1;
  padding: 130px 40px;
  border: none;
  text-align: center;
}

.sidebar .widget.cta-widget::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000f49;
  opacity: 0.75;
  content: "";
}

.sidebar .widget.cta-widget .title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .sidebar .widget.cta-widget .title {
    font-size: 35px;
  }
}

.sidebar .widget.contact-widget input,
.sidebar .widget.contact-widget textarea {
  background-color: #ededed;
  margin-bottom: 10px;
}

.sidebar .widget.contact-widget textarea {
  height: 150px;
}

.sidebar .widget.contact-widget .main-btn {
  padding: 0 40px;
}

/*=======  Project CSS  =======*/
.project-boxes .project-box {
  position: relative;
  height: 415px;
  margin-bottom: 90px;
}

@media (max-width: 767px) {
  .project-boxes .project-box {
    height: 320px;
  }
}

.project-boxes .project-box .project-thumb {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.project-boxes .project-box .project-thumb .thumb {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 100%;
  width: 100%;
}

.project-boxes .project-box .project-desc {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -55px;
  padding: 35px 15px 25px;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 32px 0px rgba(197, 197, 197, 0.4);
  box-shadow: 0px 10px 32px 0px rgba(197, 197, 197, 0.4);
  z-index: 2;
  color: #000f49;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .project-boxes .project-box .project-desc {
    left: 15px;
    right: 15px;
    font-size: 15px;
  }
}

.project-boxes .project-box .project-desc h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .project-boxes .project-box .project-desc h4 {
    font-size: 20px;
  }
}

.project-boxes .project-box .project-desc .project-link {
  font-size: 24px;
  margin-top: 10px;
  color: #000f49;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  line-height: 1;
}

.project-boxes .project-box:hover .project-desc {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--main-color);
}

.project-boxes .project-box:hover .project-desc,
.project-boxes .project-box:hover .project-desc h4 a,
.project-boxes .project-box:hover .project-desc .project-link {
  color: #fff;
}

.project-boxes .project-box:hover .project-thumb .thumb {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.project-boxes .project-box.hover-style {
  margin-bottom: 30px;
  height: 370px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .project-boxes .project-box.hover-style {
    height: 300px;
  }
}

.project-boxes .project-box.hover-style .project-thumb {
  position: relative;
}

@media (max-width: 575px) {
  .project-boxes .project-box.hover-style .project-thumb .thumb {
    background-position: 0 5%;
  }
}

.project-boxes .project-box.hover-style .project-thumb::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000f49;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
}

.project-boxes .project-box.hover-style .project-desc {
  bottom: -10px;
  visibility: hidden;
  opacity: 0;
}

.project-boxes .project-box.hover-style:hover .project-desc {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.project-boxes .project-box.hover-style:hover .project-thumb::before {
  opacity: 0.45;
  visibility: visible;
}

.project-boxes .project-box.wide-box .project-desc {
  left: 65px;
  right: 65px;
}

@media (max-width: 991px) {
  .project-boxes .project-box.wide-box .project-desc {
    left: 30px;
    right: 30px;
  }
}

.project-boxes .project-box.wide-long-box {
  height: 770px;
}

@media (max-width: 767px) {
  .project-boxes .project-box.wide-long-box {
    height: 630px;
  }
}

.project-boxes .project-box.wide-long-box .project-desc {
  left: 65px;
  right: 65px;
}

@media (max-width: 991px) {
  .project-boxes .project-box.wide-long-box .project-desc {
    left: 30px;
    right: 30px;
  }
}

.project-nav {
  text-align: center;
  border-bottom: 3px solid #E7E8E9;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .project-nav {
    border-bottom: none;
    padding: 0;
  }
}

.project-nav li {
  display: inline-block;
  color: #000f49;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Haltto-Light', Arial, sans-serif;
  position: relative;
  padding: 15px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .project-nav li {
    padding: 10px;
  }
}

.project-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  height: 3px;
  width: 0%;
  content: "";
  background-color: var(--main-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .project-nav li::before {
    bottom: 0;
  }
}

.project-nav li:hover::before,
.project-nav li.active::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.project-section {
  padding-top: 130px;
  padding-bottom: 95px;
}

/*=======  Working Process   =======*/
.working-process-section {
  padding: 330px 0 130px;
  margin-top: -200px;
  position: relative;
  z-index: 4;
}

.fact-section-three.working-process-section {
  padding: 130px 0px;
  margin-top: 0;
  position: static;
}

.working-process-section .process-text {
  color: #000f49;
  font-size: 18px;
  line-height: 32px;
  padding-right: 40px;
}

.working-process-section .process-text .process-loop .single-process {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 15px 1fr;
  grid-template-columns: 80px 1fr;
  grid-column-gap: 15px;
}

@media (max-width: 575px) {
  .working-process-section .process-text .process-loop .single-process {
    display: block;
    margin-top: 50px;
  }
}

.working-process-section .process-text .process-loop .single-process .icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--main-color);
  font-size: 30px;
  -webkit-box-shadow: 0px 10px 32px 0px rgba(210, 210, 210, 0.4);
  box-shadow: 0px 10px 32px 0px rgba(210, 210, 210, 0.4);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}

@media (max-width: 575px) {
  .working-process-section .process-text .process-loop .single-process .icon {
    margin-bottom: 30px;
  }
}

.working-process-section .process-text .process-loop .single-process .icon span {
  position: absolute;
  left: 0;
  top: -10px;
  height: 35px;
  width: 35px;
  background-color: var(--main-color);
  color: #fff;
  line-height: 35px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.working-process-section .process-text .process-loop .single-process .content h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.working-process-section .process-text .process-loop .single-process:hover .icon {
  background-color: var(--main-color);
  color: #fff;
  -webkit-box-shadow: 0px 10px 32px 0px rgba(255, 74, 23, 0.4);
  box-shadow: 0px 10px 32px 0px rgba(255, 74, 23, 0.4);
}

.working-process-section .process-text .process-loop .single-process:hover .icon span {
  background-color: #fff;
  color: var(--main-color);
}

.working-process-section .process-video {
  height: 590px;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .working-process-section .process-video {
    margin-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .working-process-section .process-video {
    height: 500px;
  }
}

.working-process-section .process-video .video {
  position: absolute;
  bottom: 80px;
  left: -50px;
  width: 265px;
  height: 275px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .working-process-section .process-video .video {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -50px;
  }
}

.working-process-section .process-video .video .paly-icon {
  height: 75px;
  width: 75px;
  background-color: #fff;
  color: var(--main-color);
  font-size: 18px;
  text-align: center;
  line-height: 75px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.working-process-section .process-video .video .paly-icon:hover {
  background-color: var(--main-color);
  color: #fff;
}

.working-process-section .working-circle {
  position: absolute;
  right: 130px;
  bottom: -130px;
  z-index: 1;
  background-color: transparent;
  border: 80px solid var(--main-color);
  width: 430px;
  height: 430px;
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .working-process-section .working-circle {
    height: 300px;
    width: 300px;
    border-width: 30px;
    bottom: -80px;
    right: 3%;
  }
}

@media (max-width: 991px) {
  .working-process-section .working-circle {
    height: 250px;
    width: 250px;
    border-width: 20px;
    right: 3%;
  }
}

@media (max-width: 991px) {
  .working-process-section .working-circle {
    display: none;
  }
}

/*=======  Video CSS  =======*/
.video-section {
  position: relative;
  z-index: 1;
}

.video-section .video-text .section-title .title-tag,
.video-section .video-text .section-title .title {
  color: #fff;
}

.video-section .video-text .section-title .title-tag::before {
  background-color: #fff;
}

.video-section .video-text p {
  color: #fff;
}

.video-section .video-text .main-btn {
  margin-top: 40px;
}

.video-section .play-btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .video-section .play-btn {
    max-width: 100px;
    margin-bottom: 30px;
  }
}

.video-section .play-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  font-size: 24px;
  color: var(--main-color);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #000f49;
  content: "";
  opacity: 0.8;
}

.video-section .line-shape {
  position: absolute;
  left: 2%;
  top: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: -1;
}

.video-section .line-shape img {
  height: 100%;
}

.video-section-two {
  height: 750px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

@media (max-width: 991px) {
  .video-section-two {
    height: 600px;
  }
}

@media (max-width: 575px) {
  .video-section-two {
    height: 500px;
  }
}

.video-section-two .video-cont .play-btn {
  height: 150px;
  width: 150px;
  background-color: #fff;
  line-height: 150px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--main-color);
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 991px) {
  .video-section-two .video-cont .play-btn {
    height: 100px;
    width: 100px;
    line-height: 100px;
  }
}

@media (max-width: 575px) {
  .video-section-two .video-cont .play-btn {
    height: 80px;
    width: 80px;
    line-height: 80px;
  }
}

.video-section-two .video-cont .play-btn:hover {
  color: #fff;
  background-color: var(--main-color);
}

.video-section-two .video-cont h2 {
  color: #fff;
  font-size: 50px;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .video-section-two .video-cont h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .video-section-two .video-cont h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .video-section-two .video-cont h2 {
    font-size: 28px;
  }
}

.video-section-two::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #040f17;
  opacity: 0.75;
  z-index: -1;
}

.video-section-two .line-shape-one,
.video-section-two .line-shape-two {
  position: absolute;
  z-index: -1;
}

@media (max-width: 991px) {

  .video-section-two .line-shape-one,
  .video-section-two .line-shape-two {
    max-width: 250px;
  }
}

@media (max-width: 575px) {

  .video-section-two .line-shape-one,
  .video-section-two .line-shape-two {
    max-width: 200px;
  }
}

.video-section-two .line-shape-one {
  left: 0;
  top: 0;
}

.video-section-two .line-shape-two {
  right: 0;
  bottom: 0;
}

/*=======  Cta Css  =======*/
.cta-wrap {
  background-color: var(--main-color);
  position: relative;
  padding: 60px 0;
  z-index: 2;
}

.cta-wrap.mt-negative {
  margin-top: -60px;
}

.cta-wrap .section-title .title-tag {
  color: #fff;
}

.cta-wrap .section-title .title-tag::before,
.cta-wrap .section-title .title-tag::after {
  background-color: #fff;
}

.cta-wrap .section-title .title {
  color: #fff;
}

.cta-wrap .main-btn.main-btn-3:hover {
  color: #000f49;
}

.cta-wrap .main-btn.main-btn-3:hover::after {
  background-color: #fff;
}

/*=======  Advanced Tabs  =======*/
.advanced-tab .tab-buttons .nav-tabs {
  border: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .advanced-tab .tab-buttons .nav-tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}

@media (max-width: 399px) {
  .advanced-tab .tab-buttons .nav-tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
}

.advanced-tab .tab-buttons .nav-tabs a {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Haltto-Light', Arial, sans-serif;
  color: #000f49;
  background-color: #f5f5f5;
  text-transform: uppercase;
  padding: 10px 40px;
  margin: 0 10px;
}

@media (max-width: 1199px) {
  .advanced-tab .tab-buttons .nav-tabs a {
    font-size: 16px;
    padding: 10px 30px;
    margin: 0 5px;
  }
}

@media (max-width: 991px) {
  .advanced-tab .tab-buttons .nav-tabs a {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .advanced-tab .tab-buttons .nav-tabs a {
    font-size: 15px;
    padding: 8px 10px;
    margin: 0;
    display: block;
    text-align: center;
  }
}

@media (max-width: 399px) {
  .advanced-tab .tab-buttons .nav-tabs a {
    text-align: left;
  }
}

.advanced-tab .tab-buttons .nav-tabs a:hover,
.advanced-tab .tab-buttons .nav-tabs a.active {
  background-color: var(--main-color);
  color: #fff;
}

.advanced-tab .tab-content {
  padding-top: 60px;
}

@media (max-width: 991px) {
  .advanced-tab .tab-content .tab-text-block .block-text {
    margin-top: 50px;
  }
}

.advanced-tab .tab-content .tab-text-block .block-text .title {
  font-size: 50px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .advanced-tab .tab-content .tab-text-block .block-text .title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .advanced-tab .tab-content .tab-text-block .block-text .title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .advanced-tab .tab-content .tab-text-block .block-text .title {
    font-size: 28px;
  }
}

.advanced-tab .tab-content .tab-text-block .block-text ul li {
  padding-left: 70px;
  position: relative;
  margin-top: 30px;
}

.advanced-tab .tab-content .tab-text-block .block-text ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 50%;
}

.advanced-tab .tab-content .tab-text-block.left-image .block-text {
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .advanced-tab .tab-content .tab-text-block.left-image .block-text {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .advanced-tab .tab-content .tab-text-block.left-image .block-text {
    padding-left: 0;
  }
}

.advanced-tab .tab-content .tab-text-block.right-image .block-text {
  padding-right: 50px;
}

@media (max-width: 1199px) {
  .advanced-tab .tab-content .tab-text-block.right-image .block-text {
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .advanced-tab .tab-content .tab-text-block.right-image .block-text {
    padding-right: 0;
  }
}

.advanced-tab .tab-content .tab-text-block.with-left-circle,
.advanced-tab .tab-content .tab-text-block.with-right-circle {
  position: relative;
  z-index: 1;
}

.advanced-tab .tab-content .tab-text-block.with-left-circle::before,
.advanced-tab .tab-content .tab-text-block.with-right-circle::before {
  position: absolute;
  left: -150px;
  bottom: -130px;
  height: 300px;
  width: 300px;
  background-color: transparent;
  border: 50px solid var(--main-color);
  z-index: -1;
  content: "";
  border-radius: 50%;
}

@media (max-width: 1599px) {

  .advanced-tab .tab-content .tab-text-block.with-left-circle::before,
  .advanced-tab .tab-content .tab-text-block.with-right-circle::before {
    left: -100px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    border-width: 20px;
  }
}

@media (max-width: 991px) {

  .advanced-tab .tab-content .tab-text-block.with-left-circle::before,
  .advanced-tab .tab-content .tab-text-block.with-right-circle::before {
    display: none;
  }
}

.advanced-tab .tab-content .tab-text-block.with-right-circle::before {
  left: auto;
  right: -150px;
}

@media (max-width: 1599px) {
  .advanced-tab .tab-content .tab-text-block.with-right-circle::before {
    left: auto;
    right: -100px;
  }
}

/*=======  FAQ Looop  =======*/
.faq-section {
  position: relative;
  z-index: 1;
}

.faq-section .faq-content {
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .faq-section .faq-content {
    padding-left: 0;
  }
}

.faq-section .faq-loop.accordion .card .card-header {
  padding: 0;
  border: none;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 0;
}

.faq-section .faq-loop.accordion .card .card-header h6 {
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}

@media (max-width: 575px) {
  .faq-section .faq-loop.accordion .card .card-header h6 {
    padding: 20px 30px 20px;
  }
}

.faq-section .faq-loop.accordion .card .card-header h6 span.icons {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .faq-section .faq-loop.accordion .card .card-header h6 span.icons {
    right: 20px;
  }
}

.faq-section .faq-loop.accordion .card .card-header.active-header,
.faq-section .faq-loop.accordion .card .card-header:hover {
  background-color: var(--main-color);
}

.faq-section .faq-loop.accordion .card .card-header.active-header h6,
.faq-section .faq-loop.accordion .card .card-header:hover h6 {
  color: #fff;
}

.faq-section .faq-loop.accordion .card .card-body {
  font-size: 15px;
  line-height: 1.4;
  background-color: var(--main-color);
  color: #fff;
}

@media (max-width: 575px) {
  .faq-section .faq-loop.accordion .card .card-body {
    padding: 20px;
  }
}

.faq-section .faq-loop.accordion.grey-header .card .card-header {
  background-color: #f5f5f5;
}

.faq-section .faq-loop.accordion.grey-header .card .card-header.active-header,
.faq-section .faq-loop.accordion.grey-header .card .card-header:hover {
  background-color: var(--main-color);
}

.faq-section .faq-loop.accordion.border-style .card .card-header {
  background-color: #fff;
  border: 1px solid #ededed;
}

.faq-section .faq-loop.accordion.border-style .card .card-header.active-header,
.faq-section .faq-loop.accordion.border-style .card .card-header:hover {
  background-color: #fff;
}

.faq-section .faq-loop.accordion.border-style .card .card-header.active-header h6,
.faq-section .faq-loop.accordion.border-style .card .card-header:hover h6 {
  color: #000f49;
}

.faq-section .faq-loop.accordion.border-style .card .card-header.active-header {
  border-color: var(--main-color);
  border-bottom-color: transparent;
}

.faq-section .faq-loop.accordion.border-style .card .card-body {
  background-color: #fff;
  color: #000f49;
  border-left: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

.faq-section.with-illustration .faq-illustration-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(50% + 15px);
}

@media (max-width: 1199px) {
  .faq-section.with-illustration .faq-illustration-img {
    right: calc(50% + 30px);
  }
}

@media (max-width: 991px) {
  .faq-section.with-illustration .faq-illustration-img {
    position: unset;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    margin: 0 auto 50px;
    max-width: 550px;
  }
}

@media (max-width: 767px) {
  .faq-section.with-illustration .faq-illustration-img {
    max-width: 450px;
  }
}

.faq-section.with-shape::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 370px;
  height: 330px;
  background-image: url(../img/lines/12.png);
  content: "";
  background-size: cover;
  z-index: -1;
}

@media (max-width: 767px) {
  .faq-section.with-shape::before {
    width: 250px;
    height: 220px;
  }
}

.faq-section.with-shape .circle-img {
  background-size: cover;
  background-position: center;
  height: 270px;
  width: 270px;
  position: absolute;
  right: 160px;
  top: 130px;
  z-index: -1;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(104, 102, 102, 0.34);
  box-shadow: 0px 10px 60px 0px rgba(104, 102, 102, 0.34);
}

@media (max-width: 1800px) {
  .faq-section.with-shape .circle-img {
    right: 4%;
  }
}

@media (max-width: 1599px) {
  .faq-section.with-shape .circle-img {
    display: none;
  }
}

/*=======  Contact Css  =======*/
.contact-section.boxed-style-with-map .contact-inner {
  padding: 80px 70px;
  position: relative;
  z-index: 2;
}

.contact-section.boxed-style-with-map .contact-inner.mt-negative {
  margin-top: -130px;
}

@media (max-width: 1199px) {
  .contact-section.boxed-style-with-map .contact-inner {
    padding: 50px 30px 80px;
  }
}

@media (max-width: 399px) {
  .contact-section.boxed-style-with-map .contact-inner {
    padding: 30px 15px 80px;
  }
}

.contact-section.boxed-style-with-map .contact-inner .contact-map {
  height: 100%;
  width: 100%;
  background-color: #b7b7b7;
}

@media (max-width: 991px) {
  .contact-section.boxed-style-with-map .contact-inner .contact-map {
    height: 500px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .contact-section.boxed-style-with-map .contact-inner .contact-map {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .contact-section.boxed-style-with-map .contact-inner .contact-map {
    height: 300px;
  }
}

.contact-section.boxed-style-with-map .contact-inner .contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-section.boxed-style-with-map .contact-inner .contact-form {
  padding-left: 70px;
}

@media (max-width: 991px) {
  .contact-section.boxed-style-with-map .contact-inner .contact-form {
    padding-left: 0;
  }
}

.contact-section.boxed-style-with-map .contact-inner .contact-form .input-group input,
.contact-section.boxed-style-with-map .contact-inner .contact-form .input-group textarea,
.contact-section.boxed-style-with-map .contact-inner .contact-form .input-group select {
  border-radius: 7px;
  padding-right: 60px;
}

.contact-section.boxed-style-with-map .contact-inner .contact-form .input-group .icon {
  font-size: 18px;
  right: 30px;
}

.contact-section.with-illustration-img {
  position: relative;
}

.contact-section.with-illustration-img .illustration-img {
  position: absolute;
  left: 2%;
  bottom: 0;
  z-index: 1;
  max-width: 645px;
}

.contact-section.with-illustration-img .contact-form {
  position: relative;
  z-index: 2;
}

.contact-section.with-illustration-img .contact-form .input-group input,
.contact-section.with-illustration-img .contact-form .input-group textarea,
.contact-section.with-illustration-img .contact-form .input-group select {
  border-radius: 7px;
}

.contact-section.with-illustration-img .contact-form .input-group .icon {
  font-size: 18px;
}

.contact-section.contact-page .contact-info .contact-info-content {
  margin-bottom: 50px;
}

.contact-section.contact-page .contact-info .contact-info-content ul {
  margin-top: 30px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li {
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li,
.contact-section.contact-page .contact-info .contact-info-content ul li a {
  color: #000f49;
}

.contact-section.contact-page .contact-info .contact-info-content ul li i,
.contact-section.contact-page .contact-info .contact-info-content ul li a i {
  font-size: 18px;
  color: var(--main-color);
  margin-right: 10px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li.phone,
.contact-section.contact-page .contact-info .contact-info-content ul li.phone a {
  color: #000f49;
  font-weight: 700;
  font-size: 30px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li.phone i {
  font-size: 30px;
}

.contact-section.contact-page .contact-form {
  padding: 70px 0;
  margin-bottom: -170px;
  position: relative;
}

.contact-section.contact-page .contact-map {
  height: 650px;
  width: 100%;
  background-color: #b7b7b7;
}

.contact-section.contact-page .contact-map iframe {
  width: 100%;
  height: 100%;
}

/*=======  Careers  =======*/
.job-categories {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

@media (max-width: 991px) {
  .job-categories {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .job-categories {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 399px) {
  .job-categories {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

.job-categories .single-cat {
  text-align: center;
}

.job-categories .single-cat a {
  display: block;
  color: #000f49;
  padding: 40px;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Haltto-Light', Arial, sans-serif;
  background-color: #f5f5f5;
  border-radius: 7px;
  line-height: 1;
}

@media (max-width: 1199px) {
  .job-categories .single-cat a {
    padding: 40px 20px;
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .job-categories .single-cat a {
    font-size: 18px;
  }
}

.job-categories .single-cat a i {
  font-size: 55px;
  margin-bottom: 20px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .job-categories .single-cat a i {
    font-size: 40px;
  }
}

.job-categories .single-cat a span {
  display: block;
  line-height: 1.2;
}

.job-categories .single-cat a:hover {
  color: #fff;
  background-color: var(--main-color);
}

.job-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media (max-width: 767px) {
  .job-lists {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

.job-lists .single-job {
  background-color: #fff;
  padding: 40px;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 991px) {
  .job-lists .single-job {
    padding: 40px 25px;
  }
}

.job-lists .single-job .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 991px) {
  .job-lists .single-job .title {
    font-size: 22px;
  }
}

.job-lists .single-job .title .job-time {
  font-size: 16px;
  color: #000f49;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.job-lists .single-job .apply-btn {
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #000f49;
  border: 2px solid #D0D0D0;
  border-radius: 5px;
  padding: 10px 30px;
}

@media (max-width: 575px) {
  .job-lists .single-job .apply-btn {
    padding: 8px 25px;
  }
}

.job-lists .single-job .apply-btn i {
  margin-left: 8px;
}

.job-lists .single-job:hover {
  background-color: var(--main-color);
}

.job-lists .single-job:hover .title,
.job-lists .single-job:hover,
.job-lists .single-job:hover .job-time {
  color: #fff;
}

.job-lists .single-job:hover .apply-btn {
  border-color: #fff;
  background-color: #fff;
}

/*======= Blog Details  =======*/
.post-details-wrap .post-thumb {
  margin-bottom: 40px;
}

.post-details-wrap .post-meta {
  margin-bottom: 15px;
}

.post-details-wrap .post-meta ul li {
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .post-details-wrap .post-meta ul li {
    margin-right: 15px;
  }
}

.post-details-wrap .post-meta ul li,
.post-details-wrap .post-meta ul li a {
  color: #000f49;
}

.post-details-wrap .post-meta ul li:hover,
.post-details-wrap .post-meta ul li a:hover {
  color: var(--main-color);
}

.post-details-wrap .post-meta ul li i {
  color: var(--main-color);
  margin-right: 10px;
}

.post-details-wrap .post-content {
  font-size: 15px;
}

.post-details-wrap .post-content .title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .post-details-wrap .post-content .title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .post-details-wrap .post-content .title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .post-details-wrap .post-content .title {
    font-size: 20px;
  }
}

.post-details-wrap .post-content blockquote {
  padding: 50px 40px;
  background-color: #000f49;
  position: relative;
  z-index: 1;
  font-size: 35px;
  line-height: 1.2;
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  margin: 40px 0;
}

@media (max-width: 1199px) {
  .post-details-wrap .post-content blockquote {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .post-details-wrap .post-content blockquote {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .post-details-wrap .post-content blockquote {
    padding: 40px 30px;
    font-size: 20px;
  }
}

.post-details-wrap .post-content blockquote::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-image: url(../img/icons/quote-line.png);
  opacity: 0.06;
  background-size: auto;
  background-position: 38% 50%;
  background-repeat: no-repeat;
}

.post-details-wrap .post-content blockquote .author {
  font-size: 18px;
  position: relative;
  display: block;
  padding-left: 70px;
  margin-top: 25px;
  line-height: 1;
}

@media (max-width: 575px) {
  .post-details-wrap .post-content blockquote .author {
    padding-left: 50px;
  }
}

.post-details-wrap .post-content blockquote .author::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 3px;
  width: 40px;
  background-color: #fff;
  content: "";
}

@media (max-width: 575px) {
  .post-details-wrap .post-content blockquote .author::before {
    width: 30px;
  }
}

.post-details-wrap .post-content h4.with-check {
  margin-bottom: 20px;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .post-details-wrap .post-content h4.with-check {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .post-details-wrap .post-content h4.with-check {
    font-size: 20px;
  }
}

.post-details-wrap .post-content h4.with-check i {
  margin-right: 15px;
}

@media (max-width: 1199px) {
  .post-details-wrap .post-content h4.with-check i {
    margin-right: 10px;
  }
}

.post-footer {
  margin-top: 40px;
}

.post-footer ul li {
  display: inline-block;
}

.post-footer ul li a {
  color: #000f49;
}

.post-footer ul li a:hover {
  color: var(--main-color);
}

.post-footer ul li.title {
  font-weight: 700;
  color: #000f49;
  font-family: 'Haltto-Light', Arial, sans-serif;
}

.post-footer .post-share a {
  padding: 5px;
  margin-left: 5px;
}

.post-footer .post-share a i {
  font-size: 15px;
}

.post-author-info {
  background-color: #f5f5f5;
  padding: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 230px 25px 1fr;
  grid-template-columns: 230px 1fr;
  grid-column-gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .post-author-info {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .post-author-info {
    display: block;
  }
}

.post-author-info .author-desc {
  font-size: 15px;
}

@media (max-width: 767px) {
  .post-author-info .author-desc {
    margin-top: 30px;
  }
}

.post-author-info .author-desc h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .post-author-info .author-desc h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.post-author-info .author-desc ul.social-links {
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .post-author-info .author-desc ul.social-links {
    margin-top: 10px;
  }
}

.post-author-info .author-desc ul.social-links li {
  display: inline-block;
  margin-right: 15px;
}

.post-author-info .author-desc ul.social-links li a {
  color: #000f49;
}

.post-author-info .author-desc ul.social-links li a:hover {
  color: var(--main-color);
}

.post-nav {
  margin: 80px 0;
}

.post-nav .prev-post,
.post-nav .next-post {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 75px 15px 1fr;
  grid-template-columns: 75px 1fr;
  grid-column-gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-nav .prev-post .date,
.post-nav .next-post .date {
  font-size: 15px;
}

.post-nav .prev-post .date i,
.post-nav .next-post .date i {
  margin-right: 10px;
  color: var(--main-color);
}

.post-nav .next-post {
  -ms-grid-columns: 1fr 75px;
  grid-template-columns: 1fr 75px;
  text-align: right;
}

@media (max-width: 767px) {
  .post-nav .next-post {
    text-align: left;
    -ms-grid-columns: 75px 1fr;
    grid-template-columns: 75px 1fr;
    margin-top: 30px;
  }

  .post-nav .next-post .content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .post-nav .next-post .img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.related-post {
  margin-bottom: 80px;
}

.related-post .title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .related-post .title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .related-post .title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .related-post .title {
    font-size: 20px;
  }
}

/*======= Comment Template  =======*/
.comment-template .title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .comment-template .title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .comment-template .title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .comment-template .title {
    font-size: 20px;
  }
}

.comment-template .comment-list li {
  margin-bottom: 45px;
  position: relative;
  padding-left: 130px;
}

@media (max-width: 575px) {
  .comment-template .comment-list li {
    padding-left: 0;
    padding-top: 130px;
  }
}

.comment-template .comment-list li .author-img {
  position: absolute;
  left: 0;
  top: 10px;
}

@media (max-width: 575px) {
  .comment-template .comment-list li .author-img {
    top: 0;
  }
}

.comment-template .comment-list li .comment-content {
  font-size: 15px;
}

.comment-template .comment-list li .comment-content .author-name {
  font-size: 18px;
  margin-bottom: 10px;
}

.comment-template .comment-list li .comment-content .author-name .date {
  font-size: 13px;
  color: #000f49;
  font-weight: 400;
  font-family: 'Haltto-Light', Arial, sans-serif;
  margin-left: 15px;
}

.comment-template .comment-list li .comment-content .reply-btn {
  margin-top: 5px;
  color: #000f49;
  font-weight: 700;
  font-size: 18px;
}

.comment-template .comment-list li .comment-content .reply-btn i {
  margin-left: 8px;
  position: relative;
  top: 2px;
}

.comment-template .comment-list li .comment-content .reply-btn:hover {
  color: var(--main-color);
}

.comment-template .comment-list li .children li {
  margin-bottom: 0;
  margin-top: 45px;
  margin-left: -75px;
}

@media (max-width: 575px) {
  .comment-template .comment-list li .children li {
    margin-left: 50px;
  }
}

.comment-template .comment-list li:last-child {
  margin-bottom: 0;
}

.comment-template .comment-form {
  margin-top: 80px;
  padding: 50px;
  background-color: #f5f5f5;
}

@media (max-width: 1199px) {
  .comment-template .comment-form {
    padding: 35px;
  }
}


.service-tab {
  margin-bottom: 20px;
}

.service-tab .nav-tabs {
  border-bottom: none;
}

.service-tab .nav-link {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  background-color: #000f49;
  color: #fff;
  font-weight: 500;
  margin-left: 15px;
  margin-right: 15px;
}

.service-tab .nav-link.active {
  background-color: var(--main-color);
  color: #fff;
}

.job-list-area-section {
  margin-bottom: -40px;
}

.job-list-area-section .single-job {
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px 0 rgb(8, 0, 42, .08);
  box-shadow: 0 10px 30px 0 rgb(8, 0, 42, .08);
  margin-bottom: 40px;
  padding: 30px;
  color: inherit;
}

.job-list-area-section .single-job h3 {
  margin-bottom: 15px;
}

.job-list-area-section .single-job p {
  font-size: 16px;
}

.job-list-area-section .single-job p i {
  margin-right: 5px;
  color: var(--main-color);
}

.job-details-section .job-details-wrapper .job-details h3.title {
  margin-bottom: 20px;
  color: var(--main-color);
}

.job-details-section .job-details-wrapper .job-details .info {
  margin-bottom: 20px;
}

.job-details-section .job-details-wrapper .job-details .info .label {
  font-weight: 700;
  color: #000;
}

.job-details-section .sidebar .newsletter-widget {
  background-color: #0A3041;
  border: none;
}

.job-details-section .sidebar .newsletter-widget .newsletter-content h5 {
  color: var(--main-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.job-details-section .sidebar .newsletter-widget .newsletter-content h4 {
  color: #fff;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
}

.job-details-section .sidebar .newsletter-widget .newsletter-content h4:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--main-color);
}

.job-details-section .sidebar .newsletter-widget .newsletter-content .newsletter-btn {
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.cart-area-section .total-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-area-section .total-item-info li {
  color: #000;
}

.cart-area-section .cart-table {
  width: 100%;
}

.cart-area-section .cart-table thead {
  background-color: #ededed;
}

.cart-area-section .cart-table thead tr th {
  padding: 10px 20px;
  color: #000;
}

.cart-area-section .cart-table thead tr th.remove {
  text-align: center;
}

.cart-area-section .cart-table tbody tr td {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}

.cart-area-section .cart-table tbody .title h3.prod-title {
  font-size: 20px;
}

.cart-area-section .cart-table tbody .qty .quantity-input {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-area-section .cart-table tbody .qty .quantity-input input,
.cart-area-section .cart-table tbody .qty .quantity-input .quantity-up,
.cart-area-section .cart-table tbody .qty .quantity-input .quantity-down {
  height: 40px;
  padding: 0 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}

.cart-area-section .cart-table tbody .qty .quantity-input input {
  border-left: none;
  border-right: none;
}

.cart-area-section .cart-table tbody .unit-price .available-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-area-section .cart-table tbody .unit-price .available-info span.icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.cart-area-section .cart-table tbody .remove {
  text-align: center;
}

.cart-area-section .cart-middle {
  float: right;
  margin-top: 20px;
}

.cart-area-section .cart-middle .cart-btn {
  display: inline-block;
  margin-left: 15px;
  padding: 10px 30px;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.cart-area-section .cart-middle .cart-btn:hover {
  background-color: #000f49;
  color: #fff;
}

.checkout-area-section .shop-title-box h3 {
  margin-bottom: 20px;
}

.checkout-area-section .form .field-label {
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.checkout-area-section .form textarea,
.checkout-area-section .form .field-input input {
  border: 1px solid #e5e5e5 !important;
}

.checkout-area-section .bottom {
  margin-top: 30px;
}

.checkout-area-section .bottom .table-one {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
}

.checkout-area-section .bottom .cart-table {
  width: 100%;
}

.checkout-area-section .bottom .cart-table tbody .product-title .prod-title {
  font-size: 20px;
}

.checkout-area-section .bottom .cart-table tbody input {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  padding: 0 10px;
}

.checkout-area-section .bottom .cart-table tbody input[type=radio] {
  width: 15px;
  height: 15px;
}

.checkout-area-section .bottom .cart-table tbody tr td p {
  line-height: 18px;
}

.checkout-area-section .bottom .cart-total .cart-total-table {
  border: 1px solid #e8e6f4;
  border-radius: 6px;
}

.checkout-area-section .bottom .cart-total .cart-total-table li {
  border-bottom: 1px solid #e8e6f4;
}

.checkout-area-section .bottom .cart-total .cart-total-table li span.col {
  position: relative;
  display: block;
  float: left;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  padding: 10px 18px;
  width: 50%;
}

.checkout-area-section .bottom .cart-total .cart-total-table li span.col.col-title {
  border-right: 1px solid #e8e6f4;
}

.checkout-area-section .coupon {
  position: relative;
  display: block;
  background: #f8f7ff;
  padding: 20px 28px 21px;
  margin-bottom: 60px;
  border-radius: 5px;
}

.checkout-area-section .coupon .btn {
  background-color: var(--main-color);
  color: #fff;
}

.checkout-area-section .payment-options {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #e8e6f4;
  padding: 23px 20px 35px;
  border-radius: 6px;
}

.checkout-area-section .payment-options h4 {
  margin-bottom: 15px;
}

.checkout-area-section .payment-options input[type=radio] {
  width: 15px;
  height: 15px;
}

.checkout-area-section .payment-options .placeorder-button {
  margin-top: 30px;
}

/*===========================
    Dashboard css 
===========================*/
.user-dashbord {
  padding: 120px 0;
}

.user-dashbord .user-sidebar {
  border: 1px solid #e1e1e1;
  padding: 20px 30px;
}

@media (max-width: 991px) {
  .user-dashbord .user-sidebar {
    margin-bottom: 60px;
  }
}

.user-dashbord .user-sidebar .links li {
  border-bottom: 1px dashed #e1e1e1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.user-dashbord .user-sidebar .links li a {
  display: block;
  color: #676767;
}

.user-dashbord .user-sidebar .links li a:hover {
  color: var(--main-color);
}

.user-dashbord .user-sidebar .links li a.active {
  color: var(--main-color);
}

.user-dashbord .user-sidebar .links li:last-child {
  border-bottom: none;
}

.user-dashbord .user-sidebar .links li:last-child a {
  padding-bottom: 0;
}

.user-dashbord .user-profile-details .order-details .progress-area-step {
  margin-bottom: 60px;
  display: block;
  overflow: hidden;
}

.user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li {
  width: 25%;
  float: left;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    float: unset;
    text-align: left;
    padding-bottom: 20px;
  }

  .user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li:last-child:after {
    display: none;
  }
}

.user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li .icon {
  height: 30px;
  width: 30px;
  text-align: center;
  margin: auto;
  background: #efefef;
  border-radius: 50%;
  line-height: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  position: relative;
}

@media (max-width: 767px) {
  .user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li .icon {
    margin: 0;
  }
}

.user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li .progress-title {
  padding-top: 10px;
}

@media (max-width: 767px) {
  .user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li .progress-title {
    padding-left: 20px;
    padding-top: 0;
  }
}

.user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li:after {
  position: absolute;
  content: "";
  height: 3px;
  width: calc(100% - 30px);
  background: #efefef;
  top: 14px;
  z-index: 0;
  right: calc(50% + 15px);
}

@media (max-width: 767px) {
  .user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li:after {
    width: 3px;
    height: calc(100% - 30px);
    top: 30px;
    left: 15px;
  }
}

.user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li.active .icon {
  background: var(--main-color);
  color: #fff;
}

.user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li:first-child:after {
  display: none;
}

@media (max-width: 767px) {
  .user-dashbord .user-profile-details .order-details .progress-area-step .progress-steps li:first-child:after {
    display: block;
  }
}

.user-dashbord .user-profile-details .order-details .edit-account-info .filed-btn {
  padding: 10px 20px;
  font-size: 14px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 4px;
}

.user-dashbord .user-profile-details .edit-info-area {
  margin-top: 30px;
  overflow: hidden;
}

.user-dashbord .user-profile-details .edit-info-area .btn {
  padding: 10px 20px;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  outline: none;
}

.user-dashbord .user-profile-details .edit-info-area .btn:hover,
.user-dashbord .user-profile-details .edit-info-area .btn:focus {
  color: #fff;
}

.user-dashbord .user-profile-details .edit-info-area .form_control {
  display: inline-block;
  width: 100%;
  height: 50px;
  padding-left: 23px;
  border: 1px solid #ddd;
  outline: 0;
  border-radius: 1px;
}

.user-dashbord .user-profile-details .edit-info-area .upload-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.user-dashbord .user-profile-details .edit-info-area .upload-img .img-box {
  max-width: 100px;
  height: 100px;
}

.user-dashbord .user-profile-details .edit-info-area .upload-img .img-box img {
  width: 100%;
  border-radius: 50%;
}

.user-dashbord .user-profile-details .edit-info-area .file-upload-area {
  margin-left: 30px;
}

.user-dashbord .user-profile-details .edit-info-area .file-upload-area .upload-file {
  position: relative;
  cursor: pointer;
}

.user-dashbord .user-profile-details .edit-info-area .file-upload-area input {
  width: 150px;
  height: 40px;
  display: inline-block;
  opacity: 0;
  cursor: pointer;
}

.user-dashbord .user-profile-details .edit-info-area .file-upload-area span {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 40px;
  background: var(--main-color);
  z-index: -1;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-weight: 600;
}

.user-dashbord .user-profile-details .edit-info-area .nice-select {
  width: 100%;
  height: 50px;
  border-color: #ddd;
  border-radius: 0;
  line-height: 50px;
  margin-bottom: 20px;
}

.user-dashbord .user-profile-details .edit-info-area .nice-select .list {
  width: 100%;
}

.user-dashbord .user-profile-details .edit-info-area .single_radio,
.user-dashbord .user-profile-details .edit-info-area .single_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.user-dashbord .user-profile-details .edit-info-area .single_radio span,
.user-dashbord .user-profile-details .edit-info-area .single_checkbox span {
  display: inline-block;
  margin-left: 30px;
  margin-top: -4px;
}

.user-dashbord .user-profile-details .edit-info-area .single_radio .single_input,
.user-dashbord .user-profile-details .edit-info-area .single_checkbox .single_input {
  display: none;
}

.user-dashbord .user-profile-details .edit-info-area .single_radio .single_input:checked+.single_input_label:after,
.user-dashbord .user-profile-details .edit-info-area .single_checkbox .single_input:checked+.single_input_label:after {
  opacity: 1;
}

.user-dashbord .user-profile-details .edit-info-area .single_radio .single_input:checked+.single_input_label:before,
.user-dashbord .user-profile-details .edit-info-area .single_checkbox .single_input:checked+.single_input_label:before {
  border-color: var(--main-color);
}

.user-dashbord .user-profile-details .edit-info-area .single_radio .single_input_label:after,
.user-dashbord .user-profile-details .edit-info-area .single_radio .single_input_label:before {
  border-radius: 50%;
}

.user-dashbord .user-profile-details .edit-info-area .single_radio .single_input_label:after {
  content: "";
  width: 14px;
  height: 14px;
  line-height: 20px;
  top: 3px;
  left: 3px;
}

.user-dashbord .user-profile-details .edit-info-area .single_input_label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.user-dashbord .user-profile-details .edit-info-area .single_input_label:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  display: inline-block;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.user-dashbord .user-profile-details .edit-info-area .single_input_label:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
  display: block;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.user-dashbord .user-profile-details .edit-info-area .sigle_input_check:before {
  border-color: #ddd;
}

.user-dashbord .user-profile-details .edit-info-area .sigle_input_check:after {
  background: var(--main-color);
  color: #FFFFFF;
  border-color: #ddd;
}

.user-dashbord .card-box.box-1 {
  background: #6963FF;
}

.user-dashbord .card-box.box-1:after {
  content: "";
}

.user-dashbord .card-box.box-2 {
  background: #07BFA7;
}

.user-dashbord .card-box.box-2:after {
  content: "";
}

.user-dashbord .card-box.box-3 {
  background: #EC7424;
}

.user-dashbord .card-box.box-3:after {
  content: "";
  font-weight: 400;
}

.user-dashbord .card-box:after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: 'Haltto-Light', Arial, sans-serif;
  font-size: 90px;
  font-weight: 400;
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .user-dashbord .card-box:after {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .user-dashbord .card-box:after {
    font-size: 100px;
  }
}

.user-dashbord .card-box .card-info h5 {
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .user-dashbord .card-box .card-info h5 {
    font-size: 18px;
  }
}

.user-dashbord .card-box .card-info p {
  color: #fff;
}

.user-dashbord .title {
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.user-dashbord .main-info {
  overflow: hidden;
}

.user-dashbord .main-info h5 {
  margin-bottom: 15px;
}

.user-dashbord .main-info ul.list {
  float: left;
  width: 100%;
}

@media (max-width: 767px) {
  .user-dashbord .main-info ul.list {
    width: 50%;
  }
}

.user-dashbord .main-info ul.list li {
  line-height: 30px;
}

.user-dashbord .main-info ul.list li p span {
  font-weight: 500;
  margin-right: 20px;
}

.user-dashbord .main-table .dataTables_wrapper .row:first-child,
.user-dashbord .main-table .dataTables_wrapper .row:last-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user-dashbord .main-table .dataTables_wrapper .row:last-child {
  margin-top: 20px;
}

.user-dashbord .main-table .dataTables_wrapper input[type=search] {
  height: 35px;
  outline: none;
}

.user-dashbord .main-table .dataTables_wrapper input[type=search]:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.user-dashbord .main-table .dataTables_wrapper td span.pending {
  padding: 5px 10px;
  background: var(--main-color);
  color: #fff;
  border-radius: 3px;
}

.user-dashbord .main-table .dataTables_wrapper td a.btn {
  border: 1px solid var(--main-color);
  color: #123212;
  background: transparent;
  padding: 5px 20px;
  font-size: 14px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.user-dashbord .main-table .dataTables_wrapper td a.btn:hover {
  background: var(--main-color);
  border-color: transparent;
  color: #fff;
}

.user-dashbord .main-table .dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0;
  margin-left: 7px;
}

.user-dashbord .main-table .dataTables_wrapper .dataTables_paginate .paginate_button.active .page-link {
  background-color: var(--main-color) !important;
  border-color: transparent;
  color: #fff;
}

.user-dashbord .main-table .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border-color: transparent;
  background: transparent;
  background-color: transparent;
}

.user-dashbord .main-table .dataTables_wrapper .dataTables_paginate .paginate_button .page-link {
  border: 1px solid #e1e1e1;
  color: #123212;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.user-dashbord .main-table .dataTables_wrapper .dataTables_paginate .paginate_button .page-link:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  background-color: var(--main-color) !important;
}

.user-dashbord .account-info,
.user-dashbord .order-details {
  border: 1px solid #e1e1e1;
  padding: 30px;
}

.user-dashbord .view-order-page .order-info-area {
  margin-bottom: 40px;
}

.user-dashbord .view-order-page .order-info-area .order-info h3 {
  margin-bottom: 15px;
}

.user-dashbord .view-order-page .order-info-area .prinit {
  float: right;
}

@media (max-width: 767px) {
  .user-dashbord .view-order-page .order-info-area .prinit {
    float: none;
    margin-top: 20px;
  }
}

.user-dashbord .view-order-page .order-info-area .prinit .btn {
  background: var(--main-color);
  font-size: 14px;
  padding: 3px 10px;
  color: #fff;
}

.user-dashbord .view-order-page .order-info-area .prinit .btn i {
  margin-right: 10px;
}

.user-dashbord .billing-add-area {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .user-dashbord .billing-add-area .main-info {
    margin-bottom: 30px;
  }
}

.user-dashbord .billing-add-area .main-info ul.list {
  width: 100%;
}

@media (max-width: 767px) {
  .user-dashbord .billing-add-area .main-info ul.list {
    width: 100%;
  }
}

.user-dashbord .billing-add-area .payment-information h5 {
  margin-bottom: 15px;
}

.user-dashbord .billing-add-area .payment-information p {
  line-height: 35px;
}

.user-dashbord .product-list h5 {
  margin-bottom: 15px;
}

.user-dashbord .product-list table tr td b {
  line-height: 30px;
}

.user-dashbord .product-list table tr td span {
  margin-left: 10px;
}

.user-dashbord .product-list table tr td span.color {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #222;
}

.user-area-section .user-form .form_group .btn {
  background-color: var(--main-color);
  color: #fff;
  font-weight: 500;
  padding: 10px 30px;
  margin-right: 10px;
}

.user-area-section .user-form .form_checkbox .single-checkbox {
  margin-right: 15px;
}

.user-area-section .user-form input[type=radio] {
  width: 13px;
  height: 13px;
}

.user-area-section .user-form input[type=checkbox] {
  width: 13px;
  height: 13px;
}

.user-area-section .user-form .form_text {
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .dataTables_length {
    margin-bottom: 20px;
  }

  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    float: none;
  }

  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
}

/*=======  Footer  =======*/
footer {
  background-color: #000f49;
  position: relative;
  padding-top: 80px;
  z-index: 1;
}

footer .widget {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  footer .widget {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  footer .widget {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  footer .widget {
    margin-bottom: 45px;
  }
}

footer .widget,
footer .widget a {
  color: #7d91a0;
}

footer .widget a:hover {
  color: #fff;
}

footer .widget .widget-title,
footer .widget .footer-logo {
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {

  footer .widget .widget-title,
  footer .widget .footer-logo {
    font-size: 22px;
  }
}

footer .widget .social-links {
  margin-top: 25px;
}

footer .widget .social-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
}

footer .widget .social-links li a:hover {
  color: var(--main-color);
}

footer .widget.newsletter-widget {
  padding: 50px;
  border: 2px solid #1d2d3a;
}

@media (max-width: 991px) {
  footer .widget.newsletter-widget {
    padding: 30px;
  }
}

footer .widget.newsletter-widget .widget-title {
  margin-bottom: 15px;
}

footer .widget.newsletter-widget .newsletter-form {
  position: relative;
  padding-right: 280px;
}

@media (max-width: 991px) {
  footer .widget.newsletter-widget .newsletter-form {
    padding-right: 0;
  }
}

footer .widget.newsletter-widget .newsletter-form input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid #33495b;
  line-height: 70px;
  padding: 0;
  height: 70px;
}

footer .widget.newsletter-widget .newsletter-form ::-webkit-input-placeholder {
  color: #7d91a0;
}

footer .widget.newsletter-widget .newsletter-form ::-moz-placeholder {
  color: #7d91a0;
}

footer .widget.newsletter-widget .newsletter-form :-ms-input-placeholder {
  color: #7d91a0;
}

footer .widget.newsletter-widget .newsletter-form ::-ms-input-placeholder {
  color: #7d91a0;
}

footer .widget.newsletter-widget .newsletter-form input,
footer .widget.newsletter-widget .newsletter-form ::placeholder {
  color: #7d91a0;
}

footer .widget.newsletter-widget .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 991px) {
  footer .widget.newsletter-widget .newsletter-form button {
    position: relative;
    margin-top: 20px;
  }
}

footer .widget.nav-widget ul li {
  line-height: 42px;
}

footer .widget.nav-widget ul li a:hover {
  padding-left: 5px;
}

footer .widget.contact-widget .contact-infos {
  margin-top: 0px;
}

footer .widget.contact-widget .contact-infos li {
  margin-bottom: 8px;
}

@media (max-width: 1199px) {
  footer .widget.contact-widget .contact-infos li {
    font-size: 16px;
  }
}

footer .widget.contact-widget .contact-infos i {
  margin-inline-end: 10px !important;
  color: var(--main-color);
}

@media (max-width: 1199px) {
  footer .widget.contact-widget .contact-infos i {
    margin-right: 5px;
  }
}

footer .widget.insta-feed-widget {
  padding-left: 45px;
}

@media (max-width: 991px) {
  footer .widget.insta-feed-widget {
    padding-left: 0;
  }
}

footer .widget.insta-feed-widget .insta-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-gap: 10px;
}

footer .widget.insta-feed-widget .insta-images>*:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

footer .widget.insta-feed-widget .insta-images>*:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

footer .widget.insta-feed-widget .insta-images>*:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

@media (max-width: 575px) {
  footer .widget.insta-feed-widget .insta-images {
    -ms-grid-columns: 90px 10px 90px 10px 90px;
    grid-template-columns: repeat(3, 90px);
  }
}

footer .widget.insta-feed-widget .insta-images .insta-img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100px;
  background-color: #ddd;
  z-index: 1;
  position: relative;
}

footer .widget.insta-feed-widget .insta-images .insta-img::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-color: var(--main-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

footer .widget.insta-feed-widget .insta-images .insta-img a {
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 26px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 100px;
  text-align: center;
}

footer .widget.insta-feed-widget .insta-images .insta-img:hover a {
  visibility: visible;
  opacity: 1;
}

footer .widget.insta-feed-widget .insta-images .insta-img:hover::before {
  opacity: 0.7;
  visibility: visible;
}

footer .footer-copyright {
  border-top: 2px solid #1d2d3a;
  padding: 47px 0 18px 0;
  position: relative;
}

footer .footer-copyright .copyright-text {
  color: #7d91a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 767px) {
  footer .footer-copyright .copyright-text span {
    width: 100%;
    text-align: center;
  }

  footer .footer-copyright .copyright-text span:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 10px;
  }
}

footer .footer-copyright .back-to-top {
  position: absolute;
  left: 50%;
  top: 0;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  border: 2px solid #1d2d3a;
  line-height: 75px;
  color: var(--main-color);
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000f49;
}

@media (max-width: 767px) {
  footer .footer-copyright .back-to-top {
    height: 55px;
    width: 55px;
    line-height: 55px;
  }
}

footer .footer-copyright .back-to-top:hover {
  background-color: var(--main-color);
  color: #fff;
}

footer .line-one,
footer .line-two,
footer .line-three,
footer .line-four {
  position: absolute;
  z-index: -1;
}

footer .line-one {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

footer .line-two {
  right: 0;
  top: 0;
}

footer .line-three {
  left: 0;
  top: 0;
}

footer .line-four {
  right: 0;
  bottom: 0;
}

footer.grey-bg-footer {
  background-color: #fff;
}

footer.grey-bg-footer .widget,
footer.grey-bg-footer .widget a {
  color: #061A7F;
}

footer.grey-bg-footer .widget a:hover {
  color: var(--main-color);
}

footer.grey-bg-footer .widget .widget-title {
  color: #061A7F;
}

footer.grey-bg-footer .widget.newsletter-widget,
footer.grey-bg-footer .widget.newsletter-widget .newsletter-form input {
  border-color: #dddddd;
}

footer.grey-bg-footer .footer-copyright {
  border-color: #dddddd;
}

footer.grey-bg-footer .footer-copyright .copyright-text {
  color: #061A7F;
}

footer.grey-bg-footer .footer-copyright .back-to-top {
  border-color: #dddddd;
  background-color: #fff;
}

footer.grey-bg-footer .footer-copyright .back-to-top:hover {
  background-color: var(--main-color);
}

.latest-post-loop .slick-slide {
  margin: 0 10px;
}

/* the parent */
.latest-post-loop .slick-list {
  margin: 0 -10px;
}

/* START: RESET CSS for Summernote Content */
.summernote-content * {
  margin: initial;
  padding: initial;
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}

.summernote-content article,
.summernote-content aside,
.summernote-content details,
.summernote-content figcaption,
.summernote-content figure,
.summernote-content footer,
.summernote-content header,
.summernote-content hgroup,
.summernote-content menu,
.summernote-content nav,
.summernote-content section {
  display: block;
}

.summernote-content i,
.summernote-content span,
.summernote-content a {
  display: inline;
}

/* END: RESET CSS for Summernote Content */

/* START: UL, OL style for summernote content */
.summernote-content ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.summernote-content ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

/* END: UL, OL style for summernote content */

/* START: TABLE style for summernote content */
.summernote-content .table td,
.summernote-content .table th {
  font-size: 14px;
  border-top-width: 0px;
  border-bottom: 1px solid;
  border: 1px solid #ebedf2 !important;
  padding: 0 25px !important;
  height: 60px;
  vertical-align: middle !important;
  color: #000;
}

/* END: TABLE style for summernote content */

/* START: BLOCKQUOTE style for summernote content */
.summernote-content blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

/* END: BLOCKQUOTE style for summernote content */

/* START: PRE, CODE style for summernote content */
.summernote-content code,
.summernote-content kbd,
.summernote-content pre,
.summernote-content samp {
  font-family: 'Haltto-Light', Arial, sans-serif;
}

.summernote-content pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* END: PRE, CODE style for summernote content */

.portfolio-details-slider .slick-arrow {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #fff;
}

.portfolio-details-slider .slick-arrow.prev-arrow {
  left: 0px;
}

.portfolio-details-slider .slick-arrow.next-arrow {
  right: 0px;
}

.saas-pagination ul li span {
  height: 40px;
  width: 40px;
}

ul.pagination li {
  margin: 0 3px;
}

ul.pagination li a {
  color: inherit;
}

ul.pagination {
  justify-content: center;
}

.mar-left-20 {
  margin-left: 20px;
}

.mar-bottom-40 {
  margin-bottom: 40px;
}

.mar-right-4 {
  margin-right: 4px;
}

.title-color {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.dis-flex {
  display: flex;
}

.post {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.datepicker {
  padding: 18px !important;
}

div.ui-datepicker {
  z-index: 2 !important;
}

.ui-timepicker-container.ui-timepicker-no-scrollbar.ui-timepicker-standard {
  position: absolute;
  max-height: 300px;
  overflow-y: scroll;
  z-index: 2 !important;
  overflow-x: hidden;
  direction: ltr;
}

.ui-timepicker-container.ui-timepicker-no-scrollbar.ui-timepicker-standard ul li a {
  text-align: center;
  display: block;
}

.slick-dots li {
  background-color: transparent;
}

/* spartan code  */

.cursor-pointer {
  cursor: pointer;
}

.previous-price {
  text-decoration: line-through;
}

.active-search {
  color: var(--main-color) !important;
}

.price-range-wrapper {
  border: 1px solid rgba(1, 1, 1, 0.1);
  border-top: 0;
  padding: 30px 20px;
}

.price-range-wrapper .range {
  margin-top: 20px;
  white-space: nowrap;
}

.price-range-wrapper .range input {
  width: 32.5%;
  height: 35px;
  border-radius: 3px;
  background-color: #f3f3f3;
  border: 0;
  font-size: 14px;
  color: #798795;
  text-align: center;
}

/* cart bar  */

a#cartIcon {
  position: fixed;
  z-index: 50;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-right: none;
  font-size: 12px;
  text-align: center;
  color: inherit;
  box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 3%), 0 6.7px 5.3px rgb(0 0 0 / 5%), 0 12.5px 10px rgb(0 0 0 / 6%), 0 22.3px 17.9px rgb(0 0 0 / 7%), 0 41.8px 33.4px rgb(0 0 0 / 9%), 0 100px 80px rgb(0 0 0 / 12%);
  text-decoration: none;
}

a#cartIcon .cart-length {
  background: #55584d;
  padding: 5px 10px;
  font-weight: 600;
  color: #fdd670;
}

a#cartIcon .cart-length i {
  font-size: 16px;
}

a#cartIcon span.length {
  line-height: 22px;
}

a#cartIcon span.length {
  display: block;
  margin-top: -7px;
}

a#cartIcon .cart-total {
  background-color: #fff;
  line-height: 18px;
  text-align: center;
  font-weight: 600;
  color: inherit;
}

/* end cart bar  */

/* whatsapp boton*/
a#whatsappBoton {
  position: fixed;
  z-index: 50;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-right: none;
  font-size: 12px;
  text-align: center;
  color: inherit;
  box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 3%), 0 6.7px 5.3px rgb(0 0 0 / 5%), 0 12.5px 10px rgb(0 0 0 / 6%), 0 22.3px 17.9px rgb(0 0 0 / 7%), 0 41.8px 33.4px rgb(0 0 0 / 9%), 0 100px 80px rgb(0 0 0 / 12%);
  text-decoration: none;
}
a#whatsappBoton .whats-length {
  background: #fff;
  padding: 5px 10px;
  font-weight: 600;
  color: #25D366;
  border-radius: 15px;
}

a#whatsappBoton .whats-length i {
  font-size: 46px;
}

a#whatsappBoton span.length {
  line-height: 22px;
}

a#whatsappBoton span.length {
  display: block;
  margin-top: -7px;
  color: #000f49;
  font-size: 17px;
  font-weight: 700;
  padding-top: 10px;
}

/* end whatsapp boton*/

div#order_table_filter {
  margin-left: 144px;
}

.variation-table-order tbody tr td,
.variation-table tbody tr td {
  padding: 1px 02px !important;
}

.variation-table-order tbody tr td {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.wcu-section {
  overflow: hidden;
}

.free-line{
    color: #f8f6f6;
    font-size: 35px;
    font-weight: bold;
}

.bt-cliente{
    border-radius: 3px;
    background: #000f49;
    color: #f8f6f6;
    padding: 5px;
    width: 180px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.titulo-seguro{
    color: #04064e;
    font-size: 18px;
    font-weight: bold;
}
.azul{
    color: #08055e;
}
.azul-negrita{
    font-weight: 700;
}
.titulo-broker{
    font-size: 50px;
    font-weight: 400;
    line-height: 55px;
    
    text-align: left;
    color: #061a7f;
}
.titulo-broker2{
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    font-style: italic;
    text-align: left;
    color: #061a7f;
}
.members-heading1{
    font-weight: bold;
    line-height: 35px;
    font-style: normal;
    text-align: left;
    color: #f3eded; 
    padding-bottom: 50px;
}

/* BOTON WHATSAPP */
.codeless-add-purchase-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 70px;
    /*background: rgba(137, 189, 73, .25);*/
    border: none;
    /*-webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
    box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
    -webkit-border-radius: 100%;*/
    border-radius: 100%;
    color: #fff;
    padding: 0;
    padding-right: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99;
    font-size: 18px;
    font-weight: bold;
    color: #7768af !important;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.codeless-add-purchase-button i.icon {
    height: 50px;
    width: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #7768af;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 10px 0 10px 10px;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.codeless-add-purchase-button i.icon svg {
    height: 30px;
    position: relative;
    bottom: 1px;
}
.codeless-add-purchase-button i.icon:after {
    content: "";
    position: fixed;
    display: block;
    height: 70px;
    width: 70px;
    background: rgb(103 58 183 / 40%);
    z-index: -1;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: 3s ease-in-out infinite pulse;
    animation: 3s ease-in-out infinite pulse;
}
.codeless-add-purchase-button i.icon svg path {
    fill: #fff;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
    25% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 1
    }
    55% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
    25% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 1
    }
    55% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}
.rojo{
   color : var(--main-color);
}


.animacion {
  animation: mover 2s ease-in-out infinite alternate;
}

@keyframes mover {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50px);
  }
}
/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 33px;
    bottom: 110px;
    height: 47px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgb(204 204 204 / 30%);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    content: '^';
    text-align: center;
    line-height: 49px;
    font-size: 16px;
    color: #ccc;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap::before {
    position: absolute;
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: black; /* --- Pijl hover kleur --- */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap svg path { 
    fill: none; 
}
.progress-wrap svg.progress-circle path {
    stroke: #ccc; /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* II. SLIDER */
.slider-vex-section {
    position: relative;
    background: #000;
}
.slider-vex:not(.owl-loaded) {
    height: 100vh;
    display: block;
    overflow: hidden;
}
.slider-vex-section .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    width: 100%;
}
.header-social-share svg {
    display: inline-block;
    fill: #fff;
}
.header-social-share ul li a::after {
    content: '+';
    margin: 0 3px 0 6px;
}
.header-social-share ul li:last-child a::after {
    opacity: 0;
}
.header-social-share ul li a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0;
    border-bottom: 1px solid #fff;
    transition: .3s cubic-bezier(0,0,.2,1);
    left: 0;
}

.header-social-share ul li a:hover::before {
    width: calc(100% - 19px);
}
.slider-vex-section .owl-nav .owl-prev, 
.slider-vex-section .owl-nav .owl-next {
    border-radius: 100%;
    border: 1px solid rgb(204 204 204 / 30%) !important;
    color: #bdbdbd !important;
    left: 30px;
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 18px !important;
    line-height: 50px !important;
    outline: 0;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.slider-vex-section .owl-nav .owl-prev:hover, 
.slider-vex-section .owl-nav .owl-next:hover {
    border-color: #6164ff !important;
    color: #6164ff !important;
}
.slider-vex-section .owl-nav .owl-next {
    right: 30px;
    left: auto;
}
.service-item {
    height: 100vh;
    min-width: 100%;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}
.rtl .service-details.col-md-7::after {
    margin-left: 0;
    margin-right: auto;
}

.rtl .service-details.col-md-7 {
    float: left;
    text-align: right;
}
a.btn.btn-slider i {
    margin-left: 7px;
}
.service-details-title h2 {
    font-size: 58px;
    line-height: 62px;
    color: #fff;
    font-weight: 800;
    max-width: 700px;
}
a.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;

}
a.hero__scroll svg {
    fill: #fff;
        -webkit-animation: arrow 1.5s linear infinite;
    animation: arrow 1.5s linear infinite;
}
.rtl a.btn.btn-slider svg {
    margin-left: 0;
    margin-right: 9px;
}
.header-social-share {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 30px;
}
.header-social-share ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* margin-top: 15px; */
    display: inline-block;
    margin-left: 10px;
    position: relative;
    bottom: 6px;
}
.header-social-share ul li {
    display: inline-block;
}
.header-social-share ul li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    opacity: 1;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    opacity: 1;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    position: relative;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes arrow {
    0% {
        -webkit-transform: translate(0, 0) scale3D(1, 1, 1);
        transform: translate(0, 0) scale3D(1, 1, 1);
        opacity: 1
    }
    100% {
        -webkit-transform: translate(0, 5px) scale3D(1.2, 1.2, 1.2);
        transform: translate(0, 5px) scale3D(1.2, 1.2, 1.2);
        opacity: 0
    }
}

@keyframes arrow {
    0% {
        -webkit-transform: translate(0, 0) scale3D(1, 1, 1);
        transform: translate(0, 0) scale3D(1, 1, 1);
        opacity: 1
    }
    100% {
        -webkit-transform: translate(0, 5px) scale3D(1.2, 1.2, 1.2);
        transform: translate(0, 5px) scale3D(1.2, 1.2, 1.2);
        opacity: 0
    }
}

a.btn.btn-slider svg {
    fill: #fff;
    margin-left: 9px;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
}
.service-item-bg-title {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
span.servicebg-title {
    z-index: -1;
    line-height: .5;
    white-space: nowrap;
    letter-spacing: -.02em;
    font-size: 300px;
    font-weight: 700;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    color: rgba(136, 136, 136, 0.04);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.service-details-description p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 26px;
}

.service-details-title {
    margin: 10px 0;
}

a.btn.btn-slider {
    color: #fff;
    padding: 0;
    margin-top: 10px;
    border: 0;
    font-weight: 700;
    outline: 0;
    margin-right: 30px;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
}
.service-item-inner {
    position: relative;
    height: 100%;
    background-color: rgba(23, 22, 26, 0.99);
}
a.btn.btn-slider:hover {
    color: #5956e9;
}

a.btn.btn-slider:hover svg {
    fill: #5956e9;
}


.details-holder {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0px 20px;
    position: relative;
    height: 100%;
    overflow: hidden;
}
.btn-play svg {
    max-width: 60px;
}

.btn-play svg path {
    fill: #fff;
}

.service-details-subtitle p {
    color: #fff;
    font-weight: 600;
}

.btn-play {
    margin-bottom: 25px;
}
.col-md-12.parallax-holder {
    top: 18vh;
    bottom: 18vh;
    position: absolute;
    /* left: 8.33333333%; */
    left: 70px;
}

.service-item-image {
    width: auto;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 20px;
    left: 20px;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    background-color: #000;
}

.service-item-image::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 100%;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(23, 22, 26, 0)), to(rgba(23, 22, 26, 0.992)));
    background-image: -webkit-linear-gradient(right, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.992));
    background-image: -o-linear-gradient(right, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.992));
    background-image: linear-gradient(to left, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.992));
    left: 0px;
}

.service-details.col-md-7 {
    position: relative;
    height: 100%;
    min-height: 65vh;
    z-index: 10;
    padding-top: 14vh;
    padding-bottom: 7.2vh;
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}
.service-details.col-md-7::after {
    content: "";
    position: absolute;
    left: -30px;
    right: 0;
    top: 0;
    height: 50%;
    background-image: url(../../img/pattern.svg);
    z-index: -1;
    width: 60%;
}
/* III. ABOUT  */


.about-section {
    padding: 105px 0;
    background: #fff;
    overflow: hidden;
}
.imgone.big-paral .simpleParallax {
    background: #000000;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}



.card-parent:hover .service-link-div {
    display: block;
}

.rtl div#about-us .container {
    margin-left: 0;
    margin-right: auto;
}

.rtl div#about-us .container .item-about::after {
    right: unset;
    left: 0;
}

.rtl div#about-us .container  .imgtwo.big-paral {
    border-radius: 0 12px 12px 0;
}


.rtl .about-section ul li::before {
    left: unset;
    right: 0;
}

.rtl .about-section ul li {
    padding-left: 0;
    padding-right: 24px;
}


.card-parent:hover a.service-link {
    opacity: 1;
}

a.service-link svg {
    fill: #fff;
    margin-left: 5px;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
}
a.service-link:hover {
    color: #ccc;
}

a.service-link:hover svg {
    fill: #ccc;
}
.about-section ul li,
.about-us ul li {
    font-size: 15px;
    line-height: 24px;
    display: block;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
color: #686868;}
.about-section ul li::before,
.about-us ul li::before {
    content: "\f192";
    font-family: 'Haltto-Light', Arial, sans-serif;
    position: absolute;
    left: 0;
    top: 1px;
color: #5956e9;}
.about-section ul,
.about-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    padding-top: 10px;
    max-width: 500px;
}

.about-section a.btn.btn-style1 {
    margin-top: 25px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px #ccc;
    -webkit-box-shadow: 0 0 10px #ccc;
}
.simpleParallax {
    position: relative;
    z-index: 3;
}
.about-section .container {
    max-width: 100%;
    width: calc(100% - ((100vw - 1200px +  55px) / 2));
    margin-left: auto;
    margin-right: 0;
}

.item-about {
    position: relative;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    /* overflow: hidden; */
    height: 100%;
}

.imgtwo.big-paral {
    position: absolute;
    width: 100%;
    height: 100%;
    /* border-radius: 12px 0px 0px 12px; */
    overflow: hidden;
    z-index: 9;
}

.simpleParallax img {
    pointer-events: none;
    object-fit: cover;
    width: 100%;
    height: auto !important;
/* transform-origin: top; */}

.about-section .container .row {position: relative;}

.about-section .col-md-7 {
    padding: 0;
}
.card-parent:hover p.paragraph {
    transform: none !important;
}
.about-section .col-md-5 {
    padding-right: 25px;
    padding-bottom: 10px;
}
h4.about-heading1-home {
    font-size: 14px;
    color: #5956e9;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 3px;
    margin-top: 25px;
}

h4.about-heading1-home::after {
    content: '';
    display: inline-block;
    position: relative;
    bottom: 4px;
    margin-right: 10px;
    width: 80px;
    height: 1.5px;
    background: linear-gradient(to right,#5956e9  0,#5956e9 35%,#5956e9  65%,transparent 100%);
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
}
.rtl h4.about-heading1-home::before {
    margin-right: 0px;
    margin-left: 10px;
}

.about-heading2-home {
    font-size: 46px;
    line-height: 52px;
    font-weight: 800;
    color: #17161A;
    margin-top: 10px;
    margin-bottom: 25px;
    /* max-width: 500px; */
}


.btn.btn-style1 {
    display: block;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    
    font-weight: 700;
    background-color: #5956e9;
    border-radius: 5px;
    padding: 0 20px;
    display: inline-block;
    height: 50px;
    min-width: 100px;
    line-height: 48px;
    margin: 10px 0px;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    box-shadow: 0 0 10px #000;
    -webkit-box-shadow: 0 0 10px #000;
    margin-right: 30px;
}

.rtl .btn.btn-style1 {
    margin-right: 0px;
    margin-left: 30px;
}

.btn.btn-style1:hover {
    background-color: #2522ba;
}
.btn.btn-style1 span.button-text {
    display: inline-block;
    font-weight: 600;
}
.about-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #686868;
    max-width: 500px;
}
.pictures-row {
    padding-right: 30px;
}
.rtl .pictures-row {
    padding-right: 0px;
    padding-left: 30px;
}
.imgone.big-paral {
    position: relative;
    top: -40px;
}

.exp-about {
    padding-left: 30px;
    margin-top: -20px;
}


h5.nmb-font-about {
    font-size: 42px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}
h3.about-heading2-home  span {
    color: #5956e9;
}

h6.service_summary-about {
    font-size: 14px;
    color: #bdbdbd;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 0px;
    margin-left: -27px;
}
h6.service_summary-about::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #000f49;
    display: inline-block;
    position: relative;
    bottom: 5px;
    margin-right: 10px;
}
.rtl h6.service_summary-about::before {
    margin-right: 0px;
    margin-left: 10px;
}
.card-parent {
    padding: 0;
    position: relative;
    border: 0;
    outline: 0;
    border-radius: 0px;
    overflow: hidden;
}

.card.featured.to-top-left h4.heading i {
    color: #5956e9;
    padding-right: 5px;
}
.rtl .card.featured.to-top-left h4.heading i {
    padding-right: 0px;
    padding-left: 5px;
}

.card.featured.to-top-left {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: transparent;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 30px;
        z-index: 10;
}

.card.featured.to-top-left h4.heading {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0px;
}
.heading-wrapper {
    margin: 0 0 15px;
}
.card.featured.to-top-left p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    margin-bottom: 0px;
    transform: translateY(45px);
    transition: all 400ms ease;
}
.featured-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-wrapper.to-bottom {
    margin: 0;
}
.featured-image {
    max-height: 160px;
    overflow: hidden;
    border-radius: 0;
}
.project__img_single {
    max-height: 550px;
    overflow: hidden;
    margin-bottom: 0px;
    border-radius: 0;
margin-top: 30px;}
.project__img_single img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
} 

/* IV. FUN FACTS */
.fun-facts-section {
    padding: 90px 0 110px;
    background: #17161A;
    position: relative;
    border-bottom: 1px solid #222227;
}
h3.fun-facts-heading1 {
    font-size: 46px;
    line-height: 52px;
    font-weight: 800;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
    text-align: center;
}
.fun-facts-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 10px;
}
.row.fun-facts-timer {
    margin-top: 40px;
}
span.timer {
    font-size: 54px;
    line-height: 63px;
    letter-spacing: 0;
    font-weight: 700;
    color: #5956e9;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
    min-height: 55px;
}
.row.fun-facts-timer h4 {color: #fff;font-weight: 400;text-align: center;margin-top: 0;font-size: 20px;margin-bottom: 0;}
.radial {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(180deg, #16151a 0%, #1a191f 100%);
}
.radial img {
    max-width: 25px;
    height: auto;
}

/* services */
.services-section {
    background: #fff;
    padding: 95px 0 90px;
    /* border-bottom: 1px solid #222227; */
}
.card-parent::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(23,22,26,.85);
    content: '';
    z-index: 9;
}
.image-wrapper.to-bottom {
    min-height: 450px;
    background: #000;
}

.services-section .col-md-6 h4 {
    font-size: 14px;
    color: #5956e9;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    word-spacing: 0;
    margin-top: 0;
}
.rtl .footer-section ul.ft-link {
    text-align: right;
}
.rtl .project-content ul.page-list {
    text-align: revert;
}
.services-section .col-md-6 h4::after {
    content: '';
    display: inline-block;
    position: relative;
    bottom: 4px;
    margin-right: 10px;
    width: 80px;
    height: 1.5px;
    background: linear-gradient(to right,#5956e9  0,#5956e9 35%,#5956e9  65%,transparent 100%);
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
}
.services-section .col-md-6 h3 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 800;
    color: #17161A;
    margin-top: 10px;
    margin-bottom: 55px;
    max-width: 500px;
}

.card.featured.to-top-left > div {
    position: relative;
    z-index: 3;
}

a.service-link {
    color: #fff;
    padding: 0;
    margin-top: 10px;
    border: 0;
    font-weight: 700;
    opacity: 0;
    margin-top: 20px;
    display: inline-block;
}
.description-services p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #686868;
    margin-bottom: 10px;
    max-width: 600px;
    text-align: left;
    margin: 0 auto 50px;
}
.services-section .owl-stage-outer {
    cursor: grab;
    cursor: -webkit-grab;
}
.service-box-parent {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 5px;
    overflow: hidden;
}
.services-section .card-parent h3 {
    font-size: 14px;
    line-height: 23px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
}
.service-box {
    padding: 60px 45px;
    position: relative;
    background-size: cover;
}

.service-box i {
    font-size: 40px;
    color: #5956e9;
    margin-bottom: 20px;
}

.service-box h5 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
    color: #324452;
}

.service-box p {
    font-size: 18px;
    line-height: 24px;
    color: #000f49;
    margin-bottom: 0;
}
.service-box * {
    position: relative;
    z-index: 2;
        transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.service-box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.service-box::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(96 34 234 / 70%);
    z-index: 1;
    opacity: 0;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.service-box:hover::after {
    opacity: 1;
}
.service-box:hover::before {
    opacity: 0;
}
.service-box:hover * {
    color: #7768af;
}

.services-section .owl-dots button.owl-dot {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 0;
    margin: 0 5px;
    outline: 0;
}
.services-section .owl-dots {
    text-align: center;
    margin-top: 30px !important;
}
.services-section .owl-dots button.owl-dot.active {
    background: #5956e9;
    width: 30px;
}
.services-section h3 span {
    color: #5956e9;
}

/* PARALAX SECTION */

.paralax-image {
    max-height: 570px;
    overflow: hidden;
}
.paralax-section {
    background: #f6f6f6;
}

.paralax-content-inner {
    background: #fff;
    max-width: 600px;
    padding: 50px;
    margin-top: -300px;
    position: relative;
    z-index: 3;
}

.paralax-content-inner h3 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 800;
    color: #17161A;
    margin-top: 0px;
    margin-bottom: 20px;
    max-width: 500px;
}
/* PARALAX SECTION */


/* OUR PORTFOLIO */
.portfolio-section {
    background: #f6f6f6;
    padding: 70px 0 90px;
}
.portfolio-section h4 {
    font-size: 14px;
    color: #5956e9;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    word-spacing: 0;
    margin-top: 0;
    text-align: center;
position: relative;}



.portfolio-section h3 {
  font-size: 44px;
  line-height: 50px;
  font-weight: 800;
  color: #0f0928;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
  padding-bottom: 40px;
}
.portfolio-section h3 span {
    color: #5956e9;
}
.portfolio-section h4 span::after {content: '';
    display: inline-block;
    position: relative;
    bottom: 4px;
    margin-right: 10px;
    width: 60px;
    height: 1.5px;
    background: linear-gradient(to right,#5956e9 0,#5956e9 35%,#5956e9 65%,transparent 100%);
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;}

.portfolio-section h4 span::before {content: '';
    display: inline-block;
    position: relative;
    bottom: 4px;
    margin-right: 10px;
    width: 60px;
    height: 1.5px;
    background: linear-gradient(to left,#5956e9 0,#5956e9 35%,#5956e9 65%,transparent 100%);
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;}

.project-box-div > a {
    position: relative;
    overflow: hidden;
    display: block;
    /* border-radius: 10px; */
}
.project-box-div > a::before {/* content: ''; */background: #000;position: absolute;top: 0;bottom: 0;left: 0;right: 0;display: block;z-index: 1;opacity: .5;height: 100%;width: 100%;display: block;}

.project-box-div > a img {
    transition: all 600ms ease;
    -webkit-transition: all 600ms ease;

}
.project-box-div > a:hover img {
    transform: scale(1.1) rotate(5deg);
    -webkit-transform: scale(1.1) rotate(5deg);
}

.project-image-container {
    position: relative;
}

.project-image-container > * {
    position: relative;
}

.project-box-div {
    position: relative;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 6px 30px rgb(0 0 0 / 3%);
    -ms-box-shadow: 0 6px 30px rgba(0,0,0,0.03);
    box-shadow: 0 6px 30px rgb(0 0 0 / 3%);
    /* border-radius: 12px; */
    margin-bottom: 49px;
max-width: 100%;
    background-color: rgb(89 86 233 / 80%);
    overflow: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);}
.project-image-container-inner img {
    border-radius: 10px;
}


.project-category span {
    font-size: 16px;
    color: #686868;
    font-weight: 400;
    position: relative;
    display: block;
    padding: 0;
    margin-top: 10px;
    letter-spacing: 0;
}

.project-meta-title span {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0PX 0;
    display: block;
    cursor: pointer;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    font-size: 20px;
    color: #080337;
    font-weight: 800;
    margin-bottom: 0px;
}
.project-meta-title:hover span {
    color: #6E48E8;
}


.project-meta {
    padding-left: 30px;
    padding-bottom: 40px;
    background: #fff;
    -webkit-box-shadow: 0 6px 30px rgb(0 0 0 / 3%);
    -ms-box-shadow: 0 6px 30px rgba(0,0,0,0.03);
    box-shadow: 0 6px 30px rgb(0 0 0 / 3%);
    padding: 25px;
background-color: rgba(255, 255, 255, .9);
    padding: 20px;
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 1px solid rgba(0, 0, 0, .1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;-webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;z-index: 99;}
.portfolio-slider-inner {
    /* padding: 10px; */
}

.project-box-div::before {opacity: 0;
    background: inherit;
    position: absolute;
    content: '';
    -webkit-transition-delay: .1s;
    transition-delay: .1s;top: 50%;
    bottom: 50%;
    left: -35%;
    right: -35%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);-webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;z-index: 99;}

.project-box-div:hover::before {opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;top: -50%;
    bottom: -50%;}

.project-box-div:hover .project-meta {opacity: 1;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;}
    

.project-number {
    font-size: 70px;
    line-height: 1;
    font-weight: bold;
    color: #0f0928;
    -webkit-text-stroke: 1px #fff;
    margin-top: -33px;
    position: relative;
    z-index: 2;
    opacity: .4;
    left: -10px;
}

.portfolio-slider .owl-dots button.owl-dot{
    opacity: 1;
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 0;
    margin: 0 5px;
    outline: 0;
}
.services-section .owl-dots,
.portfolio-slider .owl-dots{
    text-align: center;
    max-width: 300px;
    margin: 0px auto 0;
height: 25px;}
.services-section .owl-dots button.owl-dot.active,
.portfolio-slider .owl-dots button.owl-dot.active{
    background: #6E48E8;
    width: 14px;
    opacity: 1;
    height: 14px;
}
.projectreadmore i {display: inline-block;
    margin-top: 30px;
    width: 50px;
    height: 50px;
    position: relative;-webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;}


.projectreadmore i::after {content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #000;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;-webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;}


.project-box-div:hover .projectreadmore i:before {height: 50px;}

.project-box-div:hover .projectreadmore i:after {width: 50px;}

.projectreadmore i::before {content: '';
    position: absolute;
    width: 1px;
    height: 0px;
    background-color: #000;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;}
.featured-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.project__img_single img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.portfolio-slider .owl-nav button {
    position: relative;
    cursor: pointer;
    z-index: 11;
    width: 60px;
    height: 15px;
    outline: 0;
}
.portfolio-slider .owl-nav button:hover {
    opacity: .7;
}

.portfolio-slider .owl-nav button span::before {
    content: "";
    position: absolute;
    transform-origin: left;
    top: 7px;
    background-color: rgb(8 3 55 / 20%);
    display: block;
    width: 12px;
    height: 1.5px;
}

.portfolio-slider .owl-nav button span {
    text-indent: -999999999999999999px;
    display: block;
    position: relative;
    z-index: 11;
    width: 60px;
    height: 15px;
}

.portfolio-slider .owl-nav button.owl-prev span::before  {
    left: 0;
    transform: rotate(-37deg);
}

.portfolio-slider .owl-nav button.owl-next span::before {
    right: -11px;
    transform: rotate(137deg);
}




.portfolio-slider .owl-nav button.owl-next span::after {
    content: "";
    position: absolute;
    transform-origin: left;
    top: 7px;
    background-color: rgb(8 3 55 / 20%);
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    top: 50%;
    display: block;
}

.portfolio-slider .owl-nav button.owl-prev span::after{
    content: "";
    position: absolute;
    transform-origin: left;
    top: 7px;
    background-color: rgb(8 3 55 / 20%);
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    top: 50%;
    display: block;
}

.portfolio-slider .owl-nav button.owl-next  {
    float: right;
}

.portfolio-slider .owl-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -7px;
}

.bg-main-color-blue{
    background-color: var(--hover-color);
}
.bg-main-color-red{
    background-color: var(--main-color);
}


/*=========================== TAB PAGE START ====================*/
/*------ tab-one ------*/
.tab-one-wrapper .tab-one .nav-tabs {
  border: none;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item {
  padding: 0px 25px;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link {
  display: block;
  position: relative;
  text-transform: uppercase;
  color: #808080bf;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link.active {
  border: none;
  border-bottom: 2px solid #232323;
  color: #232323;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link:hover {
  border: none;
  color: #232323;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link:hover::before {
  transform: scale3d(1, 1, 1);
  transform-origin: 100% 50%;
}

.tab-one-wrapper .tab-one .nav-tabs .nav-item .nav-link::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  background: #232323;
  transform-origin: 0 50%;
}

.tab-one-wrapper .tab-content .tab-one-home {
  margin: 60px 0 0 0;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content h4 {
  color: #e12454;
  text-transform: uppercase;
  font-size: 20px;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content h1 {
  font-weight: bold;
  font-size: 32px;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content p {
  color: #808080d9;
  padding: 20px 0 0 0;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content a {
  border: 2px solid #232323;
  padding: 10px 30px;
  font-weight: 500;
  background-color: #232323;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.5s;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-content a:hover {
  background-color: transparent;
  color: #232323;
}

.tab-one-wrapper .tab-content .tab-one-home .tab-one-img img {
  width: 100%;
}

/*-------- tab-two ------*/
.tab-two-wrapper {
  background-color: #f7f7f7;
}

.tab-two-wrapper .nav-pills .nav-item {
  padding: 0 25px;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link {
  font-size: 18px;
  color: #808080;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link i {
  display: block;
  margin-bottom: 10px;
  transform: translateY(0);
  transition: all 0.5s;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link.active {
  background-color: transparent;
  color: #e12454;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link:hover {
  color: #e12454;
}

.tab-two-wrapper .nav-pills .nav-item .nav-link:hover i {
  transform: translateY(-5px);
}

.tab-two-wrapper .tab-content .tab-two-head {
  margin-top: 60px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-img img {
  width: 100%;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper {
  padding-left: 35px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper a {
  border-bottom: 1px solid #232323;
  padding-bottom: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-head-wrapper a:hover {
  color: #232323;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-content h6 {
  line-height: 26px;
  font-size: 20px;
}

.tab-two-wrapper .tab-content .tab-two-head .tab-two-content p {
  padding: 12px 0 0 0;
}

/*------ tab-two-end -----*/
/*------- tab-three-start ------*/
.tab-three-wrapper .nav-pills .nav-item {
  padding: 0 30px;
}

.tab-three-wrapper .nav-pills .nav-item .nav-link {
  background-color: transparent;
  padding: 10px 35px;
  color: gray;
}

.tab-three-wrapper .nav-pills .nav-item .nav-link.active {
  background: #ffffff;
  box-shadow: 0 0 15px 0 #17171714;
  border-radius: 20px;
  color: #232323;
}

.tab-three-wrapper .nav-pills .nav-item .nav-link:hover {
  color: #232323;
}

.tab-three-wrapper .tab-content .tab-three-accordion {
  background-color: #ffffff;
  padding: 30px 0;
}

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-header button {
  background-color: #232323;
  color: #ffffff;
}

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-header button::after {
  color: #ffffff;
}

.tab-three-wrapper .tab-content .tab-accordion .accordion-item .accordion-body {
  background-color: #232323;
}

/*-------- tab-four-start --------*/
/*------- tab-five-start ---------*/
.tab-five-wrapper .nav-pills {
  border-top: 1px solid #80808082;
  border-bottom: 1px solid #80808082;
  padding: 20px 0 0;
}

.tab-five-wrapper .nav-pills .nav-item .nav-link {
  background-color: transparent;
  color: #232323;
  position: relative;
  border-bottom: 3px solid transparent;
  padding-bottom: 20px;
  border-radius: 0px;
}

.tab-five-wrapper .nav-pills .nav-item .nav-link:hover {
  opacity: 1;
  border-bottom: 3px solid #e12454;
  color: #e12454;
}

.tab-five-wrapper .nav-pills .nav-item .nav-link.active {
  border-bottom: 3px solid #e12454;
  color: #e12454;
}

.tab-five-wrapper .tab-content .tab-five-head {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.tab-five-wrapper .tab-content .tab-five-content {
  margin-left: 100px;
}

.tab-five-wrapper .tab-content .tab-five-content h2 {
  padding-bottom: 50px;
  font-size: 32px;
}

.tab-five-wrapper .tab-content .tab-five-content .tab-five-strategic {
  display: flex;
}

.tab-five-wrapper .tab-content .tab-five-content .tab-five-strategic .tab-icon i {
  font-size: 30px;
  color: #e12454;
}

.tab-five-wrapper .tab-content .tab-five-content .straregic-two {
  margin-top: 50px;
  margin-bottom: 50px;
}

.tab-five-wrapper .tab-content .tab-five-content .strategic-content {
  margin-left: 25px;
}

.tab-five-wrapper .tab-content .tab-five-content .strategic-content p {
  max-width: 350px;
}

.tab-five-wrapper .tab-content .tab-five-content a {
  border-bottom: 2px solid #232323;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.5s;
}

.tab-five-wrapper .tab-content .tab-five-content a:hover {
  color: #808080c2;
}

@media (max-width: 991px) {
  .tab-five-wrapper .tab-content .tab-five-head {
    display: block;
  }
  .tab-five-wrapper .tab-content .tab-five-content {
    margin-left: 0px;
    margin-top: 30px;
  }
}

.body-main-page {
        background: #7768af;
}
.bg-gradient {
        background: linear-gradient(to right, #7768af, #000f49); /* Colores del degradado */
}
    .custom-button {
        border-color: #000f49;
        color:#000f49;
        border-radius: 15px;
    }

    .custom-button:hover {
        border-color: #000f49;
        background: #000f49;
        color: #fff;
    }
    
    .bt-blog{
        border-radius: 3px;
        background: #7768af;
        color: #f8f6f6;
        padding: 5px;
        width: 120px;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
    }
    .bt-blog:hover{
        color: #fff;
    }
    
    
    /* Estilo personalizado para el acordeón */
    .card{
        background-color: transparent !important;
        border: none;
    }
    .card-header {
        background-color: transparent;
        color: white;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        position: relative; /* Añadido */
    }
    .btn-link {
        color: white;
        text-decoration: none;
    }
    .btn-link::before {
        content: 'v';
        position: absolute; /* Añadido */
        left: 10px; /* Añadido */
    }
    .btn-link span {
        margin-left: 20px; /* Añadido */
    }
    .btn-link.collapsed::before {
        content: '>';
    }
    
    
    
    
