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

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,500&display=swap');

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 none;
  list-style: none outside none;
  margin: 0;
  outline: 0 none;
  padding: 0;
/*
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
*/
}

html {
  background-color:black;
}
body {
  position:relative;
	font:300 24px/36px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	background-color:white;
	color:black;
  overflow-x:hidden;
}
/* header */
button {
  background-color:transparent;
  cursor:pointer;
}
button.icon {
  width:70px;
  height:70px;
  position:relative;
  transition:0.3s;
}
button.icon::before {
  content:"";
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background-color:white;
  width:30px;
  height:30px;
}
/*
button.icon:hover {
  background-color:#ff381a;;
}
*/
button.icon-menu {
  margin-right:30px;
}
button.icon-menu::before {
  mask:url(../images/icon_menu.svg) center / contain no-repeat;
  -webkit-mask:url(../images/icon_menu.svg) center / contain no-repeat;
}
button.icon-search::before {
  mask:url(../images/icon_search.svg) center / contain no-repeat;
  -webkit-mask:url(../images/icon_search.svg) center / contain no-repeat;
}
button.icon-close {
  float:right;
}
.showSearch button.icon-search::before,
button.icon-close::before {
  background-color:black;
  mask:url(../images/icon_close.svg) center / contain no-repeat;
  -webkit-mask:url(../images/icon_close.svg) center / contain no-repeat;
}

.ph::before,
.pf::before,
main::before {
  content:"";
  display:block;
  background-color:rgba(0,0,0,.8);
  position:absolute;
  z-index:1002;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  transition:0.5s;
}
.showMenu .ph::before,
.showMenu .pf::before,
.showMenu main::before {
  opacity:1;
  visibility:visible;
}
.pf,
.ph,
.ph-nav,
#wrapper {
  transition: transform .5s ease-in-out;
}
.showMenu .ph-nav {
  transform:translateX(0);
}
.showMenu .pf,
.showMenu .ph,
.showMenu #wrapper {
  transform:translateX(320px);
}

.ph {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1001;
}
.scrollHeader .ph {
  background-color:black;
}
.logo a {
  display:block;
  width: 142px;
  height: 50px;
  background: white;
  -webkit-mask: url(../images/logo-ibtmedia.svg) center / contain no-repeat;
  mask: url(../images/logo-ibtmedia.svg) center / contain no-repeat;
}

.ph-search {
  position:fixed;
  z-index:1002;
  top:0;
  right:70px;
  height: 70px;
  background: #f4f7f6;
  width:0;
  overflow:hidden;
  transition:0.5s;
}
.ph-search input {
  width:0;
  height:70px;
  background-color:transparent;
  transition:0.3s;
}
.ph-search input[type="text"] {
  font-size:17px;
  transition:0.5s;
}
.showSearch .ph-search {
  width:calc(100vw - 70px);
}
.showSearch .ph-search input[type="text"] {
  width:100%;
  text-indent:30px;
}
.ph-search input[type="submit"] {}

.showSearch button.icon-search {
  background: #f4f7f6;
  border-left:1px solid #e6eaea;
}
.ph-nav {
  position:fixed;
  z-index:1000;
  top:0;
  left:0;
  width: 320px;
  height: 100vh;
  background: #f4f7f6;
  transform:translateX(-320px);
  overflow-y:auto;
  font-size: 17px;
}
.menu {
  margin-top:70px;
  margin-bottom:70px;
}
.menu > li {
  border-top:1px solid #e6eaea;
}
.menu span {
  display:inline-block;
  vertical-align:middle;
  font-weight:800;
  padding-left:30px;
  font-size:17px;
  line-height:70px;
  color:black;
}
.menu .arrow {
  width:100%;
  text-align:left;
}
.menu .arrow span::after {
  content:"";
  display:inline-block;
  vertical-align:middle;
  width:35px;
  height:35px;
  background:url(../images/arrow_carrot-down.svg) center 30% / 24px no-repeat;
}
.menu .expand .arrow span::after {
  background-image:url(../images/arrow_carrot-up.svg);
  background-position:center 50%;
}
.menu a {
  display: block;
  padding-left:30px;
}
.menu > li > a {
  font-weight: 800;
  line-height:70px;
}
.submenu a:hover {
  color:#f05032;
}
.menu .current a {
  background:url(../images/arrow_carrot-right.svg) 90% center / 24px no-repeat;
  color:#f05032;
}
.submenu {
  height:0;
  overflow:hidden;
}
.submenu a {
  display: block;
  color: #202121;
  transition:0.3s;
}
.menu .expand,
.menu > li:hover {
  background-color: #fcfcfc;
}
.submenu a {
}
.submenu a::after {
}
.submenu a:hover::after {
  width:calc(100% - 60px);
}

