body {
  font-family: "Open Sans", sans-serif;
  color: #4d4643;
}

a {
  color: #082152;
}

a:hover {
  color: #fd5c28;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Muli", sans-serif;
}

.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #082152;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #fd5c28;
  transition: 0.3s ease-in-out;
}
.icon-box-container{
  
  display: flex;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0ms !important;
  }
}

#header {
  height: 85px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 2px 0;
  background: #141517;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #2b2320;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 3px;
  list-style: none;
}

.nav-menu > div {
  float: right;
  text-align: right;
  margin: 0 auto 0 auto;
}

.nav-menu > div > a {
  display: block;
  position: relative;
  color: #800002;
  padding: 0 0 0 0;
  margin-bottom: 2px;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.nav-menu > ul > li {
  position: relative;
  top: -2px;
  white-space: nowrap;
  float: left;
}

.nav-menu > ul > li + li {
  padding-left: 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 14px 0 15px 0;
  margin-bottom: 2px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #FD6262;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #581601;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #082152;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #65534c;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2b2320;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-transform: uppercase;
  font-size: 14px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #082152;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(14, 11, 10, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 1);
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#hero .container {
  display: flex;
  align-items: left;
  justify-content: center;
  position: absolute;
  bottom: 10;
  top: 5;
  left: 10;
  right: 500;
  width: 200vh;
}

#hero .carousel-content {
  background: rgba(255, 255, 255, 0);
  padding: 20px;
  color: #000000;
  -webkit-animation-duration: 0s;
  animation-duration: 0s;
  border-top: 0px solid #ffffff;
  margin-bottom: 60px;
}

#hero .carousel-content h2 {
  color: #ffffff;
  margin-bottom: 30px;
  margin-top: 100px;
  font-size: 60px;
  font-weight: 800;
  text-align: left;
}

#hero .carousel-content h3 {
  color: #CD6632;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

#hero .carousel-content p {
  color: #ffffff;
  font-size: 24px;
  font-weight:600;
  margin-bottom: 15px;
  text-align: left;
}

#hero .carousel-content p > img {
  width: 35px;
  height: 35px;
  text-align: center;
}

#hero .btn-get-started {
  font-family: "Muli", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #ffffff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #FD6262;
}

#hero .btn-get-started:hover {
  background: #FD6262;
  color: #fff;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero {
    height: calc(100vh - 72px);
  }
  #hero .carousel-item {
    height: calc(100vh - 72px);
  }
}

@media (max-width: 768px) {
  #hero .container {
    width: auto;
  }

  #hero .carousel-content {
    margin: 0 40px 60px 40px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  #hero .carousel-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  #hero .carousel-content p {
    font-size: 13px;
  }
}

@media (max-width: 667px) {
  #hero .container {
    width: auto;
  }

  #hero .carousel-content {
    margin: 0 40px 35px 40px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 0px;
    font-size: 20px;
  }

  #hero .carousel-content h3 {
    margin-bottom: 0px;
    font-size: 16px;
  }

  #hero .carousel-content p {
    font-size: 11px;
  }

  #hero .carousel-content p > img {
    width: 20px;
    height: 20px;
  }

  #hero .btn-get-started {
    font-size: 12px;
    padding: 8px 8px;
    margin: 0px;
    color: #000000;
    border: 2px solid #800002;
  }
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f3f2;
}

.section-title {
  padding-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #65534c;
}

.section-title h2 strong {
  font-weight: 700;
}

.section-title p {
  margin-bottom: 0;
}

.countdown {
  padding: 0 0 0 0;
  text-align: center;
  background: #993333;
}

.countdown .timer {
  padding: 0px;
  margin-top: 0px;
}

.countdown .timer b {
  color: #ffffff;
  font-size: 20px;
}

.countdown .timer .days-wrapper,
.countdown .timer .hours-wrapper,
.countdown .timer .minutes-wrapper,
.countdown .timer .seconds-wrapper {
  padding: 0px;
  display: inline-block;
  margin-top: 0px;
  width: 160px;
  height: 80px;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
}

.countdown .timer .days,
.countdown .timer .hours,
.countdown .timer .minutes,
.countdown .timer .seconds {
  font-size: 50px;
  line-height: 70px;
}

