/* =================================
 Temlate Name : 
 Author Name : 
 Date: 
 Version: 1.0
 =================================

/* =================================
 css index
 =================================
 
================================= */
/*==========================================
    typography
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.container {
  max-width: 1200px;
}

.back-to-top-button {
  position: fixed;
  bottom: 1000px;
  right: 30px;
  display: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 55;
}

.back-to-top-button.active {
  display: block;
  bottom: 30px;
}

.back-to-top-button button {
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  background: #ffa326;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
}

.section-title {
  margin-bottom: 63px;
  text-align: center;
}

.section-title span.subtitle {
  font-size: 18px;
  color: #0b1d97;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 9px;
  margin-top: -6px;
}

.section-title h2 {
  font-size: 60px;
  font-family: 'Public Sans', sans-serif;
  line-height: 70px;
  color: #121f59;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 16px;
  line-height: 26px;
  color: #3d446f;
}

.section-title.section-title-2 span.subtitle {
  color: #fff;
}

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

.section-title.section-title-2 p {
  color: #e6e7e9;
}

.c-white {
  color: #fff;
}

.overflow-hidden {
  overflow: hidden;
  height: 100%;
}

.preloader {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 1);
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.preloader img {
  width: 150px;
}


.gear {
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}


@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.gear path {
  fill: #121f59;
}

.preloader span {
  font-size: 20px;
  font-weight: 600;
  color: #e9664a;
  letter-spacing: 6px;
  margin-top: 10px;
}

.scroll-to-top {
  position: fixed;
  right: 50px;
  bottom: 80px;
  display: inline-block;
  z-index: 9;
  width: 40px;
  height: 40px;
  background: #052157;
  border: 2px solid #fff;
  text-align: center;
}

.scroll-to-top a {
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  padding: 2px 0 0px 0;
  display: inline-block;
}

.scroll-to-top a i {
  color: #fff;
}

.modal-open {
  position: fixed;
  width: 100%;
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

[type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-size: 14px;
  color: #121f59;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked)+label:before,
[type="checkbox"]:checked+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  color: #121f59;
}

[type="checkbox"]:checked+label:before {
  background: #fbe22c;
  border-color: #fbe22c;
  border-radius: 50%;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked)+label:after,
[type="checkbox"]:checked+label:after {
  content: '\f00c';
  position: absolute;
  top: 10px;
  left: 4px;
  font-size: 13px;
  line-height: 0.8;
  color: #fff;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

[type="checkbox"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked)+label:before,
[type="checkbox"]:disabled:checked+label:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

[type="checkbox"]:disabled:checked+label:after {
  color: #999;
}

[type="checkbox"]:disabled+label {
  color: #aaa;
}

/* hover style just for information */
.modal-registration {
  background: rgba(18, 31, 89, 0.6);
}

.modal-registration .modal-dialog {
  width: 350px;
}

.modal-registration .modal-content {
  padding: 30px;
}

.modal-registration .modal-content .nav-tabs {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 30px;
}

.modal-registration .modal-content .nav-tabs .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.modal-registration .modal-content .nav-tabs .nav-item .nav-link {
  border: none;
  padding: 0;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  color: #0b1d97;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  background-color: rgba(18, 31, 89, 0.1);
}

.modal-registration .modal-content .nav-tabs .nav-item .nav-link.active {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  color: #fff;
}

.modal-registration .modal-content .nav-tabs .nav-item:first-child .nav-link {
  border-right: 1px solid rgba(11, 29, 151, 0.3);
}

.modal-registration .modal-content img {
  width: 50px;
  display: inline-block;
  position: relative;
  left: 50%;
  margin-left: -25px;
  margin-bottom: 24px;
}

.modal-registration .modal-content h3.title {
  font-size: 20px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 0;
  text-align: center;
  margin-bottom: 24px;
}

.modal-registration .modal-content form input {
  width: 100%;
  height: 44px;
  border: 1px solid #f0f0f0;
  font-size: 15px;
  padding: 0 20px;
  background: #f5f5f5;
  margin-bottom: 20px;
  color: rgba(18, 31, 89, 0.8);
}

.modal-registration .modal-content form input:placeholder {
  color: rgba(18, 31, 89, 0.6);
}

.modal-registration .modal-content form .create-account-btn,
.modal-registration .modal-content form .facebook-btn {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  height: 50px;
  line-height: 50px;
}

.modal-registration .modal-content form .create-account-btn {
  margin-top: 7px;
}

.modal-registration .modal-content form .facebook-btn {
  background: #3b5999;
}

.modal-registration .modal-content form .text {
  font-size: 16px;
  font-weight: 700;
  color: #121f59;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin: 14px 0 14px;
}

.modal-registration .modal-content p {
  font-size: 14px;
  color: #121f59;
  text-align: center;
  margin: 0;
  margin-top: 15px;
}

.modal-registration .modal-content p a {
  color: #0b1d97;
  font-weight: 600;
  font-size: 14px;
  margin-left: 10px;
}

/*==========================================
    normalize
==========================================*/
html {
  font-family: 'Public Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  margin: 0;
  color: #111705;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Public Sans', sans-serif;
}

p {
  line-height: 1.6;
  font-family: 'Public Sans', sans-serif;
}

a {
  color: #111705;
  text-decoration: none;
}

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

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg);
  }
}

@-webkit-keyframes circle1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes circle1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes circle2 {
  0% {
    -webkit-transform: rotate(0deg) translate(-35px) rotate(0deg);
    transform: rotate(0deg) translate(-35px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-35px) rotate(-360deg);
    transform: rotate(360deg) translate(-35px) rotate(-360deg);
  }
}

@keyframes circle2 {
  0% {
    -webkit-transform: rotate(0deg) translate(-35px) rotate(0deg);
    transform: rotate(0deg) translate(-35px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-35px) rotate(-360deg);
    transform: rotate(360deg) translate(-35px) rotate(-360deg);
  }
}

.header {
  position: absolute;
  z-index: 55;
  width: 100%;
  top: 0;
  left: 0;
}

.header.navbar-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 0;
  background: #121f59;
}

.header.navbar-fixed .header-top {
  display: none;
}