.expand .submenu {
  height:auto;
  overflow:visible;
}
.expand .submenu a {
  padding-top:10px;
  padding-bottom:10px;
  padding-left:30px;
}

@media (min-width: 992px) {
  .hide-md {
    display:none;
  }
}
@media (max-width: 991px) {
  .show-lg {
    display:none;
  }
}

.container-fluid {
  max-width:1460px;
  padding-left:30px;
  padding-right:30px;
}
.row {
  margin-left:-30px;
  margin-right:-30px;
}
[class~="col"],
[class*="col-"] {
	box-sizing: border-box;
	padding-right: 30px;
	padding-left: 30px;
	max-width: 100%
}
iframe,
img {
  max-width:100%;
  vertical-align:middle;
}
a {
  color:inherit;
  text-decoration:none;
}
h1,h2,h3,h4,h5,h6,strong,b{
  font-weight:800;
}
h1,h2 {
  font-size:50px;
  line-height:56px;
}
h3 {
  font-size:32px;
  line-height:36px;
}
h4 {
  font-size:24px;
  line-height:30px;
}
h5 {
  font-size:22px;
  line-height:28px;
}
summary {
  font-size:18px;
  line-height:24px;
}

.hero {
  background:url(../images/sample1.jpg) center / cover no-repeat;
  position:relative;
  color:white;
}
.hero .slides-wrapper .slide::before,
.hero::before {
  content:"";
  display:block;
  background-color:rgba(0,0,0,.4);
  position:absolute;
  z-index:2;
  top:0;
  left:0;
  min-width:100%;
  min-height:100%;
}
.hero .slides-wrapper {
  position:absolute;
  z-index:3;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
}
.hero .slides-wrapper .slide {
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  height:100vh;
  max-height:1000px;
  min-height:460px;
  position:relative;
/* animation: animate 5s ease; */
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.1);
  }
}

.slick-arrow {
  position:absolute;
  z-index:1;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  font-size:0;
  border-radius:50%;
  cursor:pointer;
  color:white;
  border-width:1px;
  border-style:solid;
  opacity:0.5;
  transition:0.3s;
}
.slick-arrow:hover {
  opacity:1;
}
.slick-arrow::before {
  content: '\f431';
  font: 22px 'Genericons';
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 5px 5px;
}
.slick-prev {
  left:15px;
}
.slick-prev::before {
  transform: rotate(90deg);
}
.slick-next {
  right:15px;
}
.slick-next::before {
  transform: rotate(-90deg);
}
.hero .video-wrapper {
  position:absolute;
  z-index:1;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
}
.hero .video-wrapper video {
  height: 100%;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw; /* 100 * 9 / 16 */
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}
.hero > .container-fluid {
  position:relative;
  z-index:3;
  height:100vh;
  max-height:1000px;
  min-height:460px;
  align-items: end;
}
.hero.short > .container-fluid {
  height:35vh;
  max-height:1000px;
  min-height:230px;
  align-items: center;
}
.hero h1 {
  margin-bottom:14px;
}
.hero:not(.short) p {
  padding-bottom:30px;
}
.hero.short .content {
  padding-top:70px;
}
.brand {
  color:#f05032;
}
.level-1 {
  padding-top:70px;
  padding-bottom:50px;
}
.level-1 h2 {
  margin-bottom:40px;
}
.level-1 p {
  margin-bottom:40px;
	color:#333;
}
.level-1 .blurb {
  font-size:32px;
}
.level-1 figure {
  padding:30px;
}
.level-2 {
  background-color:black;
  color:white;
  padding-top:70px;
  padding-bottom:50px;
  overflow-x:hidden;
}
.level-2 h2 {
  margin-bottom:20px;
}
.level-2 figure {
  margin-bottom:22px;
}
.level-2 h5 a {
  border-bottom:1px solid transparent;
  transition:0.3s;
}
.level-2 h5 a:hover {
  border-bottom-color:white;
}

