@import url("https://fonts.googleapis.com/css2?family=Saira:wght@900&display=swap");
@font-face {
  font-family: "ITFDDevanagari", sans-serif;
  src: url("../fonts/ITFDevanagari.woff2") format("woff2"), url("../fonts/ITFDevanagari.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*********************************
VARIABLE
*********************************/
/*********************************
COMMON STYLE
*********************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}
.clearfix .helper {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

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

a, a:hover, a:focus,
input, input:hover, input:focus,
textarea, textarea:hover, textarea:focus,
button, button:hover, button:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  height: 100%;
}

body {
  position: relative;
  font-family: "ITFDDevanagari", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  background-color: #010e17;
  margin: 0;
}
body:before {
  content: "";
  display: block;
  width: 100%;
  height: 948px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/main/top-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1215px;
  width: 100%;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col {
  position: relative;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .col {
    padding-right: 0;
    padding-left: 0;
  }
}

@media only screen and (max-width: 1300px) {
  .hidden-md {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .hidden-sm {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .col-md-96 {
    flex-basis: 80%;
    width: 80%;
    max-width: 80%;
  }
}

@media only screen and (min-width: 768px) {
  .col-md-24 {
    flex-basis: 20%;
    width: 20%;
    max-width: 20%;
  }
}

@media only screen and (min-width: 1301px) {
  .col-elg-36 {
    flex-basis: 26%;
    width: 26%;
    max-width: 26%;
  }
}

@media only screen and (min-width: 1301px) {
  .col-elg-84 {
    flex-basis: 73%;
    width: 73%;
    max-width: 73%;
  }
}

/*content*/
.main-content-wrapper {
  background-image: url(../images/main/body-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1 0 auto;
  padding: 46px 0 135px;
}
@media only screen and (max-width: 1300px) {
  .main-content-wrapper {
    padding: 46px 0 76px;
  }
}
@media only screen and (max-width: 767px) {
  .main-content-wrapper {
    padding: 30px 0 135px;
  }
}

/*Menu*/
.nav-menu-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.nav-menu-wrapper:before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: rgba(51, 160, 202, 0.3);
}
@media only screen and (max-width: 767px) {
  .nav-menu-wrapper {
    width: 100%;
  }
  .nav-menu-wrapper:before {
    content: "";
    position: absolute;
    top: -1px;
    height: 1px;
    left: 0;
    width: 100%;
    background-color: rgba(51, 160, 202, 0.3);
  }
}

#menu-top-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  width: inherit;
}

.nav-menu-wrapper .menu-item {
  list-style-type: none;
}
.nav-menu-wrapper .menu-item.current_page_item a {
  background-color: #33a0ca;
}
.nav-menu-wrapper .menu-item.current_page_item a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 8px 12px;
  border-color: transparent transparent #e6f7fd transparent;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}
.nav-menu-wrapper .menu-item a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 23px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 #128fcc;
  text-transform: uppercase;
  padding: 30px 38px;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .nav-menu-wrapper .menu-item a:hover {
    background-color: #33a0ca;
  }
  .nav-menu-wrapper .menu-item a:hover:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 8px 12px;
    border-color: transparent transparent #e6f7fd transparent;
  }
}
@media only screen and (max-width: 1300px) {
  .nav-menu-wrapper .menu-item a {
    font-size: 18px;
    letter-spacing: 0.39px;
    padding: 26px 28px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-menu-wrapper .menu-item {
    flex: 1 0 50%;
  }
  .nav-menu-wrapper .menu-item.active a {
    opacity: 1;
    background-color: transparent;
  }
  .nav-menu-wrapper .menu-item.active a:before {
    top: -1px;
    height: 100%;
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 10000px;
    background-color: #33a0ca;
    border: none;
    z-index: -1;
  }
  .nav-menu-wrapper .menu-item.active:nth-child(1) a:before {
    left: initial;
    right: 0;
  }
  .nav-menu-wrapper .menu-item.active:nth-child(2) a:before {
    left: 0;
  }
  .nav-menu-wrapper .menu-item a {
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.31px;
    opacity: 0.9;
    padding: 11px 15px;
  }
}

/*Header*/
.header-wrapper {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 767px) {
  .header-wrapper {
    margin: 0 0 15px 0;
  }
}

.header-main-title {
  font-weight: 900;
  font-size: 33px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1300px) {
  .header-main-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .header-main-title {
    letter-spacing: 0.39px;
    line-height: 1.35;
    background-image: url(../images/icons/logo-fst-mob.png);
    background-repeat: no-repeat;
    background-position: 100% 17%;
    -webkit-background-size: 85px auto;
    -moz-background-size: 85px auto;
    -o-background-size: 85px auto;
    background-size: 85px auto;
    min-height: 78px;
  }
  .header-main-title span {
    display: block;
    width: 60%;
  }
}

.title {
  font-weight: 900;
  font-size: 33px;
  letter-spacing: 0.5px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .title {
    letter-spacing: 0.39px;
    line-height: 1.35;
  }
}

.header-main-subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  margin: 38px 0 0 0;
  align-items: stretch;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  padding: 30px 110px 30px 30px;
  color: #fff;
  background: rgba(8, 31, 47, 0.5);
  box-shadow: 0 10px 30px 0 rgba(48, 167, 253, 0.5);
}
@media only screen and (max-width: 1300px) {
  .header-main-subtitle {
    margin: 38px 0 0 0;
    font-size: 16px;
    padding: 30px 100px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header-main-subtitle {
    margin: 28px 0 0 0;
    padding: 15px 70px 15px 15px;
  }
}

.flag {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: -38px;
  right: 38px;
  width: 76px;
  height: 76px;
  overflow: hidden;
  z-index: 1;
}
.flag span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.flag img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .flag {
    height: 59px;
    width: 59px;
    top: -28px;
    right: 20px;
  }
}

