@charset "UTF-8";
/*  TYPOGRAPHY's
/* ------------------------------------ */
/* Fool-proof @font-face */
/* Based on http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/ */
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
/*@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@font-face {
  font-family: proximanova-light;
  src: url("../fonts/proximanova-light-webfont.eot");
  src: url("../fonts/proximanova-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-light-webfont.woff") format("woff"), url("../fonts/proximanova-light-webfont.ttf") format("truetype"), url("../fonts/proximanova-light-webfont.svg#proximanova-light") format("svg");
  font-weight: 100;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: proximanova-light;
    src: url("../fonts/proximanova-light-webfont.svg#proximanova-light") format("svg");
  }
}

@font-face {
  font-family: proximanova-regular;
  src: url("../fonts/proximanova-regular-webfont.eot");
  src: url("../fonts/proximanova-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-regular-webfont.woff") format("woff"), url("../fonts/proximanova-regular-webfont.ttf") format("truetype"), url("../fonts/proximanova-regular-webfont.svg#proximanova-regular") format("svg");
  font-weight: 400;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: proximanova-regular;
    src: url("../fonts/proximanova-regular-webfont.svg#proximanova-regular") format("svg");
  }
}

@font-face {
  font-family: proximanova-semibold;
  src: url("../fonts/proximanova-semibold-webfont.eot");
  src: url("../fonts/proximanova-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-semibold-webfont.woff") format("woff"), url("../fonts/proximanova-semibold-webfont.ttf") format("truetype"), url("../fonts/proximanova-semibold-webfont.svg#proximanova-semibold") format("svg");
  font-weight: 500;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: proximanova-semibold;
    src: url("../fonts/proximanova-semibold-webfont.svg#proximanova-semibold") format("svg");
  }
}

@font-face {
  font-family: proximanova-bold;
  src: url("../fonts/proximanova-bold-webfont.eot");
  src: url("../fonts/proximanova-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-bold-webfont.woff") format("woff"), url("../fonts/proximanova-bold-webfont.ttf") format("truetype"), url("../fonts/proximanova-bold-webfont.svg#proximanova-bold") format("svg");
  font-weight: 600;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: proximanova-bold;
    src: url("../fonts/proximanova-bold-webfont.svg#proximanova-bold") format("svg");
  }
}*/

/* COLORS
/* ----------------------------- */
/*  COLOR SOCIAL MEDIA
/* ---------------------------------------------------------------------------------- */
/* TYPOGRAPHY INSTALL
/* ----------------------------- */
/* PARAMETRIC-MIXIN
/* ----------------------------- */
/* GENERAL
/* ----------------------------- */
body, html {
  height: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
  color: black;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

#preloader {
  z-index: 10001;
  background-color: white;
  width: 100%;
  height: 100%;
  position: fixed;
}

#status {
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one screen */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px, auto;
  -moz-background-size: 32px, auto;
  -webkit-background-size: 32px, auto;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  /* is width and height divide by two */
  text-align: center;
}

#status img {
  top: 50%;
  position: relative;
  margin-top: -50px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: all 250ms ease;
  color: #0072bc;
}

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

/* EXTEND
/* ----------------------------- */
.top-navigation ul, .main-navigation ul, .link-header, .usu-nav-sidebar ul,
.usu-nav-sidebar-rwd ul, .rwd-top-navigation ul,
.rwd-navigation ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

/* HEADING
/* ----------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-style: normal;
}

/* NAVIGATION
/* ----------------------------- */
.top-navigation {
  text-align: right;
}

.top-navigation ul {
  display: inline-block;
  padding-top: 3px;
}

.top-navigation ul > li:last-child > ul {
  left: inherit;
  right: 0;
}

.top-navigation ul li {
  width: 28px;
  position: relative;
  display: inline-block;
}

.top-navigation ul li:hover > a, .top-navigation ul li:focus > a {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=” $value * 100 “)";
  filter: alpha(opacity=60);
  zoom: 1;
}

.top-navigation ul li:hover > ul, .top-navigation ul li:focus > ul {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=” $value * 100 “)";
  filter: alpha(opacity=100);
  zoom: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top-navigation ul li.twitter {
  width: 25px;
}

.top-navigation ul li.fb {
  width: 16px;
}

.top-navigation ul li.gp {
  width: 29px;
}

.top-navigation ul li.gp a {
  margin-right: 3px;
}

.top-navigation ul li.youtube {
  width: 24px;
}

.top-navigation ul li.youtube a {
  margin-left: 2px;
}

.top-navigation ul li.lang > a:after {
  content: "";
  position: absolute;
  right: -18px;
  top: 8px;
  border-top: 0;
  border-top: 5px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  height: 5px;
  width: 5px;
  display: block;
}

.top-navigation ul li > a {
  color: black;
  display: block;
  margin: 0px 5px;
  position: relative;
}

.top-navigation ul li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 998;
  background-color: white;
  border-radius: 3px;
  border: 1px solid #dddddd;
  min-width: 170px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=” $value * 100 “)";
  filter: alpha(opacity=0);
  zoom: 1;
  visibility: hidden;
  transition: all 350ms ease;
}

.top-navigation ul li > ul li {
  float: none;
  display: block;
}

.top-navigation ul li > ul li > a {
  margin: 0;
  padding: 8px 15px;
}

.top-navigation ul li > ul li > a:before {
  content: "";
}

.main-navigation {
  font-size: 15px;
  text-transform: uppercase;
  padding-left: 20px;
}

.main-navigation ul li {
  float: left;
}

.main-navigation ul li:hover > a, .main-navigation ul li:focus > a {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=” $value * 100 “)";
  filter: alpha(opacity=60);
  zoom: 1;
}

.main-navigation ul li > a {
  display: block;
  margin: 10px 13px;
  color: black;
}

.main-navigation .btn {
  margin-left: 20px;
}

.link-header li {
  float: left;
}

.link-header a {
  font-size: 14px;
  color: black;
  margin-left: 15px;
}

.link-header a:hover, .link-header a:focus {
  color: #df1f26;
}

.usu-nav-sidebar,
.usu-nav-sidebar-rwd {
  border: 1px solid #c6d4e5;
  border-radius: 3px;
  margin-right: 45px;
}

@media screen and (min-width: 48em) {
  .usu-nav-sidebar,
  .usu-nav-sidebar-rwd {
    width: 270px;
  }
}

.usu-nav-sidebar ul li,
.usu-nav-sidebar-rwd ul li {
  display: block;
  border-bottom: 1px solid #c6d4e5;
}

.usu-nav-sidebar ul li:hover > a, .usu-nav-sidebar ul li:focus > a, .usu-nav-sidebar ul li.active > a,
.usu-nav-sidebar-rwd ul li:hover > a,
.usu-nav-sidebar-rwd ul li:focus > a,
.usu-nav-sidebar-rwd ul li.active > a {
  background: #edf8ef;
}

.usu-nav-sidebar ul li:hover > a:before, .usu-nav-sidebar ul li:focus > a:before, .usu-nav-sidebar ul li.active > a:before,
.usu-nav-sidebar-rwd ul li:hover > a:before,
.usu-nav-sidebar-rwd ul li:focus > a:before,
.usu-nav-sidebar-rwd ul li.active > a:before {
  background: #639ee7;
}

.usu-nav-sidebar ul li > a,
.usu-nav-sidebar-rwd ul li > a {
  color: #2f2f2f;
  padding: 10px 15px;
  font-size: 16px;
  display: block;
  position: relative;
  background: white;
  transition: all 250ms ease;
}

.usu-nav-sidebar ul li > a:before,
.usu-nav-sidebar-rwd ul li > a:before {
  content: "";
  position: absolute;
  transition: all 250ms ease;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: transparent;
  display: block;
}

.usu-nav-sidebar .info-usu-sidebar,
.usu-nav-sidebar-rwd .info-usu-sidebar {
  display: block;
  padding: 30px 20px;
  text-align: center;
  background: #edf8ef;
}

