@import url(fonts.css);
@import url(responsive.css);

.container,.container-fluid,.custom-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
  width: 100%
}

::-webkit-scrollbar {
  height: 4px;  
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: #fff;
}

::-webkit-scrollbar-track {
  background: #043569;
}

::selection {
  color: #fff;
  background: #333;
}

* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  outline: none !important;
  list-style: none !important;
}

*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff !important;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

p {
  color: #000;
  line-height: 28px;
  margin-bottom: 25px;
}

a {
  color: #000;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}

a:hover {
  color: #030349;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}

a:focus {
  outline: none !important;
  box-shadow: none !important;
}

img {
  max-width: 100%;
}

button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none !important;
}

ul,
li,
ol {
  margin: 0;
  padding: 0;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

label {
  color: #000;
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
  box-shadow: none !important;
  outline: none !important;
  border: 0 !important;
}

.btn.focus,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn:focus,
a:focus {
  outline: none !important;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none;
}

iframe {
  border: 0;
  display: block;
}

video {
  width: 100%;
}

footer ul {
  align-items: center;
}

.logo {
  width: 150px;
}

section {
  padding-top: 80px;
}

.btn-blue {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  background: #0c1c8d;
  color: #fff;
  line-height: 1.5;
  padding: 10px 25px;
  margin: 10px 0;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.btn-blue:before {
  content: " ";
  display: block;
  width: 200px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -10px;
  left: -200px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.btn-blue:hover {
  text-decoration: none;
  color: #fff;
}

.btn-blue:hover:before {
  margin-left: 300%;
}

.btn-black {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  background: #2b2b2b;
  color: #fff !important;
  line-height: 1.5;
  padding: 10px 25px;
  border-radius: 0px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}

.btn-black:hover {
  text-decoration: none;
  color: #fff !important;
  z-index: 1;
}

.btn-black:before {
  content: " ";
  display: block;
  width: 200px;
  height: 80px;
  background: #60b2df;
  position: absolute;
  top: -10px;
  left: -200px;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-black:hover:before {
  margin-left: 100%;
  z-index: 0;
}

.btn-black span {
  z-index: 1;
  position: relative;
}

.btn-black i {
  margin-left: 10px;
  font-size: 10px;
  z-index: 1;
  position: relative;
}

.btn-outline-other {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  background: none;
  border: 1px solid #fff;
  color: #fff !important;
  line-height: 1.5;
  padding: 10px 25px;
  border-radius: 0px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-hover:hover {
  text-decoration: none;
  color: #fff !important;
  z-index: 1;
}

.btn-outline-other:before {
  content: " ";
  display: block;
  width: 200px;
  height: 80px;
  background: #60b2df;
  position: absolute;
  top: -10px;
  left: -200px;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-outline-other:hover:before {
  margin-left: 100%;
  z-index: 0;
}

.btn-outline-other span {
  z-index: 1;
  position: relative;
}

.btn-outline-other i {
  margin-left: 10px;
  font-size: 10px;
  z-index: 1;
  position: relative;
}

.btn-other {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  background: #222222;
  color: #fff;
  line-height: 1.5;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: none;
}

.btn-other:before {
  content: " ";
  display: block;
  width: 200px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -10px;
  left: -200px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.btn-other:hover {
  text-decoration: none;
  color: #fff;
}

.btn-other:hover:before {
  margin-left: 300%;
}

.btn-white {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  background: #fff;
  color: #535353;
  line-height: 1.5;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: none;
}

.btn-white:hover {
  color: #535353;
  text-decoration: none;
}

.btn-white i {
  font-size: 9px;
  color: #0655a0;
  margin-left: 10px;
}

.imgHover {
  overflow: hidden;
  border-radius: 20px;
}

.bg-other{
  background: url('../images/bg-other.png') no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: top center;
}

.addBgGray {
  background: #f7f5f6;
}

.vu-table-wrapper {
  border-radius: 10px !important;
  height: 500px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.vu-table-wrapper,
.vu-table-wrapper .table {
  font-family: "Montserrat", sans-serif !important;
}

.vu-table-wrapper .item-name small {
  font-size: 16px !important;
  color: #fff !important;
}

.vu-table-wrapper .item-name strong {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
}

.vu-table-wrapper .moremajors {
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #0c1c8d !important;
  line-height: 1.1 !important;
  cursor: pointer !important;
}

.brand-info {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-height: 300px;
}

.brand-info .brand-image {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.brand-info .brand-image img {
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  object-fit: cover;
}

.brand-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px !important;
  font-weight: 600;
  color: #383838;
  text-align: left;
  margin-bottom: 15px;
}

.brand-map {
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.brand-map iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius: 10px !important;
}

.scroolbar {
  background-color: rgb(4 53 105 / 90%);
  display: block;
  position: relative;
  padding: 5px;
  border-radius: 15px;
}

.brand-contact li {
  margin-bottom: 10px;
}

.brand-contact li i {
  color: #383838;
  font-size: 13px;
}

.brand-contact li a {
  color: #383838;
  font-size: 15px;
}

.brand-contact li a:hover {
  color: #0d1c8d;
  font-size: 15px;
}

/* ANIMATION */
@-webkit-keyframes zoomInImageSm {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(0px) translateX(0) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes slideRightAnimation {
  0% {
    transform: rotate(0deg) translate(0px, 0px);
  }

  50% {
    transform: rotate(6deg) translate(0px, 0px);
  }

  100% {
    transform: rotate(0deg) translate(0px, 0px);
  }
}

@-webkit-keyframes slideLeftAnimation {
  0% {
    transform: rotate(0deg) translate(0px, 0px);
  }

  50% {
    transform: rotate(-6deg) translate(0px, 0px);
  }

  100% {
    transform: rotate(0deg) translate(0px, 0px);
  }
}

@-webkit-keyframes socialPhoneLeft {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }

  50% {
    transform: translateY(0px) translateX(20px);
    opacity: 1;
  }

  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes socialPhoneRight {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }

  50% {
    transform: translateY(0px) translateX(-20px);
    opacity: 1;
  }

  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes bannerImageBottom {
  from {
    bottom: -75px;
  }

  to {
    bottom: 0px;
    -webkit-animation-play-state: paused;
  }
}

@-webkit-keyframes parallaxAnimationBg {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }

  50% {
    transform: translateY(0px) translateX(100px);
    opacity: 1;
  }

  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes parallaxAnimationText {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }

  50% {
    transform: translateY(30px) translateX(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }
}

/* ANIMATION */

.currency-flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  background-size: cover;
  background-image: url("../images/rectangle_fallback.png");
}
.currency-flag-sm {
  width: 16px;
  height: 10px;
}
.currency-flag-lg {
  width: 36px;
  height: 24px;
}
.currency-flag-xl {
  width: 48px;
  height: 32px;
}
.currency-flag.currency-flag-aed {
  background-image: url("../images/aed.png");
}
.currency-flag.currency-flag-afn {
  background-image: url("../images/afn.png");
}
.currency-flag.currency-flag-all {
  background-image: url("../images/all.png");
}
.currency-flag.currency-flag-amd {
  background-image: url("../images/amd.png");
}
.currency-flag.currency-flag-ang {
  background-image: url("../images/ang.png");
}
.currency-flag.currency-flag-aoa {
  background-image: url("../images/aoa.png");
}
.currency-flag.currency-flag-ars {
  background-image: url("../images/ars.png");
}
.currency-flag.currency-flag-aud {
  background-image: url("../images/AU--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/aud.png');*/
}
.currency-flag.currency-flag-awg {
  background-image: url("../images/awg.png");
}
.currency-flag.currency-flag-azn {
  background-image: url("../images/azn.png");
}
.currency-flag.currency-flag-bam {
  background-image: url("../images/bam.png");
}
.currency-flag.currency-flag-bbd {
  background-image: url("../images/bbd.png");
}
.currency-flag.currency-flag-bdt {
  background-image: url("../images/bdt.png");
}
.currency-flag.currency-flag-bgn {
  background-image: url("../images/bgn.png");
}
.currency-flag.currency-flag-bhd {
  background-image: url("../images/bhd.png");
}
.currency-flag.currency-flag-bif {
  background-image: url("../images/bif.png");
}
.currency-flag.currency-flag-bmd {
  background-image: url("../images/bmd.png");
}
.currency-flag.currency-flag-bnd {
  background-image: url("../images/bnd.png");
}
.currency-flag.currency-flag-bob {
  background-image: url("../images/bob.png");
}
.currency-flag.currency-flag-brl {
  background-image: url("../images/brl.png");
}
.currency-flag.currency-flag-bsd {
  background-image: url("../images/bsd.png");
}
.currency-flag.currency-flag-btn {
  background-image: url("../images/btn.png");
}
.currency-flag.currency-flag-bwp {
  background-image: url("../images/bwp.png");
}
.currency-flag.currency-flag-byn {
  background-image: url("../images/byn.png");
}
.currency-flag.currency-flag-bzd {
  background-image: url("../images/bzd.png");
}
.currency-flag.currency-flag-cad {
  background-image: url("../images/CA--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/cad.png');*/
}
.currency-flag.currency-flag-cdf {
  background-image: url("../images/cdf.png");
}
.currency-flag.currency-flag-chf {
  background-image: url("../images/CH--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/chf.png');*/
}
.currency-flag.currency-flag-clp {
  background-image: url("../images/clp.png");
}
.currency-flag.currency-flag-cny {
  background-image: url("../images/cny.png");
}
.currency-flag.currency-flag-cop {
  background-image: url("../images/cop.png");
}
.currency-flag.currency-flag-crc {
  background-image: url("../images/crc.png");
}
.currency-flag.currency-flag-cup {
  background-image: url("../images/cup.png");
}
.currency-flag.currency-flag-cve {
  background-image: url("../images/cve.png");
}
.currency-flag.currency-flag-czk {
  background-image: url("../images/czk.png");
}
.currency-flag.currency-flag-djf {
  background-image: url("../images/djf.png");
}
.currency-flag.currency-flag-dkk {
  background-image: url("../images/dkk.png");
}
.currency-flag.currency-flag-dop {
  background-image: url("../images/dop.png");
}
.currency-flag.currency-flag-dzd {
  background-image: url("../images/dzd.png");
}
.currency-flag.currency-flag-egp {
  background-image: url("../images/egp.png");
}
.currency-flag.currency-flag-ern {
  background-image: url("../images/ern.png");
}
.currency-flag.currency-flag-etb {
  background-image: url("../images/etb.png");
}
.currency-flag.currency-flag-eur {
  background-image: url("../images/EU--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/eur.png');*/
}
.currency-flag.currency-flag-fjd {
  background-image: url("../images/fjd.png");
}
.currency-flag.currency-flag-fkp {
  background-image: url("../images/fkp.png");
}
.currency-flag.currency-flag-gbp {
  background-image: url("../images/GB--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/gbp.png');*/
}
.currency-flag.currency-flag-gel {
  background-image: url("../images/gel.png");
}
.currency-flag.currency-flag-ggp {
  background-image: url("../images/ggp.png");
}
.currency-flag.currency-flag-ghs {
  background-image: url("../images/ghs.png");
}
.currency-flag.currency-flag-gip {
  background-image: url("../images/gip.png");
}
.currency-flag.currency-flag-gmd {
  background-image: url("../images/gmd.png");
}
.currency-flag.currency-flag-gnf {
  background-image: url("../images/gnf.png");
}
.currency-flag.currency-flag-gtq {
  background-image: url("../images/gtq.png");
}
.currency-flag.currency-flag-gyd {
  background-image: url("../images/gyd.png");
}
.currency-flag.currency-flag-hkd {
  background-image: url("../images/hkd.png");
}
.currency-flag.currency-flag-hnl {
  background-image: url("../images/hnl.png");
}
.currency-flag.currency-flag-hrk {
  background-image: url("../images/hrk.png");
}
.currency-flag.currency-flag-htg {
  background-image: url("../images/htg.png");
}
.currency-flag.currency-flag-huf {
  background-image: url("../images/huf.png");
}
.currency-flag.currency-flag-idr {
  background-image: url("../images/idr.png");
}
.currency-flag.currency-flag-ils {
  background-image: url("../images/ils.png");
}
.currency-flag.currency-flag-imp {
  background-image: url("../images/imp.png");
}
.currency-flag.currency-flag-inr {
  background-image: url("../images/inr.png");
}
.currency-flag.currency-flag-iqd {
  background-image: url("../images/iqd.png");
}
.currency-flag.currency-flag-irr {
  background-image: url("../images/irr.png");
}
.currency-flag.currency-flag-isk {
  background-image: url("../images/isk.png");
}
.currency-flag.currency-flag-jep {
  background-image: url("../images/jep.png");
}
.currency-flag.currency-flag-jmd {
  background-image: url("../images/jmd.png");
}
.currency-flag.currency-flag-jod {
  background-image: url("../images/jod.png");
}
.currency-flag.currency-flag-jpy {
  background-image: url("../images/JP--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/jpy.png');*/
}
.currency-flag.currency-flag-kes {
  background-image: url("../images/kes.png");
}
.currency-flag.currency-flag-kgs {
  background-image: url("../images/kgs.png");
}
.currency-flag.currency-flag-khr {
  background-image: url("../images/khr.png");
}
.currency-flag.currency-flag-kmf {
  background-image: url("../images/kmf.png");
}
.currency-flag.currency-flag-kpw {
  background-image: url("../images/kpw.png");
}
.currency-flag.currency-flag-krw {
  background-image: url("../images/krw.png");
}
.currency-flag.currency-flag-kwd {
  background-image: url("../images/kwd.png");
}
.currency-flag.currency-flag-kyd {
  background-image: url("../images/kyd.png");
}
.currency-flag.currency-flag-kzt {
  background-image: url("../images/kzt.png");
}
.currency-flag.currency-flag-lak {
  background-image: url("../images/lak.png");
}
.currency-flag.currency-flag-lbp {
  background-image: url("../images/lbp.png");
}
.currency-flag.currency-flag-lkr {
  background-image: url("../images/lkr.png");
}
.currency-flag.currency-flag-lrd {
  background-image: url("../images/lrd.png");
}
.currency-flag.currency-flag-lsl {
  background-image: url("../images/lsl.png");
}
.currency-flag.currency-flag-ltl {
  background-image: url("../images/ltl.png");
}
.currency-flag.currency-flag-lyd {
  background-image: url("../images/lyd.png");
}
.currency-flag.currency-flag-mad {
  background-image: url("../images/mad.png");
}
.currency-flag.currency-flag-mdl {
  background-image: url("../images/mdl.png");
}
.currency-flag.currency-flag-mga {
  background-image: url("../images/mga.png");
}
.currency-flag.currency-flag-mkd {
  background-image: url("../images/mkd.png");
}
.currency-flag.currency-flag-mmk {
  background-image: url("../images/mmk.png");
}
.currency-flag.currency-flag-mnt {
  background-image: url("../images/mnt.png");
}
.currency-flag.currency-flag-mop {
  background-image: url("../images/mop.png");
}
.currency-flag.currency-flag-mro {
  background-image: url("../images/mro.png");
}
.currency-flag.currency-flag-mur {
  background-image: url("../images/mur.png");
}
.currency-flag.currency-flag-mvr {
  background-image: url("../images/mvr.png");
}
.currency-flag.currency-flag-mwk {
  background-image: url("../images/mwk.png");
}
.currency-flag.currency-flag-mxn {
  background-image: url("../images/mxn.png");
}
.currency-flag.currency-flag-myr {
  background-image: url("../images/myr.png");
}
.currency-flag.currency-flag-mzn {
  background-image: url("../images/mzn.png");
}
.currency-flag.currency-flag-nad {
  background-image: url("../images/nad.png");
}
.currency-flag.currency-flag-ngn {
  background-image: url("../images/ngn.png");
}
.currency-flag.currency-flag-nio {
  background-image: url("../images/nio.png");
}
.currency-flag.currency-flag-nok {
  background-image: url("../images/nok.png");
}
.currency-flag.currency-flag-npr {
  background-image: url("../images/npr.png");
}
.currency-flag.currency-flag-nzd {
  background-image: url("../images/NZ--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/nzd.png');*/
}
.currency-flag.currency-flag-omr {
  background-image: url("../images/omr.png");
}
.currency-flag.currency-flag-pab {
  background-image: url("../images/pab.png");
}
.currency-flag.currency-flag-pen {
  background-image: url("../images/pen.png");
}
.currency-flag.currency-flag-pgk {
  background-image: url("../images/pgk.png");
}
.currency-flag.currency-flag-php {
  background-image: url("../images/php.png");
}
.currency-flag.currency-flag-pkr {
  background-image: url("../images/pkr.png");
}
.currency-flag.currency-flag-pln {
  background-image: url("../images/pln.png");
}
.currency-flag.currency-flag-pyg {
  background-image: url("../images/pyg.png");
}
.currency-flag.currency-flag-qar {
  background-image: url("../images/qar.png");
}
.currency-flag.currency-flag-ron {
  background-image: url("../images/ron.png");
}
.currency-flag.currency-flag-rsd {
  background-image: url("../images/rsd.png");
}
.currency-flag.currency-flag-rub {
  background-image: url("../images/rub.png");
}
.currency-flag.currency-flag-rwf {
  background-image: url("../images/rwf.png");
}
.currency-flag.currency-flag-sar {
  background-image: url("../images/sar.png");
}
.currency-flag.currency-flag-sbd {
  background-image: url("../images/sbd.png");
}
.currency-flag.currency-flag-scr {
  background-image: url("../images/scr.png");
}
.currency-flag.currency-flag-sek {
  background-image: url("../images/sek.png");
}
.currency-flag.currency-flag-sgd {
  background-image: url("../images/sgd.png");
}
.currency-flag.currency-flag-shp {
  background-image: url("../images/shp.png");
}
.currency-flag.currency-flag-sll {
  background-image: url("../images/sll.png");
}
.currency-flag.currency-flag-sos {
  background-image: url("../images/sos.png");
}
.currency-flag.currency-flag-srd {
  background-image: url("../images/srd.png");
}
.currency-flag.currency-flag-std {
  background-image: url("../images/std.png");
}
.currency-flag.currency-flag-svc {
  background-image: url("../images/svc.png");
}
.currency-flag.currency-flag-syp {
  background-image: url("../images/syp.png");
}
.currency-flag.currency-flag-szl {
  background-image: url("../images/szl.png");
}
.currency-flag.currency-flag-thb {
  background-image: url("../images/thb.png");
}
.currency-flag.currency-flag-tjs {
  background-image: url("../images/tjs.png");
}
.currency-flag.currency-flag-tmt {
  background-image: url("../images/tmt.png");
}
.currency-flag.currency-flag-tnd {
  background-image: url("../images/tnd.png");
}
.currency-flag.currency-flag-top {
  background-image: url("../images/top.png");
}
.currency-flag.currency-flag-try {
  background-image: url("../images/try.png");
}
.currency-flag.currency-flag-ttd {
  background-image: url("../images/ttd.png");
}
.currency-flag.currency-flag-twd {
  background-image: url("../images/twd.png");
}
.currency-flag.currency-flag-tzs {
  background-image: url("../images/tzs.png");
}
.currency-flag.currency-flag-uah {
  background-image: url("../images/uah.png");
}
.currency-flag.currency-flag-ugx {
  background-image: url("../images/ugx.png");
}
.currency-flag.currency-flag-usd {
  background-image: url("../images/US--big.svg"); /*background-image: url('https://wise.com/public-resources/assets/flags/rectangle/usd.png');*/
}
.currency-flag.currency-flag-uyu {
  background-image: url("../images/uyu.png");
}
.currency-flag.currency-flag-uzs {
  background-image: url("../images/uzs.png");
}
.currency-flag.currency-flag-vef {
  background-image: url("../images/vef.png");
}
.currency-flag.currency-flag-vnd {
  background-image: url("../images/vnd.png");
}
.currency-flag.currency-flag-vuv {
  background-image: url("../images/vuv.png");
}
.currency-flag.currency-flag-wst {
  background-image: url("../images/wst.png");
}
.currency-flag.currency-flag-xaf {
  background-image: url("../images/xaf.png");
}
.currency-flag.currency-flag-xcd {
  background-image: url("../images/xcd.png");
}
.currency-flag.currency-flag-xof {
  background-image: url("../images/xof.png");
}
.currency-flag.currency-flag-xpf {
  background-image: url("../images/xpf.png");
}
.currency-flag.currency-flag-yer {
  background-image: url("../images/yer.png");
}
.currency-flag.currency-flag-zar {
  background-image: url("../images/zar.png");
}
.currency-flag.currency-flag-zmw {
  background-image: url("../images/zmw.png");
}

.metal-flag.metal-flag-gld {
  background-image: url("../images/gold--big.svg");
}
.metal-flag.metal-flag-silver {
  background-image: url("../images/silver--big.svg");
}
.metal-flag.metal-flag-copper {
  background-image: url("../images/copper--big.svg");
}
.metal-flag.metal-flag-palladium {
  background-image: url("../images/palladium.svg");
}
.metal-flag.metal-flag-platinum {
  background-image: url("../images/platinum.svg");
}

.energy-flag.energy-flag-ukoil {
  background-image: url("../images/crude-oil--big.svg");
}
.energy-flag.energy-flag-usoil {
  background-image: url("../images/crude-oil--big.svg");
}
.energy-flag.energy-flag-natgas {
  background-image: url("../images/natural-gas--big.svg");
}

.agricultural-flag.agricultural-flag-wheat {
  background-image: url("../images/wheat.svg");
}
.agricultural-flag.agricultural-flag-coffee {
  background-image: url("../images/coffee.svg");
}
.agricultural-flag.agricultural-flag-cocoa {
  background-image: url("../images/cocoa.svg");
}
.agricultural-flag.agricultural-flag-corn {
  background-image: url("../images/corn.svg");
}
.agricultural-flag.agricultural-flag-soybean {
  background-image: url("../images/soybean.svg");
}
.agricultural-flag.agricultural-flag-cotton {
  background-image: url("../images/cotton.svg");
}
.agricultural-flag.agricultural-flag-sugar {
  background-image: url("../images/sugar.svg");
}

.index-flag.index-flag-dxy {
  background-image: url("../images/US--big.svg");
}
.index-flag.index-flag-dow30 {
  background-image: url("../images/dow-30--big.svg");
}
.index-flag.index-flag-spx500 {
  background-image: url("../images/s-and-p-500--big.svg");
}
.index-flag.index-flag-nas100 {
  background-image: url("../images/nasdaq-100--big.svg");
}
.index-flag.index-flag-ger40 {
  background-image: url("../images/DE--big.svg");
}

.stock-flag.stock-flag-amazon {
  background-image: url("../images/amazon--big.svg");
}
.stock-flag.stock-flag-apple {
  background-image: url("../images/apple--big.svg");
}
.stock-flag.stock-flag-bp {
  background-image: url("../images/bp--big.svg");
}
.stock-flag.stock-flag-cisco {
  background-image: url("../images/cisco--big.svg");
}
.stock-flag.stock-flag-disney {
  background-image: url("../images/walt-disney--big.svg");
}
.stock-flag.stock-flag-ebay {
  background-image: url("../images/ebay--big.svg");
}
.stock-flag.stock-flag-exxon {
  background-image: url("../images/exxon--big.svg");
}
.stock-flag.stock-flag-facebook {
  background-image: url("../images/meta-platforms--big.svg");
}
.stock-flag.stock-flag-google {
  background-image: url("../images/alphabet--big.svg");
}
.stock-flag.stock-flag-lmt {
  background-image: url("../images/lockheed-martin--big.svg");
}
.stock-flag.stock-flag-microsoft {
  background-image: url("../images/microsoft--big.svg");
}
.stock-flag.stock-flag-tesla {
  background-image: url("../images/tesla--big.svg");
}
.stock-flag.stock-flag-walmart {
  background-image: url("../images/walmart--big.svg");
}
.stock-flag.stock-flag-adidas {
  background-image: url("../images/adidas--big.svg");
}
.stock-flag.stock-flag-bmw {
  background-image: url("../images/bmw--big.svg");
}
.stock-flag.stock-flag-dbk {
  background-image: url("../images/deutsche-bank-ag--big.svg");
}
.stock-flag.stock-flag-siemens {
  background-image: url("../images/siemens--big.svg");
}
.stock-flag.stock-flag-lvmh {
  background-image: url("../images/lvmh--big.svg");
}
.stock-flag.stock-flag-bofa {
  background-image: url("../images/bank-of-america--big.svg");
}
.stock-flag.stock-flag-netflix {
  background-image: url("../images/netflix--big.svg");
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.vu-table-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}
.vu-table-wrapper {
  padding: 15px;
}
.vu-table-wrapper .table {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
.vu-table-wrapper .tr {
  display: flex;
  position: relative;
}
.vu-table-wrapper .tr:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: #eee;
}
.vu-table-wrapper .tr:last-of-type:after {
  display: none !important;
}
.vu-table-wrapper .tr > * {
  flex: 1;
  text-align: right;
}
.vu-table-wrapper .tr > *:first-child {
  flex: 2;
  text-align: left;
}
.vu-table-wrapper .thead{
  position: relative;
  padding: 10px 0px;
  border-bottom: 1px solid #eee;
}
.vu-table-wrapper .tbody tr:hover {
  border-bottom-color: #fff;
}
.vu-table-wrapper .tbody .tr {
  border-radius: 6px;
  align-items: center;
}
.vu-table-wrapper .td,
.vu-table-wrapper .vu-table-wrapper .th{
  padding: 8px 12px;
}
.vu-table-wrapper .thead .th{
  padding: 0px 12px;
}
.vu-table-wrapper .item-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.vu-table-wrapper .tbody .item-name{
  position: relative;
  width: 100%;
  padding-left: 25px;
}
.vu-table-wrapper .tbody .item-name.upIcon::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('../images/up-icon.svg') no-repeat;
  background-size: 100% 100%;
  width: 17px;
  height: 30px;
}
.vu-table-wrapper .tbody .item-name.downIcon::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('../images/down-icon.svg') no-repeat;
  background-size: 100% 100%;
  width: 17px;
  height: 30px;
}
.vu-table-wrapper .flags {
  width: 32px;
  margin-right: 12px;
}
.vu-table-wrapper .flags > .currency-flag:first-child {
  transform: translateX(40%);
}
.vu-table-wrapper .flags > .currency-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-70%);
}
.vu-table-wrapper .flags > .metal-flag:first-child {
  transform: translateX(40%);
}
.vu-table-wrapper .flags > .metal-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-70%);
}
.vu-table-wrapper .flags > .agricultural-flag:first-child {
  transform: translateX(40%);
}
.vu-table-wrapper .flags > .agricultural-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-70%);
}
/*.vu-table-wrapper .flags > .index-flag:first-child { transform: translateX(40%)}*/
.vu-table-wrapper .flags > .index-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-35%);
}
/*.vu-table-wrapper .flags > .stock-flag:first-child { transform: translateX(40%)}*/
.vu-table-wrapper .flags > .stock-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-35%);
}
/*.vu-table-wrapper .flags > .energy-flag:first-child { position: relative; z-index: 2; transform: translateY(-35%)}*/
.vu-table-wrapper .flags > .energy-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-35%);
}

.vu-table-wrapper .currency-flag {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-wrapper .metal-flag {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-wrapper .agricultural-flag {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-wrapper .index-flag {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-wrapper .energy-flag {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-wrapper .stock-flag {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-wrapper .item-name strong {
  font-size: 13px;
  color: #1e53e5;
}
.vu-table-wrapper .item-name small {
  font-size: 13px;
  color: #888;
}
.vu-table-wrapper .value {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.vu-table-wrapper .value.up {
  color: #fff;
}
.vu-table-wrapper .value.origin{
  color: #b0e031;
  font-weight: 600;
}


.dolar-logo {
  position: relative;
}
.dolar-logo img{
  width: 50px;
  height: 50px;
}
.baslik-name {
  position: relative;
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.table-action{
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}
.listbutton {
  background:none;
  position: relative;
  border: 1px solid #FFF;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
  padding: 7px 10px;
  border-radius: 5px;
}
.listbutton:hover,
.listbutton.active {
  background: #FFF;
  border: 1px solid #FFF;
  color: #0c1c8d;
}

.symbol-content{
  position: relative;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.symbol-content .symbol-name{
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
  line-height: 1;
  margin-bottom: 5px;
}
.symbol-content .symbol-desc{
  position: relative;
  font-size: 13px;
  font-weight: 400;
  color: #FFF;
  line-height: 1;
  margin-bottom: 0px;
}
.symbol-content .symbol-val{
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #FFF;
  margin: 15px 0px 0px 0px;
}
.symbol-content.up{
  border: 2px solid #b0e031;
  background: rgb(176 224 49 / 25%);
}
.symbol-content.up .symbol-val{
  color: #b0e031;
}
.symbol-content.down{
  border: 2px solid #eb534c;
  background: rgb(255 66 67 / 25%);
}
.symbol-content.down .symbol-val{
  color: #eb534c;
}
.symbol-content.up::before{
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  background: url('../images/up-icon.svg') no-repeat;
  background-size: 100% 100%;
  width: 15px;
  height: 20px;
}
.symbol-content.down::before{
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  background: url('../images/down-icon.svg') no-repeat;
  background-size: 100% 100%;
  width: 15px;
  height: 20px;
}

.vu-table-wrapper .value.down {
  color: #fff;
}
.vu-table-wrapper .majorsbox {
  height: 0px;
  overflow: hidden;
}
.vu-table-wrapper .moremajors {
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  color: #00825a;
  cursor: pointer;
}
.vu-table-wrapper .moremajors.hidden {
  display: none;
}
.vu-table-wrapper .tbody {
  position: relative;
  overflow: hidden;
}
.vu-table-wrapper .tableLogo {
  border-radius: 35px;
  padding: 5px 40px 3px 10px;
  color: #00825a;
  font-size: 14px;
  position: absolute;
  bottom: 20px;
  right: -120px;
  z-index: 1;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  justify-content: center;
}
.vu-table-wrapper .tableLogo:hover {
  transition: all 0.3s ease-in-out;
  right: -30px;
}
.vu-table-wrapper .tableLogo img {
  width: 15px;
  padding-right: 25px;
}
.vu-table-wrapper .up-anim {
  -webkit-animation: fadeIn 0.1s ease-in 1 forwards;
  animation: fadeIn 0.1s ease-in 1 forwards;
  opacity: 0;
  background-color: #008053;
}
.vu-table-wrapper .down-anim {
  -webkit-animation: fadeIn 0.1s ease-in 1 forwards;
  animation: fadeIn 0.1s ease-in 1 forwards;
  opacity: 0;
  background-color: #e03131;
}
.vu-table-wrapper .td .up-anime {
  animation: fadeIn 0.2s ease-in 1 forwards;
  opacity: 0;
  color: #fff;
  background-color: #008053;
  border-radius: 5px;
}
.vu-table-wrapper .td .down-anime {
  animation: fadeIn 0.2s ease-in 1 forwards;
  opacity: 0;
  color: #fff;
  background-color: #e03131;
  border-radius: 5px;
}
.vu-table-wrapper .flags .symbolchar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.vu-table-wrapper .flags .symbolchar-circle-initials {
  position: relative;
  top: 0px;
  font-size: 25px;
  line-height: 40px;
  color: #fff;
  font-family: "Courier New", monospace;
  font-weight: bold;
}

.vu-table-single-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}
.vu-table-single-wrapper {
  border: solid 1px #dedede;
  border-radius: 8px;
  padding: 12px;
}
.vu-table-single-wrapper .table {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  width: 100%;
  border-collapse: collapse;
}
.vu-table-single-wrapper .tr {
  display: flex;
  position: relative;
}
.vu-table-single-wrapper .tr:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
}
.vu-table-single-wrapper .tr > * {
  flex: 1;
  text-align: right;
}
.vu-table-single-wrapper .tr > *:first-child {
  flex: 2;
  text-align: left;
}
.vu-table-single-wrapper .tbody tr:hover {
  border-bottom-color: #fff;
}
.vu-table-single-wrapper .tbody .tr {
  border-radius: 6px;
  align-items: center;
}
.vu-table-single-wrapper .tbody .tr:hover {
  background-color: #d4e4fd;
}
.vu-table-single-wrapper .td,
.vu-table-single-wrapper .vu-table-single-wrapper .th {
  padding: 8px 12px;
}
.vu-table-single-wrapper .flags {
  width: 32px;
  margin-right: 12px;
}
.vu-table-single-wrapper .flags > .currency-flag:first-child {
  transform: translateX(40%);
}
.vu-table-single-wrapper .flags > .currency-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-70%);
}
.vu-table-single-wrapper .flags > .metal-flag:first-child {
  transform: translateX(40%);
}
.vu-table-single-wrapper .flags > .metal-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-70%);
}
.vu-table-single-wrapper .flags > .agricultural-flag:first-child {
  transform: translateX(40%);
}
.vu-table-single-wrapper .flags > .agricultural-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-70%);
}
/*.vu-table-single-wrapper .flags > .index-flag:first-child { transform: translateX(40%)}*/
.vu-table-single-wrapper .flags > .index-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-35%);
}
/*.vu-table-single-wrapper .flags > .stock-flag:first-child { transform: translateX(40%)}*/
.vu-table-single-wrapper .flags > .stock-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-35%);
}
/*.vu-table-single-wrapper .flags > .energy-flag:first-child { position: relative; z-index: 2; transform: translateY(-35%)}*/
.vu-table-single-wrapper .flags > .energy-flag:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(-35%);
}

