@import url("bootstrap.min.css");
a,
svg {
  transition: all 0.2s ease-in-out !important;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
header .logo {
  display: inline-block;
  position: relative;
}
header .logo a {
  display: block;
  padding: 30px 35px;
  background: #E1021F;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 1002;
  position: relative;
}
header .logo .menu {
  height: 20px;
  background: url(/img/icons/menu-down.svg) no-repeat center;
  background-size: 45px;
  position: relative;
  padding-top: 40px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  width: 100%;
  z-index: 1002;
}
header .logo .menu.active {
  opacity: 0;
}
header .logo ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out !important;
  background: #E1021F;
  position: relative;
  display: block;
  z-index: 1001;
  transform: translateY(-140%);
}
header .logo ul.active {
  padding: 0 35px 0 45px;
  padding-bottom: 25px;
  padding-top: 15px;
  margin-top: -50px;
  transform: translateY(0);
}
header .logo ul a {
  color: #FFF;
  text-transform: uppercase;
  display: block;
  font-weight: 200;
  padding: 20px 0;
  border-top: 1px solid #FFF;
  padding-left: 40px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  background: url(/img/icons/dot.svg) no-repeat left center;
  letter-spacing: 0.07em;
}
header .logo ul a:hover {
  color: #000;
}
@media only screen and (max-width: 1080px) {
  header .logo a {
    padding: 20px 30px;
  }
  header .logo img {
    width: 180px;
  }
  header .logo ul a {
    font-size: 18px;
    padding-left: 30px;
  }
  header .logo .menu {
    height: 16px;
  }
}
@media only screen and (max-width: 580px) {
  header .logo img {
    width: 145px;
  }
  header .logo a {
    padding: 14px 20px;
  }
  header .logo .menu {
    height: 14px;
  }
  header .logo ul a {
    padding: 15px 0;
    padding-left: 20px;
    font-size: 17px;
  }
  header .logo ul.active {
    margin: 0 0 25px;
    height: 250px;
    margin-top: -45px;
  }
}

