/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  display: inline-block;
  padding: 0;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  background-image: none;
  border: none;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

button:focus, button:hover {
  outline: none;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

svgsvg:not(:root) {
  overflow: hidden;
}

form {
  display: block;
  margin-top: 0em;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
       -moz-animation-duration: 0.01ms !important;
         -o-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
       -moz-animation-iteration-count: 1 !important;
         -o-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
       -moz-transition-duration: 0.01ms !important;
         -o-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

img.imgFull {
  width: 100%;
  height: auto;
}

.red {
  color: red;
}

.pa {
  position: absolute;
}

.pr {
  position: relative;
}

.px {
  position: fixed;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-round.orange, .btn.orange {
  background-color: #f5a623;
  color: #fff;
  font-size: 1.4rem;
}

.overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background: rgba(0, 0, 0, 0.53);
  opacity: 0;
  pointer-events: none;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-lc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fw-light {
  font-weight: 300;
}

.fw-semi-bold {
  font-weight: 600;
}

.fw-bold {
  font-weight: bold;
}

.fw-medium {
  font-weight: 500;
}

.gray {
  color: #808184;
}

.owl-controls {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
}

.owl-controls .owl-buttons {
  position: relative;
  pointer-events: visible;
  top: 50%;
  left: 0;
}

.owl-controls .owl-buttons > div {
  -webkit-background-size: 100% 100% !important;
     -moz-background-size: 100% !important;
          background-size: 100% !important;
  position: absolute;
  text-indent: -999em;
}

.owl-controls .owl-buttons .owl-next {
  right: 0;
}

.owl-controls .owl-pagination {
  position: absolute;
  width: 100%;
  text-align: center;
  pointer-events: visible;
}

.owl-controls .owl-pagination .owl-page {
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  background: #ffffff;
  display: inline-block;
}

.owl-controls .owl-pagination .owl-page.active {
  background: #0055a8;
}

body, html {
  background: #ffffff;
  font-family: Barlow, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

body.fixed, html.fixed {
  overflow: hidden;
}

.rightSide {
  width: 300px;
}

.leftSide {
  width: 620px;
}

header {
  position: relative;
  z-index: 2;
}

main {
  position: relative;
  z-index: 1;
}

.fixCen {
  width: 960px;
  margin: auto;
  position: relative;
}

h1.title {
  font-weight: bold;
  font-size: 32px;
  text-transform: uppercase;
  position: relative;
  color: #02519e;
  text-align: center;
}

h1.title a {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: #02519e;
}

h1.title a:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

h1.title:after {
  content: '';
  z-index: 1;
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  right: 0;
  bottom: 6px;
  background: #02519e;
}

h2.title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

h3.title {
  font-size: 25px;
  font-weight: 500;
}

h2.bgTitle {
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  font-size: 18px;
}

h2.bgTitle > a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

h2.bgTitle > a:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

h2.bgTitle > a:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  display: block;
  top: 0;
  right: -22px;
  border-bottom: 11px solid transparent;
  border-right: 11px solid transparent;
}

h2.bgTitle > a.red {
  background: #dc362f;
}

h2.bgTitle > a.red:after {
  border-left: 11px solid #dc362f;
}

h2.bgTitle > a.green {
  background: #50a042;
}

h2.bgTitle > a.green:after {
  border-left: 11px solid #50a042;
}

h2.bgTitle > a.pink {
  background: #e30b59;
}

h2.bgTitle > a.pink:after {
  border-left: 11px solid #e30b59;
}

h2.bgTitle > a.blue {
  background: #34499c;
}

h2.bgTitle > a.blue:after {
  border-left: 11px solid #34499c;
}

h2.bgTitle > a.weakBlue {
  background: #395471;
}

h2.bgTitle > a.weakBlue:after {
  border-left: 11px solid #395471;
}

h2.bgTitle > a.strongRed {
  background: #8b0304;
}

h2.bgTitle > a.strongRed:after {
  border-left: 11px solid #8b0304;
}

h2.bgTitle > a.orange {
  background: #f8aa00;
}

h2.bgTitle > a.orange:after {
  border-left: 11px solid #f8aa00;
}

h2.bgTitle.hasLine:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -2px;
}

h2.bgTitle.hasLine.red:after {
  background: #dc362f;
}

h2.bgTitle.hasLine.green:after {
  background: #50a042;
}

h2.bgTitle.hasLine.pink:after {
  background: #e30b59;
}

h2.bgTitle.hasLine.blue:after {
  background: #34499c;
}

h2.bgTitle.hasLine.weakBlue:after {
  background: #395471;
}

h2.bgTitle.hasLine.strongRed:after {
  background: #8b0304;
}

h2.bgTitle.hasLine.orange:after {
  background: #f8aa00;
}

.setBg {
  -webkit-background-size: cover !important;
     -moz-background-size: cover !important;
          background-size: cover !important;
}

.setBg img {
  opacity: 0;
}

.btnGoTop {
  display: block;
  width: 35px;
  height: 35px;
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.navbar-toggle {
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  display: none;
  float: none;
  height: 29px;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 20px;
  top: 5px;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  width: 27px;
  z-index: 100000;
}

.navbar-toggle .icon-bar {
  background: #02519e;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  height: 3px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  -webkit-transition: .35s;
  -o-transition: .35s;
  -moz-transition: .35s;
  transition: .35s;
  width: 100%;
}

.navbar-toggle .icon-bar-1 {
  top: 5px;
}

.navbar-toggle .icon-bar-2 {
  top: 13px;
}

.navbar-toggle .icon-bar-3 {
  top: 21px;
}

.navbar-toggle.trans {
  left: 50%;
}

.navbar-toggle.trans .icon-bar-1 {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 13px;
}

.navbar-toggle.trans .icon-bar-2 {
  display: none;
}

.navbar-toggle.trans .icon-bar-3 {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 13px;
}

.searchForm button {
  background: #02519e;
  width: 60px;
  padding: 0;
}

.searchForm button img {
  margin: auto;
}

.searchForm input, .searchForm button {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  height: 25px;
  border: none;
}

#topBar {
  background: #bad3ed;
  height: 40px;
  line-height: 40px;
}

#topBar .fixCen {
  width: 1024px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#topBar .left {
  width: 240px;
}

#topBar .right {
  width: 460px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#topBar #searchFormTop {
  width: 240px;
  height: 25px;
}

