/*VK STYLES*/
/*HAMBURGER MENU*/
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.navbar-toggler[aria-expanded=true] .hamburger:hover {
  opacity: 0.7;
}
.navbar-toggler[aria-expanded=true] .hamburger .hamburger-inner,
.navbar-toggler[aria-expanded=true] .hamburger .hamburger-inner::before,
.navbar-toggler[aria-expanded=true] .hamburger .hamburger-inner::after {
  background-color: #000;
}
.navbar-toggler[aria-expanded=true] .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.navbar-toggler[aria-expanded=true] .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*HAMBURGER MENU ENDS*/
.fadeUpBlock,
.home-section > .container,
.home-section > .container-fluid {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}

.inView .fadeUpBlock,
.home-section.inView > .container,
.home-section.inView > .container-fluid {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: opacity 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, -webkit-transform 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
  transition: opacity 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, -webkit-transform 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
  transition: transform 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
  transition: transform 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, -webkit-transform 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
}

/*.more{
    &:hover{
        box-shadow: 5px 5px 0 0 #dcf9ff;
    }
}*/
@media only screen and (max-width: 991px) {
  .home-section {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 580px) {
  .home-section {
    /*padding: 50px 0;*/
  }
}

@media only screen and (max-width: 991px) {
  header .navbar-toggler {
    padding: 0;
    border: 0;
  }
}

@media only screen and (min-width: 992px) {
  .header-style-2 header .navbar-inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .header-style-2 header .navbar-inner .nav-link {
    position: relative;
    display: inline-block;
  }
  .header-style-2 header .navbar-inner .nav-link:before {
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    z-index: -1;
    background: #00c7f0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform: scale(0) translateZ(0);
    transform: scale(0) translateZ(0);
  }
  .header-style-2 header .navbar-inner .nav-link:hover:before {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-style-2 header .navbar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media only screen and (max-width: 991px) {
  .header-style-2 header .navbar.navbar-light .navbar-nav .nav-item {
    padding: 1.25vh 0;
  }
}

.banner-video-bg-1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner.theme-1 .banner-text .title span {
  display: block;
  max-height: 70px;
  min-height: 70px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.banner.theme-1 .banner-text .inner {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}
.banner.theme-1 .banner-text .inner:before {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .about-style-1 .container-block .text-box {
    width: 100%;
  }
}

.gal-block-style-1:hover figcaption:after {
  /*left: 0; 
  width: 100%;
  min-height: auto;
  height: 3px;*/
}

.timeline.theme-3 .timeline-slider .swiper-slide .timeline-block {
  height: 100%;
}
.timeline.theme-3 .timeline-block:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #0098ca;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: -1;
}
.timeline.theme-3 .timeline-block .timeline-img .img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.timeline.theme-3 .timeline-block .title {
  font-weight: bold;
}
.timeline.theme-3 .timeline-block:hover:before {
  height: 120%;
  opacity: 1;
}
.timeline.theme-3 .timeline-block:hover .timeline-img .img {
  -webkit-transform: scale(1.15) translateZ(0);
  transform: scale(1.15) translateZ(0);
  border-width: 3px;
}
.timeline.theme-3 .timeline-block:hover .text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .timeline.theme-3 .timeline-slider {
    padding: 0;
  }
  .timeline.theme-3 .timeline-slider .swiper-slide {
    border: 1px solid #52bde0;
  }
  .timeline.theme-3 .timeline-slider ._prev,
.timeline.theme-3 .timeline-slider ._next {
    top: auto;
    bottom: 35px;
    margin: 0 -6px;
  }
  .timeline.theme-3 .timeline-slider ._next {
    right: 50%;
  }
  .timeline.theme-3 .timeline-slider ._prev {
    left: 50%;
  }
  .timeline.theme-3 .timeline-block {
    border: 0;
  }
  .timeline.theme-3 .timeline-block .text {
    margin-bottom: 35px;
  }
  .timeline.theme-3 .timeline-block .icon {
    top: 40%;
  }
}

@media screen and (max-width: 991px) {
  .partner-style-1 .section-title {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

.speakers-style-1 .speaker_block,
.speakers-style-3 .speaker_block {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.speakers-style-1.inView .speaker_block,
.speakers-style-3.inView .speaker_block {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s, -webkit-transform 1s ease 0s;
}
.speakers-style-1.inView .speaker_block:nth-child(1),
.speakers-style-3.inView .speaker_block:nth-child(1) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.speakers-style-1.inView .speaker_block:nth-child(2),
.speakers-style-3.inView .speaker_block:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.speakers-style-1.inView .speaker_block:nth-child(3),
.speakers-style-3.inView .speaker_block:nth-child(3) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.speakers-style-1.inView .speaker_block:nth-child(4),
.speakers-style-3.inView .speaker_block:nth-child(4) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.speakers-style-1.inView .speaker_block:nth-child(5),
.speakers-style-3.inView .speaker_block:nth-child(5) {
  -webkit-transition-delay: 1.25s;
  transition-delay: 1.25s;
}
.speakers-style-1.inView .speaker_block:nth-child(6),
.speakers-style-3.inView .speaker_block:nth-child(6) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.speakers-style-1.inView .speaker_block:nth-child(7),
.speakers-style-3.inView .speaker_block:nth-child(7) {
  -webkit-transition-delay: 1.75s;
  transition-delay: 1.75s;
}
.speakers-style-1.inView .speaker_block:nth-child(8),
.speakers-style-3.inView .speaker_block:nth-child(8) {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.speakers-style-1.inView .speaker_block:nth-child(9),
.speakers-style-3.inView .speaker_block:nth-child(9) {
  -webkit-transition-delay: 2.25s;
  transition-delay: 2.25s;
}

.speakers-style-1 .container-fluid .speaker_block .inner .img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a6000000", GradientType=0);
}
@media screen and (max-width: 991px) {
  .speakers-style-1 .container-fluid .title_wrapper {
    text-align: center;
    width: 100%;
  }
  .speakers-style-1 .container-fluid .section-title {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  .speakers-style-1 .container-fluid .container-block {
    width: 100%;
  }
  .speakers-style-1 .container-fluid .navigation_wrapper {
    position: absolute;
    bottom: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 720px) {
  .contact-style-1 .contact-left-bg .contact-text-wrapper {
    margin: 0 auto;
    word-break: break-word;
  }
}

@media screen and (max-width: 580px) {
  footer.footer-3 .copy-right {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 767px) {
  footer.footer-3 .footer-nav {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
}

.is-loaded .banner.theme-1 .banner-text .title span {
  -webkit-animation: banner-t1 6s ease infinite;
  animation: banner-t1 6s ease infinite;
}
.is-loaded .banner.theme-1 .banner-text .title span:nth-child(2) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.is-loaded .banner.theme-1 .banner-text .inner {
  opacity: 1;
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
.is-loaded .banner.theme-1 .banner-text .inner:before {
  -webkit-transition: left 0.7s cubic-bezier(0.9, -0.22, 0.25, 1) 0.5s, bottom 0.7s cubic-bezier(0.9, -0.22, 0.25, 1) 0.5s, width 0.7s cubic-bezier(0.9, -0.22, 0.25, 1) 1.5s;
  transition: left 0.7s cubic-bezier(0.9, -0.22, 0.25, 1) 0.5s, bottom 0.7s cubic-bezier(0.9, -0.22, 0.25, 1) 0.5s, width 0.7s cubic-bezier(0.9, -0.22, 0.25, 1) 1.5s;
  bottom: 10%;
  left: 4%;
  width: 7px;
}

@-webkit-keyframes banner-t1 {
  0% {
    opacity: 1;
    line-height: 1;
  }
  80% {
    opacity: 1;
    line-height: 1;
  }
  90% {
    opacity: 0;
    line-height: 1;
  }
  92% {
    line-height: 5;
    opacity: 0;
  }
  93% {
    opacity: 1;
    line-height: 5;
  }
  100% {
    line-height: 1;
    opacity: 1;
  }
}
@keyframes banner-t1 {
  0% {
    opacity: 1;
    line-height: 1;
  }
  80% {
    opacity: 1;
    line-height: 1;
  }
  90% {
    opacity: 0;
    line-height: 1;
  }
  92% {
    line-height: 5;
    opacity: 0;
  }
  93% {
    opacity: 1;
    line-height: 5;
  }
  100% {
    line-height: 1;
    opacity: 1;
  }
}
/*VK STYLES*/
.gal-block-style-1 figcaption:after {
  min-height: 92px;
}

.speakers-style-3 .speaker_block .link:hover .inner .hover_details {
  bottom: 0;
  height: 100%;
}
.speakers-style-3 .speaker_block .link .inner .hover_details {
  bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*@media only screen and (max-device-width: 1420px) {
  .speakers-style-1 .container-fluid .container-block {
    width: 100%;
  }
}
@media only screen and (max-device-width: 1420px) {
  .speakers-style-1 .container-fluid .title_wrapper {
    width: 100%;
  }
}*/
.gallery-style-1 .tab-content-wrap .slick-dots {
  display: none !important;
}

.navigation_wrapper .swiper-button-next,
.navigation_wrapper .swiper-button-prev {
  color: inherit;
}

@media screen and (max-width: 991px) {
  header .navbar-brand img {
    max-width: 185px;
    height: auto !important;
  }
}
/* AR 13-02-2019 */
@media screen and (max-width: 980px) {
  .banner {
    min-height: calc(100vh - 80px);
  }
}
.partner-style-1 .container-block {
  position: relative;
}

.contact-style-1 .contact-left-bg .container-small {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

@media only screen and (max-device-width: 767px) {
  /*VK ENDS*/
  .inView .fadeUpBlock,
.home-section.inView > .container,
.home-section.inView > .container-fluid {
    transition: transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
  }

  .banner.theme-1 .banner-text .title span {
    max-height: 50px;
    min-height: 50px;
  }

  .banner-video-bg-1 {
    opacity: 0;
  }

  /*VK ENDS*/
  .partner-style-1 .swiper-button-next,
.partner-style-1 .swiper-button-prev {
    width: 50%;
    -webkit-transform: translateY(calc(100% + .5em));
    -ms-transform: translateY(calc(100% + .5em));
    transform: translateY(calc(100% + .5em));
    margin: 0;
    bottom: 0;
    top: auto;
  }
  .partner-style-1 .swiper-button-next {
    right: 0;
    left: auto;
    text-align: left;
    padding-left: 0.5em;
  }
  .partner-style-1 .swiper-button-prev {
    left: 0;
    right: auto;
    padding-right: 0.5em;
    text-align: right;
  }

  .home-section.timeline .swiper-container {
    overflow: initial;
  }
  .home-section.timeline .swiper-button-next,
.home-section.timeline .swiper-button-prev {
    width: 50%;
    /*-webkit-transform: translateY(calc(100% + .5em));
    -ms-transform: translateY(calc(100% + .5em));
    transform: translateY(calc(100% + .5em));*/
    margin: 0;
    bottom: 0;
    top: auto;
  }
  .home-section.timeline .swiper-button-next {
    right: 0;
    left: auto;
    text-align: left;
  }
  .home-section.timeline .swiper-button-prev {
    left: 0;
    right: auto;
    text-align: right;
  }

  .timeline.theme-3 .timeline-block .icon {
    display: none;
  }
}


/* AP 17-02-2019 */
.gallery-style-1 .slick-next:before,
.gallery-style-1 .slick-prev:before {
      font-family: wgs-micro!important;
    font-style: normal!important;
    font-weight: 400!important;
    font-variant: normal!important;
    text-transform: none!important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
}
.gallery-style-1 .slick-next:before {
      content: "\e01b";
}
.gallery-style-1 .slick-prev:before {
      content: "\e016";
}


@media only screen and (max-device-width : 1024px) {
  /* Styles */
  .gallery-style-1 .slick-prev {
    left: 50%;
    bottom: -1em;
    top: auto;
    text-indent: inherit;
    -webkit-transform: translateX(-150%) translateY(100%);
        -ms-transform: translateX(-150%) translateY(100%);
            transform: translateX(-150%) translateY(100%);
  }
  .gallery-style-1 .slick-next {
    right: 50%;
    bottom: -1em;
    top: auto;
    text-indent: inherit;
    -webkit-transform: translateX(150%) translateY(100%);
        -ms-transform: translateX(150%) translateY(100%);
            transform: translateX(150%) translateY(100%);
  }
}

@media only screen and (max-width: 767px) {
.home-section.gallery-style-1 {
      padding: 50px 0 0; 
} 
.gallery-style-1 .gallery-2-slider {
      margin-bottom: 2em;
}
}
/* AP 17-02-2019 */

/* AP 05-03-2019 */

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

html[dir=ltr] header .navbar-nav .lang_Switch .nav-link {
    line-height: 2.5;
}

@media only screen and (min-width: 1200px) {
    header .navbar .navbar-brand img {
        height: 70px;
    }
}

@media screen and (min-width: 992px) {
    header .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 1rem;
    }

    html[dir=rtl] header .navbar-expand-lg .navbar-nav .nav-link {
        font-weight: 400;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) and (min-height: 500px) and (max-height: 650px) {
    header .navbar {
        height: 100px;
    }

    header .navbar .navbar-brand img {
        height: 60px;
    }

    .banner {
        height: calc(100vh - 100px);
    }

    .home-section {
        padding: 80px 0;
    }

    .assessment-process-style-3 .section-title,
    .section-title {
        font-size: 2.2rem;
    }

    .speakers-style-3 .speaker_block .title,
    .speaker_block .inner .hover_details .title {
        font-size: 1.2rem;
    }
    .home__page {
      padding-top: 100px;
  }
}

/* Footer */
footer .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
    padding: 3% 0;
    font-size: 15px;
}

footer .inner .center {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 20px;
}

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

footer .left img,
footer .right img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

footer .center {
    width: 60%;
}

footer .center .copright {
    color: #FFF;
    margin-top: 10px;
    font-size: 13px;
}

footer .footer-nav {
    text-align: center;
}

footer .footerLinkWrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .footerLinkWrapper li {
    display: inline-block;
    margin: 0 1em;
}

footer .footerLinkWrapper li:first-child {
    margin-left: 0;
}

footer .footerLinkWrapper li a {
    color: #fff;
    display: inline-block;
    vertical-align: top;
    margin: 0 1.5%;
    white-space: nowrap;
    font-weight: 500;
    font-size: .9rem;
}

footer .fl-social {
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 0;
    list-style-type: none;
    width: 100%;
    text-align: center;
    margin: 0;
    display: block;
}

footer .fl-social li {
    display: inline-block;
}

footer .fl-social li a {
    color: #fff;
    position: relative;
}

footer .fl-social li a .icon {
    font-size: 23px;
}

footer .fl-social li a .icon.icon-youtube {
    font-size: 26px;
}

footer .fl-social li a .icon.icon-twitter {
    font-size: 25px;
}

footer .fl-social li a .icon.icon-social-linkedin-outline {
    font-size: 29px;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}
footer .fl-social li a .icon.icon-social-facebook {
    font-size: 26px;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}

html[dir=rtl] footer .footerLinkWrapper li:first-child {
    margin-left: inherit;
    margin-right: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) and (min-height: 500px) and (max-height: 650px) {
    
   footer .footerLinkWrapper li {
        margin: 0 .5em;
    }
    footer .center .copright {
        margin-top: 5px;
    }

    footer.footer-3 .footer-logo img {
        max-height: 40px;
    }

    footer.footer-3 footer-nav > li a {
        font-size: 15px;
        padding: 5px;
    }

    footer .fl-social li a {
        padding: 0 2px;
    }
    footer .fl-social li a .icon {
        font-size: 19px;
    }
    footer .fl-social li a .icon.icon-social-facebook {
        font-size: 22px;       
    }
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 991px) and (max-device-width : 1024px) and (orientation : portrait) {
    footer .footerLinkWrapper li {
        margin: 0 .5em;
    }
    footer .fl-social li a .icon {
        width: 22px;
        height: 34px;
            font-size: 19px;
    }
    footer .fl-social li a .icon.icon-social-facebook {
        font-size: 23px;
    }
}        

@media only screen and (max-width: 991px) {
    footer .inner {
        max-width: 100%;
        padding-bottom: 0;
    }

    footer .footerLinkWrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer .footerLinkWrapper li:first-child {
        margin: 0 1em;
    }

    footer .copright {
        text-align: center;
    }

    html[dir=rtl] footer .footerLinkWrapper li:first-child {
        margin: 0 1em;
    }

    footer .center {
        width: 100%;
        margin: 1em 0;
    }

    footer .left, footer .right {
        width: 100%;
        text-align: center;
        margin: 1em 0;
    }
}

@media screen and (max-width: 767px) {
    footer .inner {
        padding: 20px 0 0;
        font-size: 13px;
    }

    footer .footer-nav {
        margin-top: 0;
    }

    footer .left, footer .right {
        margin: 10px 0;
    }
}

/* AP 05-03-2019 */