.slider {
  height:0;
  overflow:hidden;
}
.slider.slick-initialized {
  height:auto;
  overflow:visible;
}
.slider figure a {
  display:block;
  overflow:hidden;
  position:relative;
}
.level-2 figure a {
  padding-top:150%;
}
.level-3 figure a {
  padding-top:56.25%;
}
.slider figure a img {
  transition:0.5s;
  position:absolute;
  top:0;
  height:100%;
  width:auto;
  max-width:inherit;
  left:50%;
  transform:translateX(-50%);
}
.slider figure a:hover img {
  -webkit-transform:translateX(-50%) scale(1.1);
  -moz-transform:translateX(-50%) scale(1.1);
  -o-transform:translateX(-50%) scale(1.1);
  -ms-transform:translateX(-50%) scale(1.1);
  transform:translateX(-50%) scale(1.1);
}

.level-2 h5 {
  margin-bottom:20px;
}
.level-2 .card {
  padding:20px 30px 20px 0;
}
.category {
  font-weight:800;
  font-size:18px;
  text-transform:uppercase;
  color:#505050;
}

.level-3 {
  padding-top:50px;
  overflow-x:hidden;
}
.level-3 h2 {
  margin-bottom:20px;
}
.level-3 .category {
  margin-bottom:15px;
}
.level-3 h4 {
  margin-bottom:26px;
}
.level-3 summary {
  color:#333;
}
.level-3 .card {
  padding:20px 30px 20px 0;
}
.level-3 .info {
  padding-top:15px;
  padding-bottom:30px;
}
.level-3 h4 a {
  transition:0.3s;
}
.level-3 h4 a:hover {
  color:#f05032;
}
.level-4 {
  background-color:#1e1e1e;
  color:#b1b1b1;
  padding-top:96px;
  padding-bottom:60px;
  border-bottom:1px solid #242424;
}
.level-4 h2 {
  margin-bottom:20px;
}
.level-4 p {
  font-size:24px;
  line-height:36px;
  text-transform:uppercase;
  margin-bottom:65px;
}
.brand-item {
  flex:0 0 50%;
  height:120px;
  position:relative;
}
.brand-item-6,
.brand-item-13,
.brand-item-19,
.brand-item-29,
.brand-item-30 {
  background-position:0 center;
  background-size:120px;
  background-repeat:no-repeat;
}
.brand-item-6 {
  background-image:url(../images/logos/06.png);
}
.brand-item-13 {
  background-image:url(../images/logos/13.png);
}
.brand-item-19 {
  background-image:url(../images/logos/19.png);
}
.brand-item-29 {
  background-image:url(../images/logos/29.png);
}
.brand-item-30 {
  background-image:url(../images/logos/30.png);
}
.brand-item::before {
  content:"";
  display:block;
  width:100%;
  height:100%;
  background-color:white;
  mask-position:0 center;
  mask-repeat:no-repeat;
  -webkit-mask-position:0 center;
  -webkit-mask-size:120px;
  -webkit-mask-repeat:no-repeat;
}
.brand-item-1::before {
  mask-size:120px;
  -webkit-mask-size:120px;
  mask-image:url(../images/logos/01.svg);
  -webkit-mask-image:url(../images/logos/01.svg);
}
.brand-item-2::before {
  mask-image:url(../images/logos/02.svg);
  -webkit-mask-image:url(../images/logos/02.svg);
}
.brand-item-3::before {
  mask-image:url(../images/logos/03.svg);
  -webkit-mask-image:url(../images/logos/03.svg);
}
.brand-item-4::before {
  mask-image:url(../images/logos/04.svg);
  -webkit-mask-image:url(../images/logos/04.svg);
}
.brand-item-5::before {
  mask-image:url(../images/logos/05.svg);
  -webkit-mask-image:url(../images/logos/05.svg);
}
.brand-item-6::before {
  content:none;
}
.brand-item-7::before {
  mask-image:url(../images/logos/07.svg);
  -webkit-mask-image:url(../images/logos/07.svg);
}
.brand-item-8::before {
  mask-image:url(../images/logos/08.svg);
  -webkit-mask-image:url(../images/logos/08.svg);
}
.brand-item-9::before {
  mask-image:url(../images/logos/09.svg);
  -webkit-mask-image:url(../images/logos/09.svg);
}
.brand-item-10::before {
  mask-image:url(../images/logos/10.svg);
  -webkit-mask-image:url(../images/logos/10.svg);
}
.brand-item-11::before {
  mask-image:url(../images/logos/11.svg);
  -webkit-mask-image:url(../images/logos/11.svg);
}
.brand-item-12::before {
  mask-image:url(../images/logos/12.svg);
  -webkit-mask-image:url(../images/logos/12.svg);
}
.brand-item-13::before {
  content:none;
}
.brand-item-14::before {
  mask-image:url(../images/logos/14.svg);
  -webkit-mask-image:url(../images/logos/14.svg);
}
.brand-item-15::before {
  mask-image:url(../images/logos/15.svg);
  -webkit-mask-image:url(../images/logos/15.svg);
}
.brand-item-16::before {
  mask-image:url(../images/logos/16.svg);
  -webkit-mask-image:url(../images/logos/16.svg);
}
.brand-item-17::before {
  mask-image:url(../images/logos/17.svg);
  -webkit-mask-image:url(../images/logos/17.svg);
}
.brand-item-18::before {
  mask-image:url(../images/logos/18.svg);
  -webkit-mask-image:url(../images/logos/18.svg);
}
.brand-item-19::before {
  content:none;
}
.brand-item-20::before {
  mask-image:url(../images/logos/20.svg);
  -webkit-mask-image:url(../images/logos/20.svg);
}
.brand-item-21::before {
  mask-image:url(../images/logos/21.svg);
  -webkit-mask-image:url(../images/logos/21.svg);
}
.brand-item-22::before {
  mask-image:url(../images/logos/22.svg);
  -webkit-mask-image:url(../images/logos/22.svg);
}
.brand-item-23::before {
  mask-image:url(../images/logos/23.svg);
  -webkit-mask-image:url(../images/logos/23.svg);
}
.brand-item-24::before {
  mask-image:url(../images/logos/24.svg);
  -webkit-mask-image:url(../images/logos/24.svg);
}
.brand-item-25::before {
  mask-image:url(../images/logos/25.svg);
  -webkit-mask-image:url(../images/logos/25.svg);
}
.brand-item-26::before {
  mask-image:url(../images/logos/26.svg);
  -webkit-mask-image:url(../images/logos/26.svg);
}
.brand-item-27::before {
  mask-image:url(../images/logos/27.svg);
  -webkit-mask-image:url(../images/logos/27.svg);
}
.brand-item-28::before {
  mask-image:url(../images/logos/28.svg);
  -webkit-mask-image:url(../images/logos/28.svg);
}
.brand-item-29::before {
  content:none;
}
.brand-item-30::before {
  content:none;
}
.brand-item-31::before {
  mask-image:url(../images/logos/31.svg);
  -webkit-mask-image:url(../images/logos/31.svg);
}
.brand-item-32::before {
  mask-image:url(../images/logos/32.svg);
  -webkit-mask-image:url(../images/logos/32.svg);
}
.brand-item-35::before {
  mask-image:url(../images/logos/35.svg);
  -webkit-mask-image:url(../images/logos/35.svg);
}
.brand-item-36::before {
  mask-image:url(../images/logos/36.svg);
  -webkit-mask-image:url(../images/logos/36.svg);
}
.brand-item-37::before {
  mask-image:url(../images/logos/37.svg);
  -webkit-mask-image:url(../images/logos/37.svg);
}
.brand-item-38::before {
  mask-image:url(../images/logos/38.svg);
  -webkit-mask-image:url(../images/logos/38.svg);
}
.brand-item-39::before {
  mask-image:url(../images/logos/39.svg);
  -webkit-mask-image:url(../images/logos/39.svg);
}


