/**
* BUTTONS
**/

a, #menu-toggle {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  text-decoration: none;
  color:#fff;
  -ms-transform: scale(1,1) rotate(0deg);
}
a:hover, a:focus, a:active, 
#menu-toggle:hover, #menu-toggle:focus, #menu-toggle:active {
    text-decoration: none;
    color:#fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1, 1.1) rotate(1deg);
    transform: scale(1.1);
}


/**
 * BRANDING COLOURS
BLUE: 
rgb(0, 50, 160);
#0032A0;

GRAY:
rgb(155,152,153);
#999899;

BLACK:
rgb(0,0,0);
#000000;

 **/
 /**
 * COLOUR PRESETS
 **/

.white{
  color:#fff;
}
.black{
  color:#000;
}
 .dpblue{
  color:#0032A0;
 }
 .dpgray{
  color:#999899;
 }
 .dpgray:hover{
  color:#999899;
 }

.fade_effect{
    transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.25s ease-in;
}
.btn-default{
    background-color:transparent;
    color:#0032A0;
    text-decoration: none;
}
.btn-default:hover{
    background-color:transparent;
    border:transparent;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.btn-trns-white{
    background:transparent;
    color:#fff;
    border:1px solid #fff;
}
.btn-trns-blue{
    background:transparent;
    color:#0032A0;
    border:1px solid #0032A0;
}
.btn-white{
    background:#fff;
    color:#0032A0;
    border:1px solid #fff;
}
.btn-blue{
    background:#0032A0;
    color:#fff;
    border:1px solid #0032A0;
}
.btn-trns-white:hover{
    background:#fff;
    color:#0032A0;
    border:1px solid #fff;
}
.btn-trns-blue:hover{
    background:#0032A0;
    color:#fff;
    border:1px solid #0032A0;
}
.btn-white:hover{
    background:transparent;
    color:#fff;
    border:1px solid #fff;
}
.btn-blue:hover{
    background:#fff;
    color:#0032A0;
    border:1px solid #0032A0;
}

.home-btn{
    width:100%;
    text-align:center;
}

/**
*  NAV
**/

@media(max-width:1150px){
    .main-navigation ul .img-menu ul{
        position:inherit;
        padding:0;
        background-color:rgba(0,0,0,0);
    }
    .sub-menu >.toggled-on{
        display:block;
    }
    .sub-menu li a img {
        display:none;
    }
    .sub-menu li a{
        color:#999;
    }
    .nav-img-list a .menu-image-title {
        margin:0;
    }
    .nav-img-list a .menu-image-title:hover{
        color:#0032A0;
    }
    .nav-img-list:hover{
        background-color:#000;
    }
    .dropdown-toggle:after{
        border:0;
    }
    .menu-item a.menu-image-title-below.menu-image-not-hovered img{
        display:none;
    }
    .menu-item a.menu-image-title-below{
        text-align:right;
    }

}
@media(min-width:911px){
    .dropdown-toggle:after{
        border:none;
    }
    .img-menu ul{
        width:100%;
        height:100%;
    }
    .nav-img-list a{
        max-height:190px;
        margin: 5px;
        overflow:hidden;
        padding:0;
    }
    
    .main-navigation .nav-img-list:hover > a{
        color:#fff;
    }
    .nav-title{
        text-align:center;
        margin-top:-120px;
        padding-top:50px;
        padding-bottom:50px;
    }
    .nav-title:hover{
        color:#fff;
    }
    .main-navigation ul .img-menu li{
        display:inline-block;
        margin:auto;
        overflow: hidden;
        border:none;
    }

    .main-navigation ul .img-menu ul{
        display:inline-block;
        text-align:center;
        position:fixed;
        background-color:#fff;
        width: 100%;
        height:auto;
        max-height: 250px;
        margin:auto;
        padding:0px 5%;
    }
    .nav-img{
        max-height:120px;
        width:auto;
        vertical-align: top;
    }

    .nav-img-list a .menu-image-title {
        padding-bottom: 80px;
        margin-top: -327px;
        padding-top: 80px;
        display: block;
        width:100%;
        color:#fff;
    }

    .menu-item a.menu-image-title-below.menu-image-not-hovered img{
        width:125%;
        height:125%;
    }
    .menu-item a.menu-image-hovered img.hovered-image, .menu-item a.menu-image-hovered:hover img.menu-image{
         width:125%;
         height:125%;
    }
    .menu-item a img{
        width:125%;
        height:125%;
    }
    .nav-img-list a .menu-image-title:hover{
        background-color:#000;
        z-index:10000;
    }
}


/*********** GENERAL ************/
#content.home{
  margin-top:0;
}