#topBar .btnRegisMember {
  color: #02519e;
  background: url("../../assets/img/i_user.png") 0 center no-repeat;
  -webkit-background-size: 15px 15px;
     -moz-background-size: 15px;
          background-size: 15px;
  padding-left: 20px;
  height: 19px;
  line-height: 22px;
  font-weight: bold;
  text-transform: capitalize;
  display: block;
  margin: 0 20px;
}

#topBar .btnRegisMember:hover {
  color: #ffffff;
}

#topBar .chooseLanguage {
  height: 27px;
}

#topBar .chooseLanguage a {
  display: inline-block;
  width: 26px;
}

.centerHeader {
  background: url("../../assets/img/bg1.jpg") center top no-repeat;
  height: 111px;
}

.centerHeader .fixCen {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.centerHeader .logo {
  display: block;
  width: 62px;
  margin: 0;
}

.centerHeader .logo a {
  display: block;
}

.centerHeader .text {
  color: #02519e;
  text-align: center;
  font-size: 28px;
  width: 500px;
  line-height: 35px;
  margin: auto;
}

#mainMenu {
  height: 32px;
  background: #02519e;
}

#mainMenu .fixCen {
  width: 1024px;
}

#mainMenu ul {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
}

#mainMenu ul li {
  padding: 0 15px;
  position: relative;
}

#mainMenu ul li.hasSubMenu:after {
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  margin-left: 5px;
  border-top: 6px solid #ffffff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -2px;
}

#mainMenu ul li > a {
  color: #ffffff;
  font-size: 15px;
  text-transform: capitalize;
}

#mainMenu ul li a {
  height: 32px;
  line-height: 32px;
}

#mainMenu ul li .sub-menu {
  position: absolute;
  top: 32px;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  display: none;
}

#mainMenu ul li .sub-menu .sub-item {
  font-size: 14px;
  text-transform: uppercase;
  color: #000000;
  display: block;
  border-bottom: thin solid #000000;
  padding: 0 10px;
}

#mainMenu ul li .sub-menu .sub-item:last-child {
  border: none;
}

#mainMenu ul li .sub-menu .sub-item:hover {
  color: #ffffff;
  background: #0023a8;
}

#mainMenu ul li:hover {
  background: #2e286b;
}

#mainMenu ul li.hasSubMenu:hover > .sub-menu {
  display: block;
}