@keyframes easeInY {
  from {
    transform: translateY(200px) translate3d(0, 0, 0);
  }
  to {
    transform: translateY(0px) translate3d(0, 0, 0);
  }
}
@keyframes easeInYReverse {
  from {
    transform: translateY(-200px) translate3d(0, 0, 0);
  }
  to {
    transform: translateY(0px) translate3d(0, 0, 0);
  }
}
@keyframes easeInX {
  from {
    transform: translateX(100%) translate3d(0, 0, 0);
  }
  to {
    transform: translateX(0px) translate3d(0, 0, 0);
  }
}
@keyframes easeInXReverse {
  from {
    transform: translateX(-100%) translate3d(0, 0, 0);
  }
  to {
    transform: translateX(0px) translate3d(0, 0, 0);
  }
}
@keyframes easeInX2 {
  from {
    transform: translateX(100%) translate3d(0, 0, 0);
    opacity: 0;
  }
  to {
    transform: translateX(0px) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes easeInXReverse2 {
  from {
    transform: translateX(-100%) translate3d(0, 0, 0);
    opacity: 0;
  }
  to {
    transform: translateX(0px) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn2 {
  0% {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
footer {
  background: #E1021F;
  background: rgb(225, 2, 28);
  background: linear-gradient(90deg, rgb(225, 2, 28) 0%, rgba(233, 13, 42, 0.7021402311) 100%);
  color: #FFF;
  text-align: center;
  font-size: 13px;
  padding: 10px;
}
footer .ita {
  font-style: italic;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 200;
  letter-spacing: 0.08em;
}
footer .ita a {
  font-weight: 200;
}
footer.home-footer {
  display: none;
  font-style: italic;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 200;
  letter-spacing: 0.08em;
}
footer.home-footer a {
  font-weight: 200;
}
footer.page-footer {
  background: #E1021F;
  padding: 40px 0;
  text-align: left;
  font-size: 15px;
}
footer a {
  color: #FFF;
  display: block;
  font-weight: 400;
}
footer a:hover {
  color: #000;
}
footer a.bo {
  font-weight: 700;
}
footer p {
  font-weight: 100;
  font-size: 15px;
  font-style: italic;
}
footer .bordered {
  padding-right: 40px;
  border-right: 1px solid #FFF;
}
footer h4 {
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  footer.page-footer {
    text-align: center;
  }
  footer .bordered {
    border: none;
    border-bottom: 1px solid #FFF;
    padding-bottom: 35px;
    padding-right: 0;
  }
  footer .bordered img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 580px) {
  footer footer.page-footer {
    text-align: left;
  }
}

img,
svg {
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "nunito-sans", sans-serif;
  overflow-x: hidden;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 100;
  background-size: 45%;
  background-position: 115% -35%;
}
body.no-scroll {
  overflow: hidden;
}
body.disabled-page:before {
  background: rgba(0, 0, 0, 0.45);
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100000;
}
body * {
  outline: none !important;
}

p {
  font-weight: 100;
}

a,
svg {
  text-decoration: none;
  color: #E1021F;
}
a:hover,
svg:hover {
  text-decoration: none;
}
a.link-dark:hover,
svg.link-dark:hover {
  color: #E1021F;
}
a.button,
svg.button {
  color: #000;
  background: #FFF;
  display: inline-block;
  text-decoration: none;
  padding: 4px 25px;
  border: 1px solid #FFF;
  font-weight: 600;
}
a.button:hover,
svg.button:hover {
  text-decoration: none;
  color: #FFF;
  background: #000;
}

button {
  outline: none !important;
}

.wrapper {
  max-width: 1500px;
  padding: 0 50px;
  margin: auto;
  position: relative;
}
.wrapper.wrapper-xl {
  max-width: 1680px;
}

.wrapper-md {
  max-width: 945px;
  margin: auto;
}

.wrapper-sm {
  max-width: 700px;
  margin: auto;
  padding: 0 20px;
}

.wrapper-mdd {
  max-width: 840px;
  padding: 0 30px;
}

.wrapper-xs {
  max-width: 400px;
  padding: 0 30px;
  margin: auto;
}
.wrapper-xs h4 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 35px;
}
.wrapper-xs p {
  font-size: 24px;
}
.wrapper-xs.expand {
  max-width: 450px;
}

.carousel-margin-minus {
  margin-top: -55px;
}

.banner {
  position: relative;
}
.banner img.d-sm-block {
  width: 100%;
}
.banner .content {
  position: absolute;
  background: #E1021F;
  background: rgba(225, 2, 31, 0.85);
  z-index: 10;
  color: #FFF;
  top: 70%;
  left: 50%;
  padding: 40px 100px;
  border-radius: 30px;
  transform: translateX(-50%);
  text-align: center;
}
.banner .content h1 {
  font-size: 0;
  width: 100%;
  height: 70px;
  background: url(/img/can-overcome-txt.svg) no-repeat center;
  background-size: contain;
}
.banner .content p {
  font-size: 0.8em;
  font-style: italic;
  font-weight: 100;
  font-family: "neue-haas-grotesk-display", sans-serif;
  letter-spacing: 0.08em;
}
.banner .content p strong {
  font-family: "nunito-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-right: 10px;
}
.banner .item {
  height: calc(100vh - 39px);
  position: relative;
  background: #000;
}
.banner .item a {
  position: absolute;
  z-index: 1000;
  color: #fff;
  top: 60%;
  left: 50%;
  font-weight: 100;
  font-size: 30px;
  text-transform: uppercase;
  display: block;
  padding-left: 85px;
  transform: translateX(-50%);
  background: url(/img/icons/triple-arrow.svg) no-repeat center left;
  font-style: italic;
}
.banner .item::before {
  content: "";
  position: absolute;
  z-index: 200;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out !important;
  opacity: 0.85;
}
.banner .item::after {
  content: "";
  z-index: 201;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 65%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.banner .item:hover::before {
  filter: grayscale(0);
  opacity: 1;
}
.banner .item-1::before {
  background-image: url(/img/home/banner1.jpg);
}
.banner .item-1::after {
  background-image: url(/img/home/layer1.svg);
}
.banner .item-2::before {
  background-image: url(/img/home/banner2.jpg);
}
.banner .item-2::after {
  background-image: url(/img/home/layer2.svg);
}
.banner .item-3::before {
  background-image: url(/img/home/banner3.jpg);
}
.banner .item-3::after {
  background-image: url(/img/home/layer3.svg);
}
.banner .item-4::before {
  background-image: url(/img/home/banner4.jpg);
}
.banner .item-4::after {
  background-image: url(/img/home/layer4.svg);
}

.page .banner .content {
  transform: translate(-50%, 45%);
  width: 62%;
  top: auto;
  bottom: 0;
  max-width: 1100px;
}
.page .page-content {
  padding: 150px 0 80px;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
}
.page .page-content hr {
  border-top: 1px solid #E1021F;
  opacity: 1;
  width: 100%;
}
.page .page-content h1 {
  font-size: 75px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 200;
  color: #E1021F;
  font-style: italic;
  letter-spacing: 0.03em;
}
.page .page-content h2 {
  color: #E1021F;
  font-weight: 100;
  font-size: 38px;
}
.page .page-content h2.ita {
  font-style: italic;
}
.page .page-content h2.bo {
  color: #707070;
  font-weight: 900;
  margin: 60px 0 10px;
  position: relative;
  padding-top: 20px;
  padding-right: 300px;
}
.page .page-content h2.bo.alt {
  padding-right: 0;
}
.page .page-content h2.bo.alt::before {
  display: none;
}
.page .page-content h2.bo::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: #E1021F;
  height: 1px;
}
.page .page-content h2.bo span {
  background: #E1021F;
  color: #FFF;
  font-size: 25px;
  padding: 20px 35px;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
.page .page-content h2.bo span.alt {
  transform: translateY(-100%);
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.page .page-content h4 {
  font-weight: 800;
  font-size: 25px;
}
.page .page-content h4.bo {
  font-weight: 100;
  font-size: 30px;
  font-style: italic;
}
.page .page-content h4.bo.alt {
  color: #E1021F;
}
.page .page-content h5 {
  color: #E1021F;
  font-weight: 800;
  font-size: 24px;
}
.page .page-content h5.bo {
  font-weight: 100;
  font-style: italic;
}
.page .page-content .p-details strong {
  font-weight: 900;
}
.page .page-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page .page-content ul li {
  margin-bottom: 20px;
  padding-left: 50px;
  background: url(/img/icons/dot-red.svg) no-repeat left 12px;
}
.page .page-content ul li a {
  text-decoration: underline;
  font-weight: bold;
}
.page .page-content .link-t {
  font-weight: 800;
  border: 1px solid #E1021F;
  text-align: center;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  font-size: 25px;
}
.page .page-content .link-t .title {
  background: #E1021F;
  color: #FFF;
  padding: 20px 20px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-left-radius: 15px;
}
.page .page-content .link-t a {
  display: block;
  padding: 20px 30px;
  color: #E1021F;
}
.page .page-content .link-t a:hover {
  color: #000;
}
.page .page-content .page-slider-2.owl-theme .owl-nav button.owl-next,
.page .page-content .page-slider-2.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  top: 45%;
  font-size: 0;
  width: 50px;
  height: 20px;
  background: url(/img/icons/t-arrow-left.svg);
  background-size: cover;
}
.page .page-content .page-slider-2.owl-theme .owl-nav button.owl-next:hover,
.page .page-content .page-slider-2.owl-theme .owl-nav button.owl-prev:hover {
  background-color: transparent;
}
.page .page-content .page-slider-2.owl-theme .owl-nav button.owl-prev {
  left: -85px;
}
.page .page-content .page-slider-2.owl-theme .owl-nav button.owl-next {
  right: -85px;
  background-image: url(/img/icons/t-arrow-right.svg);
}
.page .page-content .page-slider-2.owl-theme .owl-nav .disabled {
  opacity: 0.7;
  filter: grayscale(100%);
}
.page .page-content .page-slider.owl-theme.owl-carousel .owl-stage-outer {
  transform: translate3d(0, 0, 0);
}
.page .page-content .page-slider.owl-theme .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 70px;
}
.page .page-content .page-slider.owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #E1021F;
}
.page .page-content .page-slider.owl-theme .owl-dots .owl-dot.active span {
  background: #E1021F;
}
.page .page-content .page-slider.owl-theme.alt .owl-dots {
  bottom: 20px;
}
.page .page-content .partners {
  text-align: center;
}
.page .page-content .partners h5 {
  font-size: 21px;
  padding: 15px 0;
}
.page .p-badge {
  color: #FFF;
  background: #E1021F;
  font-weight: 900;
  padding: 15px 25px;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  text-align: center;
}

.people-slider.owl-carousel.inactive {
  display: none !important;
}
.people-slider.owl-carousel a {
  margin: 0 50px;
  display: block;
  text-align: center;
}
.people-slider.owl-carousel a .img {
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.people-slider.owl-carousel a .img:before {
  content: "";
  width: 85px;
  height: 85px;
  background: url(/img/icons/plus.svg) no-repeat;
  position: absolute;
  right: 0;
  background-size: cover;
  top: 0;
}
.people-slider.owl-carousel a h6 {
  color: #707070;
  font-weight: 100;
  font-style: italic;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 25px;
}
.people-slider.owl-carousel .owl-nav .disabled {
  opacity: 0.7;
  filter: grayscale(100%);
}
.people-slider.owl-carousel .owl-nav button.owl-prev {
  left: -45px;
}
.people-slider.owl-carousel .owl-nav button.owl-next,
.people-slider.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 45%;
  font-size: 0;
  width: 50px;
  height: 20px;
  background: url(/img/icons/t-arrow-left.svg);
  background-size: cover;
}
.people-slider.owl-carousel .owl-nav button.owl-next:hover,
.people-slider.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: transparent;
}
.people-slider.owl-carousel .owl-nav button.owl-next {
  right: -45px;
  background-image: url(/img/icons/t-arrow-right.svg);
}
.people-slider.owl-carousel .owl-item img {
  width: auto;
}

.people-s.inactive {
  display: none !important;
}
.people-s a {
  margin: 0 10px;
  display: block;
  text-align: center;
  padding-bottom: 30px;
}
.people-s a .img {
  display: block;
  margin: auto;
  margin-bottom: 20px;
  position: relative;
  max-width: 190px;
}
.people-s a .img:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(/img/icons/plus.svg) no-repeat;
  position: absolute;
  right: 0;
  background-size: cover;
  top: 0;
}
.people-s a h6 {
  color: #707070;
  font-weight: 100;
  font-style: italic;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
}

.people-detail-slider.owl-theme {
  font-size: 18px;
  font-weight: 400;
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out !important;
}
.people-detail-slider.owl-theme.active {
  display: block;
  opacity: 1;
}
.people-detail-slider.owl-theme .margin-minus {
  margin-top: -130px;
  margin-bottom: 80px;
}
.people-detail-slider.owl-theme h5 {
  font-size: 35px;
  font-weight: 900;
  padding-top: 65px;
  border-top: 1px solid #E1021F;
}
.people-detail-slider.owl-theme h6 {
  font-size: 25px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.people-detail-slider.owl-theme .img {
  margin-right: 90px;
  display: block;
  text-align: left;
  position: relative;
}
.people-detail-slider.owl-theme .img:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(/img/icons/minus.svg) no-repeat;
  position: absolute;
  right: 5px;
  background-size: cover;
  top: 10px;
}
.people-detail-slider.owl-theme p.strong {
  font-weight: 900;
  font-size: 18px;
  margin-top: 0;
}
.people-detail-slider.owl-theme .content {
  margin-top: 30px;
}
.people-detail-slider.owl-theme .content p {
  margin-bottom: 20px;
}
.people-detail-slider.owl-theme .owl-nav .disabled {
  opacity: 0.7;
  filter: grayscale(100%);
}
.people-detail-slider.owl-theme .owl-nav button.owl-next,
.people-detail-slider.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  top: 110px;
  font-size: 0;
  width: 50px;
  height: 20px;
  background: url(/img/icons/t-arrow-left.svg);
  background-size: cover;
}
.people-detail-slider.owl-theme .owl-nav button.owl-next:hover,
.people-detail-slider.owl-theme .owl-nav button.owl-prev:hover {
  background-color: transparent;
}
.people-detail-slider.owl-theme .owl-nav button.owl-prev {
  right: 100px;
}
.people-detail-slider.owl-theme .owl-nav button.owl-next {
  right: 10px;
  background-image: url(/img/icons/t-arrow-right.svg);
}

.event-slider.owl-carousel.owl-theme .owl-item {
  padding-top: 70px;
}
.event-slider.owl-carousel.owl-theme .item {
  border: 1px solid #E1021F;
  padding: 60px 50px;
  border-radius: 15px;
  max-width: 1380px;
  position: relative;
  padding-right: 150px;
}
.event-slider.owl-carousel.owl-theme .item span {
  background: #E1021F;
  padding: 10px;
  color: #FFF;
  font-weight: 900;
  font-size: 25px;
  padding: 15px 40px;
  -webkit-border-top-right-radius: 15px;
  -webkit-border-top-left-radius: 15px;
  -moz-border-radius-topright: 15px;
  -moz-border-radius-topleft: 15px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  position: absolute;
  right: 5px;
  top: 0;
  transform: translateY(-100%);
}
.event-slider.owl-carousel.owl-theme .item h3 {
  font-weight: 900;
  color: #E1021F;
}
.event-slider.owl-carousel.owl-theme .item h5 {
  font-weight: 200;
}
.event-slider.owl-carousel.owl-theme .item h6 {
  margin-top: 20px;
  font-size: 23px;
  font-weight: 100;
  font-style: italic;
}
.event-slider.owl-carousel.owl-theme .owl-nav button.owl-next {
  right: 60px;
  background-image: url(/img/icons/t-arrow-right.svg);
}
.event-slider.owl-carousel.owl-theme .owl-nav button.owl-prev {
  right: 140px;
  background-image: url(/img/icons/t-arrow-left.svg);
}
.event-slider.owl-carousel.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  filter: grayscale(100%);
}
.event-slider.owl-carousel.owl-theme .owl-nav button.owl-next,
.event-slider.owl-carousel.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 20px;
  transform: translateY(-50%);
  font-size: 0;
  background-size: cover;
}
.event-slider.owl-carousel.owl-theme .owl-nav button.owl-next:hover,
.event-slider.owl-carousel.owl-theme .owl-nav button.owl-prev:hover {
  background-color: transparent;
}