.usu-nav-sidebar .info-usu-sidebar h4,
.usu-nav-sidebar-rwd .info-usu-sidebar h4 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.4;
}

.usu-nav-sidebar .info-usu-sidebar .btn,
.usu-nav-sidebar-rwd .info-usu-sidebar .btn {
  text-transform: uppercase;
  font-size: 13px;
  width: 100%;
}

.top-nav {
  float: right;
  margin: 15px 0 !important;
}

.top-nav li {
  border-right: 1px solid #dbdbdb;
}

.top-nav li:last-child {
  border: none;
}

.top-nav li a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1;
  font-size: 13px;
}

.top-nav li:last-child a {
  margin-right: 0;
}

.bottom-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.bottom-nav li {
  background: #c5060b;
  float: none !important;
  -ms-flex: 1;
      flex: 1;
  border-right: 1px solid #a4454a;
  text-align: center;
  transition: all 250ms ease;
}

.bottom-nav li:hover, .bottom-nav li:focus, .bottom-nav li.active {
  background: #000;
}

.bottom-nav li:hover a, .bottom-nav li:focus a, .bottom-nav li.active a {
  opacity: 1 !important;
}

.bottom-nav li:last-child {
  border: none;
}

.bottom-nav li a {
  color: #fff !important;
  font-size: 13px;
  margin: 13px 13px !important;
}

.bottom-nav li.dropdown .dropdown-menu {
  border-top: 2px solid #cccccc;
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 700px;
  border-radius: 0;
  top: 125%;
}

.bottom-nav li.dropdown .dropdown-menu li {
  background-color: #FFF;
  float: left !important;
  border: none;
  -ms-flex: none;
      flex: none;
  text-transform: none;
  padding-top: 20px;
}

.bottom-nav li.dropdown .dropdown-menu:before {
  content: '';
  position: absolute;
  left: 10%;
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #cccccc;
}

@media (max-width: 995px) {
  .col-item h1, .col-item h2, .col-item h3, .col-item h4, .col-item h5, .col-item h6, .col-item p, .col-item a {
    color: #fff;
  }
}

.sticky-sidebar .usu-nav-sidebar {
  width: 270px;
}

.section-content {
  position: relative;
  z-index: 99;
}

.content-information {
  background: white;
}

.usu-nav-sidebar-rwd {
  display: none;
}

/* FORMS
/* ----------------------------- */
/* BUTTON
/* ----------------------------- */
.btn {
  font-size: 17px;
  padding: 10px 24px;
  text-transform: uppercase;
}

.btn.btn-transparent {
  background: transparent;
  border: 1px solid;
}

.btn.btn-transparent.blue {
  border-color: #6b9fcf;
  padding: 3px 10px !important;
  font-size: 11px;
}

.btn.btn-transparent.blue:hover, .btn.btn-transparent.blue:focus {
  background: #6b9fcf;
  color: #fff;
}

.btn.btn-transparent.gray {
  color: #9c9c9c;
  border-color: #9c9c9c;
  font-size: 13px;
  padding: 10px 20px !important;
}

.btn.btn-transparent.gray:hover, .btn.btn-transparent.gray:focus {
  background: #9c9c9c;
  color: #fff;
}

.btn-blue {
  background-color: #31548a;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px;
}

.btn-blue:hover, .btn-blue:focus {
  color: #fff;
  background: #2b466f;
}

/* SITE-HEADER
/* ----------------------------- */
.site-header {
  position: relative;
  width: 100%;
  background: #fff;
}

.header-top {
  position: relative;
  background-color: #31548a;
}

.header-main {
  position: relative;
  width: 100%;
}

.logo-site {
  margin-top: -17px;
  margin-bottom: -25px;
  position: relative;
  z-index: 2;
}

.logo-site a {
  display: inline-block;
}

/* SITE-FOOTER
/* ----------------------------- */
.site-footer .foo-nav {
  position: relative;
  z-index: 99;
  padding: 40px 0;
  border-top: 23px solid #9e1d1b;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.site-footer .foo-nav .top-badge {
  text-align: center;
}

.site-footer .foo-nav .top-badge figure {
  margin-top: -88px;
  margin-bottom: 20px;
}

.site-footer .foo-nav .foo-socmed {
  padding-left: 0;
  list-style: none;
  margin-top: 50px;
}

.site-footer .foo-nav .foo-socmed li {
  display: inline-block;
}

.site-footer .foo-nav .foo-socmed li a {
  border: 1px solid #fff;
  padding: 5px;
  width: 37px;
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  height: 37px;
  transition: all 250ms ease;
}

.site-footer .foo-nav .foo-socmed li:hover a, .site-footer .foo-nav .foo-socmed li:focus a {
  opacity: 0.6;
}

.site-footer .foo-nav .foo-middle p {
  color: #fff;
  font-size: 13px;
}

.site-footer .foo-nav .foo-middle p span {
  font-weight: 600;
}

.site-footer .foo-nav .foo-middle p a {
  color: #fff;
}