.vu-table-single-wrapper .currency-flag {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-single-wrapper .metal-flag {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-single-wrapper .agricultural-flag {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-single-wrapper .index-flag {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-single-wrapper .energy-flag {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-single-wrapper .stock-flag {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-position: center;
}
.vu-table-single-wrapper .item-name strong {
  font-size: 13px;
  color: #1e53e5;
}
.vu-table-single-wrapper .item-name small {
  font-size: 12px;
  color: #888;
}
.vu-table-single-wrapper .value {
  font-size: 30px;
  font-weight: 700;
}
.vu-table-single-wrapper .value.up {
  color: #22ab94;
}
.vu-table-single-wrapper .value.down {
  color: #f7525f;
}
.vu-table-single-wrapper .tbody {
  position: relative;
  overflow: hidden;
}
.vu-table-single-wrapper .tableLogo {
  border-radius: 35px;
  padding: 5px 40px 3px 10px;
  color: #00825a;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  bottom: 36px;
  right: -120px;
  z-index: 1;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  justify-content: center;
}
.vu-table-single-wrapper .tableLogo:hover {
  transition: all 0.3s ease-in-out;
  right: -30px;
}
.vu-table-single-wrapper .tableLogo img {
  width: 15px;
  padding-right: 25px;
}
.vu-table-single-wrapper .up-anim {
  -webkit-animation: fadeIn 0.1s ease-in 1 forwards;
  animation: fadeIn 0.1s ease-in 1 forwards;
  opacity: 0;
  background-color: #bbe2cf;
}
.vu-table-single-wrapper .down-anim {
  -webkit-animation: fadeIn 0.1s ease-in 1 forwards;
  animation: fadeIn 0.1s ease-in 1 forwards;
  opacity: 0;
  background-color: #ffcdd2;
}
.vu-table-single-wrapper .flags .symbolchar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.vu-table-single-wrapper .flags .symbolchar-circle-initials {
  position: relative;
  top: 0px;
  font-size: 25px;
  line-height: 40px;
  color: #fff;
  font-family: "Courier New", monospace;
  font-weight: bold;
}

@media screen and (max-width: 575px) {
  .vu-table-wrapper .value {
    font-size: 15px !important;
  }
  .vu-table-single-wrapper .value {
    font-size: 20px !important;
  }
}

header.header .mainMenu .navMenu ul li:nth-of-type(5) a{
	padding-right: 0px;
}
.blog-slider {
	width: 100%;
	position: relative;
	margin: auto;
	background: #fff;
	box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
	padding: 25px;
	border-radius: 25px;
	transition: all 0.3s;
}
@media screen and (max-width: 768px) {
	.blog-slider {
		margin: 110px auto 20px;
	}
}
.blog-slider__item {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.blog-slider__item {
		flex-direction: column;
	}
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
	opacity: 1;
	transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
	opacity: 1;
	transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
	transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
	transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
	transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
	transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
	transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
	transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
	transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
	transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
	transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
	transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
	transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
	transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
	transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
	transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
	transition-delay: 1.7s;
}
.blog-slider__img {
	width: 300px;
	flex-shrink: 0;
	height: 300px;
	background: rgb(12,89,142);
	background: radial-gradient(circle, rgba(12,89,142,1) 0%, rgba(12,28,142,1) 100%);
	box-shadow: 4px 13px 30px 1px rgba(12, 89, 142, 0.15);
	border-radius: 20px;
	transform: translateX(-80px);
	overflow: hidden;
}
.blog-slider__img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(12,89,142);
	background: radial-gradient(circle, rgba(12,89,142,1) 0%, rgba(12,28,142,1) 100%);
	border-radius: 20px;
	opacity: 0.3;
}
.blog-slider__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	border-radius: 20px;
	transition: all 0.3s;
}
@media screen and (max-width: 768px) {
	.blog-slider__img {
		transform: translateY(-50%);
		width: 90%;
	}
}
@media screen and (max-width: 576px) {
	.blog-slider__img {
		width: 95%;
	}
}
@media screen and (max-height: 500px) and (min-width: 992px) {
	.blog-slider__img {
		height: 270px;
	}
}
.blog-slider__content {
	padding-right: 25px;
}
@media screen and (max-width: 768px) {
	.blog-slider__content {
		margin-top: -80px;
		text-align: center;
		padding: 0 30px;
	}
}
@media screen and (max-width: 576px) {
	.blog-slider__content {
		padding: 0;
	}
}
.blog-slider__content > * {
	opacity: 0;
	transform: translateY(25px);
	transition: all 0.4s;
}
.blog-slider__code {
	color: #7b7992;
	margin-bottom: 15px;
	display: block;
	font-weight: 500;
}
.blog-slider__title {
	font-size: 24px;
	font-weight: 700;
	color: #0d0925;
	margin-bottom: 20px;
}
.blog-slider__text {
	color: #4e4a67;
	margin-bottom: 30px;
	line-height: 1.5em;
}
.blog-slider__button {
	display: inline-flex;
	background: rgb(12,89,142);
	background: radial-gradient(circle, rgba(12,89,142,1) 0%, rgba(12,28,142,1) 100%);
	padding: 10px 35px;
	border-radius: 50px;
	color: #fff;
	box-shadow: 0px 14px 80px rgba(12, 28, 142 0.4);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	justify-content: center;
	text-align: center;
	letter-spacing: 1px;
}
.blog-slider__button:hover{
	color: #FFF;
}
@media screen and (max-width: 576px) {
.blog-slider__button {
	width: 100%;
}
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}
.blog-slider__pagination {
	position: absolute;
	z-index: 21;
	right: 20px;
	width: 11px !important;
	text-align: center;
	left: auto !important;
	top: 50%;
	bottom: auto !important;
	transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
	.blog-slider__pagination {
		transform: translateX(-50%);
		left: 50% !important;
		top: 205px;
		width: 100% !important;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 8px 0;
}
@media screen and (max-width: 768px) {
	.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 5px;
	}
}
.blog-slider__pagination .swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	display: block;
	border-radius: 10px;
	background: #062744;
	opacity: 0.2;
	transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: #fd3838;
	height: 30px;
	box-shadow: 0px 0px 20px rgba(12, 28, 142 0.3);
}
@media screen and (max-width: 768px) {
	.blog-slider__pagination .swiper-pagination-bullet-active {
		height: 11px;
		width: 30px;
	}
}

header.header .mainMenu .navMenu ul.dropdown-menu{
    border-radius: 10px;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    border: 1px solid #eee;
}
header.header .mainMenu .navMenu ul li ul li{
    width: 100%;
    margin-left: 0px!important;
}

header.header .mainMenu .navMenu ul li ul li a{
    font-size: 12px;
    font-weight: 500;
    padding: 10px!important;
}