.support-block {
  background: url("../..//assets/img/bg4.jpg") center top no-repeat;
  width: 100%;
  height: auto;
  -webkit-background-size: 100% 100%;
     -moz-background-size: 100% 100%;
          background-size: 100% 100%;
  font-weight: 500;
  padding: 10px 35px;
  margin: 25px 0 40px;
  color: #ffffff;
}

.support-block h3 {
  font-size: 15px;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: thin solid #ffffff;
}

.support-block a {
  color: #ffffff;
  font-weight: bold;
}

.support-block a:hover {
  color: #02519e;
}

.support-block .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}

.support-block .info > div {
  margin: 0 5px;
}

.support-block .info .left {
  width: 110px;
}

.support-block .info .right {
  width: 250px;
}

.support-block .info .right a {
  padding-left: 20px;
  -webkit-background-size: 15px 15px !important;
     -moz-background-size: 15px !important;
          background-size: 15px !important;
}

.support-block .info .right a:nth-child(1) {
  background: url("../../assets/img/i_red_phone.png") 0 center no-repeat;
}

.support-block .info .right a:nth-child(2) {
  background: url("../../assets/img/i_red_mail.png") 0 center no-repeat;
}

#partners .title {
  margin: 40px 0;
  color: #02519e;
}

#partners #sliderPartners {
  width: 100%;
}

#partners #sliderPartners a {
  display: block;
}

#partners #sliderPartners a img {
  margin: auto;
  max-width: 100%;
  width: auto;
}

#partners #sliderPartners .owl-controls .owl-buttons {
  width: 960px;
  margin: -17px 0 0 -480px;
}

#partners #sliderPartners .owl-controls .owl-buttons > div {
  background: url("../../assets/img/btn_prev2.png") no-repeat;
  width: 35px;
  height: 35px;
  opacity: 0.5;
}

#partners #sliderPartners .owl-controls .owl-buttons > div:hover {
  opacity: 1;
}

#partners #sliderPartners .owl-controls .owl-buttons .owl-next {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

footer {
  margin-top: 50px;
  padding: 40px 0;
  font-size: 14px;
  background: #193283;
  color: #ffffff;
  font-weight: 400;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer h2, footer h3, footer .copyRight {
  width: 100%;
}

footer h2.title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}

footer h3.title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 25px;
}

footer .left, footer .right {
  width: 44%;
}

footer .copyRight {
  margin-top: 25px;
  font-weight: 200;
  font-style: italic;
  text-align: center;
}

footer ul li {
  padding-left: 25px;
  margin: 5px 0;
}

footer ul li:nth-child(1) {
  background: url("../../assets/img/i_add.png") 0 center no-repeat;
  -webkit-background-size: 14px 14px;
     -moz-background-size: 14px;
          background-size: 14px;
}

footer ul li:nth-child(2) {
  background: url("../../assets/img/i_phone.png") 0 center no-repeat;
  -webkit-background-size: 19px 19px;
     -moz-background-size: 19px;
          background-size: 19px;
}

footer ul li:nth-child(3) {
  background: url("../../assets/img/i_mail.png") 0 center no-repeat;
  -webkit-background-size: 16px 16px;
     -moz-background-size: 16px;
          background-size: 16px;
}

.showPagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.showPagination .pagination {
  font-size: 14px;
  margin-bottom: 20px;
}

.showPagination .pagination .page-link {
  color: #000000;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 30px;
  text-align: center;
  background: #e6e7e8;
}

.showPagination .pagination .page-link:hover {
  color: #ffffff;
}

