/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.tabs .owl-stage-outer {
    overflow: visible;
}


.page {
    overflow: hidden;
  }
  

.tabs .owl-item {
    padding: 0 15px;
    opacity: .3;
    -webkit-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s;
}

.tabs .owl-item.active {
    opacity: 1;
}

.tabs .owl-carousel .owl-item img {
    width: auto;
    max-height: 100%;
}

.tabs .owl-nav {
    position: relative;
    z-index: 1;
    margin-top: 48px;
}

.tabs .owl-carousel .owl-nav button.owl-prev,
.tabs .owl-carousel .owl-nav button.owl-next {
    width: 32px;
    height: 32px;
}

.tabs .owl-carousel .owl-nav button.owl-prev .icon,
.tabs .owl-carousel .owl-nav button.owl-next .icon {
    font-size: 13px;
}

.tabs .owl-carousel .owl-nav button.owl-prev {
    margin-right: 110px;
}

.tabs .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(134, 142, 156, 0.3);
    font-size: 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.owl-carousel .owl-nav button.owl-next .icon,
.owl-carousel .owl-nav button.owl-prev .icon {
    font-size: 18px;
    fill: #203152;
    -webkit-transition: fill .25s;
    -o-transition: fill .25s;
    transition: fill .25s;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: #203152;
    border-color: #203152;
}

.owl-carousel .owl-nav button.owl-next:hover .icon,
.owl-carousel .owl-nav button.owl-prev:hover .icon {
    fill: #fff;
}

.owl-carousel .owl-nav button.owl-next.disabled,
.owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: .5;
    pointer-events: none;
}

.owl-carousel .owl-nav button.owl-prev .icon {
    margin-right: 2px;
}

.owl-carousel .owl-nav button.owl-next .icon {
    margin-left: 2px;
}

.owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.owl-carousel button.owl-dot {
    width: 6px;
    height: 6px;
    background: rgba(134, 142, 156, 0.3);
    border-radius: 50%;
    -webkit-transition: background .25s;
    -o-transition: background .25s;
    transition: background .25s;
}

.owl-carousel button.owl-dot:hover {
    background: rgba(134, 142, 156, 0.65);
}

.owl-carousel button.owl-dot.active {
    background: gray;
}

.owl-carousel button.owl-dot:not(:last-child) {
    margin-right: 8px;
}

.team {
    padding: 99px 0 97px;
    background: #F4F5F6;
    -webkit-box-shadow: inset 0 1px 0 0 rgba(198, 203, 211, 0.3);
    box-shadow: inset 0 1px 0 0 rgba(198, 203, 211, 0.3);
}

.team__center {
    position: relative;
    padding-bottom: 96px;
}

.team__head {
    max-width: 570px;
    margin: 0 auto 48px;
    text-align: center;
}

.team__title {
    margin-bottom: 16px;
}

.team__wrapper {
    max-width: 770px;
}

.team__container {
    margin: 0 -27px;
}

.team__slider {
    position: static;
}

.community{
    padding-top: 0;
    margin-bottom: 60px;
}

@media only screen and (max-width: 1179px) {
    .community {
        margin-bottom: 0px;
        /* padding-bottom: 30px; */
   }
}