.site-footer .foo-nav .foo-middle p a:hover, .site-footer .foo-nav .foo-middle p a:focus {
  opacity: .6;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link {
  margin-bottom: 20px;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link h4 {
  margin-top: 0;
  color: #fff;
  font-size: 16px;
  font-family: "Lato", serif;
  font-style: normal;
  font-variant: small-caps;
  font-weight: 600;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link ul {
  padding-left: 18px;
  color: #fff;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link ul li {
  line-height: 1;
  margin-bottom: 5px;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link ul li a {
  color: #fff;
  font-size: 13px;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link ul li a:hover, .site-footer .foo-nav .foo-middle .foo-link .single-foo-link ul li a:focus {
  opacity: .6;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link h4 a {
  color: #fff;
}

.site-footer .foo-nav .foo-middle .foo-link .single-foo-link h4 a:hover, .site-footer .foo-nav .foo-middle .foo-link .single-foo-link h4 a:focus {
  opacity: .6;
}

.site-footer .foo-copy {
  text-align: center;
  padding: 25px 0;
  background: #fff;
}

.site-footer .foo-copy p {
  margin-bottom: 0;
  font-size: 13px;
}

.site-footer .foo-copy p a {
  color: #000;
}

.site-footer .foo-copy p a:hover, .site-footer .foo-copy p a:focus {
  opacity: .6;
}

/* RESPONSIVE-HANDLER
/* ----------------------------- */
.rwd-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.rwd-subcontainer {
  transition: all 500ms cubic-bezier(0.25, 0.1, 0, 0.95);
  position: relative;
  width: 100%;
  display: block;
  margin-left: 0;
}

.rwd-active {
  margin-left: 40%;
  float: left;
}

.rwd-nav-sidebar {
  transition: all 500ms cubic-bezier(0.25, 0.1, 0, 0.95);
  z-index: 999;
  width: 40%;
  margin-left: -40%;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  display: block;
  overflow-x: hidden;
  background-color: #29446f;
}

.rwd-nav-active {
  margin-left: 0;
}

.btn-nav {
  display: block;
  margin-left: 20px;
  margin-bottom: 20px;
  margin-right: 20px;
  color: white;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
}

.rwd-top-navigation,
.rwd-navigation {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.rwd-top-navigation .lang,
.rwd-navigation .lang {
  display: none !important;
}

.rwd-top-navigation li,
.rwd-navigation li {
  display: block;
}

.rwd-top-navigation li.twitter,
.rwd-navigation li.twitter {
  display: inline-block;
}

.rwd-top-navigation li.twitter a,
.rwd-navigation li.twitter a {
  padding: 0 14px;
}

.rwd-top-navigation li.fb,
.rwd-navigation li.fb {
  display: inline-block;
}

.rwd-top-navigation li.fb a,
.rwd-navigation li.fb a {
  padding: 0 14px;
}

.rwd-top-navigation li.gp,
.rwd-navigation li.gp {
  display: inline-block;
}

.rwd-top-navigation li.gp a,
.rwd-navigation li.gp a {
  padding: 0 14px;
}

.rwd-top-navigation li.youtube,
.rwd-navigation li.youtube {
  display: inline-block;
}

.rwd-top-navigation li.youtube a,
.rwd-navigation li.youtube a {
  padding: 0 14px;
}

.rwd-top-navigation a,
.rwd-navigation a {
  display: block;
  color: white;
  padding: 0 20px;
  margin-bottom: 15px;
}

.rwd-top-navigation a:hover, .rwd-top-navigation a:focus,
.rwd-navigation a:hover,
.rwd-navigation a:focus {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=” $value * 100 “)";
  filter: alpha(opacity=60);
  zoom: 1;
}

.rwd-navigation {
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 570px) {
  .rwd-nav-sidebar {
    width: 60%;
    margin-left: -60%;
  }
  .rwd-nav-active {
    margin-left: 0;
  }
  .rwd-active {
    margin-left: 60%;
  }
}

.btn-rwd-sidebar {
  display: none;
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 3px;
  background-color: #df1f26;
  color: white;
  float: right;
  cursor: pointer;
  margin-top: 40px;
  transition: all 250ms ease;
}

.btn-rwd-sidebar:hover, .btn-rwd-sidebar:focus {
  background-color: #e3353b;
}

.btn-rwd-hide {
  display: inline-block;
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  margin-top: 20px;
  transition: all 250ms ease;
  background-color: #000;
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 30px;
}

.btn-rwd-hide:hover, .btn-rwd-hide:focus {
  background-color: #44c455;
}

.rwd-country {
  display: none;
  margin-bottom: 45px !important;
  margin-left: 0 !important;
}

/* MEDIA-QUERIES
/* ----------------------------- */
@media (max-width: 1200px) {
  body {
    font-size: 18px;
    line-height: 1.5;
  }
  .main-navigation {
    font-size: 14px;
  }
  .main-navigation ul li > a {
    margin: 10px 15px;
  }
  .list-verify .sep {
    display: none;
  }
  .list-verify li {
    display: block;
  }
  .item-verify {
    width: 100%;
    max-width: initial;
  }
  .btn {
    font-size: 14px;
  }
  .btn-icon {
    padding: 10px 24px;
  }
  .btn-icon span i {
    top: -4px;
  }
  .banner-carousel .title-banner {
    font-size: 36px;
    line-height: 1.3;
  }
  .banner-carousel .space15 {
    height: 5px;
  }
  .banner-carousel .btn {
    font-size: 18px !important;
  }
  .banner-carousel .btn span i {
    top: -5px;
  }
  .table-usu thead tr th:first-child,
  .table-usu thead tr td:first-child,
  .table-usu tbody tr th:first-child,
  .table-usu tbody tr td:first-child {
    min-width: 130px !important;
  }
  .table-usu thead tr th:last-child,
  .table-usu thead tr td:last-child,
  .table-usu tbody tr th:last-child,
  .table-usu tbody tr td:last-child {
    min-width: 180px !important;
  }
  .table-usu thead tr th:nth-child(2),
  .table-usu thead tr td:nth-child(2),
  .table-usu tbody tr th:nth-child(2),
  .table-usu tbody tr td:nth-child(2) {
    padding-right: 30px !important;
  }
  .list-tab-post li a {
    min-width: inherit;
    padding: 8px 30px;
    font-size: 16px;
  }
  .item-affiliate-one .subitem-affiliate {
    max-width: 295px;
    min-height: inherit;
    margin: 0 auto;
  }
  .item-statt .counting {
    font-size: 28px;
  }
}

@media (max-width: 995px) {
  .main-navigation,
  .top-navigation {
    display: none;
  }
  .btn-rwd-sidebar {
    display: block;
  }
  .banner-carousel .item-text,
  .banner-carousel .item-image {
    float: left;
    width: 50%;
  }
  .item-retail {
    float: left;
    width: 33.3333333333%;
  }
  .section-shopping .row .row .col-md-6 {
    float: left;
    width: 50%;
  }
  .section-shopping .row .col-md-12 .space30 {
    height: 0;
  }
  .section-shopping .row .col-md-12 .btn {
    margin-top: 60px;
  }
  .header-content {
    margin-bottom: 0;
  }
  .content-question p i {
    display: none;
  }
  .content-question p .btn {
    margin: 0 15px;
  }
  .widget {
    float: left;
    width: 33.3333333333%;
  }
  .widget + .breakpoint {
    display: block;
  }
  .footer-info {
    margin-bottom: 45px;
  }
  .item-helping ~ .space30 {
    display: none;
  }
  .list-partnership li {
    width: 33.3333333333%;
    text-align: left;
  }
  .content-sidebar .widget {
    width: 100% !important;
  }
  .list-tab-post li a {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 120px;
  }
  .list-tab-post .line-helper {
    top: -10px;
  }
  .widget-promote {
    width: 100%;
  }
}

@media (max-width: 990px) {
  .item-infotools {
    float: left;
    width: 50%;
  }
  #sidebar-nav-sticky-wrapper {
    height: 0 !important;
  }
  .usu-nav-sidebar-rwd {
    display: block;
    margin-right: 0;
  }
  .usu-nav-sidebar {
    display: none !important;
  }
  .single-article .flag-select {
    display: none;
  }
  .single-article .flag-select-rwd {
    width: 100%;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 30px;
  }
  .single-article .flag-select-rwd ~ h5 {
    padding-top: 30px;
  }
}

.top-info {
  text-align: right;
}

.top-info img {
  display: inline-block;
  margin-right: 10px;
}

.top-info p {
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
  padding-top: 3px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .top-info {
    text-align: center;
    padding: 20px 0;
  }
}

.form-search {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  width: 35px;
  float: right;
  border-left: 1px solid #233a5e;
  border-right: 1px solid #233a5e;
  margin-left: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.form-search .form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  border-color: #e0e0e0;
}

.form-search .form-control:focus {
  box-shadow: none;
}

form.search {
  background: url("../imagemin/search-ico.png") no-repeat scroll;
  position: absolute;
  width: 14px;
  height: 14px;
  background-size: 14px 14px;
  right: 9px;
  top: -1px;
  bottom: 0;
  margin: auto;
  display: block;
}

form.search > input.search-field {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
  box-shadow: none;
  width: 30px;
  height: 29px;
  opacity: 0;
  transition-duration: 0.3s, 0.3s;
  transition-property: width, opacity;
  display: block;
  background: rgba(34, 35, 36, 0.13);
  border-radius: 0;
}

form.search > input.search-field:hover {
  cursor: pointer;
  display: block;
}

form.search > input.search-field:focus {
  /*font-family:open sans;*/
  font-size: 14px;
  opacity: 1;
  width: 193px;
  cursor: text;
  background: #fff;
  border-radius: 0;
  color: #000;
  border: 1px solid #5e6063;
  border-top: none;
  border-left: none;
  border-right: none;
  position: relative;
  top: -7px;
  right: -9px;
}

form.search > input.search-field {
  padding-left: 5px;
}

input.search-field::-moz-placeholder {
  color: #5e6063;
  /*font-family:open sans;*/
  font-size: 14px;
}

input.search-field::-webkit-input-placeholder {
  color: #5e6063;
  /*font-family:open sans;*/
  font-size: 14px;
}

.cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  padding: 5% 0 33%;
}

.main-hero {
  position: relative;
}

.main-hero .caption {
  background: rgba(197, 6, 11, 0.74);
  position: absolute;
  left: 0;
  width: 700px;
  bottom: 0;
  padding: 30px 76px;
}

.main-hero .caption h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}

.main-hero .caption p {
  color: #fff;
  margin-top: 20px;
  font-weight: 100;
}

.main-hero .caption p a {
  color: #fff;
  font-weight: 400;
}

.main-hero .caption p a:hover, .main-hero .caption p a:focus {
  opacity: .6;
}

.main-hero .caption span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 100;
}

@media (max-width: 767px) {
  .main-hero .caption {
    padding: 30px;
    position: relative;
    width: 100%;
  }
  .main-hero .cover {
    padding: 0;
  }
}

.site-main {
  padding-top: 50px;
}

.top-featured {
  padding-bottom: 60px;
}

.title-single-col {
  background: #e8e8e8;
  border: 1px solid #acacac;
  border-bottom: none;
}

.title-single-col h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}

.title-single-col .inner {
  padding: 15px 20px;
}

.table.table-featured {
  border: 1px solid #acacac;
}

.table.table-featured td {
  border: 1px solid #acacac;
  padding: 20px 20px 40px;
}

.table.table-featured td .inner figure {
  margin: 25px 0 20px;
}

.table.table-featured td .inner figure img {
  transition: all 250ms ease;
}

.table.table-featured td .inner figure:hover img, .table.table-featured td .inner figure:focus img {
  opacity: .8;
}

.table.table-featured td .inner h4 {
  margin-top: 0;
  font-size: 16px;
}

.table.table-featured td .inner h4 a {
  color: #000;
}

.table.table-featured td .inner h4 a:hover, .table.table-featured td .inner h4 a:focus {
  opacity: .6;
}

.table.table-featured td .inner .cat {
  font-size: 12px;
  text-transform: uppercase;
}

.table.table-featured td .inner .date {
  font-size: 14px;
}

.table.table-featured td .inner .author {
  font-size: 14px;
  margin-bottom: 20px;
}

.table.table-featured thead {
  border: 1px solid #acacac;
}

.table.table-featured thead th {
  border-bottom: none;
}

@media only screen and (max-width: 767px) {
  /* Force table to not be like tables anymore */
  #no-more-tables table,
  #no-more-tables thead,
  #no-more-tables tbody,
  #no-more-tables th,
  #no-more-tables td,
  #no-more-tables tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  #no-more-tables tr {
    border: 1px solid #ccc;
  }
  #no-more-tables td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    white-space: normal;
    text-align: left;
  }
  #no-more-tables td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  /*
  Label the data
  */
  #no-more-tables td:before {
    content: attr(data-title);
  }
}