@media only screen and (max-width: 1480px) {
  .page .page-content .page-slider-2.owl-theme .owl-nav button.owl-prev,
  .page .page-content .page-slider-2.owl-theme .owl-nav button.owl-next {
    top: auto;
    bottom: 60px;
  }
  .page .page-content .page-slider-2.owl-theme .owl-nav button.owl-prev {
    left: 0;
  }
  .page .page-content .page-slider-2.owl-theme .owl-nav button.owl-next {
    right: 0;
  }
}
@media only screen and (max-width: 1380px) {
  .people-detail-slider.owl-theme .margin-minus {
    margin-top: -80px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1180px) {
  .people-detail-slider.owl-theme .margin-minus {
    margin-top: -33px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1280px) {
  .banner .content {
    width: 70%;
    padding: 40px 80px;
  }
  .page .page-content h1 {
    font-size: 65px;
  }
  .people-slider.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
  }
  .people-slider.owl-carousel .owl-nav button.owl-next {
    right: -25px;
  }
}
@media only screen and (max-width: 1080px) {
  .event-slider.owl-carousel.owl-theme .item span {
    font-size: 18px;
    padding: 15px 34px;
  }
  .page .page-content h1 {
    font-size: 56px;
  }
  .page .page-content h2 {
    font-size: 30px;
  }
  .page .page-content h2.bo span {
    font-size: 18px;
    padding: 15px 30px;
  }
  .people-slider.owl-carousel .owl-nav button.owl-next,
  .people-slider.owl-carousel .owl-nav button.owl-prev {
    top: 35%;
    width: 35px;
    height: 14px;
  }
  .people-slider.owl-carousel .owl-nav button.owl-next {
    right: -35px;
  }
  .people-slider.owl-carousel .owl-nav button.owl-prev {
    left: -35px;
  }
}
@media only screen and (max-width: 980px) {
  .banner .item a {
    top: 55%;
    font-size: 24px;
    padding-left: 55px;
    background-size: 40px;
  }
  .banner .content {
    top: 65%;
    padding: 25px 30px;
  }
  .banner .content h1 {
    height: 55px;
  }
  .banner .content p {
    font-size: 0.65em;
  }
  .people-slider.owl-carousel a {
    margin: 0 15px;
  }
  .people-slider.owl-carousel a .img:before {
    width: 45px;
    height: 45px;
  }
  .people-detail-slider.owl-theme .img {
    margin-right: 30px;
  }
  .people-detail-slider.owl-theme .img:before {
    width: 50px;
    height: 50px;
  }
  .people-detail-slider.owl-theme h6 {
    font-size: 24px;
  }
  .people-detail-slider.owl-theme .content {
    margin-top: 20px;
  }
  .page .page-content h1 {
    font-size: 52px;
  }
  .page .page-content h4.bo {
    font-size: 23px;
  }
  .page .page-content h2 {
    font-size: 32px;
  }
  .event-slider.owl-carousel.owl-theme .item span {
    font-size: 20px;
  }
  .event-slider.owl-carousel.owl-theme .item span {
    font-size: 20px;
  }
  .people-detail-slider.owl-theme .margin-minus {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 768px) {
  .page .page-content {
    font-size: 18px;
  }
  .page .page-content h1 {
    font-size: 55px;
  }
  .page .page-content h2 {
    font-size: 27px;
  }
  .page .page-content h2.bo {
    margin: 35px 0 10px;
  }
  .page .page-content h4 {
    font-size: 20px;
    line-height: 1.4;
  }
  .page .page-content h5 {
    font-size: 21px;
  }
  .page .page-content ul li {
    margin-bottom: 15px;
  }
  .page .page-content .link-t {
    font-size: 21px;
  }
  .page .page-content .link-t .title {
    padding: 15px;
  }
  .page .page-content .link-t a {
    padding: 15px 20px;
  }
  .page .page-content .partners h5 {
    font-size: 18px;
    line-height: 1.4;
  }
  .people-slider.owl-carousel .owl-nav button.owl-prev {
    left: -15px;
  }
  .people-slider.owl-carousel .owl-nav button.owl-next {
    right: -15px;
  }
  .people-slider.owl-carousel a h6 {
    font-size: 18px;
  }
  .event-slider.owl-carousel.owl-theme .item span {
    padding: 15px 30px;
  }
  .page .page-content h2.bo span {
    font-size: 16px;
    padding: 15px 30px;
  }
  .people-detail-slider.owl-theme .margin-minus {
    margin-top: 5px;
  }
  .people-detail-slider.owl-theme p.strong {
    font-size: 16px;
  }
}
@media only screen and (max-width: 710px) {
  .carousel-margin-minus {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .people-s a .img:before {
    width: 45px;
    height: 45px;
  }
  .page .banner .content {
    width: 70%;
    top: 49%;
    bottom: auto;
    background: #E1021F;
  }
  .page .p-badge {
    position: absolute;
    top: -25px;
    right: 0;
    padding: 9px 30px;
    font-size: 15px;
    -webkit-border-bottom-right-radius: 7px;
    -webkit-border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
  }
  .page .page-content {
    padding: 25px 0 50px;
    font-size: 17px;
    position: relative;
  }
  .page .page-content h1 {
    font-size: 45px;
    border-bottom: 1px solid #E1021F;
    padding-bottom: 30px;
  }
  .page .page-content h1.alt {
    border: none;
    padding-bottom: 10px;
  }
  .page .page-content h5 {
    font-size: 19px;
  }
  .page .page-content h2.bo {
    padding-right: 0;
  }
  .page .page-content h2.bo span {
    font-size: 16px;
    transform: translateY(-100%);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    right: auto;
    left: 0;
  }
  .page .page-content .link-t {
    font-size: 17px;
  }
  .page .page-content .link-t .title {
    padding: 10px;
  }
  .page .page-content .link-t a {
    padding: 10px 15px;
  }
  .banner .item::before {
    filter: grayscale(0);
    opacity: 1;
  }
  .banner .item::after {
    display: none;
  }
  .banner .content {
    text-align: left;
  }
  .banner .content p {
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.2;
  }
  .banner .content p strong {
    display: block;
  }
  .banner .item-1::before {
    background-image: url(/img/home/banner1-mobile.jpg);
  }
  .banner .item-2::before {
    background-image: url(/img/home/banner2-mobile.jpg);
  }
  .banner .item-3::before {
    background-image: url(/img/home/banner3-mobile.jpg);
  }
  .banner .item-4::before {
    background-image: url(/img/home/banner4-mobile.jpg);
  }
  .wrapper {
    padding: 0 30px;
  }
  .people-detail-slider.owl-theme h5 {
    padding-top: 50px;
    border-top: none;
  }
  .people-detail-slider.owl-theme .owl-nav button.owl-next,
  .people-detail-slider.owl-theme .owl-nav button.owl-prev {
    top: 30px;
  }
  .people-detail-slider.owl-theme {
    font-size: 16px;
  }
  .people-detail-slider.owl-theme .img {
    margin-right: 5px;
  }
  .people-detail-slider.owl-theme .img:before {
    width: 30px;
    height: 30px;
  }
  .people-detail-slider.owl-theme p.strong {
    font-size: 17px;
  }
  .event-slider.owl-carousel.owl-theme .item {
    border: 2px solid #E1021F;
    padding: 35px 40px;
    padding-right: 30px;
  }
  .event-slider.owl-carousel.owl-theme .item span {
    font-size: 18px;
    padding: 10px 30px;
    right: auto;
    left: 5px;
  }
  .event-slider.owl-carousel.owl-theme .owl-nav button.owl-next,
  .event-slider.owl-carousel.owl-theme .owl-nav button.owl-prev {
    top: auto;
    bottom: 75px;
    width: 35px;
    height: 15px;
  }
  .event-slider.owl-carousel.owl-theme .owl-nav button.owl-prev {
    right: 125px;
  }
  .event-slider.owl-carousel.owl-theme .event-slider.owl-carousel.owl-theme .item h6 {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .event-slider.owl-carousel.owl-theme .item h3 {
    font-size: 17px;
  }
  .event-slider.owl-carousel.owl-theme .item h6 {
    font-size: 16px;
    padding-bottom: 20px;
  }
  .page .page-content .page-slider.owl-theme .owl-dots {
    bottom: 20px;
  }
  .page .page-content .page-slider-2.owl-theme .owl-nav button.owl-prev,
  .page .page-content .page-slider-2.owl-theme .owl-nav button.owl-next {
    top: auto;
    bottom: 35px;
    width: 35px;
    height: 15px;
  }
}
@media only screen and (max-width: 395px) {
  .page .p-badge {
    top: -45px;
  }
  .page .page-content {
    padding: 45px 0 50px;
  }
  .page .page-content h1 {
    font-size: 40px;
  }
}

/*# sourceMappingURL=main.css.map */