@media (max-width: 1024px) {
  .countdown .timer b {
    font-size: 20px;
  }

  .countdown .timer .days-wrapper,
  .countdown .timer .hours-wrapper,
  .countdown .timer .minutes-wrapper,
  .countdown .timer .seconds-wrapper {
    padding: 0px;
    display: inline-block;
    margin-top: 0px;
    width: 80px;
    height: 70px;
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
  }

  .countdown .timer .days,
  .countdown .timer .hours,
  .countdown .timer .minutes,
  .countdown .timer .seconds {
    font-size: 50px;
    line-height: 60px;
  }

  .countdown .timer b {
    padding: 0 0 0 0;
  }
}

@media (max-width: 769px) {
  .countdown .timer b {
    font-size: 20px;
  }

  .countdown .timer .days-wrapper,
  .countdown .timer .hours-wrapper,
  .countdown .timer .minutes-wrapper,
  .countdown .timer .seconds-wrapper {
    padding: 0px;
    display: inline-block;
    margin-top: 0px;
    width: 80px;
    height: 50px;
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
  }

  .countdown .timer .days,
  .countdown .timer .hours,
  .countdown .timer .minutes,
  .countdown .timer .seconds {
    width: 10px;
    font-size: 30px;
    line-height: 30px;
  }

  .countdown .timer b {
    width: 10px;
    padding: 0 0 0 0;
    font-size: 12px;
  }
}

@media (max-width: 667px) {
  .countdown .timer b {
    font-size: 20px;
  }

  .countdown .timer .days-wrapper,
  .countdown .timer .hours-wrapper,
  .countdown .timer .minutes-wrapper,
  .countdown .timer .seconds-wrapper {
    padding: 0px;
    display: inline-block;
    margin-top: 0px;
    width: 60px;
    height: 30px;
    color: #ffffff;
    font-size: 10px;
    line-height: 18px;
  }

  .countdown .timer .days,
  .countdown .timer .hours,
  .countdown .timer .minutes,
  .countdown .timer .seconds {
    width: 10px;
    font-size: 26px;
    line-height: 30px;
  }

  .countdown .timer b {
    width: 10px;
    padding: 0 0 0 0;
    font-size: 12px;
  }
}

.combo1 .content h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #082152;
}

.combo1 p {
  font-family: "Play",sans-serif;
  font-size: 20px;
  text-align: justify;
}

.combo1 h3 {
  padding-top: 20px;
  font-size: 20px;
}

.combo1 .content p:last-child {
  margin-bottom: 0;
}

.combo1 .news .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 5px 0 10px 60px;
}

.combo1 .news .icon-box i {
  font-size: 48px;
  float: left;
  color: #082152;
}

.combo1 .news .icon-box p {
  font-size: 15px;
  color: #082152;
  margin-left: 60px;
}

@media (max-width: 1024px) {

  .combo1 .news .title {
    color: #ffffff;
  }

  .combo1 .news .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 5px 0 10px 60px;
  }

  .combo1 .news .icon-box i {
    font-size: 48px;
    float: left;
    color: #082152;
  }

  .combo1 .news .icon-box p {
    font-size: 15px;
    color: #082152;
    margin-left: 60px;
  }
}

@media (max-width: 769px) {

  .combo1 .news .title {
    color: #ffffff;
  }

  .combo1 .news .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 5px 0 10px 60px;
  }

  .combo1 .news .icon-box i {
    font-size: 48px;
    float: left;
    color: #082152;
  }

  .combo1 .news .icon-box p {
    font-size: 15px;
    color: #082152;
    margin-left: 60px;
  }
}

@media screen and (max-width: 736px) {
  .combo1 .content h2 {
    font-weight: 700;
    font-size: 38px;
  }

  .combo1 .content p{
    font-size: 13px;
  }
}

@media screen and (max-width: 414px) {
  .combo1 .content h2 {
    font-weight: 700;
    font-size: 38px;
  }

  .combo1 .content p{
    font-size: 13px;
  }

  .combo1 h3 {
    font-size: 13px;
  }

  .combo1 .news .icon-box h4 {
    font-size: 16px;
    margin: 5px 0 10px 20px;
  }

  .combo1 .news .icon-box i {
    font-size: 30px;
    float: left;
  }

  .combo1 .news .icon-box p {
    font-size: 12px;
    margin-left: 30px;
  }
}