/*Cards*/
.card-block-wrapper {
  margin: 46px 0 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) {
  .card-block-wrapper {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .card-block-wrapper {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin: 46px 0 0;
  }
}

.card-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 0 0;
  font-family: "Saira", sans-serif;
  align-items: center;
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.card-title img {
  height: 70px;
  width: auto;
  margin: 0 16px 0 0;
}
@media only screen and (max-width: 1300px) {
  .card-title img {
    height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .card-title {
    padding: 0;
  }
  .card-title img {
    height: 58px;
    margin: 0 20px 0 0;
  }
}

.card-block-position-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 0 30px;
  padding: 10px;
  min-height: 172px;
  justify-content: space-between;
  background-color: #071824;
  overflow: hidden;
}
.card-block-position-wrapper:not(:first-child) {
  border-top: 1px solid #0d2e46;
}
.card-block-position-wrapper:nth-child(1) .cart-logo-wrapper:before {
  background-image: url(../images/icons/medal-1@2x.png);
}
.card-block-position-wrapper:nth-child(2) {
  border-radius: 0 0 20px 20px;
}
.card-block-position-wrapper:nth-child(2) .cart-logo-wrapper:before {
  background-image: url(../images/icons/medal-2@2x.png);
}
.card-block-position-wrapper:nth-child(3) .cart-logo-wrapper:before {
  background-image: url(../images/icons/medal-3@2x.png);
}
@media only screen and (max-width: 1025px) {
  .card-block-position-wrapper {
    gap: 0 38px;
    min-height: 238px;
    border-radius: 20px 20px 0 0;
  }
  .card-block-position-wrapper:nth-child(2) {
    border-radius: 20px 20px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .card-block-position-wrapper {
    gap: 0 20px;
  }
}
@media only screen and (min-width: 425px) {
  .card-block-position-wrapper {
    min-height: 172px;
  }
}
@media only screen and (min-width: 992px) {
  .card-block-position-wrapper {
    padding: 10px 30px 10px 10px;
    min-height: 142px;
  }
}

.cart-logo-wrapper {
  position: relative;
  max-width: 190px;
  width: 100%;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100%;
}
.cart-logo-wrapper:before {
  content: "";
  position: absolute;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  top: -10px;
  left: -11px;
  height: 57px;
  width: 40px;
  background-repeat: no-repeat;
  z-index: 2;
}
.cart-logo-wrapper .tracking-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
  overflow: hidden;
}
.cart-logo-wrapper .tracking-link img {
  max-width: 152px;
  width: 100%;
  height: auto;
  max-height: 89px;
  object-fit: contain;
  object-position: center center;
}
.cart-logo-wrapper .tracking-link .partner {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 13px;
  left: -50px;
  width: 150px;
  height: 27px;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  transform-origin: center;
}
.cart-logo-wrapper .tracking-link .partner img {
  max-height: 16px;
  max-width: 50px;
}
@media only screen and (min-width: 992px) {
  .cart-logo-wrapper .tracking-link {
    align-self: center;
  }
  .cart-logo-wrapper .tracking-link:hover .card-content-logo-after {
    right: 0;
  }
}
@media only screen and (max-width: 1025px) {
  .cart-logo-wrapper {
    max-width: 152px;
    width: 100%;
  }
  .cart-logo-wrapper .tracking-link {
    flex-direction: column-reverse;
    align-items: center;
    min-height: 100%;
  }
  .cart-logo-wrapper .tracking-link img {
    margin: auto auto 10px;
    max-width: 120px;
  }
}

.card-content-logo-after {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.48);
  -webkit-transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
  -moz-transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
  -ms-transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
  -o-transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
  transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
}
@media only screen and (min-width: 992px) {
  .card-content-logo-after {
    -webkit-transition: 0.2s 0s ease all;
    -moz-transition: 0.2s 0s ease all;
    -ms-transition: 0.2s 0s ease all;
    -o-transition: 0.2s 0s ease all;
    transition: 0.2s 0s ease all;
  }
}