.box-featured {
  border: 1px solid #acacac;
  margin-bottom: 20px;
}

.box-featured .title-single-featured {
  background: #e8e8e8;
  border-bottom: 1px solid #acacac;
}

.box-featured .title-single-featured .inner {
  padding: 15px 20px;
}

.box-featured .title-single-featured .inner h3 {
  font-size: 18px;
  margin: 0;
}

.box-featured .body-single-featured .inner {
  padding: 20px 20px 30px;
}

.box-featured .body-single-featured .inner .single-upcoming-events {
  margin-bottom: 20px;
}

.box-featured .body-single-featured .inner .single-upcoming-events .col-featured {
  margin: 10px 0;
}

.box-featured .body-single-featured .inner .single-upcoming-events .col-featured figure {
  display: inline-block;
  float: left;
  width: 12%;
}

.box-featured .body-single-featured .inner .single-upcoming-events .col-featured .caption {
  display: inline-block;
  width: 82%;
  margin-left: 10px;
}

.box-featured .body-single-featured .inner .single-upcoming-events .col-featured .caption h5 {
  margin-top: 0;
  margin-bottom: 0;
}

.box-featured .body-single-featured .inner .single-upcoming-events .col-featured .caption h5 a {
  color: #000;
}

.box-featured .body-single-featured .inner .single-upcoming-events .col-featured .caption h5 a:hover, .box-featured .body-single-featured .inner .single-upcoming-events .col-featured .caption h5 a:focus {
  opacity: .6;
}

.box-featured .body-single-featured .inner .single-upcoming-events .date {
  font-size: 14px;
}

.box-featured .body-single-featured .inner .single-upcoming-events .date-loc {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 5px;
}

.box-featured .body-single-featured .inner .single-upcoming-events .cat {
  font-size: 12px;
  text-transform: uppercase;
}

.box-featured .body-single-featured .inner .view-more {
  text-align: center;
  margin-top: 32px;
}