.combo2 {
  background: #993333;
}

.combo2 .dates .title {
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.combo2 .news .title {
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.combo2 .dates .icon-box h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.combo2 .dates .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffffff;
}

.combo2 .dates .icon-box p {
  font-size: 15px;
  color: #ffffff;
  margin-left: 60px;
}

.combo2 a:hover {
  text-decoration: underline #ffffff;
}

.combo2 .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.combo2 video {
  width: 480px;
  height: 320px;
}

.combo2 object {
  width: 480px;
  height: 320px;
}

.combo2 embed {
  width: 480px;
  height: 320px;
}

@media (max-width: 769px) {

  .combo2 video {
    width: 630px;
    height: 355px;
  }

  .combo2 object {
    width: 630px;
    height: 355px;
  }

  .combo2 embed {
    width: 630px;
    height: 355px;
  }
}

@media screen and (max-width: 736px) {
  .combo2 video {
    width: 410px;
    height: 231px;
  }

  .combo2 object {
    width: 410px;
    height: 231px;
  }

  .combo2 embed {
    width: 410px;
    height: 231px;
  }
}

@media screen and (max-width: 414px) {

  .combo2 .icon-box {
    padding-top: 2px;
  }

  .combo2 .dates .title h2 {
    font-size: 27px;
  }

  .combo2 .news .title h2 {
    font-size: 27px;
  }

  .combo2 .dates .icon-box h4 {
    font-size: 16px;
    margin: 5px 0 10px 20px;
  }

  .combo2 .dates .icon-box i {
    font-size: 30px;
    float: left;
  }

  .combo2 .dates .icon-box p {
    font-size: 12px;
    margin-left: 30px;
  }

  .combo2 video {
    width: 335px;
    height: 189px;
  }

  .combo2 object {
    width: 335px;
    height: 189px;
  }

  .combo2 embed {
    width: 335px;
    height: 189px;
  }
}

@media screen and (max-width: 320px) {
  .combo2 video {
    width: 280px;
    height: 158px;
  }

  .combo2 object {
    width: 280px;
    height: 158px;
  }

  .combo2 embed {
    width: 280px;
    height: 158px;
  }
}

.keyspeakers {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/keyspeakers-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.keyspeakers .title h3 {
  color: #ffffff;
  padding-bottom: 30px;
  font-size: 50px;
  text-align: center;
}

.keyspeakers .section-header {
  margin-bottom: 40px;
}

.keyspeakers .member {
  text-align: center;
  color: #fff;
  display: inline-block;
  text-align: center;
}

.keyspeakers .member .member-img {
  width: 150px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

.keyspeakers .member .member-img:hover {
  width: 150px;
  border-radius: 50%;
  border: 6px solid rgba(0, 129, 205, 0.7);
  transition: ease all 0.8s;
  margin: 0 auto;
}

.keyspeakers .member h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #ffffff;
}

.keyspeakers .member h4 {
  font-size: 16px;
  color: #f6f6f6;
  margin: 0 0 15px 0;
}

@media screen and (max-width: 769px) {
  .keyspeakers .member p {
    width: 80%;
  }

  .keyspeakers h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 414px) {
  .keyspeakers .member h3 {
    font-size: 18px;
  }

  .keyspeakers .title h3 {
    font-size: 26px;
  }
}

.iac h2 {
  color: #808080;
  padding-bottom: 0px;
  font-size: 50px;
  text-align: center;
  font-weight: 500;
}

.iac h3 {
  color: #800002;
  padding-top: 20px;
  padding-bottom: 0px;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  border-bottom-style:solid;
  border-bottom-width: 2px;
}

.iac h4 {
  font-size: 20px;
  text-align: center;
}

.iac .member {
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .iac h2 {
    font-size: 30px;
  }

  .iac h3 {
    font-size: 23px;
  }

  .iac h4 {
    font-size: 18px;
    text-align: center;
  }
}

@media screen and (max-width: 414px) {
  .iac h2 {
    font-size: 26px;
    padding-bottom: 0px;
  }

  .iac h3 {
    font-size: 18px;
  }

  .iac h4 {
    font-size: 12px;
  }

  .iac .member {
    margin-bottom: 5px;
  }
}

.journal h3 {
  color: #808080;
  padding-bottom: 30px;
  font-size: 50px;
  text-align: center;
}

.journal .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.journal .member:hover {
  box-shadow: 0px 2px 15px rgba(0, 129, 205, 0.7);
  transition: ease all 0.5s;
}

.journal .member .member-img {
  position: relative;
  overflow: hidden;
}

.journal .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.journal .member .social a {
  transition: color 0.3s;
  color: #052c3f;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.journal .member .social a:hover {
  color: #85b0be;
}

.journal .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.journal .member .member-info {
  padding: 25px 15px;
}

.journal .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #052c3f;
}

.journal .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.journal .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.journal .member:hover .social {
  opacity: 1;
}

@media screen and (max-width: 769px) {
  .journal h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 414px) {
  .journal h3 {
    font-size: 26px;
  }
}

.partners h3 {
  color: #808080;
  padding-bottom: 30px;
  font-size: 50px;
  text-align: center;
}

.partners .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.partners .member:hover {
  box-shadow: 0px 2px 15px rgba(0, 129, 205, 0.7);
  transition: ease all 0.5s;
}

.partners .member .member-img {
  position: relative;
  overflow: hidden;
}

.partners .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.partners .member .social a {
  transition: color 0.3s;
  color: #052c3f;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.partners .member .social a:hover {
  color: #85b0be;
}

.partners .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.partners .member .member-info {
  padding: 25px 15px;
}

.partners .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #052c3f;
}