.card-content-after-button {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.52px;
  padding: 15px 5px;
  width: 93%;
  text-align: center;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  border: 2px solid #ffffff;
}
@media only screen and (max-width: 1300px) {
  .card-content-after-button {
    font-size: 12px;
    letter-spacing: 0.41px;
    padding: 12px 5px;
  }
}

.card-content-title .tracking-link {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #697998;
  text-transform: lowercase;
  margin: 0 0 10px;
}
@media only screen and (max-width: 1300px) {
  .card-content-title .tracking-link {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .card-content-title .tracking-link {
    font-size: 8px;
    letter-spacing: 0.45px;
  }
}

.card-content-subtitle {
  font-size: 18px;
  font-weight: 900;
  color: #3b3c6d;
  line-height: 1.39;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}
.card-content-subtitle span {
  color: #5bdb00;
}
@media only screen and (max-width: 1300px) {
  .card-content-subtitle {
    font-size: 14px;
    line-height: 1.31;
  }
}
@media only screen and (max-width: 767px) {
  .card-content-subtitle {
    font-size: 13px;
    letter-spacing: 0.42px;
  }
}

.card-content-text-block {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  color: #e0edff;
}
.card-content-text-block strong {
  font-weight: 700;
}
.card-content-text-block ul {
  margin: 0;
  padding-left: 0;
}
.card-content-text-block ul:not(:last-child),
.card-content-text-block p:not(:last-child) {
  margin-bottom: 10px;
}
.card-content-text-block p,
.card-content-text-block li {
  color: #e0edff;
  line-height: 1.57;
}
.card-content-text-block li {
  padding-left: 25px;
  position: relative;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .card-content-text-block li {
    padding-left: 22px;
  }
}
.card-content-text-block li:before {
  position: absolute;
  left: 3px;
  content: "";
  top: 0px;
  width: 17px;
  height: 19px;
  background-image: url("../images/icons/list-medal.png");
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .card-content-text-block li:before {
    left: 0px;
  }
}

.card-content-link {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #f29b1f;
  text-decoration: underline;
  text-transform: lowercase;
  margin: 10px 0 0;
}
@media only screen and (max-width: 1300px) {
  .card-content-link {
    font-size: 9px;
    margin: 5px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .card-content-link {
    font-size: 8px;
    letter-spacing: 0.45px;
    margin: 10px 0 0;
  }
}

.rating-mob {
  display: none;
}
@media only screen and (max-width: 1025px) {
  .rating-mob {
    margin: auto 0 10px 0;
    font-family: "Saira", sans-serif;
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-align: center;
  }
}

.card-content-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Saira", sans-serif;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 90px;
  width: 100%;
  font-size: 40px;
  font-weight: 900;
  color: #FFAA06;
}
@media only screen and (max-width: 1300px) {
  .card-content-rating {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1025px) {
  .card-content-rating {
    display: none;
  }
}

.rating-border {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
.rating-border span {
  height: 8px;
  width: 8px;
  background-color: #0e2b41;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 4px 0;
}
@media only screen and (max-width: 1300px) {
  .rating-border span {
    height: 6px;
    width: 6px;
    margin: 3px 0;
  }
}

.custom-card-content {
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 1025px) {
  .custom-card-content {
    margin: 0;
  }
}
@media only screen and (min-width: 564px) {
  .custom-card-content {
    max-width: 210px;
    width: 100%;
  }
}

.card-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.card-btn .tracking-link {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 20px 40px;
  display: block;
  width: 95%;
  font-family: "Saira", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(180deg, #0D92F2 14.58%, #34A9FE 51.56%, #00487B 100%), linear-gradient(180deg, #2291E2 9.38%, #0A2538 56.77%, #2291E2 100%);
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #2291e2;
  transition: all ease 0.3s;
}
.card-btn .tracking-link:hover {
  animation: pulse-shadow linear 1.1s infinite;
}
@media only screen and (max-width: 1025px) {
  .card-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    height: 100%;
    flex: 0 0 auto;
  }
  .card-btn .tracking-link {
    padding: 14px 32px;
    letter-spacing: 0.39px;
  }
}
@media only screen and (max-width: 564px) {
  .card-btn .tracking-link {
    padding: 14px 24px;
    font-size: 16px;
  }
}

.card-content-helper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  align-self: stretch;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .card-content-helper {
    flex-direction: column;
    align-self: center;
  }
}

.card-content-text-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  max-width: 236px;
  width: 100%;
}
@media only screen and (max-width: 1025px) {
  .card-content-text-wrapper {
    max-width: 100%;
  }
}

.content {
  font-size: 16px;
  letter-spacing: 0.3px;
  font-weight: 400;
  color: #333333;
  margin: 40px 0;
}

/*Footer*/
.footer-wrapper-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.footer-logo-menu-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 50%;
}
@media only screen and (max-width: 767px) {
  .footer-logo-menu-wrapper {
    flex: 0 1 100%;
    order: 0;
    justify-content: flex-start;
  }
}