.showPagination .pagination .page-item {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.showPagination .pagination .page-item:first-child a:before, .showPagination .pagination .page-item:last-child a:before {
  content: '';
  display: block;
  margin: 7px auto 0;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.showPagination .pagination .page-item:first-child a:before {
  border-right: 8px solid #02519e;
}

.showPagination .pagination .page-item:last-child {
  margin: 0;
}

.showPagination .pagination .page-item:last-child a:before {
  border-left: 8px solid #02519e;
}

.showPagination .pagination .page-item.active a, .showPagination .pagination .page-item:hover a {
  color: #ffffff;
  background: #02519e;
}

.showPagination .pagination .page-item:first-child.active a, .showPagination .pagination .page-item:first-child:hover a, .showPagination .pagination .page-item:last-child.active a, .showPagination .pagination .page-item:last-child:hover a {
  background: #e6e7e8;
}

.showPagination .justTxt {
  font-weight: 500;
  margin-bottom: 20px;
}

.showPagination .justTxt span {
  display: inline-block;
}

.popup {
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  z-index: 99999;
  opacity: 0;
}

.popup .bg_drop {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: #0000008f;
  display: none;
}

.popup .popupContent {
  top: -100%;
  left: 50%;
  width: 500px;
  height: 500px;
  margin: -250px 0 0 -250px;
  background: #ffffff;
  z-index: 2;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.popup .popupContent .closePopup {
  right: 10px;
  top: 0;
  font-size: 20px;
  color: #ffffff;
}

.popup .popupContent h2.title {
  font-weight: 500;
  background: #02519e;
  padding: 6px;
  color: #ffffff;
}

.popup .popupContent form {
  width: 80%;
  margin: 30px auto 0;
}

.popup .popupContent form label {
  display: block;
  width: 100%;
}

.popup .popupContent form .btnGroup {
  text-align: center;
}

.popup .popupContent form .btnGroup button {
  min-width: 100px;
  height: 40px;
  line-height: 40px;
  background: #02519e;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 5px;
  padding: 0 10px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.popup .popupContent form .btnGroup button:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

.popup .popupContent form .note {
  margin-top: 10px;
}

.popup .popupContent form .note a {
  text-transform: uppercase;
  color: #02519e;
  font-weight: bold;
}

.popup.showPopup {
  top: 0;
  opacity: 1;
}

.popup.showPopup .popupContent {
  opacity: 1;
  top: 50%;
}

#popupLogin {
  display: block;
}

@media (max-width: 1024px) {
  #mainMenu .fixCen, #topBar .fixCen {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 960px) {
  .leftSide {
    width: 100%;
  }
  .rightSide {
    width: 100%;
  }
  .owl-controls .owl-buttons {
    margin: -17px 0 0 0 !important;
  }

  .navbar-toggle {
    display: block;
  }
  #topBar .left {
    margin-left: 40px;
  }
  #mainMenu {
    position: fixed;
    width: 50%;
    height: 100%;
    top: 0;
    left: -50%;
    z-index: 999;
    background: none;
    -webkit-transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
  }
  #mainMenu ul {
    display: block;
    padding: 0;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #02519e;
    width: 100%;
    padding: 30px 0;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #mainMenu ul li {
    width: 100%;
    min-height: 40px;
    line-height: 40px;
  }
  #mainMenu ul li.hasSubMenu:after {
    display: none;
  }
  #mainMenu ul li > a {
    text-transform: uppercase;
    display: block;
    height: 100%;
    line-height: 40px;
  }
  #mainMenu ul li .sub-menu {
    position: relative;
    display: block;
    top: initial;
    left: initial;
    width: 100%;
    min-width: initial;
    background: none;
    padding: 0 30px;
  }
  #mainMenu ul li .sub-menu .sub-item {
    text-transform: capitalize;
    color: #ffffff;
    border-bottom: thin solid gray;
  }
  #mainMenu.active {
    left: 0;
  }
  #mainMenu.active .bg_drop {
    display: block;
  }
  #partners #sliderPartners .owl-controls .owl-buttons {
    left: 0px;
    width: 100%;
  }
}

@media (max-width: 790px) {
  .navbar-toggle {
    top: 9px;
  }
  #topBar {
    height: auto;
  }
  #topBar .fixCen {
    padding: 10px 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #topBar .left {
    display: none;
  }
}

@media (max-width: 768px) {
  footer .fixCen {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .navbar-toggle.trans {
    left: -webkit-calc(100% - 30px);
    left: -moz-calc(100% - 30px);
    left: calc(100% - 30px);
  }
  #mainMenu {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    left: -webkit-calc( 100% * (-1) + 30px);
    left: -moz-calc( 100% * (-1) + 30px);
    left: calc( 100% * (-1) + 30px);
  }
  .centerHeader {
    height: auto;
    padding: 20px 0;
    -webkit-background-size: 100% 100%;
       -moz-background-size: 100% 100%;
            background-size: 100% 100%;
  }
  .centerHeader .logo {
    margin: 0 auto 10px;
  }
  footer .left, footer .right {
    width: 100%;
  }
  footer .right {
    margin-top: 30px;
  }
}

@media (max-width: 580px) {
  #topBar .right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #topBar .right #searchFormTop {
    width: 70%;
    margin-bottom: 10px;
  }
  #topBar .right .btnRegisMember {
    margin-left: 0;
  }
  .popup .popupContent {
    width: 90%;
    left: 5%;
    height: auto;
    padding-bottom: 20px;
    margin: -250px 0 0 0;
  }
}