.partners .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.partners .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.partners .member:hover .social {
  opacity: 1;
}

@media screen and (max-width: 769px) {
  .partners h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 414px) {
  .partners h3 {
    font-size: 26px;
  }
}

.combo5 h3 {
  color: #808080;
  padding-bottom: 30px;
  font-size: 50px;
  text-align: center;
}

.combo5 h4 {
  color: #993333;
  padding-bottom: 20px;
  font-size: 30px;
  text-align: center;
}

.combo5 h5 {
  font-size: 18px;
  text-align: center;
}

.combo5 .image {
  box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.1);
}

.combo5 p {
  font-family: "Play",sans-serif;
  font-size: 20px;
  text-align: justify;
  padding-top: 15px;
}

.combo5 .content p:last-child {
  margin-bottom: 0;
}

.combo5 video {
  padding-top: 30px;
  width: 640px;
  height: 360px;
}

@media screen and (max-width: 736px) {
  .combo5 video {
    padding-top: 30px;
    width: 360px;
    height: 203px;
  }
}

@media screen and (max-width: 667px) {
  .combo5 video {
    padding-top: 30px;
    width: 360px;
    height: 203px;
  }
}

@media screen and (max-width: 414px) {
  .combo5 h3 {
    font-size: 26px;
  }

  .combo5 h4 {
    font-size: 18px;
  }

  .combo5 p {
    font-size: 13px;
  }

  .combo5 video {
    padding-top: 30px;
    width: 320px;
    height: 180px;
  }
}

@media screen and (max-width: 320px) {
  .combo5 video {
    padding-top: 30px;
    width: 260px;
    height: 147px;
  }
}

.combo3 .clients-wrap {
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}

.combo3 h3 {
  color: #808080;
  padding-bottom: 0px;
  font-size: 30px;
  text-align: center;
}

.combo3 .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.combo3 .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 46px;
  transform: scale(1.1);
}

.combo3 .client-logo:hover img {
  transform: scale(1.2);
}

.combo3 .mapframe {
  border:0;
  width: 100%;
  height: 270px;
}

@media (max-width: 1024px) {
  .combo3 .mapframe {
    margin-top: 10px;
    padding-top: 10px;
  }
}

@media (max-width: 769px) {
  .combo3 .mapframe {
    margin-top: 10px;
    padding-top: 10px;
  }
}

@media (max-width: 414px) {
  .combo3 h3 {
    font-size: 26px;
  }
}

#footer {
  color: #c0c0c0;
  font-size: 14px;
  background: #14100f;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #993333;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Muli", sans-serif;
  color: #c0c0c0;
}

#footer .footer-top .footer-contact img {
  height: 50px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #e0e0e0;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ffffff;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #b4aca8;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #082152;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fd5c28;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 414px) {
  .footer h3 {
    font-size: 26px;
  }
}