@media (max-width: 991px) {
  .level-1 figure {
    max-width:490px;
    margin-left:auto;
    margin-right:auto;
  }
  .slider {
    margin-left:-120px;
    margin-right:-30px;
  }
}
@media (max-width: 767px) {
  .slider {
    margin-left:-60px;
  }
  .hero.short > .container-fluid {
    height:60vh;
  }
  .page-menu {
    line-height: 70px;
  }
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .hero:not(.short) > .container-fluid {
    height:90vh;
  }
  .hero:not(.short) p {
    padding-bottom:100px;
  }
  .brand-item {
    flex:0 0 33.333333%;
  }
}
@media (min-width: 992px) {
  .hero .content {
    max-width:58.33333333%;
  }
  .level-1 {
    padding-top:100px;
    padding-bottom:165px;
  }
  .level-3 {
    padding-top:125px;
  }
  .level-3 h2 {
    margin-bottom:40px;
  }
  .level-3 .info {
    background-color:#f4f4f4;
    padding-top:30px;
    padding-left:30px;
    padding-right:30px;
  }
  .level-4 p {
    margin-bottom:130px;
  }
  .level-4 {
    margin-top:130px;
  }
  .brand-item {
    flex:0 0 20%;
  }
}
/* footer */
.pf {
  border-top:1px solid #1b1b1b;
  background-color:#070707;
  color:white;
  padding-top:40px;
  padding-bottom:20px;
  font-size:18px;
  line-height:26px;
}
.pf li {
  display:inline-block;
  vertical-align:middle;
  margin-right:30px;
  margin-bottom:20px;
}
.pf a {
	color:#999;
  transition:0.3s;
}
.pf a:hover {
  color:white;
}
.pf .social,
.pf .copyright {
  margin-bottom:20px;
}
.pf .copyright {
  font-size:15px;
}
.pf .social a{
  width:30px;
  height:30px;
  background-color:white;
  margin-left:30px;
}
.pf .social a:first-of-type {
  margin-left:0;
}
.pf .social a:hover {
  transform:scale(1.2);
}
.pf .social-facebook {
  mask:url(../images/social_facebook_circle.svg) center / contain no-repeat;
  -webkit-mask:url(../images/social_facebook_circle.svg) center / contain no-repeat;
}
.pf .social-instagram {
  mask:url(../images/social_instagram_circle.svg) center / contain no-repeat;
  -webkit-mask:url(../images/social_instagram_circle.svg)center / contain no-repeat;
}
.pf .social-twitter {
  mask:url(../images/social_twitter_circle.svg) center / contain no-repeat;
  -webkit-mask:url(../images/social_twitter_circle.svg) center / contain no-repeat;
}
.pf .social-youtube {
  mask:url(../images/social_youtube_circle.svg) center / contain no-repeat;
  -webkit-mask:url(../images/social_youtube_circle.svg) center / contain no-repeat;
}
.pf .social-linkedin {
  mask:url(../images/social_linkedin_circle.svg) center / contain no-repeat;
  -webkit-mask:url(../images/social_linkedin_circle.svg) center / contain no-repeat;
}