.header.navbar-fixed .header-bottom {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.header .header-top {
  padding: 15px 0;
}

.header .header-top .part-left ul li,
.header .header-top .part-right ul li {
  display: inline-block;
  padding: 0 8px;
  color: #e9edff;
  font-size: 14px;
}

.header .header-top .part-left ul li a,
.header .header-top .part-right ul li a {
  display: block;
}

.header .header-top .part-left ul li a span.part-icon,
.header .header-top .part-right ul li a span.part-icon {
  margin-right: 0px;
  display: inline-block;
  color: #e9edff;
  font-size: 14px;
}

.header .header-top .part-left ul li a span.text,
.header .header-top .part-right ul li a span.text {
  display: inline-block;
  color: #e9edff;
  font-size: 14px;
}

.header .header-top .part-left ul li span.part-icon,
.header .header-top .part-right ul li span.part-icon {
  margin-right: 4px;
}

.header .header-top .part-left ul li span.part-icon.user,
.header .header-top .part-right ul li span.part-icon.user {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #263780;
  text-align: center;
  line-height: 35px;
  border-radius: 50px;
}

.header .header-top .part-left ul li select,
.header .header-top .part-right ul li select {
  background: transparent;
  color: #e9edff;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.header .header-top .part-left ul li select option,
.header .header-top .part-right ul li select option {
  background: #121f59;
}

.header .header-top .part-left ul li .c-acc,
.header .header-top .part-right ul li .c-acc {
  display: inline-block;
  color: #e9edff;
  font-size: 14px;
}

.header .header-top .part-right {
  text-align: right;
}

.header .header-bottom {
  background: #121f59;
  padding: 0 50px;
  padding: 0 20px 0;
  border-radius: 50px;
  -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
}

.header .header-bottom .main-menu .navbar {
  padding: 0;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item {
  padding: 0 18px;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item.buy-nows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link {
  padding: 28px 0;
  font-family: 'Public Sans', sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 20px;
  width: 0;
  height: 3px;
  /* background: #fbe22c; */
  background:#ffa326;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
  content: '\f107';
  border: none;
  margin-left: 1px;
  font-family: "Font Awesome 5 Free";
  vertical-align: baseline;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.buy-now {
  /* background: #fbe22c; */
  background:#ffa326;
  padding: 16px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.buy-now:hover {
  background: #fff;
  color: #ffa326;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.buy-now:before {
  display: none;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  border-radius: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 10px;
  border: none;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(18, 31, 89, 0.2);
  /* background: #fbe22c; */
  background:#fff;
  color: #ffa326;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item:last-child {
  padding-right: 0;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item:hover .nav-link:before {
  width: 100%;
}

.header .header-bottom .main-menu .navbar .navbar-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.banner {
  background: url(../img/banner.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.banner:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0d154b;
  opacity: .88;
  z-index: -1;
}

.banner.banner-3 {
  background: url(../img/banner-bg-3.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.banner.banner-3:after {
  display: none;
}

.banner.banner-3 .banner-animation {
  position: absolute;
}

.banner.banner-3 .banner-animation.animation-3 {
  right: 100px;
  bottom: 0;
  height: 450px;
}

.banner.banner-3 .banner-animation.animation-2 {
  left: 100px;
  top: 180px;
  width: 250px;
  -webkit-animation: circle1 6s linear infinite;
  animation: circle1 6s linear infinite;
}

.banner.banner-3 .banner-animation.animation-1 {
  right: 200px;
  width: 650px;
  top: 180px;
  -webkit-animation: circle2 8s linear infinite;
  animation: circle2 8s linear infinite;
}

/* .banner .banner-content {
  padding: 200px 0;
  margin-top: 139px;
} */

.banner .banner-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.banner .banner-content p {
  color: #fff;
  line-height: 28px;
}

.banner .banner-content .banner-buttons {
  margin-top: 42px;
}

.banner .banner-content .banner-buttons a.banner-button,
.banner .banner-content .banner-buttons span.banner-button {
  padding: 16px 36px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  background: #fbe22c;
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  border-radius: 50px;
}

.banner .banner-content .banner-buttons a.banner-button {
  margin-right: 16px;
}

.banner .banner-content .banner-buttons span.banner-button {
  padding: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
}

.banner .banner-content .banner-buttons span.text {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  margin-left: 6px;
}

.banner.banner-2 {
  background: url(../img/banner-2-bg.png) center center no-repeat;
  background-size: cover;
  background-image: -moz-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
  background-image: -webkit-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
  position: relative;
  z-index: 2;
}

.banner.banner-2 .banner-content {
  padding: 300px 0;
}

.banner.banner-2:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/banner-2-bg.png") center center no-repeat;
  background-size: cover;
  z-index: -1;
}

.banner .banner-img {
  margin-left: -70px;
}

.banner .banner-img img {
  max-width: 800px;
  width: auto;
}

.feature {
  padding: 50px 0 27px;
  -webkit-box-shadow: 0.5px 0.866px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0.5px 0.866px 5px 0px rgba(0, 0, 0, 0.1);
}

.feature .single-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature .single-feature .part-icon {
  display: inline-block;
  width: 65px;
  height: 65px;
  padding: 15px;
  border-radius: 5px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  margin-right: 30px;
}

.feature .single-feature .part-icon img {
  width: 100%;
}

.feature .single-feature .part-text span.title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #121f59;
  text-transform: capitalize;
  font-family: 'Public Sans', sans-serif;
  margin-top: 0;
  margin-bottom: 0;
}

.feature .single-feature .part-text p {
  font-size: 16px;
  line-height: 26px;
  color: #3d446f;
}

.amazing-feature {
  padding: 120px 0 80px;
  background: url("../img/svg/amazing-feature-bg.png") center center no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.amazing-feature .af-shape-1,
.amazing-feature .af-shape-2 {
  position: absolute;
  width: 260px;
  top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  -webkit-transition: 5s;
  -moz-transition: 5s;
  -o-transition: 5s;
  transition: 5s;
}

.amazing-feature .af-shape-2 {
  left: auto;
  right: 0;
  -webkit-transform: translateY(50%) rotate(180deg);
  -ms-transform: translateY(50%) rotate(180deg);
  transform: translateY(50%) rotate(180deg);
  top: auto;
  bottom: 0%;
}

.amazing-feature .af-shape-1.active {
  top: 50%;
}

.amazing-feature .af-shape-2.active {
  bottom: 50%;
}

.amazing-feature .single-feature {
  text-align: center;
  margin-bottom: 40px;
  border-radius: 20px;
  border: 1px solid #d2d4d6;
  padding: 40px 30px 17px 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 390px;
}

.amazing-feature .single-feature:after {
  position: absolute;
  content: '';
  width: 180%;
  height: 100%;
  background-image: -moz-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
  background-image: -webkit-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
  opacity: 1;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  left: -140%;
  top: 50%;
}

.amazing-feature .single-feature:before {
  position: absolute;
  content: '';
  width: 180%;
  height: 100%;
  background-image: -webkit-linear-gradient(90deg, #1e256d 0%, #1b226b 100%);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
  opacity: 1;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  right: -140%;
  bottom: 50%;
}

.amazing-feature .single-feature:hover:after {
  left: -60%;
}

.amazing-feature .single-feature:hover:before {
  right: -60%;
}

.amazing-feature .single-feature:hover .part-icon:after {
  border: 1px dashed rgba(255, 255, 255, 0.5);
}

.amazing-feature .single-feature:hover .part-text span.title {
  color: #fff;
}

.amazing-feature .single-feature:hover .part-text p {
  color: #ddd;
}

.amazing-feature .single-feature .part-icon {
  margin: 10px 0;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
  width: 130px;
  height: 130px;
  /* background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%); */
  text-align: center;
  margin-bottom: 33px;
  position: relative;
}

.amazing-feature .single-feature .part-icon:after {
  position: absolute;
  content: '';
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px dashed rgba(18, 31, 89, 0.5);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.amazing-feature .single-feature .part-text span.title {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  color: #121f59;
  /* font-size: 24px; */
  font-size: 21px;
  text-transform: capitalize;
  display: block;
  margin-bottom: 14px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.amazing-feature .single-feature .part-text p {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.power-of-x8 {
  padding: 120px 0 0;
  background-image: -moz-linear-gradient(24deg, #0e154b 0%, rgba(61, 73, 205, 0.9) 100%);
  background-image: -webkit-linear-gradient(24deg, #0e154b 0%, rgba(61, 73, 205, 0.9) 100%);
}

.power-of-x8 .single-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.power-of-x8 .single-feature .part-icon {
  width: 60px;
  margin-right: 20px;
}

.power-of-x8 .single-feature .part-icon img {
  width: 100%;
}

.power-of-x8 .single-feature .part-text span.number {
  font-family: 'Public Sans', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  display: block;
  margin-top: -6px;
  margin-bottom: 6px;
}

.power-of-x8 .single-feature .part-text p {
  color: #e6e7e9;
}

.power-of-x8 .part-video {
  margin-top: 22px;
  margin-bottom: -249px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.power-of-x8 .part-video img {
  width: 100%;
}

.power-of-x8 .part-video a.play-button {
  display: inline-block;
  position: absolute;
  color: #fff;
  background: #fbe22c;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  z-index: 2;
}

.power-of-x8 .part-video a.play-button:after {
  position: absolute;
  content: '';
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  background: #fbe22c;
  z-index: -1;
  opacity: .4;
  border-radius: 50%;
  -webkit-animation: circle1 5s infinite;
  animation: circle1 5s infinite;
}

.power-of-x8 .part-video a.play-button:before {
  position: absolute;
  content: '';
  left: -20px;
  top: -20px;
  right: -20px;
  bottom: -20px;
  background: #fbe22c;
  z-index: -1;
  opacity: .2;
  border-radius: 50%;
  -webkit-animation: circle1 5s infinite;
  animation: circle1 5s infinite;
}

.industry-feature {
  padding: 120px 0 90px;
  margin-top: 249px;
  position: relative;
}

.industry-feature .i-feature-shape {
  position: absolute;
  right: 0;
  bottom: 116px;
  width: 420px;
}

.industry-feature .i-features .single-feature {
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0.5px 0.866px 10px 0px rgba(31, 39, 50, 0.1);
  box-shadow: 0.5px 0.866px 10px 0px rgba(31, 39, 50, 0.1);
  padding: 50px 0 0;
  margin-bottom: 50px;
  position: relative;
}

.industry-feature .i-features .single-feature .hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.industry-feature .i-features .single-feature .hover-effect:after {
  position: absolute;
  content: '';
  width: 180%;
  height: 100%;
  background-image: -moz-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
  background-image: -webkit-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
  opacity: 1;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  left: -140%;
  top: 50%;
}

.industry-feature .i-features .single-feature .hover-effect:before {
  position: absolute;
  content: '';
  width: 180%;
  height: 100%;
  background-image: -webkit-linear-gradient(90deg, #1e256d 0%, #1b226b 100%);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
  opacity: 1;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  right: -140%;
  bottom: 50%;
}

.industry-feature .i-features .single-feature:hover .hover-effect:after {
  left: -60%;
}

.industry-feature .i-features .single-feature:hover .hover-effect:before {
  right: -60%;
}

.industry-feature .i-features .single-feature:hover .part-icon:after {
  border-color: #fff;
}

.industry-feature .i-features .single-feature:hover .part-text span.title {
  color: #fff;
}

.industry-feature .i-features .single-feature:hover a {
  color: #fff;
  background: #fbe22c;
}

.industry-feature .i-features .single-feature .part-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  position: relative;
  margin: 7px 0;
  margin-bottom: 29px;
}

.industry-feature .i-features .single-feature .part-icon:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  bottom: -7px;
  right: -7px;
  border: 1px solid #847f9c;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.industry-feature .i-features .single-feature .part-icon img {
  width: auto;
}

.industry-feature .i-features .single-feature .part-text span.title {
  display: block;
  font-size: 24px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #121f59;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.industry-feature .i-features .single-feature a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  color: #404a79;
  font-size: 15px;
  height: 40px;
  width: 170px;
  line-height: 40px;
  text-align: center;
  -webkit-box-shadow: 1.5px 2.598px 10px 0px rgba(31, 39, 50, 0.2);
  box-shadow: 1.5px 2.598px 10px 0px rgba(31, 39, 50, 0.2);
  border-radius: 50px;
  background: #fff;
  position: relative;
  margin-top: 10px;
  top: 20px;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.industry-feature .industry-drone {
  position: relative;
  left: 100%;
  -webkit-transition: 4s;
  -o-transition: 4s;
  transition: 4s;
}

.industry-feature .industry-drone.active {
  left: 0;
}

.industry-feature .industry-drone img {
  width: auto;
  max-width: none;
}

.easy-to-begin {
  background-image: -moz-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
  background-image: -webkit-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
  position: relative;
  z-index: 2;
}

.easy-to-begin:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../img/svg/easy-to-use-bg.png") center center no-repeat;
  background-size: cover;
}

.easy-to-begin.style-2 {
  background: transparent;
}

.easy-to-begin.style-2:after {
  display: none;
}

.easy-to-begin.style-2 .part-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 785px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../img/easy-to-begin-step-3-bg.png") center center no-repeat;
  background-size: 100%;
}

.easy-to-begin.style-2 .part-img .pukkut {
  width: 355px;
  position: relative;
}

.easy-to-begin.style-2 .part-img .pukkut img:first-child {
  width: 320px;
}

.easy-to-begin.style-2 .part-text span.subtitle {
  color: #0b1d97;
}

.easy-to-begin.style-2 .part-text h3 {
  color: #121f59;
}

.easy-to-begin.style-2 .part-text p {
  color: #3d446f;
}

.easy-to-begin .part-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}

.easy-to-begin .part-img img:first-child {
  width: auto;
  max-width: none;
}

.easy-to-begin .part-img img:last-child {
  position: absolute;
  top: 50px;
  right: -20px;
  -webkit-animation: circle2 6s linear infinite;
  animation: circle2 6s linear infinite;
}

.easy-to-begin .part-text {
  padding: 120px 0;
}

.easy-to-begin .part-text span.subtitle {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.easy-to-begin .part-text h3 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.easy-to-begin .part-text p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}

.easy-to-begin .part-text a.play {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 50px;
  padding: 0 20px 0 10px;
  border-radius: 50px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  color: #fff;
  font-family: 'Public Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
}

.easy-to-begin .part-text a.play span {
  display: inline-block;
}

.easy-to-begin .part-text a.play span.icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  text-align: center;
  border: 1px solid #fff;
  line-height: 33px;
  border-radius: 50%;
  font-size: 12px;
}

.product {
  padding: 120px 0 90px;
}

.product.product-page {
  padding-bottom: 120px;
}

.product .product-filtering-button {
  margin-bottom: 40px;
  text-align: center;
}

.product .product-filtering-button .nav-tabs {
  border: none;
  border: 1px solid #cfd1d4;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px;
  border-radius: 50px;
}

.product .product-filtering-button .nav-tabs .nav-item .nav-link {
  padding: 0;
  border: none;
  height: 50px;
  padding: 0 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #414c7a;
  line-height: 50px;
  opacity: 0.8;
}

.product .product-filtering-button .nav-tabs .nav-item .nav-link.active {
  color: #fff;
  opacity: 1;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
}

.product .single-product {
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .single-product:hover {
  -webkit-box-shadow: 0px 0px 7px 0px rgba(11, 29, 151, 0.2);
  box-shadow: 0px 0px 7px 0px rgba(11, 29, 151, 0.2);
  border-color: #0b1d97;
}

.product .single-product:hover .part-img ul {
  opacity: 1;
  visibility: visible;
  left: 10px;
}

.product .single-product .part-img {
  position: relative;
  padding: 5px 5px 0;
}

.product .single-product .part-img img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  padding: 30px;
}

.product .single-product .part-img .todas-tag {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: -10px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  background: #fbe22c;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
}

.product .single-product .part-img .todas-tag:after {
  position: absolute;
  content: "";
  top: 0;
  left: -20px;
  width: 0;
  height: 100%;
  border: 20px solid #fbe22c;
  border-left-color: transparent;
  z-index: 1;
}

.product .single-product .part-img .todas-tag:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 10px;
  height: 70%;
  background: #2b6ddd;
  -webkit-transform: skewY(-44deg);
  -ms-transform: skewY(-44deg);
  transform: skewY(-44deg);
  z-index: -1;
}

.product .single-product .part-img ul {
  width: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 0;
}

.product .single-product .part-img ul li a {
  display: inline-block;
  color: #121f59;
  position: relative;
  width: 22px;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .single-product .part-img ul li a:hover {
  color: #fbe22c;
}

.product .single-product .part-img ul li a:after {
  position: absolute;
  content: '';
  border-bottom: 1px solid #121f59;
  width: 100%;
  left: 0;
}

.product .single-product .part-img ul li:first-child a:after {
  display: none;
}

.product .single-product .part-text {
  text-align: center;
  padding-bottom: 30px;
}

.product .single-product .part-text span {
  display: block;
}

.product .single-product .part-text span.product-name {
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  color: #121f59;
  font-size: 24px;
  margin-top: 22px;
  margin-bottom: 8px;
}

.product .single-product .part-text span.product-price {
  font-size: 28px;
  font-weight: 600;
  color: #0b1d97;
  margin-bottom: 20px;
}

.product .single-product .part-text .rated {
  display: none;
}

.product .single-product .part-text p {
  display: none;
}

.product .single-product .part-text a.read-more-button {
  display: none;
}

.product .single-product .part-text a.buy-now-button {
  height: 40px;
  width: 165px;
  background: #fbe22c;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .single-product .part-text a.buy-now-button:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
}

.product .filter-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #dbdce4;
  padding: 10px;
  margin-bottom: 30px;
}

.product .filter-area .left-side ul,
.product .filter-area .right-side ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product .filter-area .left-side ul li,
.product .filter-area .right-side ul li {
  display: inline-block;
  margin-right: 15px;
}

.product .filter-area .left-side ul li .grid-button,
.product .filter-area .right-side ul li .grid-button {
  background: transparent;
  border: none;
  font-size: 30px;
  height: 45px;
  position: relative;
  top: -2px;
  margin-bottom: -4px;
  color: #555b81;
  cursor: pointer;
}

.product .filter-area .left-side ul li .grid-button:focus,
.product .filter-area .right-side ul li .grid-button:focus {
  color: #fbe22c;
  outline: none;
}

.product .filter-area .left-side ul li form .form-group,
.product .filter-area .right-side ul li form .form-group {
  position: relative;
  margin-bottom: 0;
}

.product .filter-area .left-side ul li form .form-group:after,
.product .filter-area .right-side ul li form .form-group:after {
  position: absolute;
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  z-index: -1;
  color: #5d607b;
}

.product .filter-area .left-side ul li form .form-group .form-control,
.product .filter-area .right-side ul li form .form-group .form-control {
  border: 1px solid #dbdce4;
  color: #121f59;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Public Sans', sans-serif;
  padding: 0 30px 0 15px;
  text-transform: capitalize;
  height: 45px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.product .filter-area .left-side ul li form .form-group .form-control:focus,
.product .filter-area .right-side ul li form .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #dbdce4;
}

.product .filter-area .left-side ul li form .select-number-of-content,
.product .filter-area .right-side ul li form .select-number-of-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product .filter-area .left-side ul li form .select-number-of-content label,
.product .filter-area .right-side ul li form .select-number-of-content label {
  margin: 0;
  margin-right: 10px;
  color: #121f59;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Public Sans', sans-serif;
}

.product .filter-area .right-side ul li:last-child {
  margin-right: 0;
}

.product .filter-area .left-side ul li:first-child {
  margin-right: 4px;
}

.product .pagination-todas {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

.product .pagination-todas:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #dbdbdb;
}

.product .pagination-todas:before {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #dbdbdb;
}

.product .pagination-todas ul li {
  display: inline-block;
}

.product .pagination-todas ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #999999;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f1f5f7;
  border-bottom: 3px solid #dbdbdb;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-right: 6px;
}

.product .pagination-todas ul li a:hover {
  border-color: #fbe22c;
}

.product .pagination-todas ul li:last-child a {
  margin-right: 0;
}

.product .product-details .single-product-view .part-img {
  margin-bottom: 30px;
}

.product .product-details .single-product-view .part-img img {
  width: 100%;
}

.product .product-details .single-product-view .part-img .owl-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 50px;
  position: relative;
  z-index: 2;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item {
  margin-right: 20px;
  cursor: pointer;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item:last-child {
  margin-right: 0;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item .product-pic img {
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item.active .product-pic img {
  border: 1px solid #0b1d97;
}

.product .product-details .single-product-view .part-text span {
  display: block;
}

.product .product-details .single-product-view .part-text span.product-name {
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  color: #121f59;
  font-size: 24px;
  margin-top: 7px;
  margin-bottom: 8px;
}

.product .product-details .single-product-view .part-text span.product-price {
  font-size: 28px;
  font-weight: 600;
  color: #0b1d97;
  margin-bottom: 14px;
}

.product .product-details .single-product-view .part-text .rating-box .rated {
  margin-top: -6px;
  margin-bottom: 4px;
  display: inline-block;
  margin-right: 10px;
}

.product .product-details .single-product-view .part-text .rating-box .rated li {
  display: inline-block;
  font-size: 13px;
  color: #fbe22c;
}

.product .product-details .single-product-view .part-text .rating-box span.rated-text {
  display: inline-block;
  color: #3d446f;
  font-size: 14px;
  font-weight: 600;
}

.product .product-details .single-product-view .part-text .text-body p {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
  display: block;
}

.product .product-details .single-product-view .part-text .text-body ul li {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
  padding: 2px 0;
}

.product .product-details .single-product-view .part-text .text-body ul li i {
  margin-right: 6px;
}

.product .product-details .single-product-view .part-text .cart-button {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  margin-top: 21px;
}

.product .product-details .single-product-view .part-text .cart-button .item-selected-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #e5e5e5;
  height: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 145px;
  border-radius: 50px;
  margin-right: 16px;
}

.product .product-details .single-product-view .part-text .cart-button .item-selected-count button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  color: #3d446f;
  padding: 0 25px;
}

.product .product-details .single-product-view .part-text .cart-button .item-selected-count input.number {
  font-weight: 600;
  color: #3d446f;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.product .product-details .single-product-view .part-text .cart-button a.add-to-button {
  height: 40px;
  width: 165px;
  background: #fbe22c;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .part-text .cart-button a.add-to-button:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
}

.product .product-details .single-product-view .part-text .cat-and-tag {
  margin-bottom: 19px;
  margin-top: 25px;
}

.product .product-details .single-product-view .part-text .cat-and-tag span {
  display: inline-block;
  font-size: 16px;
  color: #3d446f;
  text-transform: capitalize;
  font-family: 'Public Sans', sans-serif;
}

.product .product-details .single-product-view .part-text .cat-and-tag span a {
  display: inline-block;
  color: #0b1d97;
  margin-left: 5px;
}

.product .product-details .single-product-view .part-text .share-on-social span.text {
  display: inline-block;
  font-size: 16px;
  color: #3d446f;
  text-transform: capitalize;
  font-family: 'Public Sans', sans-serif;
}

.product .product-details .single-product-view .part-text .share-on-social ul {
  display: inline-block;
  margin-left: 6px;
}

.product .product-details .single-product-view .part-text .share-on-social ul li {
  display: inline-block;
  font-family: 'Public Sans', sans-serif;
}

.product .product-details .single-product-view .part-text .share-on-social ul li a {
  display: inline-block;
  color: #b3b7c8;
  margin-right: 6px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .part-text .share-on-social ul li a:hover {
  color: #121f59;
}

.product .product-details .single-product-view .product-slider .owl-item .single-product-slider {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 30px;
}

.product .product-details .single-product-view .product-slider .owl-item .single-product-slider a.test-popup-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}

.product .product-details .single-product-view .product-slider .owl-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: -1;
  position: absolute;
  top: calc(100% + 40px);
}

.product .product-details .single-product-view .product-slider .owl-nav div {
  font-size: 10px;
  color: #fbe22c;
  cursor: pointer;
}

.product .product-details .single-product-view .descr-for-product {
  margin-top: 60px;
}

.product .product-details .single-product-view .descr-for-product .nav-tabs {
  border: none;
  background: #edeff7;
  padding: 7px;
  border-radius: 50px;
  border: 1px solid rgba(18, 31, 89, 0.2);
}

.product .product-details .single-product-view .descr-for-product .nav-tabs .nav-item {
  width: calc(100% / 3);
  text-align: center;
}

.product .product-details .single-product-view .descr-for-product .nav-tabs .nav-item .nav-link {
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(18, 31, 89, 0.8);
  font-size: 14px;
  border: none;
  padding: 0 30px;
  height: 45px;
  line-height: 45px;
  border-radius: 0;
}

.product .product-details .single-product-view .descr-for-product .nav-tabs .nav-item .nav-link.active {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  color: #fff;
  border-radius: 50px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body {
  margin-top: 36px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body h4 {
  color: #121f59;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 18px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body p {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul {
  position: relative;
  padding-bottom: 21px;
  margin-bottom: 26px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 1px;
  right: 0;
  background: #b7c2cf;
  opacity: .5;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul:last-child:after {
  display: none;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul li {
  color: #3d446f;
  line-height: 32px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul li i {
  margin-right: 15px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body {
  margin-top: 36px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body h4 {
  color: #121f59;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul {
  position: relative;
  padding-bottom: 21px;
  margin-bottom: 26px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 1px;
  right: 0;
  background: #b7c2cf;
  opacity: .5;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul:last-child:after {
  display: none;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul li {
  color: #3d446f;
  line-height: 32px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul li i {
  margin-right: 15px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment {
  position: relative;
  padding: 35px 0 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment:after {
  position: absolute;
  content: '';
  left: 100px;
  bottom: 0;
  height: 1px;
  right: 0;
  background: #b7c2cf;
  opacity: .5;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment.reply {
  margin-left: 100px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating {
  position: absolute;
  right: 0;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating span.rating-text {
  display: inline-block;
  margin-right: 10px;
  color: #3d446f;
  font-weight: 700;
  font-size: 14px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating ul {
  display: inline-block;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating ul li {
  display: inline-block;
  font-size: 12px;
  color: #fbe22c;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-img {
  width: 100px;
  margin-right: 30px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-img img {
  width: 100%;
  border: 1px solid #fbe22c;
  border-radius: 50%;
  padding: 5px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text span {
  display: block;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text span.name {
  font-family: 'Public Sans', sans-serif;
  font-size: 20px;
  color: #121f59;
  font-weight: 600;
  margin-bottom: 7px;
  margin-top: -6px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text span.location {
  color: #3d446f;
  font-size: 14px;
  margin-bottom: 20px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text p {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text .reply-btn {
  display: inline-block;
  position: absolute;
  bottom: -6px;
  left: 40px;
  text-transform: uppercase;
  color: #fbe22c;
  font-size: 16px;
  font-weight: 600;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form {
  margin-top: 60px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form h2.title {
  font-size: 26px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 32px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input {
  background: #f3f4f6;
  border: 1px solid #f3f4f6;
  border-radius: 5px;
  color: #42435d;
  height: 60px;
  width: 100%;
  padding: 0 30px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input:focus {
  background: transparent;
  border-color: #eceef2;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input::-webkit-input-placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input:-ms-input-placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input::-ms-input-placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input::placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form textarea {
  background: #f3f4f6;
  border: 1px solid #f3f4f6;
  border-radius: 5px;
  color: #42435d;
  height: 160px;
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form textarea:focus {
  background: transparent;
  border-color: #eceef2;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment span.text {
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  color: #0b1d97;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment ul {
  display: inline-block;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment ul li {
  display: inline-block;
  font-size: 12px;
  color: #e2e2e2;
  cursor: pointer;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment ul li.active {
  color: #fbe22c;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form button {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border: none;
  width: 220px;
  height: 60px;
  border-radius: 5px;
  margin-top: 10px;
}

.delete {
  height: 0px;
  overflow: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.add {
  height: auto;
  overflow: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.list-layout {
  max-width: 100%;
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
}

.list-layout .single-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-layout .single-product .part-img {
  width: 40%;
  margin: 10px;
  padding: 0;
}

.list-layout .single-product .part-img img {
  border-radius: 10px;
  padding: 20px;
}

.list-layout .single-product .part-text {
  width: 60%;
  text-align: left;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-layout .single-product .part-text .rated {
  margin-top: -6px;
  margin-bottom: 4px;
  display: block;
}

.list-layout .single-product .part-text .rated li {
  display: inline-block;
  font-size: 13px;
  color: #fbe22c;
}

.list-layout .single-product .part-text span.product-name {
  margin-top: -8px;
}

.list-layout .single-product .part-text span.product-price {
  margin-bottom: 14px;
}

.list-layout .single-product .part-text p {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
  display: block;
}

.list-layout .single-product .part-text .read-more-button {
  display: block !important;
  font-size: 16px;
  font-weight: 700;
  color: #121f59;
  margin-top: 3px;
}

.list-layout .single-product .part-text .buy-now-button {
  margin-top: 25px;
}

.distributor {
  padding: 120px 0;
  background: #121f59;
}

.distributor .jvectormap-container {
  background: transparent !important;
}

.distributor path.jvectormap-region.jvectormap-element {
  fill: #2642a0;
}

.distributor .jvectormap-zoomin,
.distributor .jvectormap-zoomout {
  display: none;
}

.distributor .maps {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.distributor .maps #world-map-gdp {
  width: 970px;
  height: 500px;
}

.distributor .find-dist-btn {
  display: inline-block;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  padding: 0 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  color: #fff;
  margin-top: 50px;
}

.distributor .single-dist {
  text-align: center;
}

.distributor .single-dist .part-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 10px 0;
  margin-bottom: 18px;
}

.distributor .single-dist .part-icon:after {
  position: absolute;
  content: '';
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.distributor .single-dist .part-text span {
  display: block;
}

.distributor .single-dist .part-text span.number {
  font-family: 'Public Sans', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: -9px;
}

.distributor .single-dist .part-text span.number span {
  display: inline-block;
}

.distributor .single-dist .part-text span.title {
  color: #bac9e6;
  font-size: 16px;
  text-transform: uppercase;
}

.gallery {
  padding: 120px 0 130px;
  background: url("../img/gallery-bg.png") center center no-repeat;
  background-size: cover;
}

.gallery .gallery-slider .single-img {
  border-radius: 10px;
  overflow: hidden;
}

.gallery .gallery-slider .single-img img {
  width: 100%;
}

.gallery .gallery-slider .owl-nav {
  text-align: center;
  position: relative;
  top: 20px;
  margin-top: 20px;
}

.gallery .gallery-slider .owl-nav div {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #0b1d97;
  text-align: center;
  line-height: 28px;
  border: 1px solid #0b1d97;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.gallery .gallery-slider .owl-nav div:hover {
  color: #fff;
  background: #fbe22c;
  border-color: #fbe22c;
}

.gallery .gallery-slider .owl-nav div:first-child {
  margin-right: 100px;
}

.gallery .gallery-slider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 10px;
}

.gallery .gallery-slider .owl-dots .owl-dot {
  width: 5px;
  height: 5px;
  border: 1px solid #0b1d97;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 50%;
  display: inline-block;
  margin-right: 20px;
}

.gallery .gallery-slider .owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.gallery .gallery-slider .owl-dots .owl-dot.active {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  border: none;
  width: 10px;
  height: 10px;
}

.testimonial {
  padding: 120px 0 120px;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, #05358a -50%, #000046 105%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, #053c9b -50%, #000046 105%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.testimonial .shape {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  margin-left: -790px;
  margin-top: -790px;
  width: 1580px;
  height: 1580px;
  opacity: 0.3;
  -webkit-animation: circle 480s infinite;
  animation: circle 480s infinite;
}

.testimonial .testimonial-slider .owl-nav {
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.testimonial .testimonial-slider .owl-nav div {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.testimonial .testimonial-slider .owl-nav div:hover {
  color: #fff;
  background: #fbe22c;
  border-color: #fbe22c;
}

.testimonial .testimonial-slider .owl-nav div:first-child {
  margin-right: 20px;
}

.testimonial .testimonial-slider .single-testimonial {
  text-align: center;
}

.testimonial .testimonial-slider .single-testimonial .part-pic {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 20px 0;
  margin-bottom: 51px;
  display: inline-block;
}

.testimonial .testimonial-slider .single-testimonial .part-pic:before {
  position: absolute;
  content: '';
  left: -20px;
  top: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px dashed #fff;
  border-radius: 50%;
}

.testimonial .testimonial-slider .single-testimonial .part-pic img {
  width: 100%;
  border-radius: 50%;
}

.testimonial .testimonial-slider .single-testimonial .part-text span {
  display: block;
}

.testimonial .testimonial-slider .single-testimonial .part-text span.name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-family: 'Public Sans', sans-serif;
  margin-bottom: 3px;
}

.testimonial .testimonial-slider .single-testimonial .part-text span.profession {
  color: #a0afce;
  opacity: .9;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 19px;
}

.testimonial .testimonial-slider .single-testimonial .part-text span.location {
  color: #a0afce;
  font-size: 15px;
}

.testimonial .testimonial-slider .single-testimonial .part-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 26px;
}

.faq {
  padding: 120px 0;
}

.faq.faq-page {
  background: url("../img/faq-bg.jpg") center center no-repeat;
  background-size: cover;
}

.faq.faq-page .faq-content .accordion .card {
  border-radius: 50px;
}

.faq .faq-filtering-button {
  margin-bottom: 40px;
  text-align: center;
}

.faq .faq-filtering-button .nav-tabs {
  border: none;
  border: 1px solid #cfd1d4;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px;
  border-radius: 50px;
}

.faq .faq-filtering-button .nav-tabs .nav-item .nav-link {
  padding: 0;
  border: none;
  height: 50px;
  padding: 0 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #414c7a;
  line-height: 50px;
  opacity: 0.8;
}

.faq .faq-filtering-button .nav-tabs .nav-item .nav-link.active {
  color: #fff;
  opacity: 1;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
}

.faq .faq-content .accordion .card {
  border: none;
  margin-bottom: 30px;
}

.faq .faq-content .accordion .card:last-child {
  margin-bottom: 0;
}

.faq .faq-content .accordion .card .card-header {
  padding: 0;
  background: transparent;
  border: none;
}

.faq .faq-content .accordion .card .card-header h2 button {
  padding: 14px 30px;
  text-decoration: none;
  font-family: 'Public Sans', sans-serif;
  font-size: 20px;
  color: #121f59;
  font-weight: 600;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  width: 100%;
  text-align: left;
  position: relative;
}

.faq .faq-content .accordion .card .card-header h2 button:after {
  position: absolute;
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.faq .faq-content .accordion .card .card-header h2 button[aria-expanded="true"] {
  background: #fbe22c;
  color: #fff;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
}

.faq .faq-content .accordion .card .card-header h2 button[aria-expanded="true"]:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.faq .faq-content .accordion .card .card-body {
  padding: 30px 30px 20px;
  color: #3d446f;
  font-size: 16px;
  line-height: 30px;
}

.brand {
  padding: 0 0 120px;
}

.brand .brand-slider .single-brand {
  padding: 30px 30px;
  border: 1px solid #121f59;
  border-radius: 10px;
}

.footer {
  padding-top: 70px;
  background: url("../img/footer-bg-1.png") top center no-repeat;
  background-size: cover;
  position: relative;
}

.footer:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/footer-bg-2.png") top center no-repeat;
  background-size: cover;
  z-index: -1;
}

.footer .news-letter .section-title h2 {
  font-size: 30px;
  margin-bottom: 0;
}

.footer .news-letter form {
  position: relative;
  border-radius: 50px;
  margin-bottom: 70px;
}

.footer .news-letter form input {
  height: 50px;
  width: 100%;
  border: 1px solid #333355;
  color: #acc0e7;
  font-size: 14px;
  padding: 0 230px 0 30px;
  border-radius: 50px;
  background: transparent;
}

.footer .news-letter form input::-webkit-input-placeholder {
  color: #acc0e7;
  opacity: .6;
}

.footer .news-letter form input:-ms-input-placeholder {
  color: #acc0e7;
  opacity: .6;
}

.footer .news-letter form input::-ms-input-placeholder {
  color: #acc0e7;
  opacity: .6;
}

.footer .news-letter form input::placeholder {
  color: #acc0e7;
  opacity: .6;
}

.footer .news-letter form button {
  width: 200px;
  height: 50px;
  position: absolute;
  right: 2px;
  border-radius: 50px;
  border: none;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.footer .link-area {
  padding: 120px 0 108px;
  border-top: 1px dotted #54546e;
}

.footer .link-area .single-usefull-link span.title {
  font-family: 'Public Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  display: block;
  margin-bottom: 20px;
}

.footer .link-area .single-usefull-link ul li a {
  display: inline-block;
  font-size: 16px;
  color: #bac9e6;
  text-transform: capitalize;
  position: relative;
  left: 0;
  top: 0;
  padding: 8px 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.footer .link-area .single-usefull-link ul li a:hover {
  color: #fff;
  margin-left: 10px;
}

.footer .link-area .single-usefull-link ul li a:before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .foot-bottom {
  background: #0d154b;
}

.footer .foot-bottom .copyright-text {
  color: #bac9e6;
  font-size: 15px;
  margin: 0;
}

.footer .foot-bottom .copyright-text a {
  color: #bac9e6;
}

.footer .foot-bottom .partners {
  text-align: right;
  padding: 15px 0;
}

.footer .foot-bottom .partners ul li {
  display: inline-block;
}

.footer .foot-bottom .partners ul li a {
  display: inline-block;
  width: 44px;
  margin-right: 16px;
  border-radius: 3px;
  overflow: hidden;
}

.footer .foot-bottom .partners ul li a img {
  width: 100%;
}

.breadcrumb-todas {
  background: url("../img/breadcrumb-bg.png") center center no-repeat;
  background-size: cover;
  background-color: #121f59;
}

.breadcrumb-todas.breadcrumb-about {
  background: url("../img/breadcrumb-for-about.png") center center no-repeat;
  background-size: cover;
  background-color: #121f59;
}

.breadcrumb-todas .breadcrumb-content {
  padding: 100px 0;
  margin-top: 139px;
}

.breadcrumb-todas .breadcrumb-content h2.title {
  font-size: 70px;
  color: #fff;
  font-weight: 800;
  line-height: 80px;
  margin-top: -6px;
  margin-bottom: 29px;
}

.breadcrumb-todas .breadcrumb-content ul li {
  display: inline-block;
  color: #fff;
  position: relative;
  margin-right: 6px;
}

.breadcrumb-todas .breadcrumb-content ul li a {
  display: inline-block;
  color: #fff;
}

.breadcrumb-todas .breadcrumb-content ul li:last-child:after {
  display: none;
}

.breadcrumb-todas .breadcrumb-content ul li:after {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}

.breadcrumb-todas .part-img img {
  width: auto;
  max-width: none;
}

.about {
  padding: 120px 0;
}

.about .part-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: -30px;
}

.about .part-img img {
  width: auto;
  max-width: none;
  height: 420px;
}

.about .part-txt .title {
  margin-bottom: 6px;
}

.about .part-txt .title .subtitle {
  font-size: 18px;
  color: #0b1d97;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -6px;
  margin-bottom: 2px;
}

.about .part-txt .title h2 {
  font-size: 53px;
  font-family: 'Public Sans', sans-serif;
  line-height: 63px;
  color: #121f59;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 11px;
}

.about .part-txt .descr p {
  font-size: 16px;
  line-height: 30px;
  color: #3D446F;
}

.about .part-txt .descr a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 25px;
  margin-top: 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about .part-txt .descr a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.about .part-txt .descr a:hover {
  color: #fbe22c;
}

.about .part-txt .descr a:hover:after {
  opacity: 1;
}

.core-value {
  padding: 120px 0 90px;
  background: #f7f9fe;
}

.core-value .single-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.core-value .single-box .part-img {
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.core-value .single-box .part-img img {
  width: auto;
  height: 100%;
}

.core-value .single-box .part-txt h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 16px;
}

.core-value .single-box .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #3D446F;
  margin-bottom: -7px;
}

.team {
  padding: 120px 0 90px;
}

.team .single-team {
  background: #f7f9fe;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 30px;
}

.team .single-team .part-img img {
  width: 100%;
}

.team .single-team .part-txt {
  text-align: center;
  padding: 30px 0;
}

.team .single-team .part-txt h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #121f59;
  margin-top: -7px;
  margin-bottom: 9px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.team .single-team .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #0b1d97;
  text-transform: uppercase;
  margin-bottom: 23px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.team .single-team .part-txt .social a {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #7c7c90;
  border-radius: 50%;
  color: #7c7c90;
  margin: 0 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team .single-team:hover {
  background: #fbe22c;
}

.team .single-team:hover .part-txt h3,
.team .single-team:hover .part-txt p {
  color: #fff;
}

.team .single-team:hover .part-txt .social a {
  color: #fff;
  border-color: #fff;
}

.team .single-team:hover .part-txt .social a:hover {
  background: #fff;
  border-color: #fff;
  color: #121f59;
}

.product-sidebar {
  top: 0;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.product-sidebar.elemFixed {
  position: fixed;
  top: 94px;
  z-index: 55;
  width: 270px;
}

.product-sidebar .shopping-cart {
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  margin-bottom: 30px;
  background: #fff;
}

.product-sidebar .shopping-cart h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #121f59;
  text-transform: capitalize;
  padding-bottom: 22px;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 30px;
}

.product-sidebar .shopping-cart ul li .single-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px dotted #d8dae7;
  padding: 20px 0;
}

.product-sidebar .shopping-cart ul li .single-item .part-img {
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 0.5px 0.866px 7px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0.5px 0.866px 7px 0px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-sidebar .shopping-cart ul li .single-item .part-img img {
  padding: 8px;
}

.product-sidebar .shopping-cart ul li .single-item .part-text {
  margin-left: 20px;
}

.product-sidebar .shopping-cart ul li .single-item .part-text span {
  display: block;
}

.product-sidebar .shopping-cart ul li .single-item .part-text span.title {
  font-size: 18px;
  font-family: 'Public Sans', sans-serif;
  color: #121f59;
  font-weight: 600;
  margin-bottom: 2px;
}

.product-sidebar .shopping-cart ul li .single-item .part-text span.price {
  font-weight: 700;
  font-size: 15px;
  color: #0b1d97;
}

.product-sidebar .shopping-cart ul li .single-item .part-text .rated li {
  font-size: 12px;
  color: #fbe22c;
  display: inline-block;
  margin-bottom: 5px;
}

.product-sidebar .shopping-cart ul li:last-child .single-item {
  border-bottom: none;
  padding-bottom: 0;
}

.product-sidebar .shopping-cart ul li:first-child .single-item {
  padding-top: 0;
}

.product-sidebar .shopping-cart .check-out-button {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 35px;
  border-radius: 50px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 40px;
}

.product-sidebar .searchBar {
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  margin-bottom: 30px;
  background: #fff;
}

.product-sidebar .searchBar h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #121f59;
  text-transform: capitalize;
  padding-bottom: 22px;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 30px;
}

.product-sidebar .searchBar form {
  position: relative;
}

.product-sidebar .searchBar form input {
  font-weight: 600;
  font-size: 16px;
  color: rgba(13, 21, 75, 0.8);
  border: none;
  border-bottom: 1px solid #9ea1b7;
  width: 100%;
  padding-bottom: 10px;
}

.product-sidebar .searchBar form input::-webkit-input-placeholder {
  color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form input:-ms-input-placeholder {
  color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form input::-ms-input-placeholder {
  color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form input::placeholder {
  color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form button {
  background: transparent;
  border: 0;
  color: #121f59;
  position: absolute;
  right: 0;
  background: #fff;
}

.product-sidebar .filterPrice {
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  margin-bottom: 30px;
  background: #fff;
}

.product-sidebar .filterPrice h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #121f59;
  text-transform: capitalize;
  padding-bottom: 22px;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 30px;
}

.product-sidebar .filterPrice .filter-out-button {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 35px;
  border-radius: 5px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 34px;
  -webkit-box-shadow: 7.5px 12.99px 20px 0px rgba(48, 125, 255, 0.2);
  box-shadow: 7.5px 12.99px 20px 0px rgba(48, 125, 255, 0.2);
}

.price-range-slider .slider {
  display: block;
  position: relative;
  height: 36px;
  width: 100%;
  margin-top: -5px;
}

.price-range-slider .slider .slider-touch-right,
.price-range-slider .slider .slider-touch-left {
  display: block;
  position: absolute;
  height: 14px;
  width: 14px;
  z-index: 2;
  top: 50%;
  margin-top: -8px;
}

.price-range-slider .slider .slider-touch-right:hover div.circle .tooltip-todas,
.price-range-slider .slider .slider-touch-left:hover div.circle .tooltip-todas {
  opacity: 1;
}

.price-range-slider .slider .slider-touch-right div.circle,
.price-range-slider .slider .slider-touch-left div.circle {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: -moz-linear-gradient(90deg, #2f7cff 0%, #4b8eff 100%);
  background-image: -webkit-linear-gradient(90deg, #2f7cff 0%, #4b8eff 100%);
  -webkit-box-shadow: 0.5px 0.86px 4px 1px rgba(82, 15, 15, 0.2);
  box-shadow: 0.5px 0.86px 4px 1px rgba(82, 15, 15, 0.2);
  border: 3px solid #fff;
  cursor: pointer;
}

.price-range-slider .slider .slider-touch-right div.circle .tooltip-todas,
.price-range-slider .slider .slider-touch-left div.circle .tooltip-todas {
  opacity: 1;
  position: absolute;
  background: #fbe22c;
  color: #fff;
  font-weight: 600;
  bottom: 100%;
  padding: 3px 10px;
  font-size: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 6px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.price-range-slider .slider .slider-touch-right div.circle .tooltip-todas:after,
.price-range-slider .slider .slider-touch-left div.circle .tooltip-todas:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 100%;
  width: 8px;
  background: #fbe22c;
  height: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -4px;
  margin-top: -4px;
}

.price-range-slider .slider .slider-line {
  position: absolute;
  left: 0;
  top: 16px;
  height: 3px;
  width: 100%;
  border-radius: 4px;
  background: #eeeeee;
  z-index: 0;
  overflow: hidden;
}

.price-range-slider .slider .slider-line span {
  display: block;
  height: 100%;
  width: 0%;
  background: #fbe22c;
}

.price-range-slider .result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 12px;
}

.price-range-slider .result span {
  display: block;
}

.price-range-slider .result span.text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(18, 31, 89, 0.7);
}

.price-range-slider .result span.number {
  font-size: 16px;
  font-weight: 700;
  color: #0b1d97;
}

.affiliate {
  padding: 120px 0;
  background: #f7f9fe;
}

.affiliate .part-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: -30px;
}

.affiliate .part-img img {
  width: auto;
  max-width: none;
  height: 420px;
}

.affiliate .part-txt .title {
  margin-bottom: 6px;
}

.affiliate .part-txt .title .subtitle {
  font-size: 18px;
  color: #0b1d97;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -6px;
  margin-bottom: 6px;
}

.affiliate .part-txt .title h2 {
  font-size: 50px;
  font-family: 'Public Sans', sans-serif;
  line-height: 60px;
  color: #121f59;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.affiliate .part-txt .descr p {
  font-size: 16px;
  line-height: 28px;
  color: #3D446F;
}

.affiliate .part-txt .descr a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 25px;
  margin-top: 17px;
  margin-bottom: -7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.affiliate .part-txt .descr a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.affiliate .part-txt .descr a:hover {
  color: #fbe22c;
}

.affiliate .part-txt .descr a:hover:after {
  opacity: 1;
}

.become-affiliate {
  padding-top: 120px;
  padding-bottom: 80px;
}

.become-affiliate .single-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 16px;
}

.become-affiliate .single-box .part-img {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 23px;
}

.become-affiliate .single-box .part-txt h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.become-affiliate .single-box .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #3d446f;
}

.how-works {
  padding: 120px 0;
  background: #f7f9fe;
}

.how-works .boxes {
  position: relative;
  z-index: 2;
}

.how-works .boxes .vector-how-it-work {
  position: absolute;
  top: -55px;
}

.how-works .boxes:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url();
  z-index: -1;
}

.how-works .boxes .single-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.how-works .boxes .single-box .part-img {
  width: 100px;
  height: 100px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 54px;
  position: relative;
}

.how-works .boxes .single-box .part-img span {
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  font-weight: 600;
  background: #121f59;
  border-radius: 50%;
  color: #fff;
}

.how-works .boxes .single-box .part-txt h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 16px;
}

.how-works .boxes .single-box .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #3D446F;
  margin-bottom: -7px;
}

.what-waiting {
  padding: 120px 0;
}

.what-waiting .single-box {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b226b), to(#0d154b));
  background-image: -webkit-linear-gradient(#1b226b, #0d154b);
  background-image: -o-linear-gradient(#1b226b, #0d154b);
  background-image: linear-gradient(#1b226b, #0d154b);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.what-waiting .single-box .part-txt h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-top: -4px;
  margin-bottom: 16px;
}

.what-waiting .single-box .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #d1dbef;
  margin-bottom: 33px;
}

.what-waiting .single-box .part-txt a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 25px;
  margin-bottom: -7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.what-waiting .single-box .part-txt a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.what-waiting .single-box .part-txt a:hover {
  color: #fbe22c;
}

.what-waiting .single-box .part-txt a:hover:after {
  opacity: 1;
}

.testimonial-2 {
  padding: 120px 0 116px;
  background: url("../img/testimonial-bg.png") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.testimonial-2:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d154b;
  opacity: 0.95;
  z-index: -1;
}

.testimonial-2 .testimonial-2-slider .single-testimonial p {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  margin: 0;
  padding: 30px 40px;
  color: #fff;
  border-radius: 8px;
  line-height: 28px;
  text-align: center;
}

.testimonial-2 .owl-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

.testimonial-2 .owl-thumbs .owl-thumb-item {
  text-align: center;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic {
  width: 70px;
  border: 5px solid #a5a4a5;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 17px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic:after {
  position: absolute;
  content: '';
  left: 50%;
  width: 20px;
  margin-left: -10px;
  height: 20px;
  top: 0px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic:before {
  position: absolute;
  content: '';
  left: 50%;
  width: 12px;
  margin-left: -6px;
  height: 12px;
  top: 0px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data span {
  display: block;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data span.name {
  font-size: 24px;
  font-family: 'Public Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data span.position {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-pic {
  border-color: #fbe22c;
  position: relative;
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-pic:after {
  top: -40px;
  opacity: 1;
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-pic:before {
  top: -60px;
  opacity: 1;
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-data {
  opacity: 1;
  visibility: visible;
}

.brand.affiliate-page {
  padding-top: 120px;
}

.shop-cart {
  padding: 120px 0;
}

.shop-cart .notification-cart {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
  border-radius: 5px;
  margin-bottom: 30px;
}

.shop-cart .notification-cart p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 30px;
  text-align: center;
  margin: 0;
}

.shop-cart .successfully-notice {
  background: #121f59;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 60px;
}

.shop-cart .successfully-notice p {
  margin: 0;
  color: #fff;
}

.shop-cart .successfully-notice p .check-icon {
  color: #fbe22c;
  margin-right: 10px;
}

.shop-cart .successfully-notice .aply-button {
  height: 40px;
  width: 180px;
  background: #fbe22c;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 5px;
}

.shop-cart .successfully-notice .aply-button:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.shop-cart .cart-list-table .table {
  margin-bottom: 0;
}

.shop-cart .cart-list-table .table thead {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

.shop-cart .cart-list-table .table thead tr th {
  font-size: 16px;
  font-weight: 700;
  color: #121f59;
  font-family: 'Public Sans', sans-serif;
  text-transform: uppercase;
  border: none;
  height: 80px;
  text-align: center;
  vertical-align: middle;
}

.shop-cart .cart-list-table .table thead tr th:first-child {
  padding-left: 30px;
  text-align: left;
}

.shop-cart .cart-list-table .table tbody th,
.shop-cart .cart-list-table .table tbody td {
  border: none;
  border-bottom: 1px solid #ecf0f1;
  height: 150px;
  vertical-align: middle;
}

.shop-cart .cart-list-table .table tbody tr.single-item tr {
  width: 480px;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item .part-img {
  width: 95px;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item .part-img img {
  width: 100%;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item span.title {
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #121f59;
  font-size: 18px;
  margin-left: 30px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td {
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .cart-button .cart-item-selected-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #e5e5e5;
  height: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 145px;
  border-radius: 50px;
  margin-right: 16px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .cart-button .cart-item-selected-count button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  color: #3d446f;
  padding: 0 25px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .cart-button .cart-item-selected-count input.number {
  font-weight: 600;
  color: #3d446f;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .price,
.shop-cart .cart-list-table .table tbody tr.single-item td .total {
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #121f59;
  font-size: 18px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .remove-item {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: none;
  color: #121f59;
  color: rgba(18, 31, 89, 0.6);
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  outline: none;
  cursor: pointer;
}

.shop-cart .buttons-for-update-cart {
  margin-top: 30px;
}

.shop-cart .buttons-for-update-cart form {
  position: relative;
}

.shop-cart .buttons-for-update-cart form input {
  border: none;
  width: 100%;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #121f59;
  height: 50px;
  padding: 0 30px;
  padding-right: 195px;
}

.shop-cart .buttons-for-update-cart form input::-webkit-input-placeholder {
  color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form input:-ms-input-placeholder {
  color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form input::-ms-input-placeholder {
  color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form input::placeholder {
  color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form .aply-button {
  position: absolute;
  top: 0;
  right: 0;
}

.shop-cart .buttons-for-update-cart .aply-button {
  height: 50px;
  width: 165px;
  background: #fbe22c;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.shop-cart .buttons-for-update-cart .aply-button:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.shop-cart .shop-cart-footer {
  margin-top: 60px;
}

.shop-cart .shop-cart-footer .calculating-shipping h4.title {
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #121f59;
  margin-bottom: 23px;
  margin-top: -6px;
}

.shop-cart .shop-cart-footer .calculating-shipping form select,
.shop-cart .shop-cart-footer .calculating-shipping form input {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 5px;
  height: 50px;
  padding: 0 30px;
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #121f59;
  margin-bottom: 20px;
}

.shop-cart .shop-cart-footer .calculating-shipping form .update-total-button {
  height: 50px;
  width: 180px;
  background: #fbe22c;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-top: 20px;
}

.shop-cart .shop-cart-footer .calculating-shipping form .update-total-button:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.shop-cart .shop-cart-footer .cart-total h4.title {
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #121f59;
  margin-bottom: 23px;
  margin-top: -6px;
}

.shop-cart .shop-cart-footer .cart-total ul {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0;
}

.shop-cart .shop-cart-footer .cart-total ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 7px 0;
}

.shop-cart .shop-cart-footer .cart-total ul li span {
  display: inline-block;
}

.shop-cart .shop-cart-footer .cart-total ul li span.name {
  font-weight: 600;
  color: #3d446f;
}

.shop-cart .shop-cart-footer .cart-total ul li span.details {
  color: #3d446f;
}

.shop-cart .shop-cart-footer .cart-total .total-calculate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 23px 0 33px;
}

.shop-cart .shop-cart-footer .cart-total .total-calculate span {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #121f59;
}

.shop-cart .shop-cart-footer .cart-total .check-out-button {
  height: 50px;
  width: 230px;
  background: #fbe22c;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.shop-cart .shop-cart-footer .cart-total .check-out-button:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.cart-iz-empty .cart-empty-content {
  background-color: #fafafa;
  border: 1px solid #e1e8ed;
  padding: 50px;
  text-align: center;
  display: none;
}

.cart-iz-empty .cart-empty-content img {
  width: 200px;
  margin-bottom: 44px;
}

.cart-iz-empty .cart-empty-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 14px;
}

.cart-iz-empty .cart-empty-content p {
  font-size: 17px;
  color: #3d446f;
}

.cart-iz-empty .cart-empty-content p a {
  color: #fbe22c;
  font-weight: 500;
  text-decoration: underline;
}

.repair {
  padding: 120px 0;
}

.repair .part-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.repair .part-img img {
  max-width: none;
  width: auto;
  height: 750px;
}

.repair .part-text {
  padding-left: 30px;
  margin-bottom: -25px;
}

.repair .part-text .title {
  margin-bottom: 65px;
}

.repair .part-text .title .subtitle {
  font-size: 18px;
  color: #0b1d97;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -6px;
  margin-bottom: 9px;
}

.repair .part-text .title h2 {
  font-size: 53px;
  font-family: 'Public Sans', sans-serif;
  line-height: 63px;
  color: #121f59;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.repair .part-text .title p {
  font-size: 16px;
  line-height: 26px;
  color: #3d446f;
}

.repair .part-text .descr .single-box .part-icon {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 14px;
}

.repair .part-text .descr .single-box .part-icon img {
  height: 100%;
}

.repair .part-text .descr .single-box .part-txt h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #121f59;
  margin-bottom: 10px;
}

.repair .part-text .descr .single-box .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #3d446f;
}

.easy-step {
  padding: 120px 0;
  background: url(../img/testimonial-bg.png) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.easy-step:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d154b;
  opacity: 0.95;
  z-index: -1;
}

.easy-step .single-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 27px;
}

.easy-step .single-step .part-icon {
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.easy-step .single-step .part-txt h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.easy-step .single-step .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.easy-step .section-btn {
  text-align: center;
}

.easy-step .section-btn a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 25px;
  margin-bottom: -7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.easy-step .section-btn a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.easy-step .section-btn a:hover {
  color: #fbe22c;
}

.easy-step .section-btn a:hover:after {
  opacity: 1;
}

.brand.warranty-page {
  padding-top: 120px;
}

.support {
  padding: 120px 0 90px;
}

.support.drone-solution .single-box .part-txt {
  text-align: center;
}

.support.drone-solution .single-box .part-txt h3 {
  margin-bottom: 14px;
}

.support.drone-solution .single-box .part-txt p {
  font-size: 16px;
  line-height: 28px;
  color: #3d446f;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.support.drone-solution .single-box:hover .part-txt p {
  color: rgba(255, 255, 255, 0.8);
}

.support .single-box {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 40px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.support .single-box .part-icon {
  width: 65px;
  height: 65px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 22px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.support .single-box .part-txt h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: -9px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.support .single-box:hover {
  background: #121f59;
}

.support .single-box:hover .part-icon {
  border-color: #fff;
}

.support .single-box:hover .part-txt h3 {
  color: #fff;
}

.support-contact {
  padding: 120px 0;
  background-image: -moz-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
  background-image: -webkit-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
  position: relative;
  z-index: 2;
}

.support-contact:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/support-bg.png") center center no-repeat;
  background-size: cover;
  z-index: -1;
}

.support-contact .part-txt {
  text-align: center;
}

.support-contact .part-txt h2 {
  font-size: 30px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  margin-top: -10px;
  margin-bottom: 25px;
}

.support-contact .part-txt a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 25px;
  margin-bottom: -7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.support-contact .part-txt a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.support-contact .part-txt a:hover {
  color: #fbe22c;
}

.support-contact .part-txt a:hover:after {
  opacity: 1;
}

.brand.support-page {
  padding-top: 120px;
}

.contact {
  padding: 120px 0;
}

.contact .part-txt .title {
  margin-bottom: 57px;
}

.contact .part-txt .title .subtitle {
  font-size: 18px;
  color: #0b1d97;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -6px;
  margin-bottom: 0px;
}

.contact .part-txt .title h2 {
  font-size: 53px;
  font-family: 'Public Sans', sans-serif;
  line-height: 63px;
  color: #121f59;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.contact .part-txt .title p {
  font-size: 16px;
  line-height: 26px;
  color: #3d446f;
}

.contact .part-txt .single-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact .part-txt .single-box .part-icon {
  margin-right: 30px;
  margin-bottom: 20px;
}

.contact .part-txt .single-box .part-icon i {
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 65px;
  font-size: 30px;
  /* color: #fbe22c; */
  color:#ffa326;
  border: 1px solid rgba(155, 155, 155, 0.5);
  border-radius: 5px;
}

.contact .part-txt .single-box .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact .part-txt .single-box .txt p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  color: #3d446f;
  font-weight: 600;
}

.contact .part-txt .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.contact .part-txt .social h3 {
  font-family: 'Public Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 0;
  margin-right: 10px;
}

.contact .part-txt .social a {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  color: #121f59;
  border: 1px solid #121f59;
  border-radius: 50%;
  margin-left: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact .part-txt .social a:hover {
  background: #ffa326;;
  border-color: #ffa326;
  color: #fff;
}

.contact .contact-form {
  padding: 60px 30px;
  position: relative;
  z-index: 2;
}

.contact .contact-form:after {
  position: absolute;
  content: "";
  top: -9px;
  left: -13px;
  width: 116%;
  height: 116%;
  background: url("../img/contact-form-bg.png") center center no-repeat;
  background-size: cover;
  z-index: -1;
}

.contact .contact-form h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #121f59;
  margin-top: -3px;
  margin-bottom: 35px;
}

.contact .contact-form form input {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(155, 155, 155, 0.5);
  border-radius: 25px;
  padding: 0 30px;
}

.contact .contact-form form textarea {
  width: 100%;
  height: 140px;
  margin-bottom: 20px;
  border: 1px solid rgba(155, 155, 155, 0.5);
  border-radius: 25px;
  padding: 15px 30px;
}

.contact .contact-form form button {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px;
  border: 0px;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: -7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.contact .contact-form form button:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.contact .contact-form form button:hover {
  color: #ffa326;
}

.contact .contact-form form button:hover:after {
  opacity: 1;
}

.map iframe {
  width: 100%;
  height: 600px;
  display: block;
}

.brand.contact-page {
  padding-top: 120px;
}

.error {
  padding: 120px 0;
}

.error .error-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.error .error-content .part-txt {
  text-align: center;
  margin-top: -100px;
}

.error .error-content .part-txt h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 14px;
}

.error .error-content .part-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #3d446f;
  margin-bottom: 37px;
}

.error .error-content .part-txt a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 25px;
  margin-bottom: -7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.error .error-content .part-txt a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.error .error-content .part-txt a:hover {
  color: #fbe22c;
}

.error .error-content .part-txt a:hover:after {
  opacity: 1;
}

.membership {
  padding: 120px 0 80px;
}

.membership .single-membership {
  margin-bottom: 32px;
  text-align: center;
}

.membership .single-membership .part-icon {
  width: 65px;
  height: 65px;
  background-image: -moz-linear-gradient(24deg, #fbe22c 0%, #3d49cd 100%);
  background-image: -webkit-linear-gradient(24deg, #fbe22c 0%, #3d49cd 100%);
  border-radius: 50px;
  text-align: center;
  line-height: 65px;
  color: #fff;
  font-size: 20px;
  position: relative;
  margin: 6px;
  margin-bottom: 30px;
  display: inline-block;
}

.membership .single-membership .part-icon:after {
  position: absolute;
  content: '';
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid #121f59;
  border-radius: 50%;
}

.membership .single-membership .part-text span {
  display: block;
}

.membership .single-membership .part-text span.title {
  font-family: 'Public Sans', sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: #121f59;
  font-weight: 700;
  margin-bottom: 14px;
}

.membership .single-membership .part-text p {
  color: #3d446f;
  line-height: 26px;
  font-size: 16px;
}

.join-todas {
  background-image: -moz-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
  background-image: -webkit-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
  padding: 50px 0;
}

.join-todas h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  margin-top: -5px;
}

.join-todas p {
  color: #fff;
  margin: 0;
}

.join-todas a.join-todas-button {
  display: inline-block;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  border-radius: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 180px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.brand.membership-page {
  padding-top: 120px;
}

.gallery-page {
  padding: 120px 0;
}

.gallery-page .all-images .grid-item,
.gallery-page .all-images .grid-sizer {
  width: calc(100% / 3);
}

.gallery-page .all-images .grid-item {
  float: left;
  margin-bottom: 30px;
}

.gallery-page .all-images .grid-item:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-page .all-images .grid-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(18, 31, 89, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.gallery-page .all-images .grid-item .overlay a.view-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  text-align: center;
  line-height: 40px;
  color: #fff;
}

.gallery-page .all-images .grid-item img {
  width: 100%;
}

.gallery-page .all-images .grid-item.grid-item-4 {
  margin: 0 15px;
  width: calc((100% / 3) - 30px);
}

.gallery-page .all-images .grid-item--width2 {
  width: calc(100% / 1.5);
}

.gallery-page .all-images .grid-item--width2.mr-30 {
  width: calc((100% / 1.5) - 15px);
  margin-right: 15px;
}

.gallery-page .all-images .grid-item--width2.ml-30 {
  width: calc((100% / 1.5) - 15px);
  margin-left: 15px;
}

.gallery-page .all-images .grid-item--height2.mr-30 {
  width: calc((100% / 3) - 15px);
  margin-right: 15px;
}

.gallery-page .all-images .grid-item--height2.ml-30 {
  width: calc((100% / 3) - 15px);
  margin-left: 15px;
}

.gallery-page .our-gallery-slider .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 22px;
}

.gallery-page .our-gallery-slider .owl-nav div {
  width: 35px;
  height: 35px;
  font-size: 5px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  color: #fff;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.gallery-page .our-gallery-slider .owl-nav div:first-child {
  margin-right: 100px;
}

.gallery-page .our-gallery-slider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 11px;
  position: relative;
  z-index: 2;
  margin-bottom: 11px;
}

.gallery-page .our-gallery-slider .owl-dots .owl-dot {
  width: 5px;
  height: 5px;
  border: 1px solid #fbe22c;
  border-radius: 50%;
  margin: 0 10px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.gallery-page .our-gallery-slider .owl-dots .owl-dot.active {
  width: 11px;
  height: 11px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
}

.divide-box {
  text-align: center;
}

.divide-box-menu {
  background: #f3f4f5;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 50px;
}

.divide-box-menu li {
  display: inline-block;
}

.divide-box-menu li button {
  border: none;
  height: 50px;
  width: 160px;
  text-transform: uppercase;
  font-weight: 700;
  color: #121f59;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.divide-box-menu li button.active {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  border: none;
  height: 50px;
  width: 160px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.single-divide-box {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.el-hidden {
  height: 0;
  overflow: hidden;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-page {
  padding: 120px 0;
}

.blog-page.blog-details .single-blog {
  margin-bottom: 60px;
}

.blog-page.blog-details .single-blog:hover {
  -webkit-box-shadow: 0 0 3px -1px rgba(18, 31, 89, 0.6);
  box-shadow: 0 0 3px -1px rgba(18, 31, 89, 0.6);
}

.blog-page.blog-details .single-blog .part-text .title {
  font-size: 30px;
  line-height: 40px;
  margin-top: 10px;
}

.blog-page.blog-details .single-blog .part-text p {
  line-height: 30px;
}

.blog-page.blog-details .single-blog .part-text .marked-text {
  background-image: -moz-linear-gradient(85deg, #0d154b 0%, #1b226b 100%);
  background-image: -webkit-linear-gradient(85deg, #0d154b 0%, #1b226b 100%);
  border-radius: 10px;
  position: relative;
  margin-top: 93px;
  margin-bottom: 52px;
}

.blog-page.blog-details .single-blog .part-text .marked-text p {
  font-weight: 300;
  color: #fff;
  line-height: 32px;
  font-size: 22px;
  margin-bottom: 0;
  padding: 60px 100px;
}

.blog-page.blog-details .single-blog .part-text .marked-text img {
  width: 100px;
  position: absolute;
  left: 100px;
  top: -50px;
}

.blog-page.blog-details .single-blog .part-text .special-box {
  margin-top: 32px;
  margin-bottom: 33px;
}

.blog-page.blog-details .single-blog .part-text .special-box ul {
  margin-bottom: 19px;
}

.blog-page.blog-details .single-blog .part-text .special-box ul li {
  color: #3d446f;
  line-height: 40px;
}

.blog-page.blog-details .single-blog .part-text .social-buttons {
  border-top: 1px solid #b6b8c9;
  padding: 23px 0 14px;
  margin-top: 21px;
}

.blog-page.blog-details .single-blog .part-text .social-buttons span.text {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}

.blog-page.blog-details .single-blog .part-text .social-buttons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid rgba(13, 21, 75, 0.5);
  color: rgba(13, 21, 75, 0.5);
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  margin-left: 6px;
}

.blog-page.blog-details .single-blog .part-text .social-buttons a:hover {
  color: #fff;
  border-color: transparent;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
}

.blog-page.blog-details .comment-box .title {
  font-size: 26px;
  font-weight: 700;
  color: #121f59;
}

.blog-page.blog-details .comment-box .single-comment {
  position: relative;
  padding: 35px 0 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-page.blog-details .comment-box .single-comment:nth-child(1) {
  padding-top: 34px;
}

.blog-page.blog-details .comment-box .single-comment:after {
  position: absolute;
  content: '';
  left: 100px;
  bottom: 0;
  height: 1px;
  right: 0;
  background: #b7c2cf;
  opacity: .5;
}

.blog-page.blog-details .comment-box .single-comment.reply {
  margin-left: 100px;
}

.blog-page.blog-details .comment-box .single-comment .part-rating {
  position: absolute;
  right: 0;
}

.blog-page.blog-details .comment-box .single-comment .part-rating button.rating-text {
  display: inline-block;
  margin-left: 10px;
  color: #0b1d97;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
}

.blog-page.blog-details .comment-box .single-comment .part-rating ul {
  display: inline-block;
}

.blog-page.blog-details .comment-box .single-comment .part-rating ul li {
  display: inline-block;
  font-size: 12px;
  color: #fbe22c;
}

.blog-page.blog-details .comment-box .single-comment .part-img {
  width: 100px;
  margin-right: 30px;
}

.blog-page.blog-details .comment-box .single-comment .part-img img {
  width: 100%;
  border: 1px solid #fbe22c;
  border-radius: 50%;
  padding: 5px;
}

.blog-page.blog-details .comment-box .single-comment .part-text span {
  display: block;
}

.blog-page.blog-details .comment-box .single-comment .part-text span.name {
  font-family: 'Public Sans', sans-serif;
  font-size: 20px;
  color: #121f59;
  font-weight: 600;
  margin-bottom: 7px;
  margin-top: -6px;
}

.blog-page.blog-details .comment-box .single-comment .part-text span.location {
  color: #3d446f;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-page.blog-details .comment-box .single-comment .part-text p {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
}

.blog-page.blog-details .comment-box .single-comment .part-text .reply-btn {
  display: inline-block;
  position: absolute;
  bottom: -6px;
  left: 40px;
  text-transform: uppercase;
  color: #fbe22c;
  font-size: 16px;
  font-weight: 600;
}

.blog-page.blog-details .comment-form {
  margin-top: 60px;
}

.blog-page.blog-details .comment-form h2.title {
  font-size: 26px;
  font-weight: 700;
  color: #121f59;
  margin-bottom: 32px;
  margin-top: -4px;
}

.blog-page.blog-details .comment-form form input {
  background: #f3f4f6;
  border: 1px solid #f3f4f6;
  border-radius: 5px;
  color: #42435d;
  height: 60px;
  width: 100%;
  padding: 0 30px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-page.blog-details .comment-form form input:focus {
  background: transparent;
  border-color: #eceef2;
}

.blog-page.blog-details .comment-form form input::-webkit-input-placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.blog-page.blog-details .comment-form form input:-ms-input-placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.blog-page.blog-details .comment-form form input::-ms-input-placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.blog-page.blog-details .comment-form form input::placeholder {
  color: rgba(66, 67, 93, 0.6);
}

.blog-page.blog-details .comment-form form textarea {
  background: #f3f4f6;
  border: 1px solid #f3f4f6;
  border-radius: 5px;
  color: #42435d;
  height: 160px;
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-page.blog-details .comment-form form textarea:focus {
  background: transparent;
  border-color: #eceef2;
}

.blog-page.blog-details .comment-form form .rating-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.blog-page.blog-details .comment-form form .rating-comment span.text {
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  color: #0b1d97;
}

.blog-page.blog-details .comment-form form .rating-comment ul {
  display: inline-block;
}

.blog-page.blog-details .comment-form form .rating-comment ul li {
  display: inline-block;
  font-size: 12px;
  color: #e2e2e2;
  cursor: pointer;
}

.blog-page.blog-details .comment-form form .rating-comment ul li.active {
  color: #fbe22c;
}

.blog-page.blog-details .comment-form form button {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border: none;
  width: 220px;
  height: 60px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

.blog-page .single-blog {
  -webkit-box-shadow: 0 0 3px -1px rgba(18, 31, 89, 0.6);
  box-shadow: 0 0 3px -1px rgba(18, 31, 89, 0.6);
  padding: 10px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 40px;
}

.blog-page .single-blog:hover {
  -webkit-box-shadow: 0 0 3px 1px rgba(18, 31, 89, 0.8);
  box-shadow: 0 0 3px 1px rgba(18, 31, 89, 0.8);
}

.blog-page .single-blog .part-img {
  position: relative;
}

.blog-page .single-blog .part-img .date-box {
  display: inline-block;
  background-image: -moz-linear-gradient(95deg, #0e154b 0%, rgba(61, 73, 205, 0.9) 100%);
  background-image: -webkit-linear-gradient(95deg, #0e154b 0%, rgba(61, 73, 205, 0.9) 100%);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 20px;
}

.blog-page .single-blog .part-img .date-box span {
  display: block;
  font-weight: 400;
  line-height: 100%;
}

.blog-page .single-blog .part-img .date-box span.date {
  font-size: 30px;
  margin-bottom: 6px;
}

.blog-page .single-blog .part-img img {
  max-height: 400px;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.blog-page .single-blog .part-text {
  padding: 10px 20px 0;
}

.blog-page .single-blog .part-text .statics-number {
  padding: 14px 0 8px;
}

.blog-page .single-blog .part-text .statics-number li {
  display: inline-block;
}

.blog-page .single-blog .part-text .statics-number li a {
  display: inline-block;
  color: #3d446f;
  margin-right: 26px;
}

.blog-page .single-blog .part-text .statics-number li i {
  margin-right: 6px;
}

.blog-page .single-blog .part-text .title {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-family: 'Public Sans', sans-serif;
  color: #121f59;
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-page .single-blog .part-text p {
  color: #3d446f;
  line-height: 28px;
}

.blog-page .single-blog .part-text .read-more-btn {
  border-top: 1px solid #b6b8c9;
  padding: 23px 0 14px;
  text-align: center;
  margin-top: 21px;
}

.blog-page .single-blog .part-text .read-more-btn a {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  color: #121f59;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-page .single-blog .part-text .read-more-btn a:hover {
  color: #0b1d97;
}

.blog-page .pagination-todas {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

.blog-page .pagination-todas:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #dbdbdb;
}

.blog-page .pagination-todas:before {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #dbdbdb;
}

.blog-page .pagination-todas ul li {
  display: inline-block;
}

.blog-page .pagination-todas ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #999999;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f1f5f7;
  border-bottom: 3px solid #dbdbdb;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-right: 6px;
}

.blog-page .pagination-todas ul li a:hover {
  border-color: #fbe22c;
}

.blog-page .pagination-todas ul li:last-child a {
  margin-right: 0;
}

.blog-page .sidebar {
  top: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-page .sidebar.elemFixed {
  position: fixed;
  top: 94px;
  z-index: 55;
  width: 270px;
}

.blog-page .sidebar .newsletter-box,
.blog-page .sidebar .category,
.blog-page .sidebar .tag {
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
  margin-bottom: 30px;
  background: #fff;
}

.blog-page .sidebar .newsletter-box span.sub-title,
.blog-page .sidebar .category span.sub-title,
.blog-page .sidebar .tag span.sub-title {
  display: block;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  color: #0b1d97;
  margin-top: -4px;
  margin-bottom: 3px;
  text-align: center;
}

.blog-page .sidebar .newsletter-box h3,
.blog-page .sidebar .category h3,
.blog-page .sidebar .tag h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #121f59;
  text-transform: capitalize;
  padding-bottom: 22px;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 30px;
  text-align: center;
}

.blog-page .sidebar .newsletter-box form,
.blog-page .sidebar .category form,
.blog-page .sidebar .tag form {
  text-align: center;
}

.blog-page .sidebar .newsletter-box form input,
.blog-page .sidebar .category form input,
.blog-page .sidebar .tag form input {
  color: #676f7a;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  border: none;
  height: 50px;
  border-bottom: 1px solid #9ea1b7;
}

.blog-page .sidebar .newsletter-box form button,
.blog-page .sidebar .category form button,
.blog-page .sidebar .tag form button {
  height: 50px;
  padding: 0 40px;
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  border: none;
  outline: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-top: 30px;
  cursor: pointer;
}

.blog-page .sidebar .newsletter-box ul li,
.blog-page .sidebar .category ul li,
.blog-page .sidebar .tag ul li {
  padding-bottom: 12px;
}

.blog-page .sidebar .newsletter-box ul li:last-child,
.blog-page .sidebar .category ul li:last-child,
.blog-page .sidebar .tag ul li:last-child {
  padding-bottom: 0;
}

.blog-page .sidebar .newsletter-box ul li a,
.blog-page .sidebar .category ul li a,
.blog-page .sidebar .tag ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-page .sidebar .newsletter-box ul li a span,
.blog-page .sidebar .category ul li a span,
.blog-page .sidebar .tag ul li a span {
  display: block;
  color: #3d446f;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-page .sidebar .newsletter-box ul li a span:hover,
.blog-page .sidebar .category ul li a span:hover,
.blog-page .sidebar .tag ul li a span:hover {
  color: #ffa326;
}

.blog-page .sidebar .tag ul li {
  padding-bottom: 0;
  display: inline-block;
}

.blog-page .sidebar .tag ul li a.tag-word {
  display: inline-block;
  height: 40px;
  padding: 0 18px;
  border-radius: 50px;
  background: #f4f5f8;
  color: #1f2732;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 40px;
  margin-bottom: 10px;
  margin-right: 4px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-page .sidebar .tag ul li a.tag-word:hover {
  background-image: -moz-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  background-image: -webkit-linear-gradient(85deg, #ed9615 0%, #fbe22c 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
  color: #fff;
}

.logo img{
  height: 60px;
}

.vh-100 {
  height: 100vh!important;
}

.banner .carousel-control-prev,.banner .carousel-control-next{
  box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
  width: 50px;
  height: 50px;
  background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
  background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
  border: 0;
  border-radius: 50%;
}

.banner .carousel-indicators{
  bottom: -60px !important;
}

.banner .banner-content{
  height: 225px !important;
}

.z-1000{
  z-index: 1000 !important;
}

.z-10000{
  z-index: 10000 !important;
}

.readmore{
  /* background: #fbe22c; */
  background:#ffa326;
  color: #ffffff;
    padding: 16px 30px;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
}

.readmore:focus,.readmore:hover{
  /* background: #fbe22c; */
  background:#ffa326;
  color: #ffffff;
    padding: 16px 30px;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
}

.h-300px{
  height: 300px !important;
}

.banner-image{
  border-radius: 1rem !important;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
}

.amazing-feature .single-feature .part-icon img{
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}

.btn-social {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  font-size: .92969rem !important;
  font-weight: 400;
  height: 2.5rem;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 2.5rem;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #64748b;
  margin-right: 0.5rem;
}

.h-60px{
  height: 65px;
}

.btn-social i{
  font-size: 20px;
}

.btn-facebook:active, .btn-facebook:focus, .btn-facebook:hover {
  background-color: #1877f2 !important;
  border-color: #1877f2 !important;
  color: #fff!important;
}

.btn-instagram:active, .btn-instagram:focus, .btn-instagram:hover {
  background-color: #c32aa3 !important;
  border-color: #c32aa3 !important;
  color: #fff!important;
}

.btn-twitter:active, .btn-twitter:focus, .btn-twitter:hover {
  background-color: #1da1f2!important;
  border-color: #1da1f2!important;
  color: #fff!important;
}

.btn-linkedin:active, .btn-linkedin:focus, .btn-linkedin:hover {
  background-color: #0a66c2 !important;
  border-color: #0a66c2 !important;
  color: #fff!important;
}

.btn-youtube:active, .btn-youtube:focus, .btn-youtube:hover {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #fff!important;
}
.btn-whatsapp:active, .btn-whatsapp:focus, .btn-whatsapp:hover {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff!important;
}

.card-lift {
  border-radius: 0.75rem;
  transition: transform .2s ease-in-out,border-color .2s ease-in-out,background-color .2s ease-in-out,box-shadow .2s ease-in-out;
}

.rounded-3 {
  border-radius: 0.75rem !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.card-lift.active, .card-lift:focus, .card-lift:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)!important;
  transform: translateY(-0.25rem);
}

[aria-expanded=true] .chevron-arrow {
  transform: rotate(-180deg);
}

.fs-16px{
  font-size: 16px;
}

.icon-link {
  background: var(--light);
    padding: 5px 10px;
    align-items: end;
    backface-visibility: hidden;
    display: inline-flex;
    gap: 0.375rem;
    text-decoration-color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,.5));
    text-underline-offset: 0.25em;
    border-radius: 10px;
}

.icon-link i{
  position: relative;
  top: -1px;
}

.feature-card img{
  height: 350px;
  width: auto;
  object-fit: cover;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .active:before {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .feature{
    text-align: center !important;
  }

  .amazing-feature{
    margin-bottom: 30px !important;
  }

  .accordion h2{
    font-size: 17px !important;
  }

  .single-usefull-link,.contact-form{
    margin-top: 30px !important;
  }

  .core-value,.team {
    padding: 30px 0 30px !important;
    background: #f7f9fe;
  }

  #myTab{
    display: block !important;
    padding: 20px !important;
  }

  .feature-card img {
    height: 200px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .icon-link{
    margin-bottom: 20px !important;
  }

  html .banner .banner-content {
    height: auto !important;
  }

  html .banner-img-div{
    display: none !important;
  }

  html .carousel-item{
    text-align: center !important;
  }

  html .banner .carousel-indicators {
    bottom: -110px !important;
  }

  .feature .single-feature .part-icon{
    margin-right: 0 !important;
  }

  .video-background .content{
    width: 90% !important;
  }
}

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(73,98,224,0.5) 0%, rgba(110,125,240,0.5) 100%);
  z-index: 0;
}

.vertical-feature-card{
  border-radius: 1rem !important;
  height: 500px;
}

.vertical-feature-card img{
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.vertical-feature-card h3{
  font-size: 19px;
  font-weight: 600;
}

.vertical-feature-card ul{
  font-size: 13px;
}

.vertical-feature-card p{
  color: #6c757d!important;
  font-size: 14px;
}

.vertical-feature-card button{
  background: #fbe22c;
    border-radius: 50px;
    border: 0;
    padding: 10px 30px;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-gradient {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)) !important;
}

.shadow-primary {
  box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(99,102,241,.9) !important;
}

.shadow-warning {
  box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(255,186,8,.9) !important;
}

.bg-secondary {
  background-color: #f3f6ff !important;
}


.btn-feature-more{
  color: #212529;
  /* background-color: #fbe22c !important;
  border-color: #fbe22c !important; */
  background-color:#ffa326;
  border-color:#ffa326;
  border-radius: 0.375rem !important;
}

.shadow-sm {
  box-shadow: 0 0.275rem 0.75rem -0.0625rem rgba(11,15,25,.06), 0 0.125rem 0.4rem -0.0625rem rgba(11,15,25,.03) !important;
}

/* Home cards same as for mobile cards... Remove below CSS to make the cards a it was before for desktop view*/

.amazing-feature .single-feature:hover:before {
  right: 0 !important;
}

.amazing-feature .single-feature:before {
  transform: translate(0);
  width: 100%;
  right: 100%;
}

.amazing-feature .single-feature:hover:after {
  left: 0 !important;
}

.amazing-feature .single-feature:after {
  transform: translate(0);
  width: 100%;
  left: 100%;
}

/*Home cards for desktop same as for mobile end*/

.new-section-title {
  text-align: center;
  margin: 30px 0;
  font-size: 60px;
    font-family: 'Public Sans', sans-serif;
    line-height: 70px;
    color: #121f59;
    font-weight: 700;
    margin-top: 100px;
}

.work-card-title {
  text-align: center;
  font-weight: 700;
  color: #121f59;
  font-size: 21px;
  margin-bottom: 14px;
}
.work-card-text {
  text-align: center;
}

.new-section-desc{
  font-size: 16px;
    line-height: 26px;
    color: #3d446f;
    padding-left: 100px;
    padding-right: 100px;
}

.work-card{
  border-radius: 10px !important;
  height: 330px;
}

.easy-to-begin .part-text h1 {
  font-family: 'Public Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.fs-18{
  font-size:18px;
}

.mission{
  height:500px;
}

.bg-blue{
  background-image: -webkit-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
    background-size: cover;
    background-color: #121f59;
}

.mission h2{
  font-size: 60px;
    font-family: 'Public Sans', sans-serif;
    line-height: 70px;
    color: #121f59;;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top:20px;
}

.mission p{
  font-size: 18px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 9px;
    margin-top: -6px;
}

.mission .row{
  height:500px;
  align-items: center;
}

.feature-box {
  text-align: center;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: #f2f4f7;
  border-radius: 50%;
  margin: 0 auto 10px auto;
}

.feature-icon i {
  font-size: 50px;
  color: #121f59; 
}

.features-title{
  font-size: 60px;
    font-family: 'Public Sans', sans-serif;
    line-height: 70px;
    color: #121f59;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-name{
  text-align: center;
    font-weight: 700;
    color: #121f59;
    font-size: 24px;
    margin-bottom: 14px;
}

.feature-desc{
  color: #3d446f;
    font-size: 16px;
    line-height: 26px;
}

.why-choose{
  padding: 120px 0 120px;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, #05358a -50%, #000046 105%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, #053c9b -50%, #000046 105%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.section-head {
  margin-bottom: 60px;
}
.section-head h4 {
  position: relative;
  padding:0;
  color:#f91942;
  line-height: 1;
  letter-spacing:0.3px;
  font-size: 34px;
  font-weight: 700;  
  text-align:center;
  text-transform:none;
  margin-bottom:30px;
}

.section-head h4 {
  padding-bottom: 5px;
  font-size: 60px;
    font-family: 'Public Sans', sans-serif;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
p.service_text{
  color:#cccccc !important;
  font-size:16px;
  line-height:28px;
  text-align:center;    
}
.section-head p, p.awesome_line{
  color:#818181;
  font-size:16px;
  line-height:28px;
  text-align:center;  
}

.extra-text {
    font-size:34px;
    font-weight: 700;
    color:#2f2f2f;
    margin-bottom: 25px;
    position:relative;
    text-transform: none;
}
.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
.extra-text span {
    font-weight: 700;
    color:#f91942;
}
.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border:5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: #f2f4f7;
  border-radius: 50%;
  margin: 0 auto 10px auto;
}

.item i{
  font-size: 50px;
  color: #121f59;
}

.item p{
    color: #3d446f;
    font-size: 16px;
    line-height: 26px;
}
.item h6 {
    margin-bottom:20px;
    text-align: center;
    font-weight: 700;
    color: #121f59;
    font-size: 30px;
    margin-bottom: 16px;
}
.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    color: #3d446f;
}
.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}
.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}
.skills {
    padding-top:0px;
}
.skills .prog-item {
    margin-bottom: 25px;
}
.skills .prog-item:last-child {
    margin-bottom: 0;
}
.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}
.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius:20px;
    position: relative;
}
.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight:600;    
    color: #fff;
    background:rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}

.our-team {
  padding: 30px 0 40px;
  background: #f9f9f9;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-bottom: 5px solid #121f59;
}
.our-team:hover{
  border-bottom: 5px solid #121f59;
}

.our-team .pic{
  display: inline-block;
  width: 130px;
  height: 130px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}
.our-team .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00325a;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 1;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}
.our-team:hover .pic:before{
height: 100%;
  background: #121f59;
}
.our-team .pic:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff00;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s linear 0s;
}
.our-team:hover .pic:after{
  background: #ffa326;
}
.our-team .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
  position: relative;
  z-index: 2;
}
.our-team:hover .pic img{
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}
.our-team .team-content{ margin-bottom: 30px; }
.our-team .title{
  font-size: 22px;
  font-weight: 700;
  color: #4e5052;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.our-team .post{
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform:capitalize;
}
.our-team .social{
  width: 100%;
  padding: 0;
  margin: 0;
  background: #121f59;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}
.our-team:hover .social{ bottom: 0; }
.our-team .social li{ display: inline-block; }
.our-team .social li a{
  display: block;
  padding: 10px;
  font-size: 17px;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.our-team .social li a:hover{
  color: #121f59;
  background: #fff;
}
@media only screen and (max-width: 990px){
  .our-team{ margin-bottom: 30px; }
}

.tab-heading{
    font-size: 60px;
    font-family: 'Public Sans', sans-serif;
    line-height: 70px;
    color: #121f59;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.mission-card {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border:5px solid rgba(0, 0, 0, 0.07);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.contact .part-txt .single-box .txt a {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  color: #3d446f;
  font-weight: 600;
}

.contact .part-txt .single-box .txt a:hover {
  color:#ffa326;
}

.breadcrumb-todas .breadcrumb-content h1.title {
  font-size: 70px;
  color: #fff;
  font-weight: 800;
  line-height: 80px;
  margin-top: -6px;
  margin-bottom: 29px;
}

.newsmsg {
  color: red;
}

html .our-team .pic img{
  width: 130px !important;
    height: 130px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: 0px -20px;
}

.vertical-blog-card{
  border-radius: 1rem !important;
}

.vertical-blog-card h3 {
  font-size: 19px;
  font-weight: 600;
}

.vertical-blog-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.section-title .heading{
  font-size: 18px;
    color: #0b1d97;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 9px;
    margin-top: -6px;
    line-height: normal;
}

.section-title .sub-heading{
  font-size: 60px;
    font-family: 'Public Sans', sans-serif;
    line-height: 70px;
    color: #121f59;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-label{
  font-size: 20px;
  font-weight: 600;
}

@media all and (max-width:768px){

  .new-section-title {
    font-size:26px;
    line-height: normal;
  }

  .new-section-desc {
    padding:0;
  }

  .work-card{
    margin-bottom: 30px;
  }

  .mission {
    height: 1000px;
  }

  .mission .row {
    height: 1000px;
  }

  .mission h2, .features-title {
    font-size: 26px;
  }

  .feature-name {
    font-size: 21px;
  }

  .section-head h4{
    font-size:26px;
    margin-bottom: auto;
  }

  .blog-page .single-blog .part-img img {
    max-height: none;
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    height: auto !important;
   }

   .blog-page.blog-details .single-blog .part-text .title {
    font-size: 21px;
    line-height: normal;
    margin-top: 10px;
   }

   .tab-heading {
    font-size: 26px;
    font-family: 'Public Sans', sans-serif;
    line-height: normal;
    color: #121f59;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    }

    .section-title .sub-heading {
      font-size: 24px;
      font-family: 'Public Sans', sans-serif;
      line-height: 70px;
      color: #121f59;
      font-weight: 700;
      margin-bottom: 20px;
    }

}