.home-sections{
    max-width:100%;
    overflow:hidden;
    color:#fff;
}

.home-sections > .section-text {
    height: 60%;
    width:100%;
    /*margin-top: 90%;*/
    padding: 50px 10%;
}
.home-sections > .section-text h1{
    text-align: center;
}
.home-sections > .section-img {
    padding: 50px 10% 0;
}
.section-title{
    padding:0;
    text-align: center;
}
.main-navigation li:hover > a, .main-navigation li.focus > a, .site-branding .site-title a:hover, .site-branding .site-title a:focus {
    color:#fff;
    border-bottom:1px solid transparent;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1, 1.1) rotate(0.01deg);;
    transform: scale(1.1);
}
button, input[type="button"]{
    font-size:16px;
    padding:12px;
    margin:15px;
    border:none;
    background-color:#0032A0;
    color:#fff;
}
button:hover, input[type="button"]:hover{
    background-color:#2c2c2c;
    border:none;
}

input[type="submit"]{
    font-size:16px;
    background-color: rgba(0,0,0,0);
    border:1px solid #2c2c2c;
    padding:12px;
    color:#2c2c2c;
    margin:20px 0;
    text-transform: uppercase;
}
input[type="submit"]:hover{
    background-color:#0032A0;
    border:1px solid #0032A0;
    color:#fff;
}
.margin{
    margin-top:140px;
}
.thin-margin{
    margin-top:50px;
}
.no-margin{
    margin:0;
}
.margin-top{
    margin:0;
    margin-top:20px;
}
.padding-top{
    padding-top:50px;
}
.top15 {
    top:15%;
}
.darken{
    background-color:rgba(0,0,0,0.7);
}
.overlay{
    background-color:rgba(255,255,255,0.75);
    z-index:5;
    margin-top:-115px;
    height:305px;
}
.inline{
    display:inline-block;
}
.center{
    text-align:center;
}
.left{
    text-align:left;
}
.clear-button, input#home-contact-submit, input.clear-button{
    background-color:rgba(0,0,0,0);
    color:#fff;
    border:1px solid #fff;
    text-transform:uppercase;
}
.clear-button:hover, input#home-contact-submit:hover, input.clear-button:hover{
    background-color:#0032A0;
    border:1px solid #0032A0;
}
.circle{
    border-radius:50%;
}
.right{
    float:right;
}
.left{
    float:left;
}
.site-main{
    margin-bottom:0;
}
.custom-logo{
    width:auto;
    height:auto;
}
.main-navigation .primary-menu > li{
    float:none;
    display: inline-block;
    border:none;
}
#menu-toggle{
    z-index:1000;
    margin-bottom:0;
}
#menu-toggle:hover{
    color:#fff;
}
@media (max-width:1150px){
    .main-navigation ul .img-menu li{
        display:block;
        text-align:right;
        padding:0;
    }
    .nav-img-list a{
        margin:0;
    }
    .main-navigation a{
        font-size: 24px;
        text-align: center;
        padding: 10px 0;
        vertical-align: middle;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-property: transform;
        transition-property: transform;
    }
    .main-navigation .primary-menu > li{
        display: block;
        text-align:right;
    }
    .site-header-menu.toggled-on{
        margin-top: 0;
        height: 100vh;
        width: 100%;
        z-index:100;
        right: 0;
        background-color: rgba(0,0,0,0.9);
    }
    #site-navigation{
        position: absolute;
        margin-top: -10px;
        padding: 30px 30px 20px 20px;
        height: 100vh;
        width: 100%;
        right: 0;
        z-index:100;
    }

}
@media (max-width:992px){
    .main-navigation li, .main-navigation .primary-menu{
        border:1px solid transparent;
    }
    .site-header-main{
        padding: 0px;
    }
    .thin-margin{
        margin-top:0;
    }
    .margin{
        margin-top:300px;
    }
}

/*********** LANDING VIDEO ************/

.heroImgTitle{
    font-size:30px;
-webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
   -moz-animation: fadein 4s; /* Firefox < 16 */
    -ms-animation: fadein 4s; /* Internet Explorer */
     -o-animation: fadein 4s; /* Opera < 12.1 */
        animation: fadein 4s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
#bgvid { 
    position: absolute;
    background-size: cover; 
    width:100%;
    height:100%;
}