@media (max-width: 480px) {
  .support-block h3 {
    text-align: center;
  }
  .support-block .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .support-block .info .left {
    width: 100%;
  }
  .support-block .info .right {
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 380px) {
  .popup .popupContent h2.title {
    font-size: 20px;
  }
  .popup .popupContent form .btnGroup {
    text-align: center;
  }
  .popup .popupContent form .btnGroup button {
    width: 80px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
  }
}

.blue {
  background: #02519e;
}

.leftSide {
  width: 300px;
  position: absolute;
  top: 30px;
  right: 0;
}

.rightSide {
  width: 620px;
}

.groupBlock1 {
  background: url("../../assets/img/bg5.jpg") 0 center no-repeat;
  height: 298px;
  padding-top: 55px;
  text-align: center;
}

.groupBlock1 h2.titleGroup {
  color: #02519e;
  background: url("../../assets/img/i_blue_ques.png") 0 center no-repeat;
  height: 45px;
  line-height: 45px;
  padding-left: 60px;
  display: inline-block;
}

.groupBlock1 #formSearchInGroup {
  width: 460px;
  margin: 25px auto 0;
}

.groupBlock1 #formSearchInGroup input, .groupBlock1 #formSearchInGroup button {
  height: 30px;
}

.groupBlock1 #formSearchInGroup .searchKeyWord {
  color: #ffffff;
  font-style: italic;
  margin-top: 10px;
  font-weight: 500;
}

h3.title {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  color: #ffffff;
}

h2.titleGroup {
  color: #02519e;
  font-weight: 500;
  text-transform: uppercase;
  background: url("../../assets/img/i_arr.png") 0 center no-repeat;
  padding-left: 40px;
  text-align: left;
  margin-top: 30px;
}

.force:after {
  content: '';
  display: block;
  background: url("../../assets/img/star.png") no-repeat;
  width: 8px;
  height: 8px;
  -webkit-background-size: 8px 8px;
     -moz-background-size: 8px;
          background-size: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
  z-index: 2;
}

#menu4item {
  background: #cce8f2;
}

#menu4item .fixCen {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}

#menu4item .fixCen li {
  margin-left: 20px;
  width: 220px;
}

#menu4item .fixCen li:first-child {
  margin-left: 0;
}

#menu4item .fixCen li a {
  display: block;
  width: 100%;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

#menu4item .fixCen li a:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

#menu4item .fixCen li a .imgThumb {
  display: block;
  width: 100%;
  height: 230px;
  -webkit-background-size: cover !important;
     -moz-background-size: cover !important;
          background-size: cover !important;
}

#menu4item .fixCen li a span.txt {
  padding: 0 20px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #02519e;
}

.groupBlock2 {
  margin-top: 35px;
}

.groupBlock2 .hotNews {
  background: #d0d2d352;
  border: thin solid #d0d2d3;
  padding: 20px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  z-index: 1;
}

.groupBlock2 .hotNews .icon {
  border: thin solid #d0d2d3;
  border-bottom: thin solid #f0f1f1;
  display: block;
  left: -25px;
  top: 20px;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
  width: 28px;
  height: 25px;
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background: #d0d2d352;
  z-index: 2;
}

.groupBlock2 .infoBlock {
  background: #bad3ed;
  margin-top: 30px;
  padding-bottom: 30px;
}

.groupBlock2 .infoBlock .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0 20px;
}

.groupBlock2 .infoBlock p {
  width: 100%;
  margin: 10px 0 0 0;
  text-align: center;
  padding: 0 70px;
}

.groupBlock2 .infoBlock ul {
  display: inline-block;
  width: auto;
  margin: 30px auto 0;
  background: #ffffff;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  padding: 10px 25px;
  font-weight: 500;
  font-size: 18px;
}

.groupBlock2 .infoBlock ul li {
  width: 100%;
  display: block;
}

.groupBlock2 .infoBlock ul li:first-child {
  background: url("../../assets/img/i_blue_mail.png") 0 center no-repeat;
  padding-left: 30px;
}

.groupBlock2 .infoBlock ul li:last-child {
  background: url("../../assets/img/i_blue_phone.png") 0 center no-repeat;
  padding-left: 30px;
  margin-top: 10px;
}

.groupBlock2 .infoBlock ul li a {
  color: #000000;
}

.groupBlock2 .infoBlock ul li a:hover {
  color: #02519e;
}