.team__preview {
    position: relative;
    width: 100%;
    height: 324px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    -webkit-box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

@media only screen and (max-width: 767px) {
    .team__preview {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
/*     .trainer__socials{
        margin-bottom: 0;
    } */
}


.team__details {
    position: absolute;
    top: 24px;
    left: -24px;
    width: 175px;
    padding: 18px 18px 18px;
    background: #ffffff;
    border-radius: 10px;
    color: #fff;
    -webkit-box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
}



@media only screen and (max-width: 767px) {
    .team__details {
        top: 398px;
        left: 0px;
        width: 100%;
        /* margin-left: 8%; */
        padding: 16px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}



.team__man {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.33333;
    font-weight: 600;
    color: #0033a1;
}

.team__post {
    /* margin-bottom: 16px; */
    font-size: 14px;
    line-height: 1.625;
    font-weight: 300;
    color: #203152;
}

@media only screen and (max-width: 767px) {
    .team__post {
        margin-bottom: 12px;
    }
    
}

.team .owl-stage-outer {
    overflow: visible;
}

.team .owl-item {
    padding: 0 38px;
    opacity: .3;
    -webkit-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s;
}

@media only screen and (max-width: 767px) {
    .team .owl-item {
        padding: 0 30px;
    }    
}

.team .owl-item.active {
    opacity: 1;
}

.team .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.team .owl-carousel .owl-nav button.owl-prev {
    margin-right: 16px;
}

.team .owl-dots {
    margin-top: 64px;
}

@media only screen and (max-width: 767px) {
    .team .owl-dots {
        margin-top: 30px;
    }
}

.owl-prev:hover .icon.icon-arrow-prev .st0 {
    fill: white;
}

.owl-next:hover .icon.icon-arrow-next .st0 {
    fill: white;
}

.team {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 20px;
}

.team__head {
    margin-left: 0;
}

.team__head .tabs__title {
    text-align: left;
}

.scientific_container {
    margin-top: 50px;
}

.team .owl-carousel .owl-nav button.owl-prev {
    width: 32px;
    height: 32px;
}

.team .owl-carousel .owl-nav button.owl-prev:hover .icon.icon-arrow-prev .st0 {
    fill: white;
}

.team .owl-carousel .owl-nav button.owl-prev .icon.icon-arrow-prev {
    margin-left: 4px;
    margin-top: 3px;
}

.team .owl-carousel .owl-nav button.owl-next {
    width: 32px;
    height: 32px;
}

.team .owl-carousel .owl-nav button.owl-next:hover .icon.icon-arrow-next .st0 {
    fill: white;
}

.team .owl-carousel .owl-nav button.owl-next .icon.icon-arrow-next {
    margin-left: 4px;
    margin-top: 3px;
}

.team__info {
    text-align: justify;
    max-width: none;
    margin: 50px 24px 0px 24px;
    color: #868E9C;
    /* height: 205px;
    overflow: hidden;
    text-overflow:ellipsis; */
}

@media only screen and (max-width: 767px) {
    .team__info {
        margin: 170px 8px 0px 8px;
        text-align: left;
    }
    .team__graham{
        margin-top: 190px;
    }
}


.team {
    padding: 100px 0 100px;
}

.team__scientifics{
    padding-bottom: 200px;
  }

@media only screen and (max-width: 767px) {
    .team {
        padding: 100px 0 0px;
    }
    .team__scientifics{
        padding-bottom: 120px;
      }
}


.team__center {
    max-width: 768px;
    padding-bottom: 80px;
}

.trainers__center{
    position: relative;
    padding-bottom: 80px;
}
/* .team__wrapper {
    max-width: 100%;
}

.team {
    padding: 64px 0;
}

.team__center {
    max-width: 414px;
    padding-bottom: 0;
}

.team__head {
    margin-bottom: 36px;
}

.team__title {
    margin-bottom: 20px;
}

.team__details {
    top: auto;
    left: 34px;
    right: 34px;
    bottom: -24px;
    width: auto;
}

.team__man {
    font-size: 20px;
}

.team .owl-carousel button.owl-dot:not(:last-child) {
    margin-right: 12px;
}

.tabs .owl-nav {
    margin-top: 40px;
  } */

  .icon-arrow-next {
    width: 0.56em;
    height: 1em;
    fill: initial;
  }
  
  .icon-arrow-prev {
    width: 0.56em;
    height: 1em;
    fill: initial;
  }

.modalOurBoardContainer{
    padding: 0;
    max-width: 480px;
    margin-top: 100px;
}

.cropped_container{
    width: 100%;
    transform: translateY(-50px);
}

.cropped_container img{
    width: 100%;
}

.management_cards_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
}

.management_card{
    width: 100%;
    height: 320px;
    position: relative;
}

  @media only screen and (max-width: 767px) {
    .management_cards_container{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
}

.card_preview{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 10px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.084);
}

.card_details{
    position: absolute;
    width: 150px;
    background: #0033a1;
    border-radius: 10px;
    top: 24px;
    left: -24px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.098);
    padding: 18px;
}

.card_name{
    font-size: 18px;
    line-height: 1.33333;
    font-weight: 600;
    color: #fff;
}

.card_name span{
    font-size: 16px;
    white-space:nowrap;
    font-weight: 400;
}

.card_title{
    padding-top: 10px;
    font-size: 13px;
    line-height: 1.625;
    font-weight: 300;
    color: #fff;
}

@media only screen and (max-width: 1234px) {
    .card_details{
        left: 0px;
        width: 100%;
        top: 230px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
  }
  .management_card{
    margin-bottom: 20px;
}
}

@media only screen and (max-width: 1234px) {
    .card_details{
        top: 280px;
  }
}

.scientific_container{
    margin-top: 100px;
}


.trainer_info_container{
    padding:0 40px 40px 40px;
}

.trainer__social{
    margin-left: 5px;
}

.trainer__line{
    border: 1px solid #e6e6e6;
    width: 100%;
    background-color:#e6e6e6;
    margin: 25px 0;
}

.our_board_container{
    background-color: #F4F5F6;
    padding-top: 100px;
    padding-bottom: 200px;
}

.main3__subtitle{
    color: #777E90;
    margin-top: 50px;
}

.trainer__nameSubtitle{
    margin-top: -5px;
    font-weight: 400;
    font-size: 24px;
    color: #ff6600;
}