.homepage-hero-module{
    border-right: none;
    border-left: none;
    background:transparent;
    position: relative;
    height:60vh;
    overflow:hidden;
}
.ytp-watermark{
  display:none;
}
.no-video .video-container video,
.touch .video-container video {
    display: none;
}
.no-video .video-container .poster,
.touch .video-container .poster {
    display: block !important;
}
.video-container {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.slider-logo{
    display:block;
    margin:auto;
    max-height:200px;
    width:auto;
}
.title-container{
    z-index: 1000;
    position: absolute;
    bottom: 10vh;
    right: 0;
    text-align: right;
    color: #fff;
}


/*********** ABOUT ************/
#home-about{
    color:#666;
    width:100%;
    
}
#home-about .about-text{
    margin:auto;
    color:#fff;
}
#home-about .section-text{
    margin-top:400px;
}
#home-about p{
    padding:30px 0;
    max-width: 1100px;
}
#home-about h1{
    color:#fff;
    padding:0;

}
.about-title, .about-desc{
    text-transform: uppercase;
}

/*********** SERVICES ************/
#home-services{
    height:900px;
    text-align:left;
    vertical-align: middle;
    padding:0;
}
#home-services .section-text{
    margin-top:400px;
}
#home-avatars{
    height:1100px;
    text-align:center;
    vertical-align: middle;
    padding:0;
    color:#fff;
    overflow:hidden;
}
#home-avatars .section-img,
#home-avatars .avatar-img{
    padding:0;
    width:100%;
    height:420px;
    display:inline-block;
}
#home-avatars > .section-img > iframe{
    width:100%;
    display:none;
}
#home-avatars img {
    margin-top: -1250px;
    height:300px;
}
#home-avatars h1{
    text-align: left;
}
#avatars-desc, 
#services-desc,
#themes-desc{
    margin: 30px 0 50px;
}
#home-partners{
    height:475px;
    padding-top: 25px;
}
#home-news{
    height:400px;
    padding:0 2vw;
}
.news_icons{
    width:16.66666667vw;
    height:16.66666667vw;
    background-color:#000;
}
.news_icons img{
    width:100%;
}
#partners-title{
    text-align:center;
}

.partners_logo_div {
    width: 90px;
    display: inline-block;
    margin: 15px;
}
.partners_logo{
    width:100%;
}
.partners_logo_collection{
    max-width:1100px;
}
#home-themes{
    background-color: #333;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 880px;
}
#home-themes > .section-text{
    height: 85%;
    margin-top: 55%;
}
iframe#themes_vid{
    position: absolute;
    top: 15%;
    left: 50%;
    min-width: 125%;
    min-height: 125%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

/*********** CAREER ************/
#home-cc{
    height:1200px;
    padding:0;
}
#home-careers {
    height: 600px;
    padding: 60px 20px 35px 20px;
    color:#333;
    background-color: #fff;
}
#career-swiper{
    min-height:400px;
}

.swiper-pagination-bullet{
    width:13px;
    height:13px;
    border-radius: 0;
    background:#0032A0;
}
#home-careers h1,
.career-body{
    color:#333;
}
.career-link{
    opacity:0.65;
}
.career-link:hover,.career-link:focus{
    opacity:1;
    color:#333;
    -webkit-transform:scale(1,1);
    transform:scale(1,1);
}
/*********** PARTNERS LOGO ************/
.partners_logo_view{
    height:350px;
    margin:auto;
    overflow:hidden;
}