.groupBlock2 .feedBackInfo {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 3px solid #02519e;
}

.groupBlock2 .feedBackInfo h3.title {
  text-transform: uppercase;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group input, .groupBlock2 .feedBackInfo #feedBackForm .form-group textarea {
  width: 100%;
  background: #f5f5f5;
  border: thin solid #d0d2d3;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  color: #6d6e70;
  min-height: 40px;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group input::-webkit-input-placeholder, .groupBlock2 .feedBackInfo #feedBackForm .form-group textarea::-webkit-input-placeholder {
  color: #6d6e70;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group input::-moz-placeholder, .groupBlock2 .feedBackInfo #feedBackForm .form-group textarea::-moz-placeholder {
  color: #6d6e70;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group input:-ms-input-placeholder, .groupBlock2 .feedBackInfo #feedBackForm .form-group textarea:-ms-input-placeholder {
  color: #6d6e70;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group input::placeholder, .groupBlock2 .feedBackInfo #feedBackForm .form-group textarea::placeholder {
  color: #6d6e70;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group .icon {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  margin-right: 10px;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group .icon img {
  display: block;
  margin: auto;
}

.groupBlock2 .feedBackInfo #feedBackForm .form-group:last-child {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.groupBlock2 .feedBackInfo #feedBackForm .capcha {
  max-width: 394px;
  margin: 40px auto 0;
}

.groupBlock2 .feedBackInfo #feedBackForm .btn-group {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.groupBlock2 .feedBackInfo #feedBackForm .btn-group button {
  height: 40px;
  width: 120px;
  -webkit-border-radius: 999px;
     -moz-border-radius: 999px;
          border-radius: 999px;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.groupBlock2 .feedBackInfo #feedBackForm .btn-group button:first-child {
  background: #bad3ed;
  color: #000000;
}

.groupBlock2 .feedBackInfo #feedBackForm .btn-group button:last-child {
  background: #02519e;
  color: #ffffff;
}

.groupBlock2 .feedBackInfo #feedBackForm .btn-group button:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.groupBlock3 {
  margin-top: 30px;
}

.groupBlock3 .content {
  margin: 30px 0;
}

.groupBlock3 .myTable {
  width: 100%;
  margin-top: 20px;
  font-weight: 500;
}

.groupBlock3 .myTable thead {
  background: #02519e;
}

.groupBlock3 .myTable thead th {
  height: 40px;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  border-left: 2px solid #fff;
}

.groupBlock3 .myTable thead th:first-child {
  width: 45%;
  border: none;
}

.groupBlock3 .myTable td {
  padding: 5px;
  text-align: center;
  border-left: 2px solid #fff;
}

.groupBlock3 .myTable td:first-child {
  text-align: left;
  border: none;
}

.groupBlock3 .myTable tr:nth-child(even) {
  background: #f1f1f3;
}

.groupBlock3 .btnDownload {
  display: block;
  margin: auto;
  background: url("../../assets/img/i_download.png") 50% 0 no-repeat;
  padding-top: 20px;
  text-align: center;
}

.groupBlock4 .content {
  background: #cce8f2;
  margin: 30px 0;
  padding: 10px;
  font-weight: 500;
}

.groupBlock4 .content h3 {
  color: #404041;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.groupBlock4 .content .banner {
  border: 5px solid #02519e;
  border-left: none;
  border-right: none;
  margin: 30px 0;
}

.groupBlock4 .content .banner img {
  width: 100%;
  height: auto;
}

.groupBlock4 .content span.title {
  display: block;
  width: 100%;
  font-size: 18px;
}

.groupBlock4 .group {
  background: #f1f1f2;
  padding: 20px 20px 20px 40px;
  margin-top: 20px;
  border-left: 2px solid #02519e;
}

.groupBlock4 .group .ques {
  font-weight: bold;
  font-size: 16px;
}

.groupBlock4 .group .rows {
  margin-top: 10px;
}

.groupBlock4 .group input[type=checkbox] {
  margin-right: 5px;
}

.groupBlock4 .group2 input {
  width: 100%;
}

#boxMenuRight {
  width: 300px;
  border: thin solid #000000;
}

#boxMenuRight.fixed {
  position: fixed;
  top: 0;
}

#boxMenuRight h3.title {
  text-transform: uppercase;
}

#boxMenuRight ul li {
  height: 35px;
  line-height: 35px;
}

#boxMenuRight ul li a {
  padding: 0 25px;
  color: #000000;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
}