.box-featured .body-single-featured .inner .single-our-community {
  padding-top: 3px;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured {
  margin-bottom: 20px;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured figure {
  display: inline-block;
  float: left;
  width: 19%;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured .caption {
  display: inline-block;
  width: 75%;
  margin-left: 15px;
  word-wrap: break-word;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured .caption h5 {
  margin-top: 0;
  margin-bottom: 0;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured .caption h5 a {
  color: #000;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured .caption h5 a:hover, .box-featured .body-single-featured .inner .single-our-community .col-featured .caption h5 a:focus {
  opacity: .6;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured .account {
  color: rgba(1, 1, 1, 0.5);
  margin-bottom: 8px;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured p {
  font-size: 14px;
  margin-bottom: 5px;
}

.box-featured .body-single-featured .inner .single-our-community .col-featured .date {
  font-size: 14px;
  color: rgba(1, 1, 1, 0.5);
}

@media (max-width: 767px) {
  .box-featured .body-single-featured .inner .single-our-community .col-featured figure {
    width: 100%;
  }
  .box-featured .body-single-featured .inner .single-our-community .col-featured .caption {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.box-featured .body-single-featured .inner .single-pre-featured figure {
  margin-bottom: 20px;
  text-align: center;
}

.box-featured .body-single-featured .inner .single-pre-featured figure img {
  transition: all 250ms ease;
}

.box-featured .body-single-featured .inner .single-pre-featured figure:hover img, .box-featured .body-single-featured .inner .single-pre-featured figure:focus img {
  opacity: .8;
}

.box-featured .body-single-featured .inner .single-pre-featured figure.tar {
  text-align: right;
}

.box-featured .body-single-featured .inner .single-pre-featured h4 {
  margin-top: 0;
  font-size: 16px;
}

.box-featured .body-single-featured .inner .single-pre-featured h4 a {
  color: #000;
}

.box-featured .body-single-featured .inner .single-pre-featured h4 a:hover, .box-featured .body-single-featured .inner .single-pre-featured h4 a:focus {
  opacity: .6;
}

.box-featured .body-single-featured .inner .single-pre-featured .author {
  font-size: 14px;
  margin-bottom: 20px;
}

.box-featured .body-single-featured .inner .single-news-featured .date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.62);
}

.box-featured .body-single-featured .inner .single-news-featured h4 {
  font-size: 15px;
}

.box-featured .body-single-featured .inner .single-news-featured h4 a {
  color: #000;
}

.box-featured .body-single-featured .inner .single-news-featured h4 a:hover, .box-featured .body-single-featured .inner .single-news-featured h4 a:focus {
  opacity: .6;
}

.box-featured.news .inner {
  padding-right: 60px;
}

/* ================ ROW CUSTOMIZE ================ */
.row.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutter > [class*='col-'],
.row.no-gutter > [class*='col-'] > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
  position: inherit;
}

.row.rw-10 {
  margin-right: -7px;
  margin-left: -7px;
}

.row.rw-10 > [class*='col-'],
.row.rw-10 > [class*='col-'] > [class*='col-'] {
  padding-right: 10px;
  padding-left: 10px;
  position: inherit;
}

.row.rw-min {
  margin-right: -5px;
  margin-left: -5px;
}

.row.rw-min > [class*='col-'],
.row.rw-min > [class*='col-'] > [class*='col-'] {
  padding-right: 8px;
  padding-left: 8px;
  position: inherit;
}

.row.rw-12 {
  margin-right: -7px;
  margin-left: -7px;
}

.row.rw-12 > [class*='col-'],
.row.rw-12 > [class*='col-'] > [class*='col-'] {
  padding-right: 12px;
  padding-left: 12px;
  position: inherit;
}

.row.rw-15 {
  margin-right: -10px;
  margin-left: -10px;
}

.row.rw-15 > [class*='col-'],
.row.rw-15 > [class*='col-'] > [class*='col-'] {
  padding-right: 7px;
  padding-left: 7px;
  position: inherit;
}

.bottom-featured {
  background: #fbfbfb;
  border: 2px solid #eeeeee;
  padding: 70px 0;
}

.pt0 {
  padding-top: 0;
}

.pt55 {
  padding-top: 55px;
}

.bg-gradient {
  height: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(180deg, #f1f1f1 0%, white 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#ffffff',GradientType=0 );
  /* ie6-9 */
}

.bg-map {
  position: relative;
  background-image: url("../imagemin/bg-map.png");
  background-repeat: no-repeat;
  background-size: 1169px 797px;
  background-position: top right;
}

.box-white .inner {
  padding: 20px 30px;
  background: #fff;
}

.box-white .inner .figure {
  margin-top: -33px;
}

@media (max-width: 1200px) {
  .box-white .inner .figure {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .box-white .inner .figure img {
    width: 80%;
  }
}

.box-white .inner h2 {
  margin-bottom: 20px;
  font-weight: 400;
}

.box-white .inner h2.mt0 {
  margin-top: 0;
}

.box-white .inner h1 {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 20px;
}

.box-white .inner h4 {
  font-weight: 400;
}

.box-white.about .inner h5 {
  color: #c5060b;
}

.box-white.events .inner h5 {
  color: #c5060b;
}

.box-white.support .inner h4 {
  color: #c5060b;
  font-weight: 600;
}

.box-white .ui-datepicker .ui-datepicker-header {
  padding: .5em 0;
  padding-top: 13px;
}

.box-white .ui-datepicker-prev span {
  background-image: url("../imagemin/arrow-left-calendar.png") !important;
  background-position: 0px 0px !important;
  background-size: 11px 20px;
  width: 11px;
  height: 20px;
}

.box-white .ui-datepicker-next span {
  background-image: url("../imagemin/arrow-right-calendar.png") !important;
  background-position: 0px 0px !important;
  background-size: 11px 20px;
  width: 11px;
  height: 20px;
}

.box-white .ui-widget-content {
  width: 100%;
}

.box-white .ui-state-hover, .box-white .ui-widget-content .ui-state-hover, .box-white .ui-widget-header .ui-state-hover {
  border: none;
}

.box-white .ui-datepicker .ui-datepicker-prev {
  left: 8px;
  top: 19px;
}

.box-white .ui-datepicker .ui-datepicker-prev-hover {
  left: 8px;
  top: 19px;
}

.box-white .ui-state-hover, .box-white .ui-widget-content .ui-state-hover, .box-white .ui-widget-header .ui-state-hover {
  border: none;
  background: transparent;
}

.box-white .ui-datepicker .ui-datepicker-next {
  right: 8px;
  top: 19px;
}

.box-white .ui-datepicker .ui-datepicker-next-hover {
  right: 8px;
  top: 19px;
}

.box-white .ui-datepicker-year {
  display: none;
}

.box-white .ui-widget-content {
  border: none;
}

.box-white .ui-datepicker {
  padding: 0;
}

.box-white .ui-widget-header {
  background: transparent;
}

.box-white .ui-datepicker .ui-datepicker-title {
  font-size: 22px;
  font-weight: 400;
}

.box-white .ui-datepicker table {
  border-top: 2px solid #3a3a3a;
}

.box-white .ui-datepicker th {
  background: #f3f3f3;
  border: 1px solid #dbdbdb;
  padding: .2em .2em;
  font-size: 15px;
}

.box-white .ui-datepicker td {
  border: 1px solid #dbdbdb;
}

.box-white .ui-state-active, .box-white .ui-widget-content .ui-state-active {
  color: #31548a;
}

@media (min-width: 768px) {
  .box-white .ui-datepicker td a {
    padding: 0.4em 0.4em 3.2em 1.2em;
  }
}

.box-white .ui-state-default, .box-white .ui-widget-content .ui-state-default {
  border-color: transparent;
  background: transparent;
  font-weight: 600;
}

.top-link-content {
  padding-top: 50px;
}

.top-link-content .top-link-content-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.top-link-content .top-link-content-list li {
  margin: 10px 18px;
}

.top-link-content .top-link-content-list li.active {
  border-bottom: 2px solid #c5060b;
  font-weight: 600;
}

.top-link-content .top-link-content-list li:first-child {
  margin-left: 30px;
  margin-right: 10px;
}

.top-link-content .top-link-content-list li:last-child {
  margin-right: 30px;
  margin-left: 10px;
}

.top-link-content .top-link-content-list li a {
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-top: 0;
}

.breadcrumb li {
  font-size: 10px;
  color: #000;
}

.breadcrumb li a {
  color: #000;
}

.breadcrumb li.active {
  color: #c5060b;
}

.breadcrumb > li + li:before {
  padding: 0 0px;
  color: #000;
}

.top-board {
  margin-bottom: 30px;
}

.top-board figure {
  display: inline-block;
  float: left;
  width: 20%;
}

.top-board figure img {
  border-radius: 5px;
}

@media (max-width: 992px) {
  .top-board figure {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

.top-board .caption {
  display: inline-block;
  width: 75%;
  margin-left: 30px;
}

@media (max-width: 992px) {
  .top-board .caption {
    width: 100%;
    display: block;
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .top-board {
    margin-bottom: 0;
  }
  .top-board .caption {
    clear: both;
    margin-left: 0;
  }
  .box-white .inner .top-board .caption h1 {
    margin-bottom: 10px;
  }
}

.top-board .caption h2 {
  margin-top: 0px;
}

.top-board .caption p span {
  color: #0054a6;
  font-style: italic;
}

/* ================ SPACE ================ */
.space200 {
  height: 200px;
  display: block;
  width: 100%;
}

.space100 {
  height: 100px;
  display: block;
  width: 100%;
}

.space40 {
  height: 40px;
  display: block;
  width: 100%;
}

.pricing-section {
  margin-top: 35px;
  margin-bottom: 50px;
}

.pricing-section .single-pricing {
  border: 1px solid #c9c9c9;
  transition: all 250ms ease;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .pricing-section .single-pricing {
    margin-bottom: 30px;
  }
}

.pricing-section .single-pricing .top-pricing .inner-top-pricing {
  padding: 10px 20px;
  background: #f6f6f6;
  position: relative;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  text-align: center;
  border-bottom: 1px solid #c9c9c9;
}

.pricing-section .single-pricing .top-pricing .inner-top-pricing h2 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 100;
  font-size: 45px;
  transition: all 250ms ease;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pricing-section .single-pricing .top-pricing .inner-top-pricing h2 sup {
  top: -.6em;
  font-size: 27px;
}

.pricing-section .single-pricing .top-pricing .inner-top-pricing h2 sub {
  bottom: 0;
  font-size: 13px;
}

.pricing-section .single-pricing .top-pricing .inner-top-pricing h5 {
  position: relative;
  text-transform: uppercase;
  transition: all 250ms ease;
}

.pricing-section .single-pricing .top-pricing .inner-top-pricing:before {
  border-radius: 4px;
  border: 3px solid transparent;
  content: '';
  height: 100%;
  background: transparent;
  left: -2px;
  width: 101.3%;
  position: absolute;
  bottom: 0;
  top: 0;
}

.pricing-section .single-pricing .body-desc {
  z-index: 2;
  position: relative;
  background: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.pricing-section .single-pricing .body-desc .inner-body-desc {
  padding-bottom: 30px;
}

.pricing-section .single-pricing .body-desc .btn-join .btn {
  width: 100%;
}

.pricing-section .single-pricing .body-desc .btn-join .btn:hover, .pricing-section .single-pricing .body-desc .btn-join .btn:focus {
  background: #31548a;
}

.pricing-section .single-pricing:hover {
  border: 2px solid #31548a;
}

.pricing-section .single-pricing:hover .top-pricing .inner-top-pricing:before {
  background: #31548a;
  border: 3px solid #31548a;
  -webkit-transform: scaleY(1.5);
  -ms-transition: all 200ms ease;
  -ms-transform: scale(1.5);
  -moz-transition: all 200ms ease;
  -moz-transform: scale(1.5);
  transition: all 200ms ease;
  -webkit-transform: scaleY(1.5);
          transform: scaleY(1.5);
}

.pricing-section .single-pricing:hover .top-pricing h5 {
  color: #fff;
}

.pricing-section .single-pricing:hover .top-pricing h2 {
  color: #fff;
}

.pricing-section .single-pricing:hover {
  border: 1px solid #31548a;
  box-shadow: 0px 0px 0px 1px #31548a;
}

.pricing-section .single-pricing:hover .top-pricing .inner-top-pricing::before {
  box-shadow: 0px 0px 0px 2px #31548a;
}

.pricing-section .single-pricing .top-pricing .inner-top-pricing::before {
  left: 0;
  width: 100%;
}

.research-section .single-research {
  border: 1px solid #cacaca;
  text-align: center;
  padding: 35px 75px;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .research-section .single-research {
    padding: 20px 20px;
  }
}

.research-section .single-research .caption h3 {
  font-size: 22px;
}

.slick-slide .img-awards {
  display: block;
  margin: auto;
}

.slide-porto {
  padding-top: 50px;
  padding-bottom: 50px;
}

.awards-slide .awards-slide-single {
  position: relative;
  transition: all 300ms ease;
  margin: 7px;
}

.awards-slide .awards-slide-single .caption {
  text-align: center;
  margin-top: 10px;
}

.awards-slide {
  padding: 0 48px 30px 48px;
}

@media (max-width: 480px) {
  .awards-slide {
    padding: 60px 0px 30px 0;
  }
}

.awards-slide .slick-prev {
  width: 48px;
  height: 48px;
  left: -45px;
  color: black;
  z-index: 1;
}

.awards-slide .slick-prev:before {
  content: '';
  background-image: url("../imagemin/arrow-left-gray.png");
  width: 18px;
  height: 32px;
  background-size: 18px 32px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

@media (max-width: 480px) {
  .awards-slide .slick-prev:before {
    font-size: 25px;
  }
}

.awards-slide .slick-next {
  width: 48px;
  height: 48px;
  right: -45px;
  color: black;
}

.awards-slide .slick-next:before {
  content: '';
  background-image: url("../imagemin/arrow-right-gray.png");
  width: 18px;
  height: 32px;
  background-size: 18px 32px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

@media (max-width: 480px) {
  .awards-slide .slick-next:before {
    font-size: 25px;
  }
}

.awards-slide .inner {
  padding: 25px;
  padding-left: 24px;
  padding-right: 37px;
  padding-top: 0;
}

.awards-slide .inner h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
}

.awards-slide .inner .tag {
  padding-left: 0;
  list-style: none;
  line-height: 1;
}

.awards-slide .inner .tag li {
  display: inline-block;
  font-size: 11px;
  position: relative;
  padding-left: 12px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .5;
}

.awards-slide .inner .tag li:first-child {
  padding-left: 0;
}

.awards-slide .inner .tag li:first-child:before {
  content: '';
}

.awards-slide .inner .tag li:before {
  content: '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 17px;
  line-height: 0.2;
}

.awards-slide .inner p {
  line-height: 1.7;
  font-size: 17px;
}

@media (min-width: 992px) {
  .awards-slide .inner .increased {
    margin-top: 30px;
  }
}

.awards-slide .inner .increased .single-increased {
  text-align: center;
}

.awards-slide .inner .increased .single-increased h4 {
  font-size: 25px;
}

.awards-slide .inner .increased .single-increased p {
  font-size: 14px;
  line-height: 1.5;
}

.awards-slide .slick-prev:before {
  color: #bdbdbd;
  background-color: transparent;
  padding: 16px;
}

.awards-slide .slick-prev {
  left: 0;
  top: 38%;
  transition: all 250ms ease;
  height: 73%;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(90deg, whitesmoke 0%, white 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F5F5F5', endColorstr='#ffffff',GradientType=1 );
  /* ie6-9 */
}

.awards-slide .slick-prev:hover {
  background: #e4e4e4;
}

.awards-slide .slick-prev:hover:before {
  background-image: url("../imagemin/arrow-left-gray-dark.png");
}

.awards-slide .slick-next:before {
  color: #bdbdbd;
  background-color: transparent;
  padding: 16px;
}

.awards-slide .slick-next {
  right: 0;
  top: 38%;
  transition: all 250ms ease;
  height: 73%;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(270deg, whitesmoke 0%, white 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#F5F5F5',GradientType=1 );
  /* ie6-9 */
}

.awards-slide .slick-next:hover {
  background: #e4e4e4;
}

.awards-slide .slick-next:hover:before {
  background-image: url("../imagemin/arrow-right-gray-dark.png");
}

.top-filter-cat {
  margin-bottom: 40px;
}

.top-filter-cat .title-cat {
  float: left;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.top-filter-cat .select-cat {
  float: right;
}

.top-filter-cat .select-cat .btn-group {
  width: 108px !important;
  padding-top: 7px;
}

.top-filter-cat .select-cat .btn-group .btn {
  font-size: 12px;
  padding: 5px 11px;
  text-transform: none;
}

@media (max-width: 480px) {
  .top-filter-cat .select-cat {
    float: none;
  }
  .top-filter-cat .select-cat .btn-group {
    margin-top: 10px;
  }
}

.single-content-cat {
  margin-bottom: 60px;
}

.single-content-cat figure {
  display: inline-block;
  float: left;
  width: 14%;
}

@media (max-width: 991px) {
  .single-content-cat figure {
    width: 100%;
    margin-bottom: 15px;
  }
  .post-type-archive-contributor .single-content-cat figure {
    margin-bottom: -10px;
  }
}

.single-content-cat figure img {
  transition: all 250ms ease;
}

.single-content-cat figure:hover img, .single-content-cat figure:focus img {
  opacity: .8;
}

.single-content-cat .caption {
  display: inline-block;
  width: 82%;
  margin-left: 30px;
}

@media (max-width: 991px) {
  .single-content-cat .caption {
    margin-left: 0;
    width: 100%;
  }
  .post-type-archive-contributor .single-content-cat .caption {
    width: calc(100% - 150px) !important;
    margin-left: 15px;
    margin-top: 45px;
  }
  .box-white .inner .single-content-cat .caption h4 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.4;
  }
  .post-type-archive-contributor .box-white .inner .single-content-cat .caption h4 {
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.single-content-cat .caption .meta .tag {
  display: inline-block;
  background: #0054a6;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
}

.single-content-cat .caption .meta .date {
  display: inline-block;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 6px;
}

.single-content-cat .caption h4 {
  margin-bottom: 20px;
}

.single-content-cat .caption h4 a {
  color: #000;
}

.single-content-cat .caption h4 a:hover, .single-content-cat .caption h4 a:focus {
  opacity: .6;
}

.side-link {
  background: #f2f7fd;
  border-top: 2px solid #c5060b;
  padding: 16px 20px;
  margin-bottom: 30px;
}

.side-link ul {
  padding-left: 0;
  list-style: none;
}

.side-link ul li {
  margin-bottom: 15px;
}

.side-link ul li a {
  color: #222;
}

.side-link ul li.active a {
  font-weight: 600;
}

.side-link ul li ul {
  padding-left: 20px;
  margin: 20px 0;
}

.side-link ul li ul li a {
  font-weight: 400 !important;
}

.side-link ul li ul li.active a {
  font-weight: 600 !important;
}

.side-link p {
  font-size: 13px;
  margin-top: 20px;
}

.pre-events {
  margin: 30px 0;
}

.pre-events .single-pre-events {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .pre-events .single-pre-events {
    display: block;
  }
}

.pre-events .single-pre-events .left {
  width: 25%;
  padding: 20px 20px 25px;
  background: #31548a;
}

@media (max-width: 991px) {
  .pre-events .single-pre-events .left {
    width: 100%;
  }
}

.pre-events .single-pre-events .left .date-left {
  font-size: 65px;
  color: #fff;
  display: inline-block;
  line-height: 1;
  font-weight: 300;
}

@media (max-width: 991px) {
  .pre-events .single-pre-events .left .date-left {
    float: left;
    margin-top: 1px;
  }
}

.pre-events .single-pre-events .left .date-right {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .pre-events .single-pre-events .left .date-right {
    margin-left: 85px;
    display: block;
  }
}

.pre-events .single-pre-events .left .date-bottom {
  color: #fff;
  margin-top: 0;
}
@media (max-width: 991px) { 
  .pre-events .single-pre-events .left .date-bottom {
    margin-top: -20px;
    margin-left: 85px;
  }
}

.pre-events .single-pre-events .right {
  width: 75%;
  background: #f6f6f6;
  padding: 20px;
}

@media (max-width: 991px) {
  .pre-events .single-pre-events .right {
    width: 100%;
  }
}

.pre-events .single-pre-events .right h4 {
  margin-bottom: 5px;
}

.pre-events .single-pre-events .right .author {
  margin-bottom: 15px;
}

.content-404 {
  margin: 50px 0 130px;
}

.content-404 h1 {
  font-weight: 400;
}

.content-404 p {
  margin-bottom: 30px;
  margin-top: 20px;
}

.content-404 .btn {
  font-size: 12px;
  padding: 10px 20px;
}

.publication-tab .nav-tabs > li {
  margin-right: 15px;
}

.publication-tab .nav-tabs > li.active > a, .publication-tab .nav-tabs > li.active > a:focus, .publication-tab .nav-tabs > li.active > a:hover {
  border: 2px solid transparent;
  border-bottom-color: #c5060b;
  color: #000;
  font-weight: 600;
}

.publication-tab .nav-tabs {
  border-bottom: 1px solid transparent;
}

.publication-tab .nav-tabs > li > a {
  color: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  padding: 2px 5px;
  font-size: 14px;
}

.publication-tab .nav-tabs > li > a:hover {
  border-color: transparent;
}

.publication-tab .nav > li > a:focus, .publication-tab .nav > li > a:hover {
  background-color: transparent;
}

.publication-tab .pagination > li > a, .publication-tab .pagination > li > span {
  border-color: transparent;
}

.publication-tab .pagination > .active > a, .publication-tab .pagination > .active > a:focus, .publication-tab .pagination > .active > a:hover, .publication-tab .pagination > .active > span, .publication-tab .pagination > .active > span:focus, .publication-tab .pagination > .active > span:hover {
  background-color: transparent;
  border-color: transparent;
  font-weight: 600;
  color: #000;
}

.publication-tab .pagination > li > a:focus, .publication-tab .pagination > li > a:hover, .publication-tab .pagination > li > span:focus, .publication-tab .pagination > li > span:hover {
  background: transparent;
}

.publication-tab .pagination > li > a, .publication-tab .pagination > li > span {
  color: #818181;
}

.publication-tab .tab-content {
  margin: 40px 0;
}

.publication-tab .tab-content ul {
  padding-left: 15px;
}

.publication-tab .tab-content ul li {
  margin-bottom: 20px;
}

.publication-tab .tab-content ul li h5 {
  margin: 0;
  font-size: 15px;
}

.publication-tab .tab-content ul li span {
  display: block;
}

.publication-tab.recipients-tab ul {
  padding-left: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.publication-tab.recipients-tab .tab-content {
  margin-top: 70px;
}

@media (max-width: 480px) {
  .publication-tab ul {
    display: block !important;
  }
  .publication-tab ul li {
    float: none;
    margin-bottom: 10px;
    text-align: center;
  }
}

.imageslides {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  padding: 3% 0;
  position: relative;
}

.imageslides .caption {
  background: rgba(197, 6, 11, 0.74);
  position: absolute;
  left: 0;
  width: 700px;
  bottom: 0;
  padding: 30px 76px;
}

.imageslides .caption h2,
.imageslides .caption .caption-article {
  margin-top: 0;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}

.imageslides .caption p {
  color: #fff;
  margin-top: 20px;
  font-weight: 100;
}

.imageslides .caption p a {
  color: #fff;
  font-weight: 400;
}

.imageslides .caption p a:hover, .imageslides .caption p a:focus {
  opacity: .6;
}

.imageslides .caption span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 100;
}

@media (max-width: 767px) {
  .imageslides {
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .imageslides .caption {
    width: 550px;
    padding: 43px;
  }
}

@media (max-width: 767px) {
  .imageslides .caption {
    padding: 30px;
    width: 100%;
  }
  .imageslides .cover {
    padding: 0;
  }
}

.wrap-slide .slick-prev:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 50px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f104";
  background: rgba(3, 0, 0, 0.6);
  padding: 8px;
}

.wrap-slide .slick-next:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 50px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f105";
  background: rgba(3, 0, 0, 0.6);
  padding: 8px;
}

.wrap-slide .slick-next {
  top: 45%;
  right: 0;
}

.wrap-slide .slick-prev {
  top: 45%;
  left: 0;
  z-index: 1;
}

.wrap-slide button.slick-next.slick-arrow {
  width: auto;
  height: auto;
}

.wrap-slide button.slick-prev.slick-arrow {
  width: auto;
  height: auto;
}

.privacy-policy {
  margin-top: 10px;
}

.italic-style {
  font-style: italic;
}

.underline-decore {
  text-decoration: underline;
}

.title-middle {
  color: #c5060b;
  margin-bottom: 20px;
  font-weight: 600;
}

.fw600 {
  font-weight: 600 !important;
}

.list-link {
  padding-left: 17px;
}

.list-link li {
  line-height: 1.8;
}

.tac {
  text-align: center;
}

.lh18 {
  line-height: 1.8;
}

.attorneys-pict {
  padding-left: 0;
  list-style: none;
  padding-left: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin: 20px -21px;
}

.attorneys-pict.unline li h6 {
  text-decoration: none;
}

.attorneys-pict li {
  position: relative;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 5px;
  margin: 15px 25px;
}

.attorneys-pict li .overlay {
  background: rgba(71, 86, 189, 0.57);
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  transition: all 250ms ease;
  border-radius: 5px;
}

.attorneys-pict li figcaption {
  text-align: center;
  max-width: 230px;
  margin: auto;
}

.attorneys-pict li figcaption h4 a {
  color: #000;
  font-weight: 600 !important;
}

.attorneys-pict li figcaption h5 {
  color: #666 !important;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
}

.attorneys-pict li figcaption h6 {
  font-weight: 400;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

.attorneys-pict li:hover .overlay {
  opacity: 1;
}

.attorneys-pict li:hover figcaption {
  opacity: 1;
}

.figure-founder {
  display: inline-block;
  width: 18%;
  float: left;
}

.figure-founder h5 {
  text-align: center;
}

@media (max-width: 992px) {
  .figure-founder {
    width: 100%;
  }
  .figure-founder h5 {
    text-align: left;
  }
}

.desc-founder {
  display: inline-block;
  width: 77%;
  margin-left: 35px;
}

@media (max-width: 992px) {
  .desc-founder {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

.gray-box {
  background: #efefef;
  border: 1px solid #dedede;
  padding: 30px;
  margin-top: 60px;
}

.gray-box h3 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 30px;
}

.gray-box a {
  word-wrap: break-word;
}

@media (max-width: 480px) {
  .gray-box {
    padding: 10px;
  }
}

.external-link-section .single-external-link {
  border: 1px solid #cacaca;
  text-align: center;
  padding: 35px 5px 10px;
  margin-bottom: 12px;
}

.external-link-section .single-external-link figure {
  margin-bottom: 30px;
}

.external-link-section .single-external-link p {
  padding-left: 23px;
  padding-right: 23px;
}

.receipients-figure {
  display: inline-block;
  width: 23%;
  float: left;
}

.receipients-figure img {
  border-radius: 6px;
}

@media (max-width: 992px) {
  .receipients-figure {
    width: 100%;
  }
}

.receipients-desc {
  display: inline-block;
  width: 75%;
  margin-left: 15px;
}

.receipients-desc h4 {
  margin-top: 0;
  font-weight: 600 !important;
}

@media (max-width: 992px) {
  .receipients-desc {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

.panel-title {
  opacity: 0.7;
  font-weight: 600 !important;
  font-size: 17px !important;
}

.panel-title a {
  position: relative;
  display: block;
  width: 100%;
}

.panel-title a i {
  position: absolute;
  right: 0;
}

.panel-title a i.fa-caret-right {
  opacity: 0.7;
}

.panel-default {
  border: none;
  border-bottom: 1px solid #dddddd;
  box-shadow: none;
  border-radius: 0 !important;
}

.panel-default .panel-heading {
  padding: 10px 15px 14px;
  background: transparent;
}

.panel-body {
  padding-top: 0;
}

.panel-body ul {
  padding-left: 0;
  list-style: none;
}

.panel-body ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.panel-body p {
  font-size: 16px;
}

.actives {
  opacity: 1;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top: none;
}

.box-edu {
  border: 1px solid #acacac;
  margin-bottom: 10px;
}

.box-edu .title {
  background: #e8e8e8;
  border-bottom: 1px solid #acacac;
  padding: 10px;
}

.box-edu .title h5 {
  margin: 0;
  font-size: 15px;
}

.box-edu .body {
  padding: 10px;
}

.box-edu .body ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.box-edu .body ul li {
  margin-bottom: 8px;
}

.box-edu .body ul li a {
  color: #000;
  font-size: 15px;
}

.box-edu .body ul li a:hover, .box-edu .body ul li a:focus {
  opacity: .7;
}

.box-edu .body ul li a.blue {
  color: #0054a6;
}

.download-doc {
  margin-bottom: 40px;
  margin-top: 20px;
}

.download-doc a figure {
  display: inline-block;
  float: left;
  margin-right: 7px;
}

.download-doc a p {
  display: inline-block;
  margin-bottom: 0;
  line-height: 1;
  padding-top: 7px;
  text-decoration: underline;
  -moz-text-decoration-color: #bfbfbf;
       text-decoration-color: #bfbfbf;
  color: #000;
  font-size: 13px;
}

.download-doc a:hover, .download-doc a:focus {
  opacity: .7;
}

.filter-cat {
  padding-top: 50px;
  margin-bottom: 10px;
  text-align: right;
}

.filter-cat ul {
  padding-left: 0;
}

.filter-cat ul li {
  display: inline-block;
  text-transform: uppercase;
  margin-right: 12px;
}

@media (max-width: 480px) {
  .filter-cat ul li {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.filter-cat ul li:last-child {
  margin-right: 0;
}

.filter-cat ul li .form-control {
  box-shadow: none;
  height: 26px;
  background: transparent;
  border-color: #898989;
}

@media (max-width: 992px) {
  .filter-cat ul li .form-control {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .filter-cat {
    text-align: center;
  }
}

.box-col {
  margin: 30px 0 60px;
}

.box-col .single-box-col {
  background: #f1f1f1;
  text-align: center;
  padding: 45px;
  margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .box-col .single-box-col {
    min-height: 160px;
  }
}

.box-col .single-box-col a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.box-col .single-box-col a:hover {
  color: #c5060b;
}

.single-series {
  position: relative;
  border: 1px solid #cacaca;
  transition: all 250ms ease;
  padding: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.single-series h5 {
  margin: 0;
  margin-bottom: 15px;
  color: #000 !important;
}

.single-series a {
  display: none;
  transition: all 250ms ease;
}

.single-series:hover {
  background: #c5060b;
}

.single-series:hover a {
  display: block;
  color: #fff;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: underline;
}

.single-series:hover h5 {
  color: #fff !important;
}

.single-series:hover p {
  color: #fff;
}

.filter-table {
  border: 1px solid;
}

.filter-table td {
  border: 1px solid #dbdbdb;
  padding: 5px 10px;
  text-align: center;
}

.filter-table td a {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}

.filter-table td a:hover, .filter-table td a.active {
  color: #c5060b;
}

@media (max-width: 480px) {
  .filter-table td {
    padding: 3px 8px;
  }
}

.authors-panelists {
  padding-left: 0;
  list-style: none;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}

.authors-panelists li {
  margin-bottom: 13px;
}

@media (max-width: 767px) {
  .authors-panelists {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .authors-panelists {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.single-papers {
  margin: 50px 0;
}

.single-papers .readmore {
  text-decoration: underline;
}

.single-papers h4 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600 !important;
  line-height: 1.4;
}

.single-papers h4 a {
  color: #000;
}

.single-papers h4 a:hover, .single-papers h4 a:focus {
  opacity: .6;
}

.single-papers .date {
  color: #000;
  opacity: .6;
}

.single-papers figure {
  display: inline-block;
  float: left;
  width: 19%;
}

@media (max-width: 480px) {
  .single-papers figure {
    display: block;
    width: 100%;
    float: none;
  }
}

.single-papers .desc {
  display: inline-block;
  width: 77%;
  margin-left: 20px;
}

@media (max-width: 480px) {
  .single-papers .desc {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}

.single-papers .wrapp-col-papers {
  margin-top: 25px;
}

.pagination-papers li a {
  border: none;
  color: #000;
  opacity: .4;
}

.pagination-papers li a:hover, .pagination-papers li a.active, .pagination-papers li a:focus {
  background: #f5f5f5;
  color: #000;
  opacity: 1;
}

.pagination-papers li:first-child a {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.pagination-papers li:last-child a {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.meta-desc {
  padding-left: 0;
  list-style: none;
}

.meta-desc li {
  display: inline-block;
  margin-right: 25px;
  color: #000;
}

.meta-desc li:last-child {
  opacity: .6;
}

.box-map {
  background: #f6f6f6;
  border: 1px solid #ececec;
  padding: 15px;
  margin-bottom: 30px;
}

.box-map ul {
  padding-left: 0;
  list-style: none;
}

.box-map ul li {
  font-size: 14px;
}

.box-map ul li h5 {
  margin: 0;
  color: #000 !important;
}

.box-map ul li:first-child {
  margin-bottom: 6px;
}

.box-map .btn {
  border-radius: 0;
  width: 100%;
}

.top-link-events {
  display: block;
  margin-bottom: 5px;
}

#map {
  width: 100%;
  height: 430px;
  background-color: grey;
}

@media (max-width: 767px) {
  #map {
    margin-bottom: 20px;
  }
}

.cons-col {
  margin-bottom: 30px;
}

.cons-col figure {
  display: inline-block;
  float: left;
  width: 25%;
}

.cons-col .desc {
  display: inline-block;
  width: 72%;
  margin-left: 15px;
}

@media (max-width: 480px) {
  .cons-col figure {
    display: block;
    width: 100%;
    float: none;
  }
  .cons-col .desc {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}

.box-contribute {
  border: 1px solid #cacaca;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.box-contribute .inner-box {
  position: relative;
  text-align: center;
}

.box-contribute .inner-box .top-box {
  max-width: 233px;
  margin: auto;
}

.box-contribute .inner-box .top-box h4 {
  margin-top: 0;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
  color: #000;
}

.box-contribute .inner-box .btn-wrapp {
  padding-top: 70px;
}

.box-contribute .inner-box .btn-wrapp .btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  white-space: normal;
}

@media (max-width: 767px) {
  .box-contribute .eqHeight {
    height: auto !important;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
  margin-bottom: 3px;
}

.sponsors-list {
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.sponsors-list li {
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .sponsors-list li {
    margin-right: 0;
  }
}

@media screen and (max-width: 1199px) {
  .attorneys-pict {
    margin: 20px auto;
    max-width: 800px;
  }
}
@media screen and (max-width: 991px) {
  .attorneys-pict {
    max-width: 560px;
  }
}
@media screen and (max-width: 767px) {
  .attorneys-pict {
    max-width: 231px;
  }
  .attorneys-pict li {
    margin: 15px 0 25px !important;
  }
}