/*********** DI ************/
#home-di a{
    color:transparent;
}
#home-di a:hover{
    -webkit-transform: scale(1);
    transform: scale(1);
}
#home-di .section-title{
    display:block;
    margin:30px auto;
    width:50%;
}
#home-di .center{
  padding-bottom:30px;
}
.di_icons{
    width: 130px;
    height: 130px;
    background-color: rgba(0,0,0,0);
    display: inline-block;
    margin: 20px 30px;
    border-radius:35px;
    transition: background 0.5s ease-in-out;
    -webkit-transition: background 0.5s ease-in-out;
    -moz-transition: background 0.5s ease-in-out;
    -ms-transition: background 0.5s ease-in-out;
    -o-transition: background 0.5s ease-in-out;
}
.di_icons:hover{
    background-color:rgba(0,0,0,1);
}
.read_more{
    position: absolute;
    width: 130px;
    padding: 35px 5px;
    opacity:0;
    transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
}
.di_logo{
    width:100%;
    height:100%;
    display:block;
    margin:auto;
    margin-top:0;
    opacity:1;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.di_icons:hover .di_logo{
    width:0;
    height:0;
    opacity:0;
    margin-top:80px;
}
.di_icons:hover > .read_more{
    display:block;
    opacity:1;
}
.di_icons > .read_more h3{
    width:100%;
    color:#fff;
    margin:10px 0;
    font-size:18px;
}
.di_icons:hover > .read_more h3{
    color:#fff;
}


/*********** CONTACT ************/
.contact-bottom {
    color:#fff;
    background-size:cover;
    padding-top:50px;
}
#contact-map{
    height:300px;
}
#home-contact{
    background-color:rgb(9, 18, 37);
    color:#ffffff;
    padding-top:60px;
    height: 600px;
}
input#home-contact-submit{
    margin:5px 0px 5px 0px;
    padding:12px;
    float:right;
    text-transform:uppercase;
}
.contact-info{
    text-align:center;
    width:100%;
    padding:35px 0;
    background-color: rgb(9, 18, 37);;
    color:#ffffff;
}
.contact-info a{
    color:#ffffff;
}
.contact-socialmediaicons {
    width: 100%;
    color:#fff;
    text-align: center;
    margin-bottom:10px;
}
.social-navigation{
    padding:30px 0;
}
.social-navigation a{
    color: #fff;
    border:none;
    transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
}
.social-navigation a:before{
    font-size:2rem;
    padding:0 10px;
    transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.social-navigation a:hover, .social-navigation a:focus, .social-navigation a:active{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1, 1.1) rotate(0.01deg);
    transform: scale(1.1);
}
.social-navigation li{
    float:none;
    display:inline-block;
}
.footermediaicons{
    margin:10px;
}
#contact-title{
    text-align:center;
}
.wpcf7-form, .contact-form{
    background-color:rgb(9, 18, 37);
    color:#ffffff;
}
.wpcf7-form input[type="text"], 
.wpcf7-form input[type="email"], 
.wpcf7-form textarea{
    background-color:#000000;
    color:#ffffff;
    margin:10px 0;
    padding-left:20px;
} 
.wpcf7-form textarea{
    height:150px;
}
.wpcf7-form input[type="submit"]{
    color:#fff;
    padding: 10px 100px;
    background-color:#0032A0;
    border:1px solid transparent;
    transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
}
.wpcf7-form input[type="submit"]:hover{
    background:#fff;
    color:#0032A0;
    border:1px solid transparent;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus{
  border:1px solid transparent;
}
.wpcf7-form p{
    text-align:center;
}
::-webkit-input-placeholder { /* Chrome */
  color: #eee;
  transition: opacity 250ms ease-in-out;
}
:focus::-webkit-input-placeholder {
  opacity: 0;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #eee;
  transition: opacity 250ms ease-in-out;
}
:focus:-ms-input-placeholder {
  opacity: 0;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #eee;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus::-moz-placeholder {
  opacity: 0;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #eee;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus:-moz-placeholder {
  opacity: 0;
}
/*********** FOOTER ************/
.site-footer{
    background-color: rgba(0,0,0,0.7);
    padding:50px 0 30px;
    text-align:center;
    color:#fff;
    min-height: 180px;
}
.site-info{
    width: 100%;
    color: #fff;
}
.site-info a, .site-title a{
    color:#eee;
    text-decoration: none;
}
.site-info a:hover, .site-title a:hover{
    color:#fff;
    text-decoration: none;
}
.footer-contact-info{
    font-size:1rem;
    width:100%;
    text-align: center;
    color:#fff;
}
.footer-contact-info a{
    padding:15px;
    text-decoration: none;
}
 .social-navigation a:before, .social-navigation a:before{
    padding-bottom:50px;
 }
.footer-contact-info a:hover, .footer-contact-info a:focus, .social-navigation a:hover:before, .social-navigation a:focus:before{
    color:#fff;
}
.footer-navigation {
    width:100%;
    padding-top:40px;
}
.footer-navigation ul {
    list-style: none;
    margin: 0;
}
.footer-navigation li {
    display: inline-block;
    margin: 0 0.4375em 0.4375em 0;
}
.footer-navigation a {
    color: #eee;
    display: block;
}
.footer-navigation a:hover{
    color:#fff;
    text-decoration: none;
}
.menu-footernav-container{
    height:30px;
}

#bgvid .player .video-wrapper video,
#theme_header .player .video-wrapper video {
    width:auto;
    height:100%;
}