.footer-wrapper {
  margin: 0;
  padding: 40px 0;
  background-color: #010e17;
  border-top: 1px solid #083d5b;
}
@media only screen and (max-width: 767px) {
  .footer-wrapper {
    margin: 0 15px;
    padding: 20px 0 40px;
  }
}

.footer-logo-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-menu img {
  height: 96px;
  width: auto;
  margin: 0 10px 0 0;
}
.footer-logo-menu .logo-menu-txt {
  font-size: 30px;
  color: #e0edff;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 1300px) {
  .footer-logo-menu {
    flex: 1 0 auto;
  }
  .footer-logo-menu img {
    height: 80px;
  }
  .footer-logo-menu .logo-menu-txt {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-logo-menu img {
    height: 60px;
  }
  .footer-logo-menu .logo-menu-txt {
    font-size: 20px;
  }
}

.footer-nav-menu-wrapper {
  flex: 0 1 50%;
}
@media only screen and (max-width: 1300px) {
  .footer-nav-menu-wrapper {
    flex: 0 1 70%;
  }
}
@media only screen and (max-width: 767px) {
  .footer-nav-menu-wrapper {
    flex: 0 1 100%;
    order: 1;
  }
}

.footer-nav-menu-inner {
  margin: 0 -23px;
}
@media only screen and (max-width: 767px) {
  .footer-nav-menu-inner {
    margin: 25px 0 50px;
  }
}

#menu-footer-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #menu-footer-menu {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-nav-menu-inner .menu-item {
  list-style-type: none;
}
.footer-nav-menu-inner .menu-item.current-menu-item a {
  color: #5cc9f3;
}
.footer-nav-menu-inner .menu-item a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  padding: 5px 0;
  margin: 17px 23px;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}
@media only screen and (min-width: 992px) {
  .footer-nav-menu-inner .menu-item a:hover {
    color: #5cc9f3;
  }
}
@media only screen and (max-width: 1300px) {
  .footer-nav-menu-inner .menu-item a {
    font-size: 12px;
    letter-spacing: 0.23px;
    padding: 5px 0;
    margin: 37px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-nav-menu-inner .menu-item a {
    margin: 5px 0;
    padding: 5px 0;
  }
}

.footer-partner-wrapper {
  flex: 0 1 48%;
  margin: 0 0 0 auto;
}
.footer-partner-wrapper .footer-partner {
  margin: 0 25px;
}
.footer-partner-wrapper img {
  height: auto;
  width: auto;
}
@media only screen and (max-width: 1300px) {
  .footer-partner-wrapper .footer-partner {
    margin: 0 15px;
  }
  .footer-partner-wrapper img {
    max-height: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-partner-wrapper {
    margin: 50px 0 0 0;
    flex: 0 1 100%;
    order: 2;
  }
  .footer-partner-wrapper .footer-partner {
    margin: 0 5px;
  }
}

.footer-partner-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -25px;
  min-height: 100%;
}
@media only screen and (max-width: 1300px) {
  .footer-partner-inner {
    margin: 0 -15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-partner-inner {
    justify-content: space-around;
    margin: 0 -5px;
  }
}

.copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 50%;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #e0edff;
  letter-spacing: 0.3px;
  margin: 20px 0 0 0;
}
@media only screen and (max-width: 1300px) {
  .copyright {
    flex: 0 1 30%;
  }
}
@media only screen and (max-width: 767px) {
  .copyright {
    margin: 24px 0 0 0;
    flex: 0 1 100%;
    order: 3;
    max-width: 80%;
  }
}

/*Banners*/
.banner-content-wrapper {
  padding: 91px 0 0;
}

.banner-block-wrapper {
  margin: 0 0 40px;
}

.banner-logo-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 136px;
}
.banner-logo-header img {
  width: 100%;
}