/* BACKGROUND IMAGES*/
.bg-img{
    background-size:cover;
    background-position:center center;
    background-color:#000;
}



@media(min-width:630px){
    iframe#themes_vid {
        top: 20%;
    }
    .partners_logo_div {
        width: 100px;
    }
    
}

@media(min-width:768px){
    .menu-toggle{
      margin-right:75px;
    }
    #site-navigation{
        padding-top:80px;
    }
    .main-navigation a{
        padding:20px;
    }
    .site-content{
        margin-top:75px;
    }
    .heroImgTitle{
        font-size:36px;
    }
    .homepage-hero-module{
        height: 80vh;
    }
    
    .title-container{
        margin-right:10%;
    }
    .home-sections > .section-text h1{
        text-align: left;
    }
    #home-about h1{
        text-align:left;
    }
    .section-title{
        padding:40px 100px 20px;
    }
    .home-btn{
        text-align:left;
    }
    .home-sections > .section-text {
        height: 100%;
        padding: 50px;
        margin-top:0;
        width:50%;
    }
    #home-services{
        height:550px;
    }
    #home-services .section-text,
    #home-about .section-text{
        margin-top:0;
    }
    #home-avatars{
        height:550px;
    }
    #home-avatars .avatar-img{
        display:none;
    }
    #home-avatars .section-img{
        width:50%;
        height:100%;
        display:inline-block;
        float:right;
    }
    #home-avatars > .section-img > iframe{
        height:100%;
        display:block;
    }
    #home-avatars img{
        height: 350px;
        margin-top: 76px;
    }
    iframe#themes_vid{
        top:50%;
        min-width:145%;
    }
    #home-themes{
        height:600px;
    }
    #home-themes > .section-text{
        height: 100%;
        margin-top: 0;
    }
    .partners_logo_div{
        width:110px;
        margin: 30px;
    }
    .partners_logo_view{
        height:500px;
        max-width:1100px;
        margin:auto;
        overflow:hidden;
    }
    .partners_logo_collection{
        height:auto;
    }
    
    #home-partners{
        height:675px;
    }
    #home-di .section-title{
        width:550px;
    }
    .di_icons > .read_more h3{
        font-size:20px;
        margin:0;
    }
    .read_more{
        padding: 40px 5px;
    }
    #home-careers{
        padding: 60px 70px 35px 70px;
    }
    #home-careers > .section-title{
      padding:0;
    }
    #career-swiper{
        height:300px;
        padding-top:20px;
    }
    #home-contact{
        padding:25px 100px 35px 100px;
    }
    .hvr-icon-down:before {
        right: 39%;
    }
}
@media(min-width:1150px){
    .main-navigation a{
        padding: 5px;
    }
    #site-navigation{
        padding:0;
    }
    .dropdown-toggle,
    .main-navigation ul .dropdown-toggle.toggled-on,
    .menu-toggle,
    #menu-toggle,
    .site-header .social-navigation,
    .site-footer .main-navigation {
        display: none;
        opacity:0;
    }
}


@media(min-width:992px){
    .main-navigation a {
        padding: 0.65625em;
    }
    .homepage-hero-module{
        height:100vh;
    }
    .heroImgTitle{
        font-size:48px;
    }
    .home-sections > .section-text{
        padding: 80px 100px;
    }
    .home-sections > .section-img{
        padding: 80px 100px;
        float:right;
    }
    #home-di{
        height:600px;
    }
    .di_icons{
        width:120px;
        height:120px;
    }
    .read_more{
        width:120px;
    }
    #home-cc{
        height:600px;
    }
    .hvr-icon-down:before {
        right: 42%;
    }
}
@media(min-width:1200px){
    .homepage-hero-module{
        overflow:hidden;
        top: 0;
        width: 100%;
    }
    #home-avatars {
        height: 650px;
    }
    #home-careers {
        padding: 60px 80px 35px 80px;
    }
    #career-swiper .swiper-slide{
        text-align: left;
    }
    #career-swiper>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
        bottom:0;
    }
    .di_icons{
        width: 160px;
        height: 160px;
    }
    .read_more{
        width: 160px;
        padding-top:70px;
    }
    .partners_logo_collection,
    .partners_logo_view{
        max-width: 1300px;
    }
    .partners_logo_div{
        margin:30px 50px;
    }
}
@media(min-width:1400px){
    iframe#themes_vid{
      min-width:200%;
      min-height:200%;
    }
}