.banner-block {
  display: block;
}
@media only screen and (min-width: 768px) {
  .banner-block {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px #d4e1f6;
    padding: 10px;
  }
}
.banner-block img {
  height: auto;
  width: 100%;
  vertical-align: middle;
}

.banner-wrapper-mob {
  display: none;
}
.banner-wrapper-mob img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .banner-wrapper-mob {
    display: block;
    margin: 0 -25px;
  }
  .banner-wrapper-mob .widget {
    margin: 0 0 20px;
  }
}

.textwidget {
  text-align: center;
}

.banner-wrapper-320-320 {
  height: 320px;
  width: 320px;
}

.anim {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.anim:before {
  position: relative;
  display: block;
  content: "";
  margin: 100% 0 0;
}
.anim:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.animation .anim {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.animation .anim:after {
  -moz-animation: anim-out-pseudo-list 0.75s;
  -webkit-animation: anim-out-pseudo-list 0.75s;
  animation: anim-out-pseudo-list 0.75s;
}

/* animations */
@-webkit-keyframes pulse-shadow {
  from {
    box-shadow: 0 5px 6px 0 rgba(0, 91, 157, 0.49), 0 2px 8px 0 rgba(0, 91, 157, 0.43), 0 2px 25px 0 rgba(0, 91, 157, 0.25), 0 49px 5px 0 rgba(0, 91, 157, 0.07), 0 85px 11px 0 rgba(0, 91, 157, 0.01);
  }
  to {
    box-shadow: 0 0 0 24px rgba(22, 219, 147, 0);
  }
}
@-moz-keyframes pulse-shadow {
  from {
    box-shadow: 0 5px 6px 0 rgba(0, 91, 157, 0.49), 0 2px 8px 0 rgba(0, 91, 157, 0.43), 0 2px 25px 0 rgba(0, 91, 157, 0.25), 0 49px 5px 0 rgba(0, 91, 157, 0.07), 0 85px 11px 0 rgba(0, 91, 157, 0.01);
  }
  to {
    box-shadow: 0 0 0 24px rgba(22, 219, 147, 0);
  }
}
@-ms-keyframes pulse-shadow {
  from {
    box-shadow: 0 5px 6px 0 rgba(0, 91, 157, 0.49), 0 2px 8px 0 rgba(0, 91, 157, 0.43), 0 2px 25px 0 rgba(0, 91, 157, 0.25), 0 49px 5px 0 rgba(0, 91, 157, 0.07), 0 85px 11px 0 rgba(0, 91, 157, 0.01);
  }
  to {
    box-shadow: 0 0 0 24px rgba(22, 219, 147, 0);
  }
}
@keyframes pulse-shadow {
  from {
    box-shadow: 0 5px 6px 0 rgba(0, 91, 157, 0.49), 0 2px 8px 0 rgba(0, 91, 157, 0.43), 0 2px 25px 0 rgba(0, 91, 157, 0.25), 0 49px 5px 0 rgba(0, 91, 157, 0.07), 0 85px 11px 0 rgba(0, 91, 157, 0.01);
  }
  to {
    box-shadow: 0 0 0 24px rgba(22, 219, 147, 0);
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out-pseudo-list {
  0% {
    background: #268901;
  }
  100% {
    background: rgba(38, 137, 1, 0);
  }
}
@-webkit-keyframes anim-out-pseudo-list {
  0% {
    background: #268901;
  }
  100% {
    background: rgba(38, 137, 1, 0);
  }
}

/*# sourceMappingURL=style.css.map